/* =============================================
   LUMYRA STORE — Premium Wellness E-Commerce
   Design tokens from landing page
   ============================================= */

:root {
  --cream: #FAF7F2;
  --warm-white: #FFFDF9;
  --sand: #E8DDD3;
  --terracotta: #C4856A;
  --terracotta-dark: #A96B52;
  --deep-brown: #3D2B1F;
  --soft-black: #1A1614;
  --gold: #C9A96E;
  --gold-light: #E8D5AA;
  --sage: #8B9D83;
  --blush: #E8C4B8;
  --error: #C75050;
  --success: #6B8F6B;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--cream);
  color: var(--soft-black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* =============================================
   NAVIGATION
   ============================================= */
.store-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 1rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200, 190, 175, 0.2);
}

.store-nav .logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--deep-brown);
  text-decoration: none;
}

.store-nav .logo span { color: var(--terracotta); }

.nav-center {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-center a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--deep-brown);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}

.nav-center a:hover { color: var(--terracotta); }

.nav-center a.active {
  color: var(--terracotta);
}

.nav-center a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--terracotta);
  border-radius: 1px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.cart-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(196, 133, 106, 0.08);
  text-decoration: none;
  transition: background 0.2s;
}

.cart-link:hover { background: rgba(196, 133, 106, 0.15); }

.cart-link svg { color: var(--deep-brown); }

.cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 18px;
  height: 18px;
  background: var(--terracotta);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
}

/* =============================================
   PAGE LAYOUT
   ============================================= */
.page-content {
  padding-top: 80px;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* =============================================
   PAGE HERO (shop/category headers)
   ============================================= */
.page-hero {
  padding: 4rem 2rem 3rem;
  text-align: center;
  background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 100%);
}

.page-hero .label {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

.page-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--deep-brown);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--terracotta);
}

.page-hero p {
  font-size: 1.05rem;
  color: #6B5D52;
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =============================================
   CATEGORY FILTERS
   ============================================= */
.filters {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.5rem 2rem;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.55rem 1.4rem;
  border: 1px solid var(--sand);
  border-radius: 50px;
  background: transparent;
  color: var(--deep-brown);
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-block;
}

.filter-btn:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}

.filter-btn.active {
  background: var(--deep-brown);
  color: var(--cream);
  border-color: var(--deep-brown);
}

/* =============================================
   PRODUCT GRID
   ============================================= */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.product-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(200, 190, 175, 0.2);
  box-shadow: 0 2px 12px rgba(61, 43, 31, 0.04);
  transition: all 0.4s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(61, 43, 31, 0.1);
}

.product-img {
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(200, 190, 175, 0.1);
}

.product-img .product-icon-lg {
  font-size: 4rem;
  opacity: 0.85;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.08));
  transform: scale(1.3);
}

.product-img .badge-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.35rem 0.8rem;
  border-radius: 50px;
  background: var(--deep-brown);
  color: var(--cream);
}

.product-img .badge-tag.sale {
  background: var(--terracotta);
  color: white;
}

.product-info {
  padding: 1.5rem;
}

.product-category-tag {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.product-info h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--deep-brown);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.product-info .short-desc {
  font-size: 0.82rem;
  color: #7A6B5D;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.product-pricing {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.price-current {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--deep-brown);
}

.price-compare {
  font-size: 0.85rem;
  color: #B0A090;
  text-decoration: line-through;
  font-weight: 300;
}

.product-card .add-btn {
  display: block;
  width: 100%;
  padding: 0.75rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid var(--deep-brown);
  border-radius: 8px;
  background: transparent;
  color: var(--deep-brown);
  cursor: pointer;
  transition: all 0.25s;
}

.product-card .add-btn:hover {
  background: var(--deep-brown);
  color: var(--cream);
}

