/* ============================================
   LA FERME DE GRANDOLLE — Feuille de styles
   Ambiance : rustique, chaleureux, authentique
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Lato:wght@300;400;700&display=swap');

/* === VARIABLES === */
:root {
  --cream:      #F7F0E3;
  --cream-dark: #EDE3CE;
  --white:      #FEFAF4;
  --brown-dark: #2C1810;
  --brown:      #6B4423;
  --brown-mid:  #8B5E3C;
  --olive:      #4A5C2F;
  --olive-light:#6B7F4A;
  --terra:      #C4622D;
  --terra-light:#D4845A;
  --sand:       #D4B896;
  --sand-light: #E8D5BC;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', 'Helvetica Neue', sans-serif;

  --shadow-sm:  0 2px 8px rgba(44,24,16,0.08);
  --shadow-md:  0 4px 20px rgba(44,24,16,0.12);
  --shadow-lg:  0 8px 40px rgba(44,24,16,0.16);

  --radius:     6px;
  --radius-lg:  14px;

  --nav-h: 72px;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--cream);
  color: var(--brown-dark);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.25; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { font-size: 1rem; color: var(--brown); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
  display: block;
  margin-bottom: 0.6rem;
}

.section-divider {
  width: 56px; height: 3px;
  background: var(--terra);
  border-radius: 2px;
  margin: 1.2rem 0 2rem;
}
.section-divider.centered { margin: 1.2rem auto 2rem; }

/* === LAYOUT === */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--alt { background-color: var(--cream-dark); }
.section--dark { background-color: var(--brown-dark); color: var(--cream); }
.section--dark p { color: var(--sand); }

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* === NAVIGATION === */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(247,240,227,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--sand-light);
  box-shadow: var(--shadow-sm);
  transition: background 0.3s;
}

.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px;
}

.nav__logo img { height: 48px; width: auto; }

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

.nav__links a {
  font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--brown-dark);
  position: relative; padding-bottom: 2px;
}

.nav__links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--terra);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.nav__links a:hover::after,
.nav__links a.active::after { transform: scaleX(1); }
.nav__links a.active { color: var(--terra); }

/* Cart button */
.nav__cart {
  position: relative; display: flex; align-items: center; gap: 0.5rem;
  background: var(--olive); color: var(--white) !important;
  padding: 8px 16px; border-radius: var(--radius);
  font-size: 0.82rem !important; font-weight: 700 !important;
  letter-spacing: 0.08em !important; text-transform: uppercase !important;
  transition: background 0.2s;
}
.nav__cart::after { display: none !important; }
.nav__cart:hover { background: var(--olive-light); color: var(--white) !important; }

.cart-badge {
  position: absolute; top: -6px; right: -6px;
  background: var(--terra); color: #fff;
  font-size: 0.7rem; font-weight: 700;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0); transition: all 0.2s;
}
.cart-badge.visible { opacity: 1; transform: scale(1); }

/* Mobile hamburger */
.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--brown-dark); border-radius: 2px; transition: all 0.3s; }

/* Mobile menu */
.nav__mobile {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--cream); padding: 1.5rem 24px 2rem;
  border-bottom: 1px solid var(--sand-light);
  box-shadow: var(--shadow-md);
  flex-direction: column; gap: 1.2rem;
  z-index: 999;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 1rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brown-dark);
}
.nav__mobile a.active { color: var(--terra); }

/* === HERO === */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero__bg {
  position: absolute; inset: 0;
  background-image: url('../images/hero/farm-hero.jpg');
  background-size: cover; background-position: center;
}

.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(44,24,16,0.72) 0%, rgba(44,24,16,0.35) 60%, rgba(74,92,47,0.2) 100%);
}

.hero__content {
  position: relative; z-index: 1;
  color: var(--white); max-width: 680px;
  animation: fadeUp 1s ease both;
}

.hero__eyebrow {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--terra-light);
  display: block; margin-bottom: 1rem;
}

