/** Shopify CDN: Minification failed

Line 233:0 Unexpected "111"

**/
/* Product page enhancements: variant picker, buy buttons, quantity, and trust icons */

/* 1. Variant Picker UI/UX */
.product-section .product-form__controls-group input + label {
  border-radius: 999px;
  border: 1.5px solid #e0e0e0;
  background-color: transparent;
  padding: 10px 22px;
  color: #4a4a4a;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

.product-section .product-form__controls-group input:not(:checked) + label:hover {
  background-color: transparent;
  border-color: rgb(var(--color-foreground));
  color: rgb(var(--color-foreground));
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.product-section .product-form__controls-group input:checked + label {
  background-color: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
  border-color: rgb(var(--color-foreground));
  box-shadow: none;
}

.product-section .product-form__controls-group input:focus-visible + label {
  outline: 2px solid var(--color-accent-1);
  outline-offset: 2px;
}

/* 2. Buy Buttons & Quantity */
.product-section .product-form__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-section .product-form__buttons-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: stretch;
}

.product-section .product-form__quantity {
  margin: 0;
}

.product-section .quantity {
  display: flex;
  border: 1.5px solid #e0e0e0;
  border-radius: 999px;
  overflow: hidden;
  background-color: #f9f9f9;
}

.product-section .quantity__input {
  border: none;
  background-color: transparent;
  width: 44px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
}

.product-section .quantity__button {
  background-color: transparent;
  border: none;
  padding: 0 12px;
  cursor: pointer;
  color: #888;
  transition: color 0.2s ease;
}

.product-section .quantity__button:hover {
  color: rgb(var(--color-foreground));
}

.product-section .product-form__submit {
  background-color: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
  border: 1.5px solid rgb(var(--color-foreground));
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  transform: translateY(0);
  transition: all 0.25s ease-out;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.product-section .product-form__submit:hover:not([disabled]) {
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.12);
}

.product-section .product-form__submit:active:not([disabled]) {
  transform: translateY(-1px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.product-section .shopify-payment-button__button {
  border-radius: 999px;
  font-weight: 600;
  font-size: 1.6rem;
  padding: 14px 24px;
  transition: all 0.25s ease-out;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.product-section .shopify-payment-button__button:hover:not([disabled]) {
  transform: translateY(-3px);
  filter: brightness(1.05);
}

.product-section .product-form__submit[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}

/* 3. Trust Icons */
.product-section .product__trust-icons {
  margin: 2.5rem 0;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(var(--color-foreground), 0.08);
}

.product-section .trust-icons__wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 140px;
  text-align: center;
}

/* Alignment utilities */
.product-section .trust-icons--align-center .trust-icons__wrapper {
  justify-content: center;
}

/* Gap utilities */
.product-section .trust-icons--gap-s .trust-icons__wrapper { gap: 48px; }
.product-section .trust-icons--gap-m .trust-icons__wrapper { gap: 96px; }
.product-section .trust-icons--gap-l .trust-icons__wrapper { gap: 140px; }

/* Columns utilities (desktop) */
@media screen and (min-width: 750px) {
  .product-section .trust-icons--cols-2 .trust-icons__wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px;
  }
  .product-section .trust-icons--cols-3 .trust-icons__wrapper {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 64px;
  }
  .product-section .trust-icons--cols-4 .trust-icons__wrapper {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 64px;
  }
}

.product-section .trust-icon__item {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.product-section .trust-icon__image-wrapper {
  max-width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-section .trust-icon__image-wrapper img,
.product-section .trust-icon__image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-section .trust-icon__text {
  font-size: 1.3rem;
  line-height: 1.4;
  color: rgba(var(--color-foreground), 0.8);
  margin: 0;
}

/* 4. Responsive Trust Icons */
@media screen and (max-width: 749px) {
  .product-section .product__trust-icons {
    margin: 2rem 0;
    padding-top: 2rem;
  }
  .product-section .trust-icons__wrapper {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  .product-section .trust-icon__item {
    flex-basis: 100%;
    flex-direction: row;
    text-align: left;
    gap: 15px;
    margin-bottom: 15px;
  }
  .product-section .trust-icon__item:last-child {
    margin-bottom: 0;
  }
  .product-section .trust-icon__image-wrapper {
    max-width: 40px;
    height: 40px;
    flex-shrink: 0;
  }
}

111
