/* ── Announcement Bar ──────────────────────────────────────────────── */
.announcement-bar {
  background: linear-gradient(90deg, #9e4a58 0%, #c45c6e 50%, #9e4a58 100%);
  color: #fff;
  text-align: center;
  padding: 9px 16px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}

.announcement-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.04) 40px,
    rgba(255,255,255,0.04) 41px
  );
  pointer-events: none;
}

.announcement-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 14px;
  position: relative;
  z-index: 1;
}

.announcement-sep {
  color: rgba(255,255,255,0.45);
  font-size: 11px;
}

@media (max-width: 600px) {
  .announcement-sep { display: none; }
  .announcement-bar-inner { flex-direction: column; gap: 3px; }
  .announcement-bar { padding: 8px 12px; font-size: 11.5px; }
}

/* ─────────────────────────────────────────────────────────────────── */

:root {
  --brand-green: #e8a0ac;
  --brand-green-dark: #d1717f;
  --brand-green-deep: #9e4a58;
  --brand-green-light: #f5c4cc;
  --brand-pink: #c45c6e;
  --brand-cyan: #7eb8b0;
  --brand-gold: #d4a574;
  --cream: #fbf3ee;
  --cream-dark: #f5ebe6;
  --text: #3a2c2e;
  --muted: #8a7679;
  --white: #ffffff;
  --border: #e5e0d0;
  --gold: #FFCC00;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 8px 32px rgba(158, 74, 88, 0.08);
  --shadow-lg: 0 16px 48px rgba(158, 74, 88, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Tajawal', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  background-image:
    radial-gradient(circle at 10% 0%, rgba(232, 160, 172, 0.12) 0%, transparent 42%),
    radial-gradient(circle at 90% 20%, rgba(126, 184, 176, 0.08) 0%, transparent 38%);
}

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-gradient {
  background: linear-gradient(90deg, var(--brand-cyan), var(--brand-green), var(--brand-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Promo bar */
.promo-bar {
  background: linear-gradient(90deg, var(--brand-green-deep), var(--brand-pink));
  color: white;
  font-size: 13px;
  font-weight: 700;
}

.promo-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
}

.promo-sep { opacity: 0.45; }

/* Header */
.site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 900;
  color: var(--brand-green-dark);
  flex-shrink: 0;
}

.logo-img {
  display: block;
  height: 48px;
  width: auto;
  max-width: min(160px, 42vw);
  object-fit: contain;
}

.footer-logo-img {
  display: block;
  width: min(170px, 100%);
  height: auto;
  margin-bottom: 12px;
  background: white;
  border-radius: 12px;
  padding: 8px 12px;
}

.logo-text {
  font-size: 26px;
  font-weight: 900;
  color: var(--brand-green-dark);
}

.footer-logo-text {
  font-size: 24px;
  display: block;
  margin-bottom: 10px;
  color: white;
}

.logo-img {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-logo {
  height: 64px;
  width: auto;
  display: block;
  margin-bottom: 12px;
  object-fit: contain;
}

.logo-icon { flex-shrink: 0; }

.header-nav {
  display: flex;
  gap: 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}

.header-nav a:hover { color: var(--brand-green-dark); }

.cart-btn {
  position: relative;
  background: linear-gradient(135deg, var(--brand-green), var(--brand-green-dark));
  color: white;
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(209, 113, 127, 0.35);
  flex-shrink: 0;
}

.cart-count {
  background: white;
  color: var(--brand-green-dark);
  border-radius: 999px;
  padding: 1px 8px;
  font-size: 12px;
  margin-inline-start: 4px;
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(145deg, #fce4ec 0%, var(--cream) 50%, #fff 100%);
  padding: 52px 0 64px;
  overflow: hidden;
}

.hero--with-banner {
  background: none;
  padding: 0;
  min-height: 460px;
  display: flex;
  align-items: center;
}

.hero--with-banner .hero-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero--with-banner .hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(251,243,238,0.88) 0%, rgba(251,243,238,0.72) 50%, rgba(251,243,238,0.55) 100%);
  z-index: 1;
}

.hero--with-banner .hero-bg-pattern { z-index: 2; }
.hero--with-banner .container { position: relative; z-index: 3; }

.hero--classic {
  padding: 56px 0 48px;
  text-align: center;
}

.hero-classic {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo--center {
  width: min(280px, 82vw);
  margin-bottom: 12px;
}

.hero-tagline {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.hero-classic h1 {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 900;
  line-height: 1.4;
  margin: 0 0 14px;
  color: var(--brand-green-deep);
}

.hero-classic .hero-lead {
  max-width: 520px;
  margin: 0 0 24px;
  text-align: center;
}

.hero-actions--center {
  justify-content: center;
  margin-bottom: 20px;
}

.hero-trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-green-dark);
}

.hero-trust-list li {
  opacity: 0.9;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    radial-gradient(circle, rgba(209, 113, 127, 0.15) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.35;
  margin: 12px 0 16px;
  color: var(--brand-green-deep);
}

.hero-logo {
  display: block;
  width: min(240px, 78vw);
  height: auto;
  margin-bottom: 14px;
}

.hero-lead {
  font-size: 17px;
  color: var(--muted);
  margin: 0 0 24px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-badge {
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-green-dark);
}

.hero-visual {
  position: relative;
  min-height: 320px;
}

.hero-image-frame {
  position: relative;
  display: block;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(255, 255, 255, 0.85);
  background: #fff;
  text-decoration: none;
  color: inherit;
}

.hero-image-frame--product {
  background: linear-gradient(160deg, #fff 0%, var(--cream) 100%);
}

.hero-banner-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.hero-banner-img--product {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 20px;
}

.hero-float-card {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  box-shadow: 0 8px 24px rgba(158, 74, 88, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.hero-float-badge {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 800;
  color: white;
  background: linear-gradient(135deg, var(--brand-green), var(--brand-green-dark));
  padding: 6px 10px;
  border-radius: 999px;
}

.hero-float-card img {
  display: none;
}

.hero-float-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.hero-float-label strong {
  font-size: 13px;
  color: var(--brand-green-deep);
}

.hero-float-label span {
  font-size: 11px;
  color: var(--muted);
  font-weight: 700;
}

/* Brand story */
.brand-story {
  padding: 56px 0;
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.brand-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.brand-story-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.brand-story-visual--photo {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(158, 74, 88, 0.18);
}

.brand-story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  transition: transform 0.5s ease;
}

.brand-story-visual--photo:hover .brand-story-img {
  transform: scale(1.03);
}

.brand-story-visual--logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  padding: 40px 28px;
  background: linear-gradient(160deg, #fff 0%, var(--cream) 100%);
  border: 1px solid var(--border);
  box-shadow: none;
}

.brand-story-logo-only {
  display: block;
  width: min(300px, 100%);
  height: auto;
}

.brand-story-logo-caption {
  margin: 16px 0 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  text-align: center;
}

.brand-story-lead {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.85;
  margin: 0 0 20px;
}

.brand-pillars {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.brand-pillars li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}

.brand-pillar-icon {
  font-size: 26px;
  line-height: 1;
  flex-shrink: 0;
}

.brand-pillars strong {
  display: block;
  color: var(--brand-green-deep);
  margin-bottom: 4px;
  font-size: 15px;
}

.brand-pillars p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

/* Section shared */
.section-badge {
  display: inline-block;
  background: rgba(232, 160, 172, 0.18);
  color: var(--brand-green-dark);
  border: 1px solid rgba(209, 113, 127, 0.35);
  font-size: 13px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.section-badge.light {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.section-head {
  text-align: center;
  margin-bottom: 32px;
}

.section-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 900;
  margin: 0 0 10px;
  color: var(--brand-green-deep);
}

.section-lead {
  font-size: 16px;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto;
}

/* Stats */
.stats {
  padding: 0 0 8px;
  margin-top: -24px;
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.stat-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 14px;
  text-align: center;
}

.stat-icon { font-size: 28px; display: block; margin-bottom: 6px; }

.stat-num {
  display: block;
  font-size: 26px;
  font-weight: 900;
  color: var(--brand-green-dark);
  line-height: 1.2;
}

.stat-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}

/* Trust bar */
.trust-bar {
  background: white;
  border-bottom: 1px solid var(--border);
  margin-top: 20px;
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 18px 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  color: var(--brand-green-dark);
  text-align: center;
}

.trust-icon { font-size: 18px; flex-shrink: 0; }

/* Products */
.products-section {
  padding: 56px 0 40px;
  background: linear-gradient(180deg, var(--cream) 0%, #fff 100%);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
}

.loading { color: var(--muted); text-align: center; grid-column: 1 / -1; }

.product-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border);
}

.product-thumb {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
  padding: 14px;
}

.product-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 52px;
}

.product-category {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-green-dark);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
}

.product-info {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.product-info h3 {
  font-size: 16px;
  font-weight: 800;
  margin: 0;
  line-height: 1.45;
}

.product-desc {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  flex: 1;
  line-height: 1.6;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 4px;
}

.product-price {
  font-weight: 900;
  color: var(--brand-green-dark);
  font-size: 17px;
}

.product-cod {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  background: var(--cream);
  padding: 4px 8px;
  border-radius: 6px;
}

/* Trust covenant */
.trust-covenant {
  padding: 20px 0 48px;
}

.covenant-card {
  background: linear-gradient(135deg, var(--brand-green-deep), var(--brand-green-dark));
  color: white;
  border-radius: calc(var(--radius) + 4px);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(196, 92, 110, 0.35);
}

.covenant-card h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  margin: 0 0 14px;
}

.covenant-body {
  font-size: 16px;
  line-height: 1.85;
  opacity: 0.92;
  margin: 0 0 22px;
  max-width: 720px;
}

.covenant-pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}

.covenant-pills li {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 700;
}

/* Why us */
.why-us {
  background: white;
  padding: 48px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.why-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform 0.15s ease;
}

.why-card:hover { transform: translateY(-3px); }

.why-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 12px;
}

.why-card h3 {
  font-size: 16px;
  font-weight: 900;
  margin: 0 0 8px;
  color: var(--brand-green-dark);
}

.why-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

/* Reviews */
.reviews {
  padding: 48px 0;
}

.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.reviews-score {
  font-size: 32px;
  font-weight: 900;
  color: var(--brand-green-dark);
}

.reviews-stars {
  color: var(--gold);
  font-size: 20px;
  letter-spacing: 2px;
}

.reviews-count {
  font-size: 14px;
  color: var(--muted);
  font-weight: 700;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.review-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  border: 1px solid var(--border);
}

.review-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.review-avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 17px;
}

