/* ============================= */
/* SINGLE PRODUCT - GRHTLD */
/* ============================= */

.product-single-grhtld {
  background: var(--bg);
  color: var(--ink);
}

.product-single-grhtld .product-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* HERO PRODUIT */

.product-single-grhtld .product-hero {
  padding: 90px 0 110px;
  background: var(--bg);
}

.product-single-grhtld .product-breadcrumb {
  margin-bottom: 42px;

  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-3);
}

.product-single-grhtld .product-breadcrumb a {
  color: var(--navy);
  text-decoration: none;
}

.product-single-grhtld .product-grid {
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

/* IMAGE */

.product-single-grhtld .product-gallery {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 24px;
}

.product-single-grhtld .product-main-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-l);
}

/* SUMMARY */

.product-single-grhtld .product-summary {
  padding-top: 8px;
}

.product-single-grhtld .product-category {
  display: inline-flex;
  margin-bottom: 18px;

  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}

.product-single-grhtld .product-title {
  margin: 0;

  font-family: var(--serif);
  font-size: clamp(48px, 5.5vw, 82px);
  line-height: 1;
  letter-spacing: -.045em;
  font-weight: 400;
  color: var(--navy);
}

.product-single-grhtld .product-title em,
.product-single-grhtld .product-title i {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

.product-single-grhtld .product-price {
  margin-top: 26px;

  font-family: var(--serif);
  font-size: 34px;
  font-style: italic;
  font-weight: 300;
  color: var(--ink);
}

.product-single-grhtld .product-excerpt {
  margin-top: 26px;
  max-width: 560px;

  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.55;
  color: var(--ink-2);
}

.product-single-grhtld .product-excerpt p {
  margin: 0;
}

/* ADD TO CART */

.product-single-grhtld .product-cart {
  margin-top: 36px;
}

.product-single-grhtld form.cart {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.product-single-grhtld form.cart .quantity input {
  width: 76px;
  height: 52px;

  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);

  text-align: center;

  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
}

.product-single-grhtld .single_add_to_cart_button {
  min-height: 52px !important;
  padding: 0 28px !important;

  border: 1px solid var(--navy) !important;
  border-radius: 999px !important;

  background: var(--navy) !important;
  color: #fff !important;

  font-family: var(--sans) !important;
  font-size: 14px !important;
  font-weight: 700 !important;

  cursor: pointer;

  transition:
    background .25s var(--ease),
    border-color .25s var(--ease),
    transform .2s var(--ease) !important;
}

.product-single-grhtld .single_add_to_cart_button:hover {
  background: var(--navy-dk) !important;
  border-color: var(--navy-dk) !important;
  transform: translateY(-2px);
}

.product-single-grhtld .product_meta {
  margin-top: 28px;

  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-3);
}

.product-single-grhtld .product_meta a {
  color: var(--navy);
  text-decoration: none;
}

/* DESCRIPTION */

.product-single-grhtld .product-content-section {
  padding: 100px 0;
  background: var(--surface);
}

.product-single-grhtld .product-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 72px;
  align-items: start;
}

.product-single-grhtld .section-label {
  display: inline-flex;
  margin-bottom: 22px;

  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navy);
}

.product-single-grhtld .product-content {
  max-width: 760px;

  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.65;
  color: var(--ink-2);
}

.product-single-grhtld .product-content p {
  margin: 0 0 22px;
}

.product-single-grhtld .product-content h2,
.product-single-grhtld .product-content h3 {
  margin: 42px 0 18px;

  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.1;
  color: var(--navy);
}

/* INFO CARD */

.product-single-grhtld .product-info-card {
  padding: 32px;

  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
}

.product-single-grhtld .product-info-card ul {
  list-style: none;
  margin: 0;
  padding: 0;

  display: grid;
  gap: 14px;
}

.product-single-grhtld .product-info-card li {
  position: relative;
  padding-left: 24px;

  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-2);
}

.product-single-grhtld .product-info-card li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;

  color: var(--gold);
}

.product-single-grhtld .product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-top: 28px;
  padding-bottom: 4px;

  border-bottom: 1px solid currentColor;

  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
}

.product-single-grhtld .product-link span {
  transition: transform .2s var(--ease);
}