/* Category gradient backgrounds */
.cat-visage { background: linear-gradient(135deg, #F5E6DE 0%, #FCEEE6 50%, #FFF5F0 100%); }
.cat-corps { background: linear-gradient(135deg, #E8EDDF 0%, #F0F4E8 50%, #F8FAF3 100%); }
.cat-bien-etre { background: linear-gradient(135deg, #EDE5D8 0%, #F5EFE3 50%, #FFF9F0 100%); }
.cat-bundles { background: linear-gradient(135deg, #E5DDD4 0%, #F0E8DE 50%, #FAF3EA 100%); }

/* =============================================
   BUNDLES SECTION
   ============================================= */
.bundles-section {
  padding: 5rem 2rem;
  background: var(--soft-black);
}

.bundles-header {
  text-align: center;
  margin-bottom: 3rem;
}

.bundles-header .label {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

.bundles-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.02em;
}

.bundles-header h2 em {
  font-style: italic;
  color: var(--terracotta);
}

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.bundle-card {
  background: rgba(250, 247, 242, 0.06);
  border: 1px solid rgba(250, 247, 242, 0.1);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s;
  text-decoration: none;
  display: block;
}

.bundle-card:hover {
  background: rgba(250, 247, 242, 0.1);
  transform: translateY(-4px);
}

.bundle-card .bundle-badge {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  background: var(--terracotta);
  color: white;
  margin-bottom: 1rem;
}

.bundle-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.bundle-card .bundle-desc {
  font-size: 0.85rem;
  color: rgba(250, 247, 242, 0.6);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.bundle-card .bundle-includes {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.bundle-card .bundle-includes span {
  font-size: 0.75rem;
  color: rgba(250, 247, 242, 0.5);
  padding-left: 1rem;
  position: relative;
}

.bundle-card .bundle-includes span::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--terracotta);
  font-weight: 700;
}

.bundle-pricing {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.bundle-pricing .price-current {
  color: var(--cream);
}

.bundle-pricing .price-compare {
  color: rgba(250, 247, 242, 0.35);
}

.bundle-card .add-btn {
  display: block;
  width: 100%;
  margin-top: 1.2rem;
  padding: 0.75rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid var(--terracotta);
  border-radius: 8px;
  background: transparent;
  color: var(--terracotta);
  cursor: pointer;
  transition: all 0.25s;
}

.bundle-card .add-btn:hover {
  background: var(--terracotta);
  color: white;
}

/* =============================================
   PRODUCT DETAIL PAGE
   ============================================= */
.product-detail {
  padding: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.product-detail-img {
  height: 480px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-detail-img .product-icon-xl {
  font-size: 8rem;
  opacity: 0.7;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.08));
}

.product-detail-img .badge-tag {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  background: var(--deep-brown);
  color: var(--cream);
}

.product-detail-info .breadcrumb {
  font-size: 0.75rem;
  color: #9A8B7D;
  margin-bottom: 1.5rem;
}

.product-detail-info .breadcrumb a {
  color: #9A8B7D;
  text-decoration: none;
}

.product-detail-info .breadcrumb a:hover {
  color: var(--terracotta);
}

.product-detail-info h1 {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--deep-brown);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  line-height: 1.15;
}

.product-detail-info .detail-short-desc {
  font-size: 1rem;
  color: #6B5D52;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.detail-pricing {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
}

.detail-pricing .price-current {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--deep-brown);
}

.detail-pricing .price-compare {
  font-size: 1.1rem;
}

.detail-savings {
  font-size: 0.8rem;
  color: var(--sage);
  font-weight: 500;
  margin-bottom: 2rem;
}

.detail-actions {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}

.btn-primary {
  flex: 1;
  padding: 1rem 2rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 10px;
  background: var(--deep-brown);
  color: var(--cream);
  cursor: pointer;
  transition: all 0.25s;
}

.btn-primary:hover {
  background: var(--soft-black);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(61, 43, 31, 0.15);
}

.btn-secondary {
  padding: 1rem 1.5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid var(--sand);
  border-radius: 10px;
  background: transparent;
  color: var(--deep-brown);
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-secondary:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}

.detail-features {
  margin-bottom: 2.5rem;
}

.detail-features h3 {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: #6B5D52;
  font-weight: 400;
}

.feature-item svg {
  flex-shrink: 0;
  color: var(--sage);
}

.detail-description {
  padding-top: 2rem;
  border-top: 1px solid var(--sand);
}

.detail-description h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--deep-brown);
  margin-bottom: 0.8rem;
}

.detail-description p {
  font-size: 0.95rem;
  color: #6B5D52;
  line-height: 1.8;
  font-weight: 300;
}

/* Trust signals */
.trust-signals {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 3rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(200, 190, 175, 0.2);
}

.trust-item {
  text-align: center;
}

.trust-item .trust-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 0.8rem;
  border-radius: 10px;
  background: rgba(196, 133, 106, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-item h4 {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--deep-brown);
  margin-bottom: 0.25rem;
}

.trust-item p {
  font-size: 0.72rem;
  color: #9A8B7D;
  font-weight: 300;
}

/* Bundle detail: included products */
.bundle-contents {
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(196, 133, 106, 0.04);
  border-radius: 12px;
  border: 1px solid rgba(200, 190, 175, 0.2);
}

.bundle-contents h3 {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

.bundle-contents-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.bundle-content-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem;
  background: white;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
}

.bundle-content-item:hover {
  box-shadow: 0 4px 16px rgba(61, 43, 31, 0.06);
}

.bundle-content-item .mini-img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.bundle-content-item .item-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--deep-brown);
}

.bundle-content-item .item-price {
  margin-left: auto;
  font-size: 0.82rem;
  color: #9A8B7D;
  text-decoration: line-through;
}

/* =============================================
   CART PAGE
   ============================================= */
.cart-page {
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.cart-page h1 {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--deep-brown);
  margin-bottom: 0.5rem;
}

.cart-subtitle {
  font-size: 0.9rem;
  color: #9A8B7D;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.cart-empty {
  text-align: center;
  padding: 5rem 2rem;
}

.cart-empty h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--deep-brown);
  margin-bottom: 0.8rem;
}

.cart-empty p {
  font-size: 0.95rem;
  color: #9A8B7D;
  margin-bottom: 2rem;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem;
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(200, 190, 175, 0.15);
}

.cart-item-img {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
}

.cart-item-info h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--deep-brown);
  margin-bottom: 0.2rem;
}