.review-name {
  font-weight: 800;
  font-size: 14px;
}

.review-verified {
  font-size: 11px;
  font-weight: 700;
  color: #2e7d5a;
  margin-inline-start: 4px;
}

.review-location {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.review-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 1px;
  margin-top: 4px;
}

.review-text {
  font-size: 14px;
  margin: 0 0 10px;
  line-height: 1.75;
}

.review-product {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  color: var(--brand-green-dark);
  background: var(--cream);
  padding: 4px 10px;
  border-radius: 999px;
}

.reviews-note {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  margin: 24px 0 0;
}

/* FAQ */
.faq {
  background: white;
  padding: 48px 0 56px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  border: 1px solid var(--border);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 15px;
  list-style: none;
  color: var(--brand-green-deep);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::before {
  content: "+";
  display: inline-block;
  width: 20px;
  color: var(--brand-green-dark);
  font-weight: 900;
}

.faq-item[open] summary::before { content: "−"; }

.faq-item p {
  margin: 12px 0 0 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

/* Buttons */
.btn {
  border: none;
  border-radius: var(--radius-sm);
  padding: 13px 22px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
  background: linear-gradient(135deg, var(--brand-green), var(--brand-green-dark));
  color: white;
  box-shadow: 0 4px 16px rgba(209, 113, 127, 0.35);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-block { width: 100%; }

.btn-outline {
  background: white;
  border: 2px solid var(--brand-green-dark);
  color: var(--brand-green-dark);
}

/* Overlay / modal */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(31, 42, 20, 0.52);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 16px;
}

.overlay[hidden] { display: none; }

.modal {
  background: white;
  border-radius: var(--radius);
  max-width: 480px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  padding: 28px;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.modal-close {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--cream);
  border: none;
  border-radius: 999px;
  width: 34px;
  height: 34px;
  cursor: pointer;
  font-size: 15px;
}

.product-modal .product-modal-thumb {
  width: 100%;
  aspect-ratio: 1/1;
  background: var(--cream);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  margin-bottom: 16px;
  overflow: hidden;
}

.product-modal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
  padding: 14px;
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
}

.qty-row button {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: white;
  font-size: 18px;
  cursor: pointer;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.cart-item-name { font-weight: 800; font-size: 14px; }
.cart-item-meta { font-size: 13px; color: var(--muted); }

.cart-item-remove {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  text-decoration: underline;
}

.cart-empty { color: var(--muted); padding: 20px 0; text-align: center; }

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
  margin: 16px 0;
}

#checkoutForm,
.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 4px;
}

