@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --color-cream: #f7f3ed;
  --color-white: #ffffff;
  --color-sage: #6b8f71;
  --color-sage-dark: #4a6b50;
  --color-sage-light: #a8c4ab;
  --color-brown: #5c4033;
  --color-brown-light: #8b6914;
  --color-gold: #c4a962;
  --color-text: #2c2c2c;
  --color-text-muted: #6b6b6b;
  --color-border: #e8e2d9;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --shadow-sm: 0 2px 8px rgba(44, 44, 44, 0.06);
  --shadow-md: 0 8px 32px rgba(44, 44, 44, 0.1);
  --shadow-lg: 0 16px 48px rgba(44, 44, 44, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-sage); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
}

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

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247, 243, 237, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-brown);
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--color-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-main a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
}

.nav-main a.active,
.nav-main a:hover { color: var(--color-sage-dark); }

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--color-brown);
  transition: color var(--transition);
}

.cart-btn:hover { color: var(--color-sage); }

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--color-brown);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(44,44,44,0.65) 0%, rgba(44,44,44,0.2) 60%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  color: white;
  padding: 80px 0;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 20px;
  font-weight: 700;
}

.hero p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 32px;
  line-height: 1.7;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--color-sage);
  color: white;
  border-color: var(--color-sage);
}

.btn-primary:hover {
  background: var(--color-sage-dark);
  border-color: var(--color-sage-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.6);
}

.btn-outline:hover {
  background: white;
  color: var(--color-brown);
  border-color: white;
}

.btn-secondary {
  background: var(--color-brown);
  color: white;
  border-color: var(--color-brown);
}

.btn-secondary:hover {
  background: var(--color-text);
  border-color: var(--color-text);
  color: white;
}

.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ── Sections ── */
.section { padding: 80px 0; }
.section-alt { background: var(--color-white); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--color-brown);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-bottom: 12px;
}

/* ── Product Grid ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--color-border);
}

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

.product-card-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--color-sage);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-card-body { padding: 24px; }

.product-card-body h3 {
  font-size: 1.35rem;
  color: var(--color-brown);
  margin-bottom: 8px;
}

.product-card-body p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-brown);
}

.product-price small {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-text-muted);
}

/* ── Banners ── */
.banner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.banner-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
}

.banner-card.full { grid-column: 1 / -1; min-height: 400px; }

.banner-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,44,44,0.7) 0%, transparent 60%);
}

.banner-content {
  position: relative;
  z-index: 1;
  padding: 32px;
  color: white;
}

.banner-content h3 {
  font-size: 1.75rem;
  margin-bottom: 8px;
}

.banner-content p {
  opacity: 0.9;
  margin-bottom: 16px;
  max-width: 400px;
}

/* ── Story ── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.story-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.story-content h2 {
  font-size: 2.5rem;
  color: var(--color-brown);
  margin-bottom: 24px;
}

.story-content p {
  color: var(--color-text-muted);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}

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

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-sage);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.testimonial-stars {
  color: var(--color-gold);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-sage-dark);
  font-size: 0.9rem;
}

.author-info strong {
  display: block;
  font-size: 0.9rem;
}

.author-info span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ── Features ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  text-align: center;
  padding: 32px 20px;
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--color-sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
}

.feature-card h4 {
  font-size: 1.1rem;
  color: var(--color-brown);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ── Blog ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.blog-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-body { padding: 24px; }

.blog-meta {
  font-size: 0.8rem;
  color: var(--color-sage);
  font-weight: 500;
  margin-bottom: 8px;
}

.blog-card-body h3 {
  font-size: 1.25rem;
  color: var(--color-brown);
  margin-bottom: 12px;
}

.blog-card-body p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-sage-dark);
}

.read-more:hover { text-decoration: underline; }

/* ── Product Detail ── */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.product-gallery img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.product-info h1 {
  font-size: 2.5rem;
  color: var(--color-brown);
  margin-bottom: 12px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.product-rating .stars { color: var(--color-gold); }

.product-rating span {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.product-info .price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-brown);
  margin-bottom: 24px;
}

.product-info .price small {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-weight: 400;
}

.product-description {
  color: var(--color-text-muted);
  margin-bottom: 24px;
  line-height: 1.8;
}

.product-meta-list {
  list-style: none;
  margin-bottom: 32px;
}

.product-meta-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9rem;
  display: flex;
  gap: 12px;
}

.product-meta-list strong {
  min-width: 120px;
  color: var(--color-brown);
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.qty-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-border);
  background: white;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--color-brown);
  transition: all var(--transition);
}

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

.qty-value {
  font-size: 1.1rem;
  font-weight: 600;
  min-width: 30px;
  text-align: center;
}

.product-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── Reviews Section ── */
.reviews-section { margin-top: 64px; }

.reviews-list {
  display: grid;
  gap: 20px;
}

.review-item {
  background: var(--color-white);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.review-author-name { font-weight: 600; }

.review-date {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
}

.contact-info h2 {
  font-size: 2.5rem;
  color: var(--color-brown);
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--color-text-muted);
  margin-bottom: 32px;
}

