/** Shopify CDN: Minification failed

Line 246:0 Unexpected "}"

**/
/* ==================================================
   HOUSEOFTHETABI — PACK PREMIUM V1
   Fiche produit
================================================== */

/* Mise en page générale */
.product {
  column-gap: clamp(3rem, 5vw, 7rem);
}

.product__info-container {
  max-width: 52rem;
}

.product__info-container > * + * {
  margin-top: 1.8rem;
}

/* Titre du produit */
.product__title h1 {
  font-size: clamp(3rem, 3.2vw, 4.6rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

/* Prix */
.price--large {
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

/* Libellés Couleur et Pointure */
.product-form__input .form__label {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

/* Boutons des variantes */
.product-form__input input[type="radio"] + label {
  min-width: 5rem;
  min-height: 4rem;
  padding: 1rem 1.6rem;
  border: 1px solid rgba(var(--color-foreground), 0.32);
  border-radius: 0;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.product-form__input input[type="radio"] + label:hover {
  border-color: rgb(var(--color-foreground));
}

.product-form__input input[type="radio"]:checked + label {
  background: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
  border-color: rgb(var(--color-foreground));
}

/* Guide des tailles */
.product-popup-modal__opener {
  margin-top: -0.4rem;
  margin-bottom: 1rem;
}

.product-popup-modal__button {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(var(--color-foreground), 0.7);
  font-size: 1.25rem;
  font-style: normal;
  letter-spacing: 0.02em;
  text-decoration: underline;
  text-underline-offset: 0.4rem;
  transition: opacity 0.2s ease;
}

.product-popup-modal__button:hover {
  opacity: 0.6;
}

/* Quantité */
.quantity {
  min-height: 4.6rem;
  border-radius: 0;
}

/* Bouton Ajouter au panier */
.product-form__submit {
  min-height: 5.8rem;
  background: #111111 !important;
  color: #ffffff !important;
  border: 1px solid #111111 !important;
  border-radius: 0 !important;
  font-size: 1.3rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.13em !important;
  text-transform: uppercase;
  box-shadow: none !important;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.product-form__submit:hover {
  background: transparent !important;
  color: #111111 !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1) !important;
}

/* Bloc de réassurance créé précédemment */
.hot-reassurance {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem 2.4rem;
  margin-top: 2rem;
  padding: 2.2rem;
  border: 1px solid #ded8d0;
  background: #f8f6f3;
}

.hot-reassurance__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.hot-reassurance__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  flex: 0 0 2.1rem;
  border: 1px solid #262626;
  border-radius: 50%;
  font-size: 1.1rem;
}

.hot-reassurance__item strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hot-reassurance__item div span {
  display: block;
  color: rgba(38, 38, 38, 0.65);
  font-size: 1.15rem;
  line-height: 1.45;
}

/* Accordéons */
.product__accordion {
  border-top: 1px solid rgba(var(--color-foreground), 0.14);
}

.product__accordion:last-of-type {
  border-bottom: 1px solid rgba(var(--color-foreground), 0.14);
}

.product__accordion .summary__title {
  padding: 0.4rem 0;
}

.product__accordion .accordion__title {
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* Galerie */
.product__media {
  overflow: hidden;
  background: #f6f4f1;
}

.product__media img {
  transition: transform 0.5s ease;
}

.product__media:hover img {
  transform: scale(1.015);
}

.thumbnail {
  border-radius: 0 !important;
  overflow: hidden;
}

.thumbnail[aria-current] {
  box-shadow: 0 0 0 1px rgb(var(--color-foreground));
}

/* Mobile */
@media screen and (max-width: 749px) {
  .product {
    row-gap: 2.4rem;
  }

  .product__info-container {
    padding-left: 1.8rem;
    padding-right: 1.8rem;
  }

  .product__title h1 {
    font-size: 3rem;
  }

  .product-form__input input[type="radio"] + label {
    min-width: 4.6rem;
    min-height: 4rem;
    padding: 0.9rem 1.3rem;
  }

  .hot-reassurance {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    padding: 1.8rem;
  }

  .product-form__submit {
    min-height: 5.6rem;
    letter-spacing: 0.18em;
}
  }
}