/* ==========================================================================
   PRODUCT DETAIL PAGE — PREMIUM REDESIGN
   Hanaz Official | Maintains full visual identity
   ========================================================================== */

/* ── Breadcrumb ──────────────────────────────────────── */
.pdp-breadcrumb {
  padding: 20px 0 0;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.pdp-breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.18s;
}

.pdp-breadcrumb a:hover {
  color: var(--text-heading);
}

.pdp-breadcrumb .sep {
  font-size: 15px;
  opacity: 0.5;
}

/* ── Page layout ─────────────────────────────────────── */
.pdp-hero {
  padding: 40px 0 80px;
}

.pdp-grid {
  display: grid;
  grid-template-columns: 52% 1fr;
  gap: 80px;
  align-items: start;
}

/* ════════════════════════════════════════════════════════
   GALLERY — Vertical thumb rail + hero image
   ════════════════════════════════════════════════════════ */
.pdp-gallery {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  position: sticky;
  top: calc(var(--nav-height, 72px) + 24px);
}

/* Vertical thumb strip */
.pdp-thumb-rail {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pdp-thumb {
  width: 70px;
  height: 70px;
  border: 1px solid var(--border);
  border-radius: 0;
  background: var(--bg-card);
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.18s ease, transform 0.18s ease;
  flex-shrink: 0;
}

.pdp-thumb:hover {
  border-color: var(--text-muted);
}

.pdp-thumb.active {
  border-color: var(--text-heading);
  border-width: 1px;
}

.pdp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hero image */
.pdp-main-image {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0;
  overflow: hidden;
  touch-action: pan-y;
}

.pdp-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s ease, opacity 0.2s ease;
}

/* Zoom on hover (desktop only) */
@media (hover: hover) and (pointer: fine) {
  .pdp-main-image:hover img {
    transform: scale(1.06);
  }
}

/* Mobile Swipe Gallery Dots */
.pdp-gallery-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  width: 100%;
}

.pdp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.pdp-dot:hover, .pdp-dot.active {
  background-color: var(--text-heading);
}

.pdp-dot.active {
  transform: scale(1.25);
}

@media (min-width: 992px) {
  .pdp-gallery-dots {
    display: none; /* Hide dots on desktop, use thumbs */
  }
}

/* Image fade transition */
.pdp-main-image img.switching {
  opacity: 0;
  transform: scale(0.98);
}

/* ════════════════════════════════════════════════════════
   INFO COLUMN
   ════════════════════════════════════════════════════════ */
.pdp-info {
  position: sticky;
  top: calc(var(--nav-height, 72px) + 24px);
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Product name */
.pdp-info h1 {
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 24px;
}

/* ── Price row ───────────────────────────────────────── */
.pdp-price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.pdp-sale-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.02em;
}

.pdp-original-price {
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.pdp-save {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ── Derm pill & Separator ───────────────────────────── */
.pdp-derm-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-body);
  margin-bottom: 24px;
  width: fit-content;
}

.pdp-derm-pill::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: hsl(150, 50%, 45%);
  flex-shrink: 0;
}

.pdp-separator {
  border: none;
  border-bottom: 1px solid var(--border);
  margin: 0 0 24px 0;
}

/* ── Quantity & Cart Row ─────────────────────────────── */
.pdp-qty-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 12px;
}

.pdp-cart-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 0;
  overflow: hidden;
  height: 52px;
  background: var(--bg);
}

.qty-stepper button {
  width: 48px;
  height: 100%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-heading);
  transition: background 0.15s;
  background: transparent;
  cursor: pointer;
}

.qty-stepper button:hover {
  background: var(--bg-alt);
}

.qty-stepper-val {
  min-width: 48px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-heading);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Social proof rating above fold ─────────────────── */
.pdp-rating-summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  margin-bottom: 14px;
}

.pdp-rating-stars {
  color: #e5a524;
  letter-spacing: 2px;
  font-size: 14px;
  line-height: 1;
}