.hero__title {
  color: var(--white); margin-bottom: 1.4rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero__text {
  font-size: 1.12rem; color: rgba(255,255,255,0.88);
  max-width: 520px; margin-bottom: 2.4rem; line-height: 1.8;
}

.hero__cta {
  display: flex; gap: 1rem; flex-wrap: wrap;
}

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 14px 28px; border-radius: var(--radius);
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; border: 2px solid transparent;
  transition: all 0.25s;
}
.btn-primary {
  background: var(--terra); color: #fff;
}
.btn-primary:hover { background: var(--terra-light); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent; color: #fff; border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.btn-green {
  background: var(--olive); color: #fff;
}
.btn-green:hover { background: var(--olive-light); color: #fff; transform: translateY(-1px); }

.btn-sm { padding: 9px 18px; font-size: 0.78rem; }

/* === CARDS === */
.card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.card__img { width: 100%; height: 220px; object-fit: cover; }
.card__body { padding: 1.4rem; }

/* === PRODUCT CARD === */
.product-card { display: flex; flex-direction: column; }
.product-card__img { height: 240px; object-fit: cover; width: 100%; }
.product-card__body { padding: 1.2rem 1.4rem; flex: 1; display: flex; flex-direction: column; }
.product-card__category {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--terra); margin-bottom: 0.3rem;
}
.product-card__name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--brown-dark); margin-bottom: 0.4rem; }
.product-card__desc { font-size: 0.88rem; color: var(--brown-mid); margin-bottom: 0.8rem; flex: 1; }
.product-card__footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; gap: 0.5rem; }
.product-card__price { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--olive); }
.product-card__unit { font-size: 0.75rem; color: var(--brown-mid); }
.product-card__add {
  background: var(--terra); color: #fff; border: none;
  padding: 8px 14px; border-radius: var(--radius);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; transition: all 0.2s;
  display: flex; align-items: center; gap: 0.3rem;
}
.product-card__add:hover { background: var(--terra-light); transform: scale(1.02); }
.product-card__add.added { background: var(--olive); }

/* === CART DRAWER === */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(44,24,16,0.5);
  z-index: 1200; opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 400px; max-width: 95vw;
  background: var(--white); z-index: 1201;
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -4px 0 40px rgba(44,24,16,0.2);
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 1.8rem;
  border-bottom: 1px solid var(--sand-light);
  background: var(--cream);
}
.cart-drawer__header h3 { font-family: var(--font-display); font-size: 1.3rem; }

.cart-close {
  background: none; border: none; font-size: 1.4rem; color: var(--brown);
  line-height: 1; padding: 4px; border-radius: 50%;
  transition: background 0.2s; display: flex;
}
.cart-close:hover { background: var(--sand-light); }

.cart-drawer__items { flex: 1; overflow-y: auto; padding: 1.2rem 1.8rem; }

.cart-empty {
  text-align: center; padding: 3rem 1rem;
  color: var(--brown-mid); font-style: italic;
}
.cart-empty span { font-size: 2.5rem; display: block; margin-bottom: 0.8rem; }

.cart-item {
  display: flex; gap: 1rem; align-items: center;
  padding: 0.9rem 0; border-bottom: 1px solid var(--sand-light);
}
.cart-item__img { width: 60px; height: 60px; border-radius: var(--radius); object-fit: cover; flex-shrink: 0; }
.cart-item__info { flex: 1; }
.cart-item__name { font-weight: 700; font-size: 0.9rem; color: var(--brown-dark); }
.cart-item__price { font-size: 0.85rem; color: var(--olive); font-weight: 600; }

.cart-item__qty {
  display: flex; align-items: center; gap: 0.5rem;
}
.qty-btn {
  background: var(--cream-dark); border: none; width: 26px; height: 26px;
  border-radius: 50%; font-size: 1rem; color: var(--brown-dark);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.qty-btn:hover { background: var(--sand); }
.qty-val { font-weight: 700; font-size: 0.9rem; min-width: 20px; text-align: center; }

.cart-drawer__footer {
  padding: 1.4rem 1.8rem 2rem;
  border-top: 2px solid var(--sand-light);
  background: var(--cream);
}
.cart-total {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.2rem;
}
.cart-total__label { font-size: 0.9rem; font-weight: 700; color: var(--brown); text-transform: uppercase; letter-spacing: 0.08em; }
.cart-total__amount { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--olive); }

