/* Sneh Herbal — Product Detail Page (matches site herbal + neutral palette) */

.pdp-page {
  background: linear-gradient(180deg, #f8faf8 0%, #f1f5f1 100%);
}

.pdp-card {
  background: #fff;
  border: 1px solid #e8ece8;
  border-radius: 1rem;
  box-shadow:
    0 1px 3px rgba(15, 23, 42, 0.06),
    0 8px 24px rgba(15, 23, 42, 0.04);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.pdp-card:hover {
  box-shadow:
    0 2px 4px rgba(15, 23, 42, 0.05),
    0 12px 32px rgba(15, 23, 42, 0.06);
}

.pdp-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.pdp-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Breadcrumb */
.pdp-breadcrumb {
  font-size: 0.8125rem;
  color: #6b7280;
}
.pdp-breadcrumb a {
  color: #6b7280;
  transition: color 0.2s;
}
.pdp-breadcrumb a:hover {
  color: #16a34a;
}
.pdp-breadcrumb [aria-current] {
  color: #374151;
  font-weight: 500;
}

/* Gallery */
.pdp-gallery-wrap {
  position: relative;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.pdp-gallery-botanical {
  position: absolute;
  inset: -12% -8% auto auto;
  width: 55%;
  height: 55%;
  background: radial-gradient(circle, rgba(216, 243, 220, 0.65) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.pdp-gallery-stage {
  position: relative;
  z-index: 1;
  border-radius: 1.25rem;
  overflow: hidden;
  background: linear-gradient(145deg, #f8faf8 0%, #eef6ef 55%, #e8f3ea 100%);
  border: 1px solid rgba(22, 163, 74, 0.1);
  flex: 0 0 auto;
}
.pdp-gallery-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(21, 128, 61, 0.04) 100%);
  pointer-events: none;
  z-index: 2;
}
.pdp-discount-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 6;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #166534;
  background: #dcfce7;
  border: 1px solid #bbf7d0;
  border-radius: 9999px;
  box-shadow: 0 2px 8px rgba(22, 163, 74, 0.12);
}
.pdp-gallery-stage img {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.pdp-gallery-stage:hover .pdp-gallery-panel.is-active img,
.pdp-gallery-stage:hover .pdp-gallery-main--single img {
  transform: scale(1.03);
}
/* PDP gallery — no flex-grow by default (desktop overrides below) */
.pdp-gallery {
  display: flex;
  flex-direction: column;
  width: 100%;
  flex: 0 0 auto;
}
.pdp-gallery-main {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-height: min(520px, 62vw);
  overflow: hidden;
  border-radius: 0.75rem;
  background: transparent;
}
.pdp-gallery-main--single {
  display: block;
}
.pdp-gallery-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  width: 100%;
  background: #f0fdf4;
}
.pdp-gallery-panel {
  display: none;
  width: 100%;
  height: 100%;
}
.pdp-gallery-panel.is-active {
  display: block;
}
.pdp-gallery-panel picture,
.pdp-gallery-main--single picture {
  display: block;
  width: 100%;
  height: 100%;
}
.pdp-gallery-panel .pdp-gallery-img,
.pdp-gallery-panel img,
.pdp-gallery-main--single .pdp-gallery-img,
.pdp-gallery-main--single img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.pdp-gallery-panel .sh-img-fallback {
  width: 100%;
  height: 100%;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0fdf4;
}
.pdp-gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(22, 163, 74, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #15803d;
  box-shadow: 0 4px 16px rgba(21, 128, 61, 0.1);
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}
.pdp-gallery-nav:hover {
  transform: translateY(-50%) scale(1.05);
  background: #fff;
}
.pdp-gallery-nav--prev { left: 0.75rem; }
.pdp-gallery-nav--next { right: 0.75rem; }
.pdp-gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 0.875rem;
  padding: 0;
  width: fit-content;
  max-width: 100%;
}
.pdp-gallery-thumb-btn {
  flex: 0 0 auto;
  width: 76px;
  height: 76px;
  padding: 0;
  border: 2px solid #e8ece8;
  border-radius: 0.75rem;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.pdp-gallery-thumb-btn.is-active {
  border-color: #16a34a;
  box-shadow: 0 0 0 1px #16a34a;
}
.pdp-gallery-thumb-btn picture,
.pdp-gallery-thumb-btn img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.pdp-thumb-video {
  flex: 0 0 auto;
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d8f3dc, #b7e4c7);
  color: #15803d;
  font-size: 0.6875rem;
  font-weight: 600;
  gap: 0.25rem;
  border-radius: 0.75rem;
  border: 2px solid #e8ece8;
  text-decoration: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.pdp-gallery-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #eef1ee;
}
@media (min-width: 640px) {
  .pdp-gallery-features { grid-template-columns: repeat(4, 1fr); }
}
.pdp-gallery-feature {
  text-align: center;
  padding: 0.5rem 0.25rem;
  border-radius: 0.75rem;
  transition: background 0.25s;
}
.pdp-gallery-feature:hover {
  background: #f0fdf4;
}
.pdp-gallery-feature svg {
  width: 1.25rem;
  height: 1.25rem;
  margin: 0 auto 0.35rem;
  color: #16a34a;
}
.pdp-gallery-feature span {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  color: #374151;
  line-height: 1.3;
}

/* Two-column hero — balanced height on desktop */
@media (min-width: 1024px) {
  .pdp-page > .max-w-7xl > .pdp-breadcrumb {
    margin-bottom: 1rem;
  }

  .pdp-hero-layout {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
  }

  .pdp-gallery-col,
  .pdp-details-col {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .pdp-gallery-col > .pdp-gallery-wrap,
  .pdp-details-col > .pdp-details-panel {
    flex: 1 1 auto;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .pdp-gallery-wrap {
    padding: 1rem;
    position: static;
    top: auto;
    justify-content: flex-start;
    align-items: stretch;
  }

  /* Left card: image → thumbs → badges (top to bottom). No flex-grow on image area. */
  .pdp-gallery-wrap > .pdp-gallery {
    flex: 1 1 auto;
    min-height: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .pdp-gallery-wrap > .pdp-gallery-stage {
    flex: 0 0 auto;
    width: 100%;
  }

  .pdp-gallery-wrap .pdp-gallery-stage {
    display: block;
    width: 100%;
  }

  .pdp-gallery-main,
  .pdp-gallery-main--single,
  .pdp-gallery-placeholder {
    width: 100%;
    aspect-ratio: 1;
    height: auto;
    max-height: min(480px, 38vw);
  }

  .pdp-gallery-thumbs {
    flex: 0 0 auto;
    margin-top: 0.625rem;
    gap: 0.5rem;
  }

  .pdp-gallery-thumb-btn,
  .pdp-thumb-video {
    width: 56px;
    height: 56px;
  }

  /* Badges: after thumbs inside gallery, or after stage for single image */
  .pdp-gallery .pdp-gallery-features,
  .pdp-gallery-wrap > .pdp-gallery-features {
    margin-top: auto;
    padding-top: 0.75rem;
    flex-shrink: 0;
  }

  .pdp-gallery-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.375rem;
    border-top: 1px solid #eef1ee;
  }

  .pdp-gallery-feature {
    padding: 0.35rem 0.2rem;
  }

  .pdp-gallery-feature svg {
    width: 1rem;
    height: 1rem;
    margin-bottom: 0.2rem;
  }

  .pdp-gallery-feature span {
    font-size: 0.5625rem;
    line-height: 1.2;
  }

  .pdp-details-panel {
    display: flex;
    flex-direction: column;
    position: static;
    top: auto;
    height: 100%;
  }

  .pdp-details-scroll {
    flex: 1 1 auto;
    overflow: visible;
    min-height: 0;
  }

  .pdp-details-scroll .pdp-title {
    font-size: 1.375rem;
    line-height: 1.2;
    margin-top: 0.25rem;
  }

  .pdp-details-scroll .pdp-buy-box {
    margin-top: 0.75rem;
    padding: 0.75rem 0.875rem;
  }

  .pdp-details-scroll .pdp-price-main {
    font-size: 1.625rem;
  }

  .pdp-details-scroll .pdp-price-meta {
    font-size: 0.75rem;
    margin-top: 0.2rem;
    line-height: 1.35;
  }

  .pdp-details-scroll .pdp-price-meta span {
    display: inline;
  }

  .pdp-details-scroll .pdp-price-meta span + span::before {
    content: ' · ';
  }

  .pdp-details-scroll .pdp-offer-strip {
    padding: 0.5rem 0.625rem;
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
  }

  .pdp-details-scroll .pdp-tag-pill {
    padding: 0.25rem 0.5rem;
    font-size: 0.625rem;
  }

  .pdp-details-scroll .pdp-variant-grid {
    gap: 0.5rem;
  }

  .pdp-details-scroll .pdp-variant-card {
    padding: 0.5rem 0.45rem;
    min-height: 5.25rem;
    border-radius: 0.75rem;
    border-width: 1px;
  }

  .pdp-details-scroll .pdp-variant-card__size {
    font-size: 0.8125rem;
    margin-top: 0.15rem;
  }

  .pdp-details-scroll .pdp-variant-card__price {
    font-size: 0.9375rem;
    margin-top: 0.2rem;
  }

  .pdp-details-scroll .pdp-variant-card__save {
    font-size: 0.625rem;
    margin-top: 0.2rem;
    padding-top: 0.2rem;
  }

  .pdp-details-scroll .pdp-btn-primary {
    padding: 0.65rem 1rem;
    font-size: 0.875rem;
  }

  .pdp-details-scroll .pdp-btn-secondary {
    margin-top: 0.5rem;
    padding: 0.6rem 1rem;
    font-size: 0.875rem;
    border-width: 1px;
  }

  .pdp-details-scroll .pdp-cta-row {
    margin-top: 0;
  }

  .pdp-details-scroll .pdp-qty-control {
    transform: scale(0.92);
    transform-origin: left center;
  }

  .pdp-trust-strip {
    flex-shrink: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-top: auto;
    padding-top: 0.625rem;
    border-top: 1px solid #eef1ee;
    grid-template-columns: unset;
  }

  .pdp-trust-strip .pdp-trust-item {
    flex: 1 1 calc(25% - 0.375rem);
    min-width: 5.5rem;
    flex-direction: row;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.4rem;
    border-radius: 0.5rem;
    background: #f9fafb;
    border: 1px solid #eef1ee;
  }

  .pdp-trust-strip .pdp-trust-item svg {
    width: 0.875rem;
    height: 0.875rem;
    flex-shrink: 0;
  }

  .pdp-trust-strip .pdp-trust-item strong {
    font-size: 0.625rem;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
  }

  .pdp-trust-strip .pdp-trust-item span {
    display: none;
  }
}

.pdp-category {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #15803d;
}
.pdp-title {
  font-size: clamp(1.75rem, 4vw, 2rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-top: 0.35rem;
}
.pdp-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-top: 0.75rem;
}
.pdp-stars {
  display: inline-flex;
  gap: 0.125rem;
  color: #f59e0b;
}
.pdp-rating-meta {
  font-size: 0.8125rem;
  color: #6b7280;
}
.pdp-rating-verified {
  font-size: 0.75rem;
  color: #16a34a;
  font-weight: 500;
}

.pdp-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #374151;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 9999px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pdp-tag-pill--accent {
  color: #166534;
  background: #f0fdf4;
  border-color: #bbf7d0;
}
.pdp-tag-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(22, 163, 74, 0.08);
}
.pdp-tag-pill svg {
  width: 0.875rem;
  height: 0.875rem;
  color: #16a34a;
  flex-shrink: 0;
}

/* Variants */
.pdp-variant-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
@media (min-width: 480px) {
  .pdp-variant-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.pdp-variant-label {
  cursor: pointer;
  display: block;
}
.pdp-variant-label input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.pdp-variant-card {
  position: relative;
  padding: 0.875rem 0.75rem;
  min-height: 7.25rem;
  background: #fff;
  border: 2px solid #e8ece8;
  border-radius: 1rem;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.pdp-variant-label input:checked + .pdp-variant-card {
  border-color: #16a34a;
  background: #fffbeb;
  box-shadow: 0 0 0 1px #16a34a, 0 4px 16px rgba(22, 163, 74, 0.12);
  transform: translateY(-2px);
}
.pdp-variant-check {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: #e8ece8;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.2s, transform 0.2s, background 0.2s;
}
.pdp-variant-label input:checked + .pdp-variant-card .pdp-variant-check {
  opacity: 1;
  transform: scale(1);
  background: #16a34a;
  color: #fff;
}
.pdp-variant-card--disabled {
  opacity: 0.5;
  pointer-events: none;
}
.pdp-variant-card__tag {
  position: absolute;
  top: -0.45rem;
  left: 0.5rem;
  font-size: 0.5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.15rem 0.45rem;
  border-radius: 9999px;
  background: #16a34a;
  color: #fff;
}
.pdp-variant-card__tag--oos {
  background: #6b7280;
}
.pdp-variant-card__size {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #111827;
  margin-top: 0.35rem;
}
.pdp-variant-card__price {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #16a34a;
  margin-top: 0.35rem;
}
.pdp-variant-card__mrp {
  font-size: 0.6875rem;
  color: #9ca3af;
  text-decoration: line-through;
}
.pdp-variant-card__save {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #16a34a;
  margin-top: 0.35rem;
  padding-top: 0.35rem;
  border-top: 1px dashed #e8ece8;
}

/* Buy box */
.pdp-buy-box {
  margin-top: 1.25rem;
  padding: 1.25rem 1.35rem;
  background: linear-gradient(180deg, #fafcf9 0%, #f4f8f4 100%);
  border: 1px solid rgba(22, 163, 74, 0.1);
  border-radius: 1rem;
}
.pdp-price-main {
  font-size: 2.125rem;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.03em;
}
.pdp-price-mrp {
  font-size: 1.0625rem;
  color: #9ca3af;
  text-decoration: line-through;
  margin-left: 0.5rem;
}
.pdp-price-savings {
  font-size: 0.875rem;
  font-weight: 600;
  color: #15803d;
  margin-top: 0.25rem;
}
.pdp-price-meta {
  font-size: 0.8125rem;
  color: #6b7280;
  margin-top: 0.35rem;
}
.pdp-stock-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
}
.pdp-stock-pill--in {
  color: #166534;
  background: #dcfce7;
  border: 1px solid #bbf7d0;
}
.pdp-stock-pill--out {
  color: #991b1b;
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.pdp-qty-control {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.pdp-qty-btn {
  padding: 0.7rem 1rem;
  min-height: 44px;
  min-width: 44px;
  color: #4b5563;
  background: #fafafa;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.pdp-qty-btn:hover {
  background: #f0fdf4;
  color: #15803d;
}
.pdp-qty-input {
  width: 3.25rem;
  text-align: center;
  border: none;
  border-left: 1px solid #e5e7eb;
  border-right: 1px solid #e5e7eb;
  padding: 0.65rem 0;
  font-weight: 600;
  background: #fff;
}
.pdp-btn-primary--lead {
  flex: 1 1 auto;
  min-width: 12rem;
}
.pdp-cta-row {
  margin-top: 1.25rem;
}
.pdp-btn-buy-now {
  margin-top: 0.5rem;
}
.pdp-btn-primary {
  flex: 1;
  min-width: 10rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #22c55e 0%, #15803d 55%, #166534 100%);
  border: none;
  border-radius: 0.625rem;
  box-shadow: 0 4px 14px rgba(21, 128, 61, 0.35);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.25s;
}
.pdp-btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(21, 128, 61, 0.4);
}
.pdp-btn-primary:active:not(:disabled) {
  transform: translateY(0);
}
.pdp-btn-primary:disabled {
  background: #d1d5db;
  box-shadow: none;
  cursor: not-allowed;
}
.pdp-btn-secondary {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #16a34a;
  background: #fff;
  border: 2px solid #16a34a;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.pdp-btn-secondary:hover:not(:disabled) {
  background: #f0fdf4;
  transform: translateY(-1px);
}

.pdp-trust-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.625rem;
  margin-top: 1rem;
}
@media (min-width: 1024px) {
  .pdp-trust-grid:not(.pdp-trust-strip) {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.pdp-trust-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  width: 100%;
  min-width: 0;
  padding: 0.75rem;
  border: 1px solid #e8ece8;
  border-radius: 0.875rem;
  background: #fff;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.pdp-trust-item:hover {
  border-color: #b7e4c7;
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.08);
  transform: translateY(-2px);
}
.pdp-trust-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #16a34a;
}
.pdp-trust-item strong {
  font-size: 0.6875rem;
  font-weight: 700;
  color: #111827;
}
.pdp-trust-item span {
  font-size: 0.625rem;
  color: #6b7280;
  line-height: 1.35;
}

/* Highlights bar */
.pdp-highlights {
  margin-top: 2.5rem;
  padding: 1.5rem 1.75rem;
}
.pdp-highlights h2 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #166534;
  margin-bottom: 1.25rem;
  text-align: center;
}
.pdp-highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .pdp-highlights-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .pdp-highlights-grid { grid-template-columns: repeat(5, 1fr); }
}
.pdp-highlight-item {
  text-align: center;
  padding: 1rem 0.75rem;
  border-radius: 1rem;
  border: 1px solid transparent;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.pdp-highlight-item:hover {
  background: #f0fdf4;
  border-color: #d8f3dc;
  transform: translateY(-3px);
}
.pdp-highlight-icon {
  width: 2.75rem;
  height: 2.75rem;
  margin: 0 auto 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #d8f3dc, #b7e4c7);
  color: #15803d;
}
.pdp-highlight-item h3 {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #111827;
}
.pdp-highlight-item p {
  font-size: 0.6875rem;
  color: #6b7280;
  margin-top: 0.25rem;
  line-height: 1.4;
}

/* Content sections */
.pdp-section-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}
.pdp-section-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #d8f3dc, #e8f5e9);
  color: #15803d;
  flex-shrink: 0;
}
.pdp-desc-card {
  background: linear-gradient(180deg, #fff 0%, #f8fbf8 100%);
}
.pdp-desc-body {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.75;
}
.pdp-ingredient-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
}
@media (min-width: 640px) {
  .pdp-ingredient-grid { grid-template-columns: repeat(2, 1fr); }
}
.pdp-ingredient-card {
  display: flex;
  gap: 0.875rem;
  padding: 1rem 1.125rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, #f0fdf4 0%, #e8f5e9 100%);
  border: 1px solid rgba(22, 163, 74, 0.1);
  transition: transform 0.25s, box-shadow 0.25s;
}
.pdp-ingredient-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(22, 163, 74, 0.12);
}
.pdp-ingredient-card .pdp-section-icon {
  width: 2.25rem;
  height: 2.25rem;
}
.pdp-ingredient-card h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #111827;
}
.pdp-ingredient-card p {
  font-size: 0.8125rem;
  color: #6b7280;
  margin-top: 0.2rem;
  line-height: 1.45;
}

