figure.lazy-image-small img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .15s linear, transform .5s cubic-bezier(.39, .575, .565, 1);
    vertical-align: bottom;
    z-index: 9;
    opacity: 0;
    background-color: var(--main-background);
}
.text-center {
    text-align: center;
    width: 18%;
}
figure.lazy-image-small img.lazyloaded {
    opacity: 1;
}
.qty-button {
    width: calc(var(--button-size) - var(--button-extra-margin));
    height: calc(var(--button-size) - var(--button-extra-margin));
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--main-borders);
}
.cart-item .actions .qty-button,
.search-results.predictive-search .search-item .actions .qty-button {
    line-height: 1;
    width: 30px;
    height: 30px;
    border-radius: var(--buttons-radius);
}
.cart-item .content .item-price strong,
.search-results.predictive-search .search-item .content .item-price strong {
    font-weight: var(--font-weight-body-bold);
    padding-inline-end: 10px;
}
.cart-item .actions .qty-selector,
.search-results.predictive-search .search-item .actions .qty-selector {
    height: 30px;
    width: 30px;
    border: 0;
    padding: 0;
    font-size: calc(12px / 16 * var(--base-body-size) + 0px);
}
.lg-outer {
    margin-top: 10%;
    height: -webkit-fill-available !important;
}
/* Hide native radio */
input[type=radio] {
  display: none;
}

/* Base style for custom button */
.radio-btn {
  display: inline-block;
  border: 2px solid #ccc;
  border-radius: 50%;
  padding: 10px 15px;
  margin: 5px;
  cursor: pointer;
  text-align: center;
  font-size: 14px;
  min-width: 40px;
  min-height: 40px;
  line-height: 20px;
  user-select: none;
  transition: all 0.2s ease;
}

/* Selected state */
input[type=radio]:checked + .radio-btn {
  border-color: black;
  background-color: black;
  color: white;
}

/* For colors (circular swatches) */
.color-btn {
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 2px solid #ccc;
  border-radius: 50%;
  margin: 5px;
  cursor: pointer;
  transition: all 0.2s ease;
}

input[type=radio]:checked + .color-btn {
  border-color: black;
  box-shadow: 0 0 0 2px white, 0 0 0 4px black;
}
/* Mobile responsive */
@media (max-width: 720px) {
    .hide-mobile {
        display: none !important;
    }
    .lg-outer {
        margin-top: 15%;
        height: -webkit-fill-available !important;
    }
    .lg-outer .lg-img-wrap, .lg-outer .lg-item {
        height: fit-content !important;
    }
}