/* ============================================
   PRODUCT PAGE STYLES
   Ritual-first hierarchy
   ============================================ */

/* PRODUCT HERO */
.product-hero {
  padding: var(--spacing-xl) var(--spacing-md);
  background: var(--white);
  position: relative;
  overflow: visible;
  width: 100%;
  z-index: 1;
}

@media (min-width: 768px) {
  .product-hero {
    padding: var(--spacing-xl) var(--spacing-lg);
  }
}

.product-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
  align-items: start;
}

.product-media-card {
  order: 1;
  width: 100%;
  background: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  border: none;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

@media (min-width: 768px) {
  .product-hero-inner {
    grid-template-columns: 0.42fr 0.58fr;
    gap: var(--spacing-2xl);
    align-items: start;
  }

  .product-media-card {
    padding: 0;
  }

  .product-info {
    padding-left: var(--spacing-lg);
  }
}

/* Trust strip — calm reassurance below product image.
   .pdp-trust-strip is a transparent wrapper (no visual container).
   The .trust-badges-strip inside provides all visual styling. */
.pdp-trust-strip {
  width: 100%;
  background: none;
  border-radius: 0;
  padding: 0;
  margin-top: 8px;
}

.pdp-trust-strip .trust-badges-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 14px 20px;
  margin: 0;
  background: #faf8f4;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.pdp-trust-strip .trust-badges-strip.trust-badges-image {
  padding: 10px 14px;
  margin: 0;
}

.pdp-trust-strip .trust-badges-strip.trust-badges-image img {
  width: 85%;
  max-width: 85%;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

.pdp-trust-strip .trust-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #5a5a5a;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.pdp-trust-strip .trust-badge-item svg {
  color: #7A9A7A;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.pdp-trust-strip .trust-badge-divider {
  width: 1px;
  height: 24px;
  background: rgba(0, 0, 0, 0.08);
}

/* Hide mobile trust line on desktop */
@media (min-width: 769px) {
  .pdp-trust-strip .mobile-trust-line {
    display: none;
  }
}

.product-gallery {
  width: 100%;
  position: relative;
  max-width: 100%;
}

/* Trust Assurance Strip - Quiet, Reassuring, Confidence-Building */
.trust-assurance-strip {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 32px;
  margin-top: 22px;
  margin-bottom: 28px;
  padding: 0;
  border: none;
  background: none;
}

/* Scoped to product page trust strip only — homepage trust uses style.css */
.trust-assurance-strip .trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.4;
  font-family: var(--font-sans);
  text-align: center;
}

.trust-assurance-strip .trust-item svg {
  width: 24px;
  height: 24px;
  color: #7A9A84;
  flex-shrink: 0;
  opacity: 1;
  stroke-width: 1.5;
  display: block;
}

.trust-assurance-strip .trust-item span {
  color: var(--text-muted);
  font-weight: 400;
  white-space: nowrap;
  text-align: center;
}

/* Mobile: Horizontal compact strip (scoped to product page trust strip only) */
@media (max-width: 768px) {
  .trust-assurance-strip {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0;
    margin: 12px 0;
    padding: 10px 0;
    justify-content: space-between;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .trust-assurance-strip .trust-item {
    flex: 1;
    font-size: 9px;
    gap: 4px;
    min-width: unset;
    padding: 0 4px;
  }

  .trust-assurance-strip .trust-item svg {
    width: 16px;
    height: 16px;
  }

  .trust-assurance-strip .trust-item span {
    white-space: nowrap;
    font-size: 9px;
  }
}

/* Tablet: Single row, equal spacing */
@media (min-width: 768px) and (max-width: 1023px) {
  .trust-assurance-strip {
    gap: 28px;
  }
}

.product-rating {
  margin-bottom: var(--spacing-md);
  display: none;
}

.product-rating.has-ratings {
  display: flex !important;
}

.rating-stars {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 0.9rem;
  line-height: 1.3;
}

.rating-stars-display {
  font-size: 1rem;
  letter-spacing: 2px;
  color: #D4A574;
  line-height: 1;
  font-family: var(--font-serif);
}

.rating-value {
  font-weight: 500;
  color: var(--text-dark);
  font-size: 0.9rem;
  margin-left: 4px;
}

.rating-separator {
  color: var(--text-muted);
  margin: 0 6px;
  font-size: 0.9rem;
  opacity: 0.4;
}

.rating-count {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 400;
}

.product-main-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: var(--white);
  aspect-ratio: 1 / 1;
  max-height: 600px;
  min-height: 400px;
  width: 100%;
  cursor: zoom-in;
  box-shadow: none;
  transition: box-shadow 0.3s ease;
  display: block;
}