#checkoutForm label,
.checkout-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.checkout-label {
  font-size: 14px;
  font-weight: 900;
  color: var(--text);
}

#checkoutForm input,
#checkoutForm select,
#checkoutForm textarea,
.checkout-form input,
.checkout-form select,
.checkout-form textarea {
  font-family: inherit;
  font-size: 16px;
  padding: 13px 15px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  resize: vertical;
  background: white;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

#checkoutForm input:focus,
#checkoutForm select:focus,
#checkoutForm textarea:focus,
.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus {
  outline: none;
  border-color: var(--brand-green-dark);
  box-shadow: 0 0 0 4px rgba(209, 113, 127, 0.14);
}

.checkout-modal--premium {
  max-width: 520px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(209, 113, 127, 0.18);
}

.checkout-modal--premium .modal-close {
  top: 16px;
  left: 16px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
}

.checkout-modal--premium > .checkout-head,
.checkout-modal--premium > .checkout-trust,
.checkout-modal--premium > .checkout-form {
  padding-left: 24px;
  padding-right: 24px;
}

.checkout-modal--premium > .checkout-form {
  padding-bottom: 24px;
}

.checkout-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 28px 24px 12px;
  background: linear-gradient(180deg, #fff8f5 0%, #ffffff 100%);
  border-bottom: 1px solid var(--border);
}

.checkout-head-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: linear-gradient(135deg, var(--brand-green-light), #fff);
  border: 1px solid rgba(209, 113, 127, 0.2);
  box-shadow: 0 6px 16px rgba(209, 113, 127, 0.12);
}

.checkout-head h2 {
  margin: 0 0 4px;
  font-size: 22px;
  font-weight: 900;
  color: var(--brand-green-deep);
}

.checkout-sub {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
}

.checkout-trust {
  list-style: none;
  margin: 0;
  padding: 14px 24px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.checkout-trust li {
  font-size: 11px;
  font-weight: 800;
  color: var(--brand-green-deep);
  background: rgba(232, 160, 172, 0.12);
  border: 1px solid rgba(209, 113, 127, 0.18);
  border-radius: 999px;
  padding: 6px 10px;
}

.checkout-submit {
  font-size: 17px;
  padding: 16px 20px;
  font-weight: 900;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(209, 113, 127, 0.35);
}

.cod-note--premium {
  border: 1px dashed rgba(209, 113, 127, 0.35);
  border-radius: 12px;
  font-weight: 800;
}

.shipping-hint {
  font-size: 12px;
  margin: -8px 0 0;
  text-align: center;
}

.checkout-summary {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--muted);
}

.summary-total {
  font-size: 16px;
  font-weight: 900;
  color: var(--text);
  border-top: 1px solid var(--border);
  padding-top: 8px;
  margin-top: 4px;
}

.summary-ship span:last-child,
.summary-free-ship span:last-child {
  color: var(--brand-green-dark);
  font-weight: 900;
}

.cod-note {
  background: var(--cream);
  border-radius: 8px;
  padding: 12px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  color: var(--brand-green-dark);
}

.form-error {
  color: #b3261e;
  font-size: 14px;
  margin: 0;
}

.thankyou-modal { text-align: center; max-width: 400px; }
.thankyou-icon { font-size: 52px; margin-bottom: 10px; }

/* Thank you page */
.ty-body {
  background: linear-gradient(165deg, #fff8f4 0%, var(--cream) 45%, #fff 100%);
  min-height: 100vh;
}

.ty-confetti {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.ty-confetti span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  opacity: 0.45;
  animation: ty-float 6s ease-in-out infinite;
}

.ty-confetti span:nth-child(1) { background: var(--brand-green-dark); top: 12%; right: 18%; animation-delay: 0s; }
.ty-confetti span:nth-child(2) { background: var(--brand-cyan); top: 22%; left: 12%; animation-delay: 0.8s; }
.ty-confetti span:nth-child(3) { background: var(--brand-gold); top: 8%; left: 40%; animation-delay: 1.4s; }
.ty-confetti span:nth-child(4) { background: var(--brand-pink); bottom: 30%; right: 8%; animation-delay: 0.4s; }
.ty-confetti span:nth-child(5) { background: var(--brand-green-light); bottom: 18%; left: 20%; animation-delay: 1.8s; }
.ty-confetti span:nth-child(6) { background: var(--brand-green-deep); top: 45%; right: 35%; animation-delay: 2.2s; }

@keyframes ty-float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.35; }
  50% { transform: translateY(-18px) scale(1.15); opacity: 0.7; }
}