.pdp-rating-count {
  color: var(--text-muted, #767676);
  text-decoration: underline;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.15s ease;
}

.pdp-rating-count:hover {
  color: var(--text-heading, #181818);
}

/* ── Free shipping highlight under price ─────────────── */
.pdp-shipping-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-heading, #181818);
  margin-top: 8px;
  margin-bottom: 8px;
  padding: 8px 14px;
  background: var(--bg-alt, #f7f6f2);
  border-radius: var(--radius-sm, 6px);
  border: 1px solid var(--border, #e5e3dd);
}

.pdp-shipping-highlight svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  flex-shrink: 0;
}

#btn-add-cart {
  flex: 1;
  height: 52px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  background-color: #000000 !important;
  color: #ffffff !important;
  border: 1px solid #000000 !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: background-color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
}

#btn-add-cart:hover {
  background-color: #222222 !important;
  color: #ffffff !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

#btn-add-cart:active {
  transform: scale(0.98);
}

/* ── Share / WhatsApp row ────────────────────────────── */
.pdp-share-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.pdp-share-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-heading);
}

.btn-whatsapp-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.btn-whatsapp-icon-link:hover {
  color: var(--text-heading);
  border-color: var(--text-heading);
}

.btn-whatsapp-icon-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ── Delivery info ───────────────────────────────────── */
.pdp-delivery {
  padding: 16px 0;
  border-top: 1px solid var(--border);
  margin-bottom: 0;
}

.pdp-delivery-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-body);
  margin-bottom: 6px;
}

.pdp-delivery-row:last-child {
  margin-bottom: 0;
}

.pdp-delivery-icon {
  width: 16px;
  height: 16px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}


/* ════════════════════════════════════════════════════════
   PRODUCT DESCRIPTION — The Ordinary layout inspiration
   ════════════════════════════════════════════════════════ */
.pdp-description-section {
  padding: 72px 0 88px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.pdp-desc-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: start;
}

/* Left nav rail */
.pdp-desc-nav {
  position: sticky;
  top: calc(var(--nav-height, 72px) + 32px);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pdp-desc-nav-item {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  border: none;
  background: none;
  text-align: left;
  font-family: inherit;
}

.pdp-desc-nav-item:hover {
  background: var(--bg-alt);
  color: var(--text-body);
}

.pdp-desc-nav-item.active {
  background: var(--bg-alt);
  color: var(--text-heading);
  font-weight: 600;
}

/* Right content */
.pdp-desc-body {
  max-width: 700px;
}

/* Section block */
.pdp-desc-block {
  scroll-margin-top: calc(var(--nav-height, 72px) + 40px);
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
}

.pdp-desc-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.pdp-desc-intro-tag {
  display: block;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 10px;
  text-transform: none;
}

.pdp-desc-block p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 14px;
}

.pdp-desc-block p:last-child {
  margin-bottom: 0;
}

/* Intro tagline */
.pdp-desc-block h2 {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0;
  line-height: 1.4;
  margin: 0 0 24px;
}

/* Ingredient cards */
.pdp-ingredient-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.pdp-ingredient-item {
  padding: 18px 20px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pdp-ingredient-item:hover {
  border-color: var(--text-heading);
  box-shadow: 0 4px 20px hsla(0, 0%, 0%, 0.06);
}

.pdp-ingredient-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 5px;
}

.pdp-ingredient-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* Benefits grid */
.pdp-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}

.pdp-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.4;
}

.pdp-benefit-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 5px;
}

/* ════════════════════════════════════════════════════════
   FORMULA + REVIEWS (keep existing structure)
   ════════════════════════════════════════════════════════ */
.formula-section {
  background: var(--bg-alt);
}

/* ── Sticky cart bar ─────────────────────────────────── */
.sticky-cart-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--bg);
  border-top: 1px solid var(--border);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 -4px 24px hsla(0, 0%, 0%, 0.08);
}

.sticky-cart-bar.visible {
  transform: translateY(0);
}

.sticky-cart-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.sticky-cart-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sticky-cart-img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.sticky-cart-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 2px;
}