/* === ORDER MODAL === */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(44,24,16,0.6);
  z-index: 1300; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
  padding: 1rem;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
  background: var(--white); border-radius: var(--radius-lg);
  max-width: 540px; width: 100%; padding: 2.5rem;
  transform: scale(0.92); transition: transform 0.3s;
  max-height: 90vh; overflow-y: auto;
}
.modal-overlay.open .modal { transform: scale(1); }
.modal h3 { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 1.5rem; }

/* === FORMS === */
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brown); margin-bottom: 0.4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 14px;
  background: var(--cream); border: 1.5px solid var(--sand);
  border-radius: var(--radius); font-family: var(--font-body);
  font-size: 0.95rem; color: var(--brown-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--olive); box-shadow: 0 0 0 3px rgba(74,92,47,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

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

.form-success {
  display: none; background: #e8f5e9; border: 1.5px solid #4caf50;
  border-radius: var(--radius); padding: 1rem 1.2rem;
  color: #2e7d32; font-weight: 600; text-align: center;
  margin-top: 1rem;
}
.form-success.show { display: block; }

.form-error {
  display: none; background: #fdecea; border: 1.5px solid #ef5350;
  border-radius: var(--radius); padding: 1rem 1.2rem;
  color: #b71c1c; font-weight: 600; text-align: center;
  margin-top: 1rem;
}
.form-error.show { display: block; }

/* === FEATURES / VALUE PROPS === */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.feature-item {
  text-align: center; padding: 2rem 1.2rem;
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.feature-icon { font-size: 2.4rem; display: block; margin-bottom: 1rem; }
.feature-item h4 { font-family: var(--font-display); font-size: 1.05rem; color: var(--brown-dark); margin-bottom: 0.5rem; }
.feature-item p { font-size: 0.88rem; line-height: 1.6; }

/* === PAGE HERO (inner pages) === */
.page-hero {
  background: var(--brown-dark);
  padding: calc(var(--nav-h) + 60px) 0 60px;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C4622D' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero__content { position: relative; }
.page-hero h1 { color: var(--cream); }
.page-hero p { color: var(--sand); max-width: 560px; margin: 1rem auto 0; }

/* === ABOUT PAGE === */
.about-story {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about-story__img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-story__img img { width: 100%; height: 460px; object-fit: cover; }

.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.value-card {
  padding: 2rem; border-radius: var(--radius-lg);
  border: 1.5px solid var(--sand-light);
  background: var(--white);
}
.value-card__icon { font-size: 2rem; margin-bottom: 1rem; }
.value-card h4 { font-family: var(--font-display); margin-bottom: 0.6rem; color: var(--olive); }
.value-card p { font-size: 0.9rem; }

/* === TARIFS PAGE === */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.pricing-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--sand-light);
  transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing-card--featured {
  border-color: var(--terra); position: relative;
}
.pricing-card--featured::before {
  content: 'Populaire'; position: absolute; top: 0; right: 0;
  background: var(--terra); color: #fff;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 14px; border-bottom-left-radius: var(--radius);
}

.pricing-card__header { background: var(--cream); padding: 2rem; border-bottom: 1px solid var(--sand-light); }
.pricing-card__category {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--terra); margin-bottom: 0.4rem;
}
.pricing-card__header h3 { font-family: var(--font-display); color: var(--brown-dark); }

.pricing-card__body { padding: 1.8rem 2rem; }
.pricing-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.65rem 0; border-bottom: 1px solid var(--sand-light);
  gap: 1rem;
}
.pricing-item:last-child { border-bottom: none; }
.pricing-item__name { font-size: 0.92rem; color: var(--brown-dark); }
.pricing-item__unit { font-size: 0.78rem; color: var(--brown-mid); }
.pricing-item__price { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--olive); white-space: nowrap; }

/* === CONTACT PAGE === */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }

.contact-info { }
.contact-info h3 { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 1.2rem; }

.contact-detail {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1.4rem;
}
.contact-detail__icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--cream-dark); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.contact-detail__text h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--terra); margin-bottom: 0.2rem; }
.contact-detail__text p { font-size: 0.92rem; }

.contact-hours { background: var(--cream); border-radius: var(--radius-lg); padding: 1.6rem; margin-top: 2rem; }
.contact-hours h4 { font-family: var(--font-display); margin-bottom: 1rem; }
.hours-row { display: flex; justify-content: space-between; padding: 0.4rem 0; border-bottom: 1px solid var(--sand-light); font-size: 0.9rem; }
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { color: var(--brown); }
.hours-row span:last-child { font-weight: 600; color: var(--olive); }

.contact-form-box {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.5rem; box-shadow: var(--shadow-md);
}
.contact-form-box h3 { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 1.8rem; }

/* === FOOTER === */
.footer {
  background: var(--brown-dark);
  color: var(--sand-light);
  padding: 60px 0 24px;
}

.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand img { filter: brightness(0.95) sepia(0.3); margin-bottom: 1rem; height: 50px; }
.footer__brand p { font-size: 0.9rem; max-width: 260px; color: var(--sand); line-height: 1.7; }

.footer__col h5 {
  font-family: var(--font-display); font-size: 1rem; color: var(--cream);
  margin-bottom: 1.2rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__col ul a { font-size: 0.88rem; color: var(--sand); transition: color 0.2s; }
.footer__col ul a:hover { color: var(--terra-light); }

.footer__col address { font-style: normal; font-size: 0.88rem; color: var(--sand); line-height: 1.9; }

.footer__bottom {
  border-top: 1px solid rgba(212,184,150,0.15);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer__bottom p { font-size: 0.8rem; color: rgba(212,184,150,0.6); }
.footer__credits { display: flex; gap: 1.5rem; }
.footer__credits a { font-size: 0.8rem; color: rgba(212,184,150,0.6); }
.footer__credits a:hover { color: var(--terra-light); }

/* === ANIMATIONS === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}

.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* === TOAST NOTIFICATION === */
.toast {
  position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(100px);
  background: var(--brown-dark); color: var(--cream);
  padding: 12px 24px; border-radius: 30px;
  font-size: 0.88rem; font-weight: 600;
  box-shadow: var(--shadow-lg); z-index: 9999;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast span { color: var(--terra-light); margin-right: 0.3rem; }

/* === FILTER TABS (catalogue) === */
.filter-tabs {
  display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 2.5rem;
}
.filter-tab {
  padding: 8px 18px; border-radius: 30px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--white); border: 1.5px solid var(--sand-light);
  color: var(--brown); cursor: pointer; transition: all 0.2s;
}
.filter-tab:hover { border-color: var(--terra); color: var(--terra); }
.filter-tab.active { background: var(--terra); border-color: var(--terra); color: #fff; }

/* Products grid */
.products-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}

/* === BREADCRUMB === */
.breadcrumb {
  display: flex; gap: 0.5rem; align-items: center;
  font-size: 0.82rem; color: var(--sand); margin-bottom: 0.8rem;
}
.breadcrumb a { color: var(--terra-light); }
.breadcrumb a:hover { color: var(--cream); }
.breadcrumb__sep { opacity: 0.5; }

/* === SEASON BANNER === */
.season-banner {
  background: linear-gradient(135deg, var(--olive) 0%, var(--olive-light) 100%);
  color: var(--white); padding: 1rem;
  text-align: center; font-size: 0.88rem; font-weight: 600;
}
.season-banner strong { color: #d4f5b0; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section { padding: 60px 0; }

  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .hero { min-height: 90vh; }
  .hero__cta { flex-direction: column; align-items: flex-start; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

  .about-story { grid-template-columns: 1fr; gap: 2rem; }
  .about-values { grid-template-columns: 1fr; }

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

  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }

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

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .products-grid { grid-template-columns: 1fr; }
  .cart-drawer { width: 100%; }
}