.ty-header {
  position: relative;
  z-index: 2;
  padding: 16px 0;
  border-bottom: 1px solid rgba(158, 74, 88, 0.08);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
}

.ty-header-inner {
  display: flex;
  justify-content: center;
}

.ty-page {
  position: relative;
  z-index: 1;
  padding: 28px 0 56px;
}

.ty-container {
  max-width: 720px;
}

.ty-loading {
  text-align: center;
  color: var(--muted);
  padding: 48px 0;
}

.ty-hero {
  text-align: center;
  margin-bottom: 28px;
}

.ty-success-ring {
  width: 88px;
  height: 88px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(145deg, #fff, var(--cream));
  border: 3px solid rgba(209, 113, 127, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(158, 74, 88, 0.15);
  animation: ty-pop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ty-success-ring span {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-green-dark), var(--brand-green-deep));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
}

.ty-success-ring--muted span {
  background: var(--muted);
}

@keyframes ty-pop {
  0% { transform: scale(0.6); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.ty-hero h1 {
  margin: 0 0 8px;
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 900;
  color: var(--brand-green-deep);
  line-height: 1.4;
}

.ty-lead {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
  font-weight: 700;
}

.ty-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 16px;
  margin-bottom: 24px;
}

.ty-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  padding: 20px;
  box-shadow: var(--shadow);
}

.ty-card--empty {
  text-align: center;
  padding: 36px 24px;
}

.ty-label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
  margin-bottom: 8px;
}