.product-main-image:hover {
  box-shadow: none;
}

/* Badge overlaid on desktop hero image — top-left corner */
.badge-on-image {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 10;
  pointer-events: none;
}

.product-main-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  max-width: 100%;
  max-height: 100%;
  position: relative;
  z-index: 1;
}

.product-main-image:hover img {
  transform: scale(1.03);
}

.product-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-cream);
}

.product-gallery-images {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 100px));
  gap: 10px;
  margin-top: var(--spacing-lg);
  max-width: 100%;
  justify-content: start;
}

.gallery-image-item {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition-smooth);
  overflow: hidden;
  background: var(--bg-cream);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}

.gallery-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-image-item:hover {
  border-color: var(--accent-sage);
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.gallery-image-item:hover img {
  transform: scale(1.05);
}

.gallery-image-item.active {
  border-color: var(--accent-sage);
  border-width: 3px;
  box-shadow: 0 0 0 2px rgba(122, 154, 122, 0.2), 0 4px 12px rgba(0, 0, 0, 0.12);
}

.product-info {
  order: 2;
}

/* Breadcrumb removed — editorial PDP redesign */

.product-title {
  font-family: 'Canela', 'Playfair Display', serif;
  font-size: 3.25rem;
  font-weight: 400;
  margin-bottom: var(--spacing-xs);
  color: var(--text-dark);
  line-height: 1.1;
  letter-spacing: -0.015em;
}

.product-subtitle {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: var(--spacing-lg);
  line-height: 1.6;
  font-weight: 400;
}

.product-pricing .current-price {
  font-family: var(--font-sans);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--text-dark);
}

.product-section {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-soft);
}

.product-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.ritual-summary h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: var(--spacing-md);
  color: var(--text-dark);
}

.ritual-text {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-dark);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.product-section.why-love-this {
  margin-top: 8px;
}

.key-benefits h3 {
  font-family: 'Canela', 'Playfair Display', serif;
  font-size: 1.375rem;
  margin-bottom: 16px;
  color: var(--text-dark);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.benefits-list li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.benefits-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--accent-sage);
  font-weight: 700;
  font-size: 1.1rem;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(122, 154, 122, 0.1);
  border-radius: 50%;
}

@media (max-width: 640px) {
  .benefits-list {
    grid-template-columns: 1fr;
  }
}

.product-section.variants {
  margin-bottom: 16px;
  padding-bottom: 16px;
}

.variants h3,
.share-label,
.payment-label,
.delivery-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  margin-bottom: 10px;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.variant-options {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}

.variant-btn {
  padding: 8px 16px;
  background: var(--bg-cream);
  border: 1.5px solid var(--border-soft);
  border-radius: 8px;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  width: auto;
  min-width: 72px;
}

.variant-btn:hover {
  border-color: var(--accent-sage);
  background: var(--bg-soft);
}

.variant-btn.active {
  background: rgba(122, 154, 122, 0.12);
  color: var(--text-dark);
  border-color: #7A9A7A;
  border-width: 1.5px;
}

.variant-btn.active .variant-mrp {
  color: var(--text-muted);
}

.tax-inclusive-note {
  margin-top: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: var(--font-sans);
}

.product-actions {
  display: flex;
  gap: var(--spacing-md);
  margin: var(--spacing-lg) 0;
  align-items: center;
  flex-wrap: nowrap;
}