.cart-item-info .item-price-each {
  font-size: 0.8rem;
  color: #9A8B7D;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--sand);
  background: transparent;
  cursor: pointer;
  font-size: 1rem;
  color: var(--deep-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.qty-btn:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}

.cart-item-qty span {
  font-weight: 600;
  font-size: 0.9rem;
  min-width: 1.5rem;
  text-align: center;
}

.cart-item-total {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--deep-brown);
  min-width: 5rem;
  text-align: right;
}

.cart-item-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: #C0B0A0;
  padding: 0.3rem;
  transition: color 0.2s;
}

.cart-item-remove:hover { color: var(--error); }

.cart-summary {
  background: white;
  border-radius: 16px;
  border: 1px solid rgba(200, 190, 175, 0.15);
  padding: 2rem;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  font-size: 0.9rem;
  color: #6B5D52;
}

.cart-summary-row.total {
  border-top: 2px solid var(--sand);
  margin-top: 0.6rem;
  padding-top: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--deep-brown);
}

.cart-summary-row.total span:last-child {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
}

.cart-summary-row.savings {
  color: var(--sage);
  font-weight: 500;
}

.checkout-btn {
  display: block;
  width: 100%;
  margin-top: 1.5rem;
  padding: 1.1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: 10px;
  background: var(--deep-brown);
  color: var(--cream);
  cursor: pointer;
  transition: all 0.25s;
}

.checkout-btn:hover {
  background: var(--soft-black);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(61, 43, 31, 0.15);
}

.checkout-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.cart-trust {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

.cart-trust span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9A8B7D;
  font-weight: 500;
}

/* =============================================
   CHECKOUT FORM
   ============================================= */
.checkout-form {
  margin-top: 2rem;
  display: none;
}

.checkout-form.active {
  display: block;
}

.form-section {
  margin-bottom: 2rem;
}

.form-section h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--deep-brown);
  margin-bottom: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.form-row.full {
  grid-template-columns: 1fr;
}

.form-field label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9A8B7D;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.form-field input,
.form-field select {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  border: 1.5px solid var(--sand);
  border-radius: 10px;
  background: white;
  color: var(--deep-brown);
  transition: border-color 0.2s;
}

.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--terracotta);
}

/* =============================================
   SUCCESS / CANCEL PAGES
   ============================================= */
.result-page {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
}

.result-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.result-icon.success { background: rgba(139, 157, 131, 0.12); }
.result-icon.cancel { background: rgba(196, 133, 106, 0.1); }

.result-page h1 {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--deep-brown);
  margin-bottom: 0.8rem;
}

.result-page p {
  font-size: 1rem;
  color: #6B5D52;
  font-weight: 300;
  max-width: 400px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.result-page .order-number {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--terracotta);
  margin-bottom: 1.5rem;
}

/* =============================================
   FOOTER
   ============================================= */
.store-footer {
  padding: 3rem;
  background: var(--soft-black);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.store-footer .logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--cream);
  text-decoration: none;
}