.ty-order-id-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ty-order-id {
  flex: 1;
  min-width: 0;
  font-family: ui-monospace, Consolas, monospace;
  font-size: 15px;
  font-weight: 800;
  color: var(--brand-green-deep);
  background: var(--cream);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(209, 113, 127, 0.45);
  word-break: break-all;
}

.ty-copy-btn {
  border: none;
  background: var(--brand-green-dark);
  color: white;
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  padding: 12px 16px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
}

.ty-copy-btn:hover { background: var(--brand-green-deep); }

.ty-hint {
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}

.ty-card--summary h2 {
  margin: 0 0 14px;
  font-size: 17px;
  color: var(--brand-green-deep);
}

.ty-summary-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--muted);
  font-weight: 700;
}

.ty-summary-line span:last-child {
  text-align: left;
  color: var(--text);
}

.ty-summary-items {
  max-width: 58%;
  line-height: 1.7;
}

.ty-summary-total {
  border-bottom: none;
  padding-top: 14px;
  font-size: 16px;
}

.ty-summary-total strong {
  color: var(--brand-green-dark);
  font-size: 22px;
}

.ty-free-badge {
  margin-top: 12px;
  text-align: center;
  background: rgba(126, 184, 176, 0.15);
  color: #3d7a72;
  font-weight: 900;
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 999px;
}