.btn-add-cart,
.btn-buy-now {
  flex: 1 1 0;
  min-width: 120px;
  padding: 0 20px;
  height: 44px;
  border-radius: 28px;
  border: none;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  letter-spacing: 0.02em;
  text-transform: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-add-cart {
  background: var(--accent-sage);
  color: var(--white);
  box-shadow: 0 2px 6px rgba(122, 154, 122, 0.18);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.btn-add-cart .cart-icon {
  stroke: white;
  color: white;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.btn-add-cart:hover {
  background: var(--accent-sage-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(122, 154, 122, 0.25);
}

.btn-add-cart:active {
  transform: translateY(0);
}

.btn-buy-now {
  background: transparent;
  color: var(--accent-sage);
  border: 1px solid rgba(122, 154, 122, 0.5);
  box-shadow: none;
}

.btn-buy-now:hover {
  background: var(--accent-sage);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(122, 154, 122, 0.3);
}

.btn-buy-now:active {
  transform: translateY(0);
}

.btn-wishlist {
  width: 50px;
  height: 50px;
  background: var(--bg-cream);
  border: 2px solid var(--border-soft);
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.btn-wishlist:hover {
  border-color: var(--accent-sage);
  color: var(--accent-sage);
}

.btn-wishlist.active {
  color: var(--accent-sage);
  border-color: var(--accent-sage);
}

/* Social Share Buttons */
.product-share {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-soft);
}

.share-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.share-buttons {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-soft);
  background: var(--white);
  color: var(--text-dark) !important;
  text-decoration: none;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.share-btn svg {
  width: 18px;
  height: 18px;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.share-btn svg path {
  fill: #1E1919 !important;
}

.share-btn:hover svg path {
  fill: white !important;
}

/* Copy button uses stroke */
.share-copy svg path,
.share-copy svg rect {
  fill: none !important;
  stroke: #1E1919 !important;
}

.share-copy:hover svg path,
.share-copy:hover svg rect {
  stroke: white !important;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.share-facebook:hover {
  background: #1877F2;
  color: white;
  border-color: #1877F2;
}

.share-twitter:hover {
  background: #1DA1F2;
  color: white;
  border-color: #1DA1F2;
}

.share-whatsapp:hover {
  background: #25D366;
  color: white;
  border-color: #25D366;
}

.share-instagram {
  background: var(--white);
  color: var(--text-dark);
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.share-instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.share-pinterest:hover {
  background: #BD081C;
  color: white;
  border-color: #BD081C;
}

.share-copy:hover {
  background: var(--accent-sage);
  color: white;
  border-color: var(--accent-sage);
}

/* Image Lightbox */
.lightbox,
.product-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active,
.product-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.stock-counter {
  margin: var(--spacing-md) 0;
  padding: var(--spacing-md);
  background: var(--bg-cream);
  border-radius: 12px;
  border: 1px solid var(--border-soft);
}

.stock-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
  font-weight: 500;
}

.stock-bar {
  height: 8px;
  background: var(--border-soft);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}

.stock-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-sage) 0%, var(--accent-sage-dark) 100%);
  border-radius: 999px;
  transition: width 0.5s ease;
  box-shadow: 0 2px 4px rgba(122, 154, 122, 0.3);
}

.product-trust {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-top: var(--spacing-md);
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--border-soft);
}

.product-trust span {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  color: var(--text-muted);
  font-weight: 400;
}

.product-trust span::before {
  content: '✓';
  color: var(--accent-sage);
  font-weight: 600;
  font-size: 1rem;
}

/* RITUAL & OUTCOME SECTION */
.product-ritual-outcome {
  background: linear-gradient(135deg, #faf8f4 0%, #f5f3ed 100%);
  padding: 50px var(--spacing-md);
  border-top: 1px solid var(--border-soft);
}

.product-ritual-outcome h2 {
  font-family: 'Canela', 'Playfair Display', serif;
  font-size: 1.375rem;
  margin-bottom: 24px;
  color: var(--text-dark);
  font-weight: 400;
  letter-spacing: -0.02em;
  text-align: center;
}

.product-ritual-outcome .ritual-text {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-dark);
  font-weight: 400;
  letter-spacing: 0.01em;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* USAGE STEPS */
.product-usage {
  background: var(--white);
  padding: 50px var(--spacing-md);
  border-top: 1px solid var(--border-soft);
}

.product-usage h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: var(--spacing-lg);
  color: var(--text-dark);
  font-weight: 600;
  letter-spacing: -0.02em;
  text-align: center;
}

.usage-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 968px) {
  .usage-steps {
    grid-template-columns: 1fr;
  }
}

.usage-step {
  background: linear-gradient(135deg, #ffffff 0%, #faf8f4 100%);
  padding: 28px;
  border-radius: 20px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  position: relative;
  border: 1px solid var(--border-soft);
  transition: all 0.3s ease;
}

.usage-step:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  border-color: var(--accent-sage);
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7A9A7A 0%, #6B8B6B 100%);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px;
  font-family: var(--font-sans);
  box-shadow: 0 4px 12px rgba(122, 154, 122, 0.3);
}

.usage-step h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-dark);
  display: inline-block;
  margin-left: 8px;
  letter-spacing: -0.01em;
}