.store-footer .logo span { color: var(--terracotta); }

.store-footer .footer-links {
  display: flex;
  gap: 2rem;
}

.store-footer .footer-links a {
  font-size: 0.78rem;
  color: rgba(250, 247, 242, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.store-footer .footer-links a:hover {
  color: var(--terracotta);
}

.store-footer p {
  font-size: 0.72rem;
  color: rgba(250, 247, 242, 0.3);
  letter-spacing: 0.05em;
}

/* =============================================
   TOAST NOTIFICATION
   ============================================= */
.cart-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(61, 43, 31, 0.15);
  border: 1px solid rgba(200, 190, 175, 0.2);
  transform: translateY(120%);
  opacity: 0;
  transition: all 0.3s ease;
  font-size: 0.85rem;
}

.cart-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.cart-toast strong {
  color: var(--deep-brown);
}

.cart-toast a {
  color: var(--terracotta);
  font-weight: 600;
  text-decoration: none;
  margin-left: 0.5rem;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .bundle-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-signals { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
}

@media (max-width: 768px) {
  .store-nav { padding: 0.8rem 1.5rem; }
  .nav-center { display: none; }
  .product-grid { grid-template-columns: 1fr; gap: 1.2rem; padding: 1.5rem; }
  .bundle-grid { grid-template-columns: 1fr; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 2rem; }
  .product-detail-img { height: 320px; }
  .feature-list { grid-template-columns: 1fr; }
  .trust-signals { grid-template-columns: 1fr; padding: 2rem 1.5rem; }
  .cart-item { flex-wrap: wrap; }
  .cart-item-total { min-width: auto; }
  .store-footer { padding: 2rem 1.5rem; flex-direction: column; text-align: center; }
  .store-footer .footer-links { gap: 1.2rem; }
  .page-hero { padding: 3rem 1.5rem 2rem; }
  .form-row { grid-template-columns: 1fr; }

  /* Mobile hamburger menu */
  .mobile-menu-btn { display: flex; }
}

@media (max-width: 480px) {
  .product-detail-info h1 { font-size: 1.6rem; }
  .detail-pricing .price-current { font-size: 1.5rem; }
  .cart-item { gap: 0.8rem; padding: 1rem; }
  .cart-trust { flex-direction: column; align-items: center; gap: 0.8rem; }
}

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.3rem;
  color: var(--deep-brown);
}

/* Loading state */
.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(250, 247, 242, 0.3);
  border-top-color: var(--cream);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.5s ease forwards;
}

/* =============================================
   STAR RATINGS (Product Cards + Detail)
   ============================================= */
.stars-row {
  display: inline-flex;
  align-items: center;
  gap: 1px;
}

.stars-row-lg {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.star-icon, .star-icon-lg {
  flex-shrink: 0;
}

/* Product card rating */
.product-card-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.product-card-rating .rating-text {
  font-size: 0.75rem;
  color: #9A8B7D;
  font-weight: 400;
}

/* Detail page rating link (below title) */
.detail-rating-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  margin-bottom: 0.8rem;
  transition: opacity 0.2s;
}

.detail-rating-link:hover {
  opacity: 0.75;
}

.detail-rating-link span {
  font-size: 0.82rem;
  color: #9A8B7D;
  font-weight: 400;
}

/* =============================================
   REVIEWS SECTION (Product Detail)
   ============================================= */
.reviews-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
  border-top: 1px solid rgba(200, 190, 175, 0.2);
}

.reviews-header {
  margin-bottom: 2rem;
}

.reviews-summary h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--deep-brown);
  margin-bottom: 1rem;
}

.reviews-average {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviews-average .avg-number {
  font-family: 'Syne', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--deep-brown);
  line-height: 1;
}

.avg-details {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.review-count-text {
  font-size: 0.82rem;
  color: #9A8B7D;
  font-weight: 400;
}

/* Review cards */
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.review-card {
  background: white;
  border: 1px solid rgba(200, 190, 175, 0.15);
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(61, 43, 31, 0.03);
  transition: box-shadow 0.2s;
}

.review-card:hover {
  box-shadow: 0 6px 24px rgba(61, 43, 31, 0.07);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.reviewer-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta), var(--gold));
  color: white;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviewer-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--deep-brown);
}

.verified-badge {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: var(--sage);
  margin-left: 0.4rem;
  padding: 0.15rem 0.5rem;
  background: rgba(139, 157, 131, 0.1);
  border-radius: 50px;
}

