/* ===== Variables ===== */
:root {
  --green-dark: #1a4d32;
  --green: #2d6a4f;
  --green-light: #40916c;
  --green-pale: #d8f3dc;
  --red: #c41e20;
  --red-dark: #9a1819;
  --gold: #c9a227;
  --gold-light: #e8c547;
  --cream: #faf7f2;
  --cream-dark: #f0ebe3;
  --brown: #3d2c1e;
  --text: #2c2c2c;
  --text-muted: #6b6b6b;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(26, 77, 50, 0.08);
  --shadow-lg: 0 12px 48px rgba(26, 77, 50, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 108px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.btn--primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(45, 106, 79, 0.35);
}
.btn--primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 106, 79, 0.4);
}
.btn--outline {
  border: 2px solid var(--green);
  color: var(--green);
  background: transparent;
}
.btn--outline:hover {
  background: var(--green);
  color: var(--white);
}
.btn--full { width: 100%; }
.btn--sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}
.btn--lg {
  padding: 16px 36px;
  font-size: 1rem;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--brown);
  box-shadow: 0 4px 16px rgba(201, 162, 39, 0.4);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.5);
}
.btn-arrow { transition: transform 0.2s; }
.btn:hover .btn-arrow { transform: translateX(4px); }
.section-tag--light { color: var(--gold-light); }
.section-cta { text-align: center; margin-top: 48px; }

/* ===== Section Headers ===== */
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--green);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--brown);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-desc {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(45, 106, 79, 0.08);
  transition: var(--transition);
}
.header.scrolled {
  box-shadow: var(--shadow);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo__img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 8px;
}
.logo__text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--red);
}
.logo__text em {
  font-style: normal;
  color: var(--green-dark);
}
.nav {
  display: flex;
  gap: 32px;
}
.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: var(--transition);
}
.nav__link:hover,
.nav__link.active {
  color: var(--green-dark);
}
.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cart-btn {
  position: relative;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--green-dark);
  transition: var(--transition);
}
.cart-btn:hover {
  background: var(--green-pale);
}
.cart-btn__count {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  position: relative;
  z-index: 110;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
}
.menu-toggle:hover {
  background: var(--green-pale);
  border-color: var(--green-light);
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay — sits below header/menu stack */
.nav-overlay {
  display: none;
  position: fixed;
  top: 108px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 46, 31, 0.35);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}
.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}
body.nav-open {
  overflow: hidden;
}
body.nav-open .topbar {
  z-index: 220;
}
body.nav-open .header {
  z-index: 210;
}

/* ===== Topbar ===== */
.topbar {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  padding: 8px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 102;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a { color: var(--gold-light); }
.topbar a:hover { text-decoration: underline; }

/* ===== Marquee ===== */
.marquee {
  overflow: hidden;
  background: var(--red);
  color: var(--white);
  padding: 10px 0;
}
.marquee__track {
  display: flex;
  gap: 48px;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 60px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(201, 162, 39, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(45, 106, 79, 0.08) 0%, transparent 50%),
    var(--cream);
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero__orb--1 {
  width: 400px; height: 400px;
  background: rgba(45, 106, 79, 0.15);
  top: -100px; right: -100px;
}
.hero__orb--2 {
  width: 300px; height: 300px;
  background: rgba(201, 162, 39, 0.12);
  bottom: 0; left: -80px;
}
.hero__leaf {
  position: absolute;
  font-size: 2rem;
  opacity: 0.15;
  animation: float 5s ease-in-out infinite;
}
.hero__leaf--1 { top: 20%; left: 5%; }
.hero__leaf--2 { bottom: 30%; right: 8%; animation-delay: 2s; }
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__badge {
  display: inline-block;
  padding: 8px 16px;
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  color: var(--brown);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero__title em {
  font-style: italic;
  color: var(--green);
}
.hero__desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 480px;
}
.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero__stats {
  display: flex;
  gap: 40px;
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--green-dark);
}
.stat span {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.hero__visual {
  position: relative;
}
.hero__frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero__frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid rgba(201, 162, 39, 0.3);
  border-radius: var(--radius-lg);
  z-index: 1;
  pointer-events: none;
}
.hero__image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 8s ease;
}
.hero__frame:hover .hero__image { transform: scale(1.05); }
.hero__float {
  position: absolute;
  bottom: -16px;
  left: -24px;
  width: 160px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
  animation: float 4s ease-in-out infinite;
}
.hero__float img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.hero__float span {
  display: block;
  background: var(--gold);
  color: var(--brown);
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
  padding: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero__card {
  position: absolute;
  top: 24px;
  right: -16px;
  background: var(--white);
  padding: 12px 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 5s ease-in-out infinite 1s;
}
.hero__card img { width: 36px; height: 36px; border-radius: 6px; object-fit: contain; }
.hero__card strong { display: block; color: var(--green-dark); font-size: 1rem; }
.hero__card small { font-size: 0.7rem; color: var(--text-muted); }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ===== Features ===== */
.features {
  padding: 60px 0;
  background: var(--white);
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.feature {
  text-align: center;
  padding: 24px 16px;
}
.feature__icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--green-pale), var(--white));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.feature:hover .feature__icon-wrap {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feature h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 8px;
}
.feature p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===== Featured ===== */
.featured {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

/* ===== Products ===== */
.products {
  padding: 100px 0;
}
.filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 50px;
  color: var(--text-muted);
  border: 1px solid var(--cream-dark);
  background: var(--white);
  transition: var(--transition);
}
.filter-btn:hover {
  border-color: var(--green-light);
  color: var(--green);
}
.filter-btn.active {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--cream-dark);
}
.product-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 77, 50, 0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover .product-card__overlay { opacity: 1; }
.product-card__quick {
  padding: 10px 22px;
  background: var(--white);
  color: var(--green-dark);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
}
.product-card__quick:hover {
  background: var(--gold);
  color: var(--brown);
  transform: scale(1.05);
}
.product-card__quick--cart {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.product-card__quick--cart:hover {
  background: var(--white);
  color: var(--green-dark);
}
.product-card__rating {
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.product-card__rating span { color: var(--text-muted); }
.product-card__name a { color: inherit; }
.product-card__name a:hover { color: var(--green); }
.product-card__add {
  width: 42px;
  height: 42px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green-dark);
  transition: var(--transition);
  flex-shrink: 0;
}
.product-card__add:hover {
  background: var(--green);
  color: var(--white);
  transform: scale(1.08);
}
.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card__image {
  transform: scale(1.06);
}
.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  background: var(--gold);
  color: var(--brown);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 50px;
}
.product-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card__category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-light);
  margin-bottom: 6px;
}
.product-card__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 8px;
  cursor: pointer;
}
.product-card__name:hover {
  color: var(--green);
}
.product-card__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  flex: 1;
  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;
  gap: 12px;
}
.product-card__price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-dark);
}
.product-card__price small {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* ===== Banner ===== */
.banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, #0f3320 100%);
  position: relative;
  overflow: hidden;
}
.banner__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 0L24 16H40L28 26L32 40L20 30L8 40L12 26L0 16H16Z' fill='%23fff'/%3E%3C/svg%3E");
}
.banner__image-wrap { position: relative; z-index: 1; }
.banner__list {
  margin-bottom: 28px;
}
.banner__list li {
  padding: 6px 0 6px 24px;
  position: relative;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}