.sticky-cart-price {
  font-size: 13px;
  color: var(--text-muted);
}

.sticky-cart-bar .btn,
#sticky-cart-add-btn {
  background-color: #000000 !important;
  color: #ffffff !important;
  border: 1px solid #000000 !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 13px;
  height: 44px;
  padding: 0 24px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background-color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.sticky-cart-bar .btn:hover,
#sticky-cart-add-btn:hover {
  background-color: #222222 !important;
  color: #ffffff !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
}

.sticky-cart-bar .btn:active,
#sticky-cart-add-btn:active {
  transform: scale(0.97);
}

@media (max-width: 480px) {
  .sticky-cart-bar .sticky-cart-inner {
    padding: 10px 16px;
    gap: 12px;
  }
  .sticky-cart-bar .btn,
  #sticky-cart-add-btn {
    height: 42px;
    padding: 0 18px;
    font-size: 12px;
    min-width: 120px;
  }
}

/* ════════════════════════════════════════════════════════
   HOW TO USE & CARE — Cards
   ════════════════════════════════════════════════════════ */
.htuc-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.htuc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.htuc-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  text-align: left;
  font-family: inherit;
  padding: 0;
  color: inherit;
}

.htuc-card:hover {
  border-color: var(--text-heading);
  box-shadow: 0 8px 32px hsla(0, 0%, 0%, 0.08);
  transform: translateY(-4px);
}

/* Image ratio utility */
.image-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.ratio-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

.htuc-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-alt, #f5f5f3);
}

.htuc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transition: transform 0.4s ease;
}

.htuc-card:hover .htuc-card-img img {
  transform: scale(1.04);
}

.htuc-card-body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}

.htuc-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 6px;
  line-height: 1.3;
}

.htuc-card-sub {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}

.htuc-card-arrow {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.htuc-card:hover .htuc-card-arrow {
  transform: translateX(4px);
}

.htuc-card-arrow svg {
  width: 18px;
  height: 18px;
  stroke: var(--text-muted);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.2s;
}

.htuc-card:hover .htuc-card-arrow svg {
  stroke: var(--text-heading);
}

/* ════════════════════════════════════════════════════════
   HOW TO USE & CARE — Drawer
   ════════════════════════════════════════════════════════ */
.htuc-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: hsla(0, 0%, 0%, 0);
  display: flex;
  justify-content: flex-end;
  transition: background 0.25s ease, visibility 0.25s ease;
  pointer-events: none;
  visibility: hidden;
}

.htuc-overlay.open {
  background: hsla(0, 0%, 0%, 0.45);
  pointer-events: auto;
  visibility: visible;
}

.htuc-drawer {
  width: 38%;
  max-width: 92vw;
  height: 100%;
  background: var(--bg-card);
  box-shadow: -8px 0 40px hsla(0, 0%, 0%, 0.12);
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}

.htuc-overlay.open .htuc-drawer {
  transform: translateX(0);
}

.htuc-drawer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

.htuc-drawer-close:hover {
  background: var(--bg-alt, #f5f5f3);
  border-color: var(--text-heading);
}

.htuc-drawer-close svg {
  width: 16px;
  height: 16px;
  stroke: var(--text-heading);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
}

.htuc-drawer-scroll {
  flex: 1;
  overflow: hidden;
  overscroll-behavior: contain;
}

.htuc-drawer-hero {
  height: 280px;
  width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
  background: var(--bg-alt, #f5f5f3);
  flex-shrink: 0;
}

.htuc-drawer-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

.htuc-drawer-body {
  padding: 24px 32px 24px;
  height: 100%;
  box-sizing: border-box;
}

.htuc-drawer-body h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 16px 0;
  padding-right: 40px;
}

.htuc-drawer-intro {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 16px;
}

.htuc-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--border);
}

.htuc-step-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.35;
}

.htuc-step-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-heading);
  flex-shrink: 0;
  width: 28px;
  letter-spacing: 0.02em;
}