.review-date {
  font-size: 0.75rem;
  color: #B0A090;
  font-weight: 300;
}

.review-stars {
  margin-bottom: 0.6rem;
}

.review-text {
  font-size: 0.9rem;
  color: #6B5D52;
  line-height: 1.7;
  font-weight: 300;
}

/* =============================================
   REVIEWS RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  .reviews-section {
    padding: 2rem 1.5rem;
  }

  .reviews-average .avg-number {
    font-size: 2.2rem;
  }

  .review-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .review-card {
    padding: 1.2rem;
  }
}

@media (max-width: 480px) {
  .reviews-average {
    gap: 0.8rem;
  }

  .reviews-average .avg-number {
    font-size: 1.8rem;
  }
}

/* ==============================================
   PRODUCT PAGE v2 — 6-ZONE CONVERSION STRUCTURE
   ============================================== */

.product-page {
  /* Wrapper for the new product detail structure */
}

/* ---- Shared Section Utilities ---- */
.pd-section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.pd-section-label {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.8rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.pd-section-label::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--gold-light);
}

.pd-section-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--deep-brown);
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
  line-height: 1.2;
}

/* ---- ZONE 1: Hero (Above the fold) ---- */
.pd-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 2rem 4rem;
}

.pd-media {
  position: relative;
  height: 520px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(61, 43, 31, 0.08);
  border: 1px solid rgba(200, 190, 175, 0.15);
}

.pd-icon {
  opacity: 0.8;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.1));
  transform: scale(2.5);
}

.pd-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  background: var(--deep-brown);
  color: var(--cream);
}

.pd-badge.sale {
  background: var(--terracotta);
}

.pd-viewers {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  padding: 0.45rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--deep-brown);
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(61,43,31,0.08);
}

.viewers-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5CB85C;
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

/* Purchase panel */
.pd-purchase {
  display: flex;
  flex-direction: column;
}

.pd-breadcrumb {
  font-size: 0.75rem;
  color: #9A8B7D;
  margin-bottom: 1.2rem;
}

.pd-breadcrumb a {
  color: #9A8B7D;
  text-decoration: none;
  transition: color 0.2s;
}

.pd-breadcrumb a:hover {
  color: var(--terracotta);
}

.pd-h1 {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--deep-brown);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.pd-h1-subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--terracotta);
  letter-spacing: 0;
  line-height: 1.4;
}

.pd-rating-row {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  margin-bottom: 1rem;
  transition: opacity 0.2s;
}

.pd-rating-row:hover {
  opacity: 0.75;
}

.pd-rating-text {
  font-size: 0.8rem;
  color: #9A8B7D;
  font-weight: 400;
}

/* Pricing */
.pd-pricing {
  margin-bottom: 1rem;
}

.pd-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  margin-bottom: 0.3rem;
}

.pd-price-current {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--deep-brown);
}

.pd-price-compare {
  font-size: 1.1rem;
  color: #B0A090;
  text-decoration: line-through;
}

.pd-price-save {
  font-size: 0.8rem;
  font-weight: 700;
  color: white;
  background: var(--terracotta);
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  letter-spacing: 0.02em;
}

.pd-savings-text {
  font-size: 0.82rem;
  color: var(--sage);
  font-weight: 400;
  margin-bottom: 0.5rem;
}

/* Inline trust badges */
.pd-trust-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.pd-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: #5A4B40;
  font-weight: 600;
  background: rgba(196, 133, 106, 0.1);
  border: 1px solid rgba(196, 133, 106, 0.2);
  padding: 0.45rem 0.85rem;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 1px 4px rgba(61, 43, 31, 0.04);
}

/* CTA actions */
.pd-actions {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.btn-cta {
  font-size: 0.9rem;
  padding: 1.1rem 2rem;
  letter-spacing: 0.06em;
}

.pd-short-desc {
  font-size: 0.9rem;
  color: #6B5D52;
  font-weight: 300;
  line-height: 1.7;
  padding-top: 1.2rem;
  border-top: 1px solid var(--sand);
}

/* ---- ZONE 2: How it works ---- */
.pd-how-it-works {
  background: var(--warm-white);
  padding: 5rem 0;
  border-top: 1px solid rgba(200, 190, 175, 0.2);
}

.pd-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pd-step {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.2rem;
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(200, 190, 175, 0.12);
  box-shadow: 0 2px 12px rgba(61, 43, 31, 0.03);
  transition: box-shadow 0.25s, transform 0.25s;
}

.pd-step:hover {
  box-shadow: 0 6px 24px rgba(61, 43, 31, 0.07);
  transform: translateY(-2px);
}

.pd-step-num {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: rgba(196, 133, 106, 0.08);
  border: 1px solid rgba(196, 133, 106, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--terracotta);
  line-height: 1;
  flex-shrink: 0;
}

.pd-step-body h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--deep-brown);
  margin-bottom: 0.5rem;
}