.pdp-love-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 640px) {
  .pdp-love-grid { grid-template-columns: repeat(2, 1fr); }
}
.pdp-love-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.875rem 0;
  font-size: 0.875rem;
  color: #374151;
  border-bottom: 1px solid #f3f4f6;
  transition: color 0.2s, padding-left 0.2s;
}
@media (min-width: 640px) {
  .pdp-love-item:nth-child(odd) { padding-right: 1.25rem; border-right: 1px solid #f3f4f6; }
  .pdp-love-item:nth-last-child(-n+2) { border-bottom: none; }
}
.pdp-love-item:hover {
  color: #15803d;
  padding-left: 0.25rem;
}
.pdp-love-check {
  width: 1.375rem;
  height: 1.375rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #16a34a;
  color: #16a34a;
}

/* FAQ accordion */
.pdp-faq-item {
  border-bottom: 1px solid #eef1ee;
}
.pdp-faq-item:last-child {
  border-bottom: none;
}
.pdp-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  text-align: left;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111827;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.pdp-faq-trigger:hover {
  color: #15803d;
}
.pdp-faq-trigger[aria-expanded='true'] {
  color: #15803d;
}
.pdp-faq-icon {
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #d8f3dc;
  color: #15803d;
  transition: transform 0.3s, background 0.3s;
}
.pdp-faq-trigger[aria-expanded='true'] .pdp-faq-icon {
  transform: rotate(45deg);
  background: #16a34a;
  color: #fff;
  border-color: #16a34a;
}
.pdp-faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.pdp-faq-panel.is-open {
  grid-template-rows: 1fr;
}
.pdp-faq-panel-inner {
  overflow: hidden;
}
.pdp-faq-panel-content {
  padding: 0 0 1rem;
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.65;
}
.pdp-faq-item.is-open .pdp-faq-trigger {
  background: linear-gradient(90deg, #f0fdf4, transparent);
  margin: 0 -1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 0.5rem;
}

/* Reviews */
.pdp-review-list {
  display: flex;
  flex-direction: column;
}
.pdp-review-item {
  padding: 1.125rem 0;
  border-bottom: 1px solid #f3f4f6;
}
.pdp-review-item:last-child {
  border-bottom: none;
}
.pdp-review-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.625rem;
  margin-bottom: 0.375rem;
}
.pdp-review-stars {
  color: #f59e0b;
}
.pdp-review-stars .pdp-star-empty {
  color: #e5e7eb;
}
.pdp-review-date {
  font-size: 0.75rem;
  color: #9ca3af;
}
.pdp-review-comment {
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.6;
}
.pdp-review-author {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  margin-top: 0.375rem;
}
.pdp-review-form {
  padding-top: 1.25rem;
  border-top: 1px solid #f3f4f6;
}
.pdp-review-form-error {
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: #b91c1c;
}
.pdp-review-field {
  margin-bottom: 1rem;
}
.pdp-review-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
}
.pdp-review-textarea {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  resize: vertical;
}
.pdp-star-picker {
  display: inline-flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 0.125rem;
}
.pdp-star-picker-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.pdp-star-picker-label {
  display: inline-flex;
  cursor: pointer;
  color: #d1d5db;
  transition: color 0.15s ease, transform 0.15s ease;
}
.pdp-star-picker-icon {
  width: 1.75rem;
  height: 1.75rem;
  fill: currentColor;
}
.pdp-star-picker-label:hover,
.pdp-star-picker-label:hover ~ .pdp-star-picker-label,
.pdp-star-picker-input:checked ~ .pdp-star-picker-label {
  color: #eab308;
}
.pdp-star-picker-label:hover {
  transform: scale(1.05);
}