.usage-step p {
  color: var(--text-dark);
  line-height: 1.8;
  font-size: 0.95rem;
  margin: 0;
}

/* PRODUCT DETAILS PREMIUM (Combined Section) */
.product-details-premium {
  background: var(--white);
  padding: 60px var(--spacing-md);
  border-top: 1px solid var(--border-soft);
}

/* Single grid for desktop and mobile — 3 cols desktop, 1 col mobile via media query */
.details-grid,
.product-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.detail-card {
  height: auto;
  min-height: unset;
  background: var(--bg-light);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--border-soft);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.detail-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
  border-color: var(--accent-sage);
}

.detail-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border-soft);
}

.detail-icon {
  width: 24px;
  height: 24px;
  color: var(--accent-sage);
  flex-shrink: 0;
}

.detail-card-header h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
  letter-spacing: -0.01em;
}

.detail-card-content {
  flex: 1;
}

.detail-section {
  margin-bottom: 24px;
}

.detail-section:last-child {
  margin-bottom: 0;
}

.detail-section h4 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.detail-section p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin: 0;
  white-space: pre-line;
}

.detail-card-content>p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin: 0;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-soft);
}

.info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  flex-shrink: 0;
  min-width: 100px;
}

.info-value {
  font-size: 0.95rem;
  color: var(--text-dark);
  text-align: right;
  flex: 1;
  line-height: 1.5;
}

@media (max-width: 968px) {

  .details-grid,
  .product-info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .detail-card {
    padding: 24px;
  }
}

/* RELATED PRODUCTS */
.related-products {
  background: var(--bg-cream);
  padding: var(--spacing-2xl) var(--spacing-md);
}