.ty-steps {
  background: white;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  padding: 22px 20px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

.ty-steps h2 {
  margin: 0 0 16px;
  font-size: 18px;
  color: var(--brand-green-deep);
  text-align: center;
}

.ty-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.ty-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  position: relative;
}

.ty-step:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 19px;
  top: 52px;
  bottom: -6px;
  width: 2px;
  background: var(--border);
}

.ty-step--done:not(:last-child)::after {
  background: linear-gradient(var(--brand-green-dark), var(--border));
}

.ty-step-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.ty-step--done .ty-step-icon {
  background: var(--brand-green-dark);
  border-color: var(--brand-green-dark);
  color: white;
}

.ty-step--active .ty-step-icon {
  background: white;
  border-color: var(--brand-green-dark);
  box-shadow: 0 0 0 4px rgba(209, 113, 127, 0.15);
}

.ty-step strong {
  display: block;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 4px;
}

.ty-step p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 700;
}

.ty-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.ty-trust-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 10px;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--text);
  box-shadow: var(--shadow);
}

.ty-trust-item span {
  display: block;
  font-size: 22px;
  margin-bottom: 6px;
}

.ty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 18px;
}

.ty-cta-main,
.ty-cta-secondary {
  min-width: min(100%, 220px);
  text-align: center;
  padding: 14px 24px;
  font-weight: 900;
}

.ty-footer-note {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}

@media (max-width: 700px) {
  .ty-grid { grid-template-columns: 1fr; }
  .ty-trust { grid-template-columns: repeat(2, 1fr); }
  .ty-actions { flex-direction: column; }
  .ty-cta-main, .ty-cta-secondary { width: 100%; }
}