.pdp-support {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, #f0fdf4 0%, #fafafa 100%);
  border: 1px solid #bbf7d0;
}
.pdp-support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.pdp-share-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.pdp-btn-outline {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #16a34a;
  background: #fff;
  border: 1px solid #16a34a;
  border-radius: 0.5rem;
  transition: background 0.2s, transform 0.2s;
}
.pdp-btn-outline:hover {
  background: #f0fdf4;
  transform: translateY(-1px);
}
.pdp-btn-whatsapp {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}
.pdp-btn-whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  color: #fff;
}

/* Mobile sticky CTA — visible on tablet/phone; hidden on desktop */
.pdp-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 85;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid #e8ece8;
  box-shadow: 0 -8px 32px rgba(21, 128, 61, 0.1);
  backdrop-filter: blur(12px);
}

@media (max-width: 1023px) {
  .pdp-mobile-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: nowrap;
  }

  /* Single Add to Cart on mobile — inline button hidden; sticky handles add */
  #pdp-add-cart-btn {
    display: none;
  }

  .pdp-mobile-bar.is-post-add .pdp-mobile-bar-price,
  .pdp-mobile-bar.is-post-add #pdp-mobile-bar-add {
    display: none;
  }

  .pdp-mobile-bar.is-post-add .pdp-mobile-bar-order {
    display: block;
    flex: 1 1 100%;
    width: 100%;
  }

  .pdp-mobile-bar.is-post-add .pdp-btn-place-order {
    display: flex;
    width: 100%;
    text-decoration: none;
    min-height: 2.75rem;
    font-size: 0.9375rem;
  }
}