/* RESPONSIVE */
/* Mobile Optimizations */
@media (max-width: 768px) {
  .product-hero {
    padding: 16px 12px;
  }

  .product-hero-inner {
    gap: 20px;
  }

  .product-media-card {
    padding: 0;
    border-radius: 0;
    gap: 8px;
  }

  .product-main-image {
    border-radius: 12px;
    min-height: 280px;
    max-height: 350px;
    aspect-ratio: 1/1;
  }

  .product-gallery-images {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 12px;
  }

  .gallery-image-item {
    border-radius: 8px;
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }

  .trust-assurance-strip {
    gap: 16px;
    margin-top: 12px;
    margin-bottom: 0;
    justify-content: space-around;
  }

  .trust-assurance-strip .trust-item {
    font-size: 10px;
    gap: 6px;
    min-width: unset;
  }

  .trust-assurance-strip .trust-item svg {
    width: 18px;
    height: 18px;
  }

  .product-info {
    padding: 0 4px;
  }

  .product-title {
    font-size: 1.6rem;
    margin-bottom: 6px;
    line-height: 1.25;
  }

  .product-subtitle {
    font-size: 0.9rem;
    margin-bottom: 16px;
    line-height: 1.5;
  }

  .product-section {
    margin-bottom: 16px;
    padding-bottom: 16px;
  }

  .key-benefits h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  .variants h3 {
    font-size: 0.8rem;
    margin-bottom: 8px;
  }

  .benefits-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .benefits-list li {
    padding: 8px 0 8px 26px;
    font-size: 0.9rem;
  }

  .benefits-list li:before {
    top: 8px;
    font-size: 0.9rem;
  }

  .variant-btn {
    padding: 8px 14px;
    font-size: 0.85rem;
    border-radius: 8px;
    min-width: 64px;
  }

  /* CTA buttons — product-page-mobile.css is SINGLE SOURCE OF TRUTH for mobile.
     These are kept as non-!important fallbacks for pages without .product-page body class. */
  .product-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
    margin: 16px 0;
    align-items: stretch;
  }

  .btn-add-cart {
    flex: 1 1 0;
    width: auto;
    min-width: unset;
    padding: 14px 12px;
    font-size: 0.9rem;
    border-radius: 28px;
  }

  .btn-buy-now {
    flex: 1 1 0;
    width: auto;
    min-width: unset;
    padding: 14px 12px;
    font-size: 0.9rem;
    border-radius: 28px;
    background: transparent;
    color: var(--accent-sage);
    border: 2px solid var(--accent-sage);
  }

  .btn-wishlist {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    min-width: 48px;
    font-size: 1.2rem;
    border-radius: 28px;
  }

  .product-share {
    margin-top: 12px;
    padding-top: 12px;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
    align-items: center;
  }

  .share-label {
    font-size: 0.8rem;
    flex-shrink: 0;
  }

  .share-buttons {
    display: flex;
    gap: 6px;
    flex-wrap: nowrap;
  }

  .share-btn {
    width: 34px;
    height: 34px;
    border-radius: 8px;
  }

  .share-btn svg {
    width: 15px;
    height: 15px;
  }

  .stock-counter {
    padding: 12px;
    margin: 12px 0;
    border-radius: 10px;
  }

  .usage-steps {
    gap: 16px;
  }

  .usage-step {
    padding: 20px;
    border-radius: 14px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .usage-step h3 {
    font-size: 1rem;
    margin-left: 6px;
  }

  .usage-step p {
    font-size: 0.9rem;
  }

  .product-ritual-outcome {
    padding: 24px 16px;
  }

  .product-ritual-outcome h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }

  .product-ritual-outcome .ritual-text {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .product-usage {
    padding: 24px 16px;
  }

  .product-usage h2 {
    font-size: 1.3rem;
    margin-bottom: 16px;
  }

  .usage-step {
    padding: 16px;
    border-radius: 12px;
  }

  .step-number {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
    margin-bottom: 8px;
  }

  .usage-step h3 {
    font-size: 0.9rem;
    margin-left: 0;
    display: block;
    margin-top: 8px;
  }

  .usage-step p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .product-details-premium {
    padding: 24px 16px;
  }

  .details-grid {
    gap: 12px;
  }

  .detail-card {
    padding: 16px;
    border-radius: 12px;
  }

  .detail-card-header {
    margin-bottom: 12px;
    padding-bottom: 10px;
  }

  .detail-card-header h3 {
    font-size: 1rem;
  }

  .detail-icon {
    width: 20px;
    height: 20px;
  }

  .detail-section {
    margin-bottom: 16px;
  }

  .detail-section h4 {
    font-size: 0.75rem;
    margin-bottom: 6px;
  }

  .detail-section p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .info-item {
    padding: 8px 0;
  }

  .info-label {
    font-size: 0.75rem;
    min-width: 80px;
  }

  .info-value {
    font-size: 0.85rem;
  }

  /* Related products mobile */
  .related-products {
    padding: 24px 16px;
  }

  .related-products h2 {
    font-size: 1.3rem;
    margin-bottom: 16px;
  }

  /* FAQ mobile */
  .product-faq {
    padding: 24px 16px;
  }

  .faq-item {
    margin-bottom: 8px;
  }

  .faq-question {
    padding: 14px;
  }

  .faq-question h3 {
    font-size: 0.9rem;
  }

  .faq-answer p {
    font-size: 0.85rem;
  }
}

@media (min-width: 768px) {
  .product-hero-inner {
    grid-template-columns: 0.42fr 0.58fr;
    gap: var(--spacing-2xl);
    align-items: start;
  }

  .product-media-card {
    order: 1;
  }

  .product-info {
    order: 2;
    padding-left: var(--spacing-lg);
  }

  .usage-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-gallery-images {
    grid-template-columns: repeat(auto-fill, minmax(100px, 100px));
    gap: var(--spacing-sm);
  }

  .gallery-image-item {
    width: 100px;
    height: 100px;
  }

  .texture-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .practical-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .product-hero {
    padding: var(--spacing-2xl) var(--spacing-md);
  }

  .product-hero-inner {
    gap: var(--spacing-2xl);
  }

  .product-title {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-sm);
  }

  .product-subtitle {
    font-size: 1.2rem;
  }

  .product-main-image {
    max-height: 700px;
  }

  .product-image-placeholder {
    height: 600px;
  }

  .product-gallery-images {
    grid-template-columns: repeat(auto-fill, minmax(120px, 120px));
  }

  .gallery-image-item {
    width: 120px;
    height: 120px;
  }

  .product-section {
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
  }

  .ritual-summary h2 {
    font-size: 2.2rem;
  }

  .key-benefits h3,
  .variants h3 {
    font-size: 1.6rem;
  }
}