.banner__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-light);
  font-weight: 700;
}

/* ===== Testimonials ===== */
.testimonials {
  padding: 100px 0;
  background: var(--white);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial {
  background: var(--cream);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
}
.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-pale);
}
.testimonial__stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial p {
  color: var(--text);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.testimonial__author strong {
  display: block;
  color: var(--brown);
  font-size: 0.95rem;
}
.testimonial__author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== Newsletter ===== */
.newsletter {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
}
.newsletter__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.newsletter__content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 8px;
}
.newsletter__content p {
  color: rgba(255, 255, 255, 0.8);
}
.newsletter__form {
  display: flex;
  gap: 12px;
  flex: 1;
  max-width: 480px;
}
.newsletter__form input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.95rem;
}
.newsletter__form input:focus {
  outline: 2px solid var(--gold);
}
.banner__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.banner__image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.banner__content h2 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.banner__content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
  font-size: 1.05rem;
}

/* ===== About ===== */
.about {
  padding: 100px 0;
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about__image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about__experience {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--red);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about__experience strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
}
.about__experience span {
  font-size: 0.8rem;
  opacity: 0.9;
}
.about__image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.about__content .section-title {
  text-align: left;
}
.about__content p {
  color: var(--text-muted);
  margin-bottom: 16px;
}
.about__list {
  margin-top: 24px;
}
.about__list li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--text);
  font-size: 0.95rem;
}
.about__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* ===== Contact ===== */
.contact {
  padding: 80px 0 100px;
  background: var(--white);
}
.contact__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.contact__card {
  text-align: center;
  padding: 32px 24px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.contact__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.contact__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.contact__card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 12px;
}
.contact__card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.contact__card a:hover {
  color: var(--green);
}

/* ===== Footer ===== */
.footer {
  padding: 60px 0 24px;
  background: var(--brown);
  color: rgba(255, 255, 255, 0.7);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer__col h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer__col a,
.footer__col p {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition);
}
.footer__col a:hover { color: var(--gold-light); }
.footer__brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer__logo {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: contain;
}
.footer__brand p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold-light);
}
.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.85rem;
}

/* ===== Cart Sidebar ===== */
.cart-overlay,
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.cart-overlay.active,
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background: var(--white);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: var(--transition);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.1);
}
.cart-sidebar.active {
  transform: translateX(0);
}
.cart-sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--cream-dark);
}
.cart-sidebar__header h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--brown);
}
.cart-sidebar__close {
  font-size: 1.75rem;
  color: var(--text-muted);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}