.htuc-step-text {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-body);
  flex: 1;
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .pdp-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .pdp-desc-grid {
    grid-template-columns: 180px 1fr;
    gap: 40px;
  }

  .htuc-grid {
    gap: 20px;
  }

  .htuc-drawer {
    width: 60%;
  }

  .htuc-drawer-body h2 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {

  /* Gallery switches to horizontal strip below hero */
  .pdp-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .pdp-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
    position: static;
  }

  /* Reorder: hero first, thumbs below */
  .pdp-main-image {
    order: 1;
  }

  .pdp-thumb-rail {
    order: 2;
    flex-direction: row;
    overflow-x: auto;
    gap: 8px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .pdp-thumb-rail::-webkit-scrollbar {
    display: none;
  }

  .pdp-thumb {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
  }

  .pdp-info {
    position: static;
  }

  .pdp-desc-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .pdp-desc-nav {
    display: none;
  }

  .pdp-desc-block {
    padding-bottom: 32px;
    margin-bottom: 32px;
  }

  .pdp-benefits-grid {
    grid-template-columns: 1fr;
  }

  .sticky-cart-bar .btn {
    min-width: 140px;
  }

  .htuc-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .htuc-card {
    flex-direction: row;
    align-items: center;
  }

  .htuc-card-img {
    width: 120px;
    min-height: 100%;
    aspect-ratio: auto;
    flex-shrink: 0;
  }

  .htuc-card-body {
    padding: 16px 48px 16px 16px;
  }

  .htuc-card-arrow {
    bottom: auto;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
  }

  .htuc-card:hover .htuc-card-arrow {
    transform: translateY(-50%) translateX(4px);
  }

  .htuc-drawer {
    width: 100%;
    max-width: 100vw;
  }

  .htuc-drawer-hero {
    height: 150px;
    margin-bottom: 16px;
  }

  .htuc-drawer-body {
    padding: 24px 24px 20px;
  }

  .htuc-drawer-body h2 {
    font-size: 24px;
    margin-bottom: 12px;
    padding-right: 32px;
  }

  .htuc-drawer-intro {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .htuc-step-item {
    gap: 12px;
    padding: 10px 0;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .pdp-hero {
    padding: 20px 0 56px;
  }

  .pdp-info h1 {
    font-size: 1.5rem;
  }

  .pdp-sale-price {
    font-size: 1.3rem;
  }

  .pdp-thumb {
    width: 56px;
    height: 56px;
  }

  .pdp-benefits-grid {
    grid-template-columns: 1fr;
  }

  .htuc-card-img {
    width: 96px;
  }

  .htuc-card-title {
    font-size: 0.95rem;
  }

  .htuc-card-sub {
    font-size: 12px;
  }

  .htuc-drawer {
    width: 100%;
    max-width: 100vw;
  }

  .htuc-drawer-hero {
    height: 300px;
  }

  .htuc-drawer-body {
    padding: 32px 20px 28px;
  }

  .htuc-drawer-body h2 {
    font-size: 24px;
  }

  .htuc-step-item {
    gap: 14px;
    padding: 11px 0;
    font-size: 13px;
  }

  .htuc-step-num {
    font-size: 13px;
    width: 24px;
  }
}

/* ════════════════════════════════════════════════════════
   FREQUENTLY ASKED QUESTIONS (FAQ) SECTION
   ════════════════════════════════════════════════════════ */
.pdp-faq-section {
  background: var(--bg-card, #ffffff);
  padding: 80px 0 96px;
  border-top: 1px solid var(--border, #e5e3dd);
}

.pdp-faq-header {
  margin-bottom: 0;
}

.pdp-faq-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-heading, #181818);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 28px 0;
}

.pdp-faq-divider {
  border: none;
  border-top: 1px solid var(--border, #e5e3dd);
  margin: 0;
  width: 100%;
}

.pdp-faq-accordion {
  width: 100%;
}

.pdp-faq-item {
  border-bottom: 1px solid var(--border, #e5e3dd);
}

.pdp-faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 26px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: var(--text-heading, #181818);
  transition: color 0.2s ease;
}

.pdp-faq-trigger:hover {
  color: var(--text-heading, #181818);
}

.pdp-faq-trigger:focus-visible {
  outline: 2px solid var(--text-heading, #181818);
  outline-offset: 4px;
}

.pdp-faq-question {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-heading, #181818);
  flex: 1;
}

.pdp-faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-heading, #181818);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.pdp-faq-icon svg {
  display: block;
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.pdp-faq-trigger[aria-expanded="true"] .pdp-faq-icon {
  transform: rotate(180deg);
}

.pdp-faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.pdp-faq-panel[hidden] {
  display: block;
  visibility: hidden;
}

.pdp-faq-content {
  padding-bottom: 28px;
  padding-right: 48px;
}

.pdp-faq-content p {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-body, #4a4a4a);
  margin: 0;
}

@media (max-width: 768px) {
  .pdp-faq-section {
    padding: 48px 0 64px;
  }
  .pdp-faq-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  .pdp-faq-trigger {
    padding: 20px 0;
    gap: 16px;
  }
  .pdp-faq-question {
    font-size: 0.98rem;
  }
  .pdp-faq-content {
    padding-bottom: 20px;
    padding-right: 0;
  }
  .pdp-faq-content p {
    font-size: 0.9rem;
    line-height: 1.65;
  }
}

/* ════════════════════════════════════════════════════════
   MOBILE PRODUCT INFORMATION ACCORDION
   Only active on mobile (max-width: 768px)
   Uses distinct class names: .pdp-mobile-info-accordion
   Does NOT affect the existing .accordion-group in hero sidebar
   ════════════════════════════════════════════════════════ */

/* Text content formatting — preserves line breaks from Supabase (desktop & mobile) */
.pdp-info-text-content {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-body, #4a4a4a);
  white-space: pre-line;
  word-break: break-word;
}

/* Hide mobile accordion on desktop */
.pdp-mobile-info-accordion {
  display: none;
}

@media (max-width: 768px) {
  /* Hide desktop desc-grid on mobile ONLY when mobile info accordion exists in that section */
  .pdp-has-mobile-accordion .pdp-desc-grid,
  .pdp-description-section:has(.pdp-mobile-info-accordion) .pdp-desc-grid {
    display: none;
  }

  /* Show the mobile accordion instead */
  .pdp-mobile-info-accordion {
    display: block;
    padding: 0;
    margin: 0;
  }

  /* Each accordion item */
  .pdp-info-acc-item {
    border-bottom: 1px solid var(--border, #e5e3dd);
  }

  .pdp-info-acc-item:first-child {
    border-top: 1px solid var(--border, #e5e3dd);
  }

  /* Clickable header row */
  .pdp-info-acc-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    color: var(--text-heading, #181818);
    transition: opacity 0.15s ease;
  }

  .pdp-info-acc-header:active {
    opacity: 0.7;
  }

  .pdp-info-acc-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-heading, #181818);
    letter-spacing: 0.01em;
    line-height: 1.3;
    text-transform: uppercase;
  }

  /* The +/- icon */
  .pdp-info-acc-icon {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--text-heading, #181818);
    line-height: 1;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
    transition: transform 0.25s ease;
    user-select: none;
  }

  /* Collapsible body */
  .pdp-info-acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Inner padded content area */
  .pdp-info-acc-inner {
    padding: 4px 0 24px;
  }

  /* Text content formatting on mobile */
  .pdp-info-acc-inner .pdp-info-text-content {
    font-size: 0.9rem;
    line-height: 1.75;
  }

  /* Key Ingredients cards inside mobile accordion */
  .pdp-info-acc-inner .pdp-ingredient-list {
    margin-top: 0;
    gap: 12px;
  }

  .pdp-info-acc-inner .pdp-ingredient-item {
    padding: 14px 16px;
  }

  .pdp-info-acc-inner .pdp-ingredient-name {
    font-size: 13px;
  }

  .pdp-info-acc-inner .pdp-ingredient-desc {
    font-size: 12px;
  }
}