.pd-step-body p {
  font-size: 0.88rem;
  color: #6B5D52;
  line-height: 1.7;
  font-weight: 300;
}

/* ---- ZONE 3: Benefits ---- */
.pd-benefits-section {
  padding: 5rem 0;
  background: var(--cream);
  border-top: 1px solid rgba(200, 190, 175, 0.2);
}

.pd-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pd-benefit-card {
  background: white;
  border: 1px solid rgba(200, 190, 175, 0.15);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 12px rgba(61, 43, 31, 0.04);
  transition: box-shadow 0.25s, transform 0.25s;
}

.pd-benefit-card:hover {
  box-shadow: 0 12px 40px rgba(61, 43, 31, 0.09);
  transform: translateY(-3px);
}

.pd-benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(196, 133, 106, 0.07);
  border: 1px solid rgba(196, 133, 106, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.pd-benefit-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--deep-brown);
  margin-bottom: 0.5rem;
}

.pd-benefit-card p {
  font-size: 0.85rem;
  color: #6B5D52;
  line-height: 1.65;
  font-weight: 300;
}

/* Bundle contents in Zone 3 */
.pd-bundle-contents {
  padding: 4rem 0;
  background: rgba(196, 133, 106, 0.03);
  border-top: 1px solid rgba(200, 190, 175, 0.15);
}

/* Description + Specs */
.pd-description-section {
  padding: 5rem 0;
  border-top: 1px solid rgba(200, 190, 175, 0.2);
  background: white;
}

.pd-desc-specs-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: start;
}

.pd-description .pd-section-title {
  margin-bottom: 1.5rem;
}

.pd-desc-body {
  font-size: 0.95rem;
  color: #5A4B40;
  line-height: 1.85;
  font-weight: 300;
  max-width: 640px;
}

.pd-desc-body p {
  margin-bottom: 1.2rem;
}

.pd-desc-body p:last-child {
  margin-bottom: 0;
}

.pd-desc-body strong {
  font-weight: 600;
  color: var(--deep-brown);
}

.pd-features-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* Specs table */
.pd-specs .pd-section-title {
  margin-bottom: 1.5rem;
}

.pd-specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.pd-specs-table tr {
  border-bottom: 1px solid rgba(200, 190, 175, 0.15);
}

.pd-specs-table tr:last-child {
  border-bottom: none;
}

.pd-specs-table th {
  text-align: left;
  padding: 0.85rem 0;
  font-weight: 500;
  color: #9A8B7D;
  width: 45%;
  padding-right: 1rem;
  vertical-align: top;
}

.pd-specs-table td {
  padding: 0.85rem 0;
  font-weight: 400;
  color: var(--deep-brown);
  vertical-align: top;
}

/* ---- ZONE 5: FAQ ---- */
.pd-faq-section {
  padding: 5rem 0;
  background: var(--warm-white);
  border-top: 1px solid rgba(200, 190, 175, 0.2);
}

.pd-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pd-faq-item {
  border-bottom: 1px solid rgba(200, 190, 175, 0.2);
}

.pd-faq-item:first-child {
  border-top: 1px solid rgba(200, 190, 175, 0.2);
}

.pd-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--deep-brown);
  list-style: none;
  gap: 1rem;
  user-select: none;
  transition: color 0.2s;
}

.pd-faq-question:hover {
  color: var(--terracotta);
}