.cart-sidebar__close:hover {
  background: var(--cream);
  color: var(--text);
}
.cart-sidebar__body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}
.cart-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 40px 0;
}
.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.cart-item__img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--cream-dark);
}
.cart-item__info {
  flex: 1;
}
.cart-item__name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--brown);
  margin-bottom: 4px;
}
.cart-item__price {
  font-size: 0.9rem;
  color: var(--green-dark);
  font-weight: 600;
}
.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}
.cart-item__qty button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream);
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-dark);
  transition: var(--transition);
}
.cart-item__qty button:hover {
  background: var(--green-pale);
}
.cart-item__qty span {
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}
.cart-item__remove {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 4px;
  transition: var(--transition);
}
.cart-item__remove:hover {
  color: var(--red);
}
.cart-sidebar__footer {
  padding: 24px;
  border-top: 1px solid var(--cream-dark);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 1.1rem;
}
.cart-total strong {
  font-size: 1.5rem;
  color: var(--green-dark);
}

/* ===== Modal ===== */
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 90%;
  max-width: 700px;
  max-height: 90vh;
  background: var(--white);
  border-radius: var(--radius-lg);
  z-index: 201;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.modal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}
.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.modal__close:hover {
  color: var(--text);
}
.modal__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-height: 90vh;
  overflow-y: auto;
}
.modal__image {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  background: var(--cream-dark);
}
.modal__details {
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.modal__category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-light);
  margin-bottom: 8px;
}
.modal__name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 12px;
}
.modal__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 16px;
}
.modal__desc {
  color: var(--text-muted);
  margin-bottom: 24px;
  flex: 1;
  line-height: 1.7;
}
.modal__meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.modal__meta span {
  display: block;
  margin-bottom: 4px;
}

/* ===== Toast ===== */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--green-dark);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 300;
  opacity: 0;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero__inner,
  .banner__inner,
  .about__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__visual { order: -1; }
  .hero__float, .hero__card { display: none; }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter__inner { flex-direction: column; text-align: center; }
  .newsletter__form { max-width: 100%; width: 100%; }
}

@media (max-width: 768px) {
  .nav-overlay {
    display: block;
  }
  .nav {
    display: flex;
    position: fixed;
    top: 108px;
    left: 0;
    right: 0;
    z-index: 215;
    background: #ffffff;
    flex-direction: column;
    padding: 4px 0 12px;
    gap: 0;
    box-shadow: 0 16px 48px rgba(15, 46, 31, 0.12);
    border-bottom: 2px solid var(--cream-dark);
    max-height: calc(100vh - 108px);
    overflow-y: auto;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
    isolation: isolate;
  }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav__link {
    display: block;
    padding: 16px 24px;
    border-bottom: 1px solid var(--cream-dark);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--brown);
    background: #ffffff;
    transition: background 0.2s ease, color 0.2s ease;
  }
  .nav__link:hover {
    background: var(--cream);
    color: var(--green-dark);
  }
  .nav__link::after {
    display: none;
  }
  .nav__link.active {
    background: var(--green-pale);
    color: var(--green-dark);
    border-left: 3px solid var(--gold);
    padding-left: 21px;
  }
  .menu-toggle {
    display: flex;
  }
  .header__actions {
    position: relative;
    z-index: 110;
  }
  .hero { padding: 120px 0 60px; }
  .hero__stats { gap: 24px; }
  .features__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .feature {
    padding: 16px 10px;
  }
  .feature__icon-wrap {
    width: 52px;
    height: 52px;
    font-size: 1.4rem;
    margin-bottom: 12px;
  }
  .feature h3 {
    font-size: 1.05rem;
  }
  .feature p {
    font-size: 0.8rem;
    line-height: 1.45;
  }
  .products { padding: 60px 0; }
  .featured { padding: 60px 0; }
  .featured .products__grid,
  .products--page .products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .featured .product-card__body,
  .products--page .product-card__body {
    padding: 12px 10px;
  }
  .featured .product-card__category,
  .products--page .product-card__category {
    font-size: 0.65rem;
    margin-bottom: 4px;
  }
  .featured .product-card__name,
  .products--page .product-card__name {
    font-size: 0.95rem;
    margin-bottom: 6px;
    line-height: 1.25;
  }
  .featured .product-card__footer,
  .products--page .product-card__footer {
    gap: 6px;
  }
  .featured .product-card__price,
  .products--page .product-card__price {
    font-size: 0.95rem;
  }
  .featured .product-card__price small,
  .products--page .product-card__price small {
    font-size: 0.68rem;
  }
  .featured .product-card__add,
  .products--page .product-card__add {
    width: 34px;
    height: 34px;
  }
  .featured .product-card__badge,
  .products--page .product-card__badge {
    top: 8px;
    left: 8px;
    padding: 3px 8px;
    font-size: 0.58rem;
  }
  .about { padding: 60px 0; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 32px;
  }
  .footer__brand {
    justify-content: flex-start;
    text-align: left;
  }
  .footer__col h4 {
    text-align: left;
  }
  .footer__col a,
  .footer__col p {
    text-align: left;
  }
  .footer__badges {
    justify-content: flex-start;
  }
  .footer__bottom {
    text-align: left;
  }
  .topbar__inner { justify-content: center; text-align: center; }
  .newsletter__form { flex-direction: column; }
}