/* Footer */
.site-footer {
  background: var(--brand-green-deep);
  color: rgba(255, 255, 255, 0.88);
  padding: 40px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 28px;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-logo-mark {
  flex-shrink: 0;
}

.footer-brand .footer-logo-text {
  font-size: 22px;
  font-weight: 900;
  color: white;
  margin: 0;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
  opacity: 0.85;
}

.footer-brand p,
.footer-trust p {
  font-size: 14px;
  line-height: 1.75;
  margin: 0 0 6px;
  opacity: 0.85;
}

.footer-links,
.footer-trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links strong,
.footer-trust strong {
  color: white;
  font-size: 15px;
  margin-bottom: 4px;
}

.footer-links a {
  font-size: 14px;
  opacity: 0.85;
}

.footer-links a:hover { opacity: 1; color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0 28px;
  text-align: center;
  font-size: 13px;
  opacity: 0.7;
}

.muted { color: var(--muted); }

@media (max-width: 900px) {
  .header-nav { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .brand-story-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-copy h1 { font-size: 26px; }
  .modal { padding: 20px; }
  .covenant-card { padding: 24px 18px; }
  .promo-inner { font-size: 12px; }
}

/* Product detail page */
.pd-back { padding: 8px 14px; font-size: 13px; }

.product-page { padding-bottom: 80px; }

.pd-hero-section {
  background: linear-gradient(145deg, #fff8f0 0%, var(--cream) 60%, #fff 100%);
  padding: 32px 0 40px;
}

.pd-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.pd-hero-frame {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd-hero-img {
  width: 100%;
  border-radius: var(--radius);
}

.pd-hero-img--photo {
  max-height: 420px;
  object-fit: contain;
  background: transparent;
  border: none;
  box-shadow: none;
}

.pd-hero-img--svg {
  background: linear-gradient(135deg, #f5f0eb, #fff);
  padding: 24px;
  object-fit: contain;
  max-height: 420px;
}

.pd-hero-copy h1 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  color: var(--brand-green-deep);
  line-height: 1.45;
  margin: 10px 0 12px;
}

.pd-lead {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
  margin: 0 0 18px;
}

.pd-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
}

.pd-price {
  font-size: 32px;
  font-weight: 900;
  color: var(--brand-green-dark);
}

.pd-weight {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  background: var(--cream-dark);
  padding: 4px 10px;
  border-radius: 999px;
}

.pd-pills {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.pd-pills li {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 700;
}

.pd-qty-row {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
}

.pd-qty-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: var(--cream-dark);
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
}

.pd-note { font-size: 12px; margin-top: 12px; }

/* Premium order form — product page */
.pd-order-box {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf8 100%);
  border-radius: calc(var(--radius) + 4px);
  padding: 24px 22px 22px;
  scroll-margin-top: 90px;
  box-shadow:
    0 4px 6px rgba(158, 74, 88, 0.04),
    0 20px 50px rgba(158, 74, 88, 0.14);
  border: 1px solid rgba(209, 113, 127, 0.22);
  overflow: hidden;
}

.pd-order-box::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-cyan), var(--brand-green), var(--brand-gold));
}

.pd-order-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.pd-order-head-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background: linear-gradient(135deg, var(--brand-green-light), #fff);
  border: 1px solid rgba(209, 113, 127, 0.2);
  box-shadow: 0 8px 20px rgba(209, 113, 127, 0.15);
  flex-shrink: 0;
}

.pd-order-title {
  margin: 0 0 4px;
  font-size: clamp(22px, 3vw, 26px);
  font-weight: 900;
  color: var(--brand-green-deep);
  line-height: 1.2;
}

.pd-order-sub {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
}