@media (min-width: 1024px) {
  .pdp-mobile-bar {
    display: none !important;
  }
}
.pdp-mobile-bar .pdp-price-main { font-size: 1.125rem; min-width: 4.5rem; }
.pdp-mobile-bar-actions { flex: 2; min-width: 0; }
.pdp-mobile-bar-order {
  flex: 2;
  min-width: 0;
  display: none;
}
.pdp-btn-mobile-add,
.pdp-btn-place-order {
  width: 100%;
  min-height: 2.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  justify-content: center;
}
.pdp-mobile-bar .pdp-btn-primary { padding: 0.625rem 0.75rem; font-size: 0.8125rem; flex: 1; min-width: 0; }

/* Post–add-to-cart: hide inline qty/CTAs on mobile, sticky shows Go to Cart */
@media (max-width: 1023px) {
  .pdp-page.pdp-added-to-cart #pdp-inline-actions {
    display: none;
  }
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  cursor: pointer;
}
.lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 92%;
  max-height: 92%;
}
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 0.5rem;
}
.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 300;
  cursor: pointer;
  line-height: 1;
}
.lightbox-close:hover { opacity: 0.8; }

.pdp-offer-strip {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(90deg, #f0fdf4, #fffbeb);
  border: 1px solid #bbf7d0;
  border-radius: 0.75rem;
  font-size: 0.8125rem;
}

@media (max-width: 768px) {
  .pdp-gallery-thumb-btn,
  .pdp-thumb-video {
    width: 64px;
    height: 64px;
  }
}