.contact-details {
  list-style: none;
  margin-bottom: 32px;
}

.contact-details li {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--color-sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-form {
  background: var(--color-white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-brown);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--color-cream);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-sage);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ── Legal Pages ── */
.page-hero {
  background: var(--color-brown);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.75rem;
  margin-bottom: 12px;
}

.page-hero p { opacity: 0.8; }

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}

.legal-content h2 {
  font-size: 1.5rem;
  color: var(--color-brown);
  margin: 40px 0 16px;
}

.legal-content h3 {
  font-size: 1.15rem;
  color: var(--color-brown);
  margin: 24px 0 12px;
}

.legal-content p,
.legal-content li {
  color: var(--color-text-muted);
  margin-bottom: 12px;
  line-height: 1.8;
}

.legal-content ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

/* ── Article ── */
.article-header {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px 40px;
  text-align: center;
}

.article-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-brown);
  margin-bottom: 16px;
}

.article-meta {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.article-featured-image {
  max-width: 900px;
  margin: 0 auto 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.article-body p {
  margin-bottom: 20px;
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.article-body h2 {
  font-size: 1.75rem;
  color: var(--color-brown);
  margin: 40px 0 16px;
}

.article-body blockquote {
  border-left: 4px solid var(--color-sage);
  padding: 20px 24px;
  margin: 32px 0;
  background: var(--color-white);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--color-brown);
}

/* ── Footer ── */
.site-footer {
  background: var(--color-brown);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  color: white;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  opacity: 0.8;
}

.footer-col h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
}

.footer-col li { margin-bottom: 10px; }

.footer-col a {
  font-size: 0.85rem;
  opacity: 0.75;
  transition: opacity var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  opacity: 0.6;
}

.payment-icons {
  display: flex;
  gap: 12px;
  font-size: 0.75rem;
}

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--color-white);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
  padding: 24px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 280px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.cookie-text a {
  color: var(--color-sage-dark);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.btn-cookie-accept {
  background: var(--color-sage);
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.85rem;
}

.btn-cookie-decline {
  background: transparent;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  padding: 10px 24px;
  border-radius: 100px;
  cursor: pointer;
  font-size: 0.85rem;
}

/* ── Order Form Modal ── */
.order-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.order-overlay.open {
  opacity: 1;
  visibility: visible;
}

.order-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: 520px;
  max-width: calc(100vw - 32px);
  max-height: calc(100vh - 32px);
  background: white;
  z-index: 2001;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.order-modal.open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.order-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
}

.order-modal-header h3 {
  font-size: 1.25rem;
  color: var(--color-brown);
}

.order-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text-muted);
}

.order-form {
  padding: 24px;
  overflow-y: auto;
}

.order-product-info {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px;
  background: var(--color-cream);
  border-radius: var(--radius);
  margin-bottom: 24px;
}

.order-product-info img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
}

.order-product-info h4 {
  font-size: 0.95rem;
  color: var(--color-brown);
  margin-bottom: 4px;
}

.order-product-price {
  font-size: 0.9rem;
  color: var(--color-sage-dark);
  font-weight: 600;
}

.order-success {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.order-success.open {
  opacity: 1;
  visibility: visible;
}

.order-success-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.order-success-content {
  position: relative;
  background: white;
  padding: 40px 32px;
  border-radius: var(--radius);
  text-align: center;
  max-width: 440px;
  box-shadow: var(--shadow-lg);
}

.order-success-icon {
  width: 64px;
  height: 64px;
  background: var(--color-sage-light);
  color: var(--color-sage-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}

.order-success-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-brown);
  margin-bottom: 12px;
}

.order-success-content p {
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ── Toast ── */
.toast {
  position: fixed;
  bottom: 100px;
  right: 24px;
  background: var(--color-sage-dark);
  color: white;
  padding: 16px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 3000;
  transform: translateX(calc(100% + 40px));
  transition: transform 0.4s ease;
  font-size: 0.9rem;
  font-weight: 500;
}

.toast.show { transform: translateX(0); }

/* ── Page Header ── */
.page-header {
  background: linear-gradient(135deg, var(--color-sage-light) 0%, var(--color-cream) 100%);
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.75rem;
  color: var(--color-brown);
  margin-bottom: 12px;
}

.page-header p {
  color: var(--color-text-muted);
  max-width: 500px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

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

/* ── Responsive ── */
@media (max-width: 1024px) {
  .product-grid,
  .testimonials-grid,
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .story-grid,
  .contact-grid,
  .product-detail { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-main { display: none; }
  .menu-toggle { display: block; }

  .nav-main.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--color-cream);
    padding: 24px;
    border-bottom: 1px solid var(--color-border);
    gap: 16px;
  }

  .product-grid,
  .testimonials-grid,
  .blog-grid,
  .banner-grid,
  .features-grid { grid-template-columns: 1fr; }

  .banner-card.full { min-height: 280px; }

  .hero-content { padding: 60px 0; }

  .footer-grid { grid-template-columns: 1fr; }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

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

  .story-stats { grid-template-columns: 1fr; }
}