.pd-order-trust {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pd-order-trust li {
  font-size: 11px;
  font-weight: 800;
  color: var(--brand-green-deep);
  background: rgba(232, 160, 172, 0.12);
  border: 1px solid rgba(209, 113, 127, 0.18);
  border-radius: 999px;
  padding: 6px 10px;
}

.pd-order-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pd-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pd-field-label {
  font-size: 14px;
  font-weight: 900;
  color: var(--text);
}

.pd-order-form input,
.pd-order-form select,
.pd-order-form textarea {
  font-family: inherit;
  font-size: 16px;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  width: 100%;
  resize: vertical;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.pd-order-form input::placeholder,
.pd-order-form textarea::placeholder {
  color: #b8a8ab;
  font-weight: 500;
}

.pd-order-form input:focus,
.pd-order-form select:focus,
.pd-order-form textarea:focus {
  outline: none;
  border-color: var(--brand-green-dark);
  box-shadow: 0 0 0 4px rgba(209, 113, 127, 0.14);
  background: #fff;
}

.pd-qty-row--form {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  width: 100%;
  justify-content: center;
  background: linear-gradient(180deg, #fff, var(--cream));
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
}

.pd-qty-label {
  font-size: 14px;
  font-weight: 800;
  color: var(--muted);
  margin-left: auto;
}

.pd-order-summary {
  background: linear-gradient(180deg, var(--cream) 0%, #fff 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pd-order-submit {
  font-size: 18px;
  padding: 17px 20px;
  font-weight: 900;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(209, 113, 127, 0.35);
  letter-spacing: 0.01em;
}

.pd-order-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(209, 113, 127, 0.42);
}

.pd-header-order {
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 800;
}

.btn-light {
  background: white;
  color: var(--brand-green-deep);
  border: none;
  font-weight: 900;
  padding: 14px 28px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 16px;
}

.btn-light:hover {
  background: var(--cream);
}

.pd-highlights {
  padding: 40px 0;
  background: white;
}

.pd-highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.pd-highlight {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
}

.pd-highlight span { font-size: 28px; display: block; margin-bottom: 8px; }
.pd-highlight strong { display: block; color: var(--brand-green-dark); margin-bottom: 6px; }
.pd-highlight p { margin: 0; font-size: 13px; color: var(--muted); line-height: 1.7; }

.pd-howto { padding: 8px 0 32px; }

.pd-howto .pd-info-card {
  max-width: 720px;
  margin-inline: auto;
}

.pd-gallery { padding: 20px 0 40px; }

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

.pd-info-card {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  background: white;
}

.pd-info-card img {
  width: 100%;
  height: auto;
  display: block;
}

.pd-specs-text { padding: 0 0 40px; }

.pd-specs-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.pd-specs-card h3 {
  margin: 0 0 14px;
  color: var(--brand-green-deep);
}

.pd-specs-card ul {
  margin: 0;
  padding: 0 18px 0 0;
  line-height: 2;
  color: var(--muted);
}

.pd-bottom-cta {
  background: linear-gradient(135deg, var(--brand-green-deep), var(--brand-green-dark));
  color: white;
  padding: 40px 0 48px;
}

.pd-bottom-cta-inner { text-align: center; }

.pd-bottom-cta h2 { margin: 0 0 8px; font-size: 26px; }
.pd-bottom-cta p { opacity: 0.9; margin: 0 0 20px; }

.pd-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  padding: 12px 0;
  z-index: 60;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.06);
}

.pd-sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pd-sticky-info strong {
  display: block;
  font-size: 18px;
  color: var(--brand-green-dark);
}

@media (max-width: 900px) {
  .pd-hero-grid { grid-template-columns: 1fr; }
  .pd-hero-copy { order: 1; }
  .pd-hero-media { order: 2; }
  .pd-back { display: none; }
}

.pd-brand-crumb {
  margin: 6px 0 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

.pd-brand-crumb a {
  color: var(--brand-green-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-card--brand {
  border: 1px solid rgba(158, 74, 88, 0.18);
}

.product-thumb--mosaic {
  background: linear-gradient(145deg, #f7f1ea 0%, #efe4dc 100%);
}

.brand-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  width: 100%;
  height: 100%;
  gap: 4px;
  padding: 28px 18px 14px;
}

.brand-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 10px;
}

.brand-mosaic--2 {
  grid-template-rows: 1fr;
  padding: 36px 14px 16px;
}

.brand-mosaic--3 img:nth-child(3) {
  grid-column: 1 / -1;
  max-width: 50%;
  justify-self: center;
}

.arencia-page {
  padding-bottom: 48px;
}

.arencia-hero {
  background: linear-gradient(145deg, #fff8f0 0%, var(--cream) 60%, #fff 100%);
  padding: 36px 0 28px;
}

.arencia-hero-inner {
  max-width: 720px;
}

.arencia-hero h1 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 900;
  color: var(--brand-green-deep);
  line-height: 1.35;
  margin: 10px 0 12px;
}

.arencia-lead {
  color: var(--muted);
  font-size: 16px;
  margin: 0 0 16px;
}

.arencia-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.arencia-hero-pills li {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 700;
}

.arencia-line {
  padding: 8px 0 24px;
}

.arencia-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 22px;
}

.arencia-chip {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--brand-green-deep);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.arencia-chip.is-active {
  background: var(--brand-green-deep);
  color: #fff;
  border-color: var(--brand-green-deep);
}

.arencia-group {
  margin-bottom: 36px;
}

.arencia-group-head h2 {
  margin: 0 0 4px;
  font-size: 22px;
  color: var(--brand-green-deep);
}

.arencia-group-head p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
}

.arencia-card-kicker {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--brand-green-dark);
}