.pd-faq-question::-webkit-details-marker {
  display: none;
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

details[open] .faq-chevron {
  transform: rotate(180deg);
}

.pd-faq-answer {
  padding: 0 0 1.25rem;
  overflow: hidden;
}

.pd-faq-answer p {
  font-size: 0.9rem;
  color: #6B5D52;
  line-height: 1.75;
  font-weight: 300;
}

/* ---- Policies section ---- */
.pd-policies-section {
  padding: 5rem 0;
  background: var(--cream);
  border-top: 1px solid rgba(200, 190, 175, 0.2);
}

.pd-policies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pd-policy-card {
  background: white;
  border: 1px solid rgba(200, 190, 175, 0.15);
  border-radius: 16px;
  padding: 1.8rem 1.5rem;
  box-shadow: 0 2px 12px rgba(61, 43, 31, 0.04);
  transition: box-shadow 0.25s, transform 0.25s;
}

.pd-policy-card:hover {
  box-shadow: 0 8px 32px rgba(61, 43, 31, 0.07);
  transform: translateY(-2px);
}

.pd-policy-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(196, 133, 106, 0.07);
  border: 1px solid rgba(196, 133, 106, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.pd-policy-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--deep-brown);
  margin-bottom: 0.6rem;
}

.pd-policy-card p {
  font-size: 0.83rem;
  color: #6B5D52;
  line-height: 1.7;
  font-weight: 300;
}

/* ---- ZONE 6: Bundle upsell ---- */
.pd-bundle-upsell {
  padding: 5rem 0;
  background: linear-gradient(to bottom, rgba(196, 133, 106, 0.06), transparent);
  border-top: 1px solid rgba(200, 190, 175, 0.2);
}

.pd-upsell-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pd-upsell-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: white;
  border: 1.5px solid rgba(196, 133, 106, 0.15);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 12px rgba(61, 43, 31, 0.04);
  transition: all 0.25s;
}

.pd-upsell-card:hover {
  border-color: var(--terracotta);
  box-shadow: 0 12px 40px rgba(61, 43, 31, 0.1);
  transform: translateY(-2px);
}

.puc-img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.puc-info {
  flex: 1;
}

.puc-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: rgba(196, 133, 106, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.4rem;
}

.puc-info h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--deep-brown);
  margin-bottom: 0.3rem;
}

.puc-info .puc-desc {
  font-size: 0.8rem;
  color: #9A8B7D;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.puc-price {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.puc-price-current {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: var(--deep-brown);
}

.puc-price-compare {
  font-size: 0.85rem;
  color: #B0A090;
  text-decoration: line-through;
}

.puc-arrow {
  color: var(--terracotta);
  flex-shrink: 0;
}

/* ---- Related products section ---- */
.pd-related-section {
  padding: 5rem 0 3rem;
  background: var(--warm-white);
  border-top: 1px solid rgba(200, 190, 175, 0.2);
}

.pd-related-section .pd-section-inner {
  margin-bottom: 2rem;
}

/* =============================================
   PRODUCT PAGE v2 — RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .pd-hero { gap: 3rem; }
  .pd-steps { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .pd-benefits-grid { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .pd-desc-specs-grid { grid-template-columns: 1fr; gap: 3rem; }
  .pd-policies-grid { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
}

@media (max-width: 768px) {
  .pd-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem 1.5rem 2.5rem;
  }

  .pd-media { height: 300px; }

  .pd-h1 { font-size: 1.7rem; }

  .pd-price-current { font-size: 1.8rem; }

  .pd-trust-inline { gap: 0.4rem; }
  .pd-trust-badge { font-size: 0.68rem; padding: 0.3rem 0.6rem; }

  .pd-section-inner { padding: 0 1.5rem; }

  .pd-section-title { font-size: 1.3rem; margin-bottom: 2rem; }

  .pd-how-it-works,
  .pd-benefits-section,
  .pd-bundle-contents,
  .pd-description-section,
  .pd-faq-section,
  .pd-policies-section,
  .pd-bundle-upsell,
  .pd-related-section { padding: 2.5rem 0; }

  .pd-steps { grid-template-columns: 1fr; gap: 1.5rem; }
  .pd-benefits-grid { grid-template-columns: 1fr; gap: 1rem; }
  .pd-desc-specs-grid { padding: 0 1.5rem; gap: 2rem; }
  .pd-policies-grid { grid-template-columns: 1fr; gap: 1rem; }

  .pd-upsell-card { gap: 1rem; padding: 1.2rem; }
  .puc-img { width: 64px; height: 64px; }

  .pd-related-section .product-grid { padding: 0 1.5rem 1.5rem !important; }
}

@media (max-width: 480px) {
  .pd-actions { flex-direction: column; }
  .btn-cta { text-align: center; }
  .pd-price-current { font-size: 1.6rem; }
  .pd-price-row { flex-wrap: wrap; gap: 0.5rem; }
}