.product-single-grhtld .product-link:hover span {
  transform: translateX(4px);
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .product-single-grhtld .product-grid,
  .product-single-grhtld .product-content-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .product-single-grhtld .product-info-card {
    max-width: 520px;
  }
}

@media (max-width: 760px) {
  .product-single-grhtld .product-wrap {
    padding: 0 20px;
  }

  .product-single-grhtld .product-hero {
    padding: 64px 0 80px;
  }

  .product-single-grhtld .product-content-section {
    padding: 72px 0;
  }

  .product-single-grhtld .product-title {
    font-size: clamp(38px, 12vw, 58px);
  }

  .product-single-grhtld .product-price {
    font-size: 28px;
  }

  .product-single-grhtld form.cart {
    align-items: stretch;
  }

  .product-single-grhtld .single_add_to_cart_button {
    width: 100%;
  }
}
/* ============================= */
/* QUANTITÉ PRODUIT */
/* ============================= */

.product-single-grhtld form.cart {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.product-single-grhtld form.cart .quantity {
  height: 52px;

  display: inline-flex;
  align-items: center;

  overflow: hidden;

  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.product-single-grhtld form.cart .quantity input.qty {
  width: 54px;
  height: 52px;

  border: 0 !important;
  background: transparent !important;

  text-align: center;

  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);

  appearance: textfield;
  -moz-appearance: textfield;
}

.product-single-grhtld form.cart .quantity input.qty::-webkit-outer-spin-button,
.product-single-grhtld form.cart .quantity input.qty::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
}

.product-single-grhtld .grhtld-qty-btn {
  width: 44px;
  height: 52px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 0;
  background: transparent;
  color: var(--navy);

  font-family: var(--sans);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;

  cursor: pointer;

  transition:
    background .2s var(--ease),
    color .2s var(--ease);
}

.product-single-grhtld .grhtld-qty-btn:hover {
  background: var(--navy);
  color: #fff;
}

.product-single-grhtld .grhtld-product-total {
  min-height: 52px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 0 18px;

  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.product-single-grhtld .grhtld-product-total span {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.product-single-grhtld .grhtld-product-total strong {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  color: var(--navy);
}

@media (max-width: 760px) {
  .product-single-grhtld form.cart {
    align-items: stretch;
  }

  .product-single-grhtld form.cart .quantity,
  .product-single-grhtld .grhtld-product-total,
  .product-single-grhtld .single_add_to_cart_button {
    width: 100%;
  }

  .product-single-grhtld form.cart .quantity {
    justify-content: space-between;
  }
}
/* ============================= */
/* FIX UI BOUTONS QUANTITÉ */
/* ============================= */

.product-single-grhtld form.cart .quantity {
  height: 52px !important;
  min-height: 52px !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  overflow: hidden !important;

  background: var(--surface) !important;
  border: 1px solid var(--line) !important;
  border-radius: 999px !important;
}

.product-single-grhtld form.cart .quantity input.qty {
  width: 54px !important;
  height: 52px !important;
  min-height: 52px !important;

  margin: 0 !important;
  padding: 0 !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  border: 0 !important;
  background: transparent !important;

  text-align: center !important;

  font-family: var(--sans) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 52px !important;

  color: var(--ink) !important;
}

.product-single-grhtld .grhtld-qty-btn {
  width: 44px !important;
  height: 52px !important;
  min-width: 44px !important;
  min-height: 52px !important;

  margin: 0 !important;
  padding: 0 !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  border: 0 !important;
  border-radius: 0 !important;

  background: transparent !important;
  color: var(--navy) !important;

  font-family: var(--sans) !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  line-height: 1 !important;

  cursor: pointer !important;
  box-shadow: none !important;
  transform: none !important;
}

/* Boutons quantité : état normal */
.product-single-grhtld .grhtld-qty-minus,
.product-single-grhtld .grhtld-qty-plus {
  background: transparent !important;
  color: var(--navy) !important;
}

/* Boutons quantité : hover */
.product-single-grhtld .grhtld-qty-minus:hover,
.product-single-grhtld .grhtld-qty-plus:hover {
  background: var(--navy) !important;
  color: #fff !important;
}

.product-single-grhtld .grhtld-qty-plus {
  background: transparent !important;
  color: var(--navy) !important;
}

.product-single-grhtld .grhtld-qty-btn:hover {
  background: var(--navy-dk) !important;
  color: #fff !important;
}