/* =========================================================
   FARM UP MADA — Main Stylesheet
   Production avicole moderne à Madagascar
   ========================================================= */

/* ---------------------------------------------------------
   1. CSS CUSTOM PROPERTIES
   --------------------------------------------------------- */
:root {
  --primary:        #2E7D32;
  --primary-dark:   #1B5E20;
  --primary-light:  #4CAF50;
  --accent:         #8BC34A;
  --accent2:        #FF8F00;
  --accent2-dark:   #E65100;
  --white:          #FFFFFF;
  --light-bg:       #F1F8E9;
  --light-bg2:      #E8F5E9;
  --dark:           #1A2B1A;
  --dark2:          #263226;
  --text:           #2C3E2C;
  --text-muted:     #6B7B6B;
  --border:         #D7E9D7;

  --shadow-sm:   0 2px 8px rgba(0,0,0,.08);
  --shadow-md:   0 6px 24px rgba(0,0,0,.12);
  --shadow-lg:   0 16px 48px rgba(0,0,0,.16);
  --shadow-card: 0 4px 20px rgba(46,125,50,.12);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --transition: .3s ease;
  --transition-fast: .18s ease;

  --font: 'Poppins', sans-serif;
  --container: 1200px;
}

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

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

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
input, textarea, select { font-family: var(--font); }

/* ---------------------------------------------------------
   3. UTILITY CLASSES
   --------------------------------------------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 56px 0; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header .badge {
  display: inline-block;
  background: var(--light-bg);
  color: var(--primary);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  border: 1px solid var(--border);
  margin-bottom: 14px;
}
.section-header h2 {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-header h2 span { color: var(--primary-light); }
.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  font-size: .95rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1;
}
.btn-primary {
  background: var(--primary-light);
  color: var(--white);
  border-color: var(--primary-light);
}
.btn-primary:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(76,175,80,.35);
}
.btn-accent {
  background: var(--accent2);
  color: var(--white);
  border-color: var(--accent2);
}
.btn-accent:hover {
  background: var(--accent2-dark);
  border-color: var(--accent2-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,143,0,.35);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}
.btn-outline-green {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-green:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--light-bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

/* Animate on scroll */
.anim {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.anim.visible {
  opacity: 1;
  transform: translateY(0);
}
.anim-delay-1 { transition-delay: .1s; }
.anim-delay-2 { transition-delay: .2s; }
.anim-delay-3 { transition-delay: .3s; }
.anim-delay-4 { transition-delay: .4s; }

/* ---------------------------------------------------------
   4. TOP BAR
   --------------------------------------------------------- */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.top-bar-left a {
  color: rgba(255,255,255,.85);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition-fast);
}
.top-bar-left a:hover { color: var(--accent); }
.top-bar-left i { color: var(--accent); font-size: .8rem; }
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.top-bar-right a {
  color: rgba(255,255,255,.75);
  font-size: .95rem;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition-fast);
}
.top-bar-right a:hover { background: rgba(255,255,255,.15); color: var(--white); }
.top-bar-sep { color: rgba(255,255,255,.25); }

/* ---------------------------------------------------------
   5. HEADER & NAVIGATION
   --------------------------------------------------------- */
.header {
  background: var(--white);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
  border-bottom: 1px solid var(--border);
}
.header.scrolled { box-shadow: var(--shadow-md); }

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(46,125,50,.3);
}
.logo-img {
  height: 46px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.footer-brand .logo-img { filter: brightness(1.05); }
.logo-text { line-height: 1.1; }
.logo-title {
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  gap: 4px;
}
.logo-title .lt-farm { color: var(--primary); }
.logo-title .lt-mada { color: var(--accent2); }
.logo-subtitle {
  font-size: .72rem;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: .04em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav a {
  color: var(--text);
  font-size: .9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
  white-space: nowrap;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary-light);
  border-radius: 2px;
  transition: width var(--transition-fast);
}
.nav a:hover { color: var(--primary); background: var(--light-bg); }
.nav a:hover::after { width: 60%; }
.nav a.active { color: var(--primary); font-weight: 600; }
.nav a.active::after { width: 60%; }

.header-cta { flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}
.hamburger:hover { background: var(--light-bg); }
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-md);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--text);
  font-size: .95rem;
  font-weight: 500;
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: var(--light-bg);
  color: var(--primary);
}
.mobile-nav .btn { margin-top: 8px; width: 100%; justify-content: center; }

/* ---------------------------------------------------------
   6. PAGE HERO (inner pages)
   --------------------------------------------------------- */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  min-height: 300px;
  display: flex;
  align-items: 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='%23ffffff' fill-opacity='0.03'%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-decor {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10rem;
  color: rgba(255,255,255,.04);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero-content { padding: 48px 0; }
.page-hero-content h1 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  color: rgba(255,255,255,.7);
}
.breadcrumb a { color: var(--accent); transition: color var(--transition-fast); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: .7rem; color: rgba(255,255,255,.4); }

/* ---------------------------------------------------------
   7. HERO SECTION (homepage)
   --------------------------------------------------------- */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #388E3C 100%);
  min-height: 620px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M0 0h80v80H0V0zm20 20v40h40V20H20zm20 35a15 15 0 1 1 0-30 15 15 0 0 1 0 30z'/%3E%3C/g%3E%3C/svg%3E");
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 80px 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  font-size: .82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 22px;
  backdrop-filter: blur(4px);
}
.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-content h1 .highlight { color: var(--accent); }
.hero-content p {
  font-size: 1.08rem;
  color: rgba(255,255,255,.82);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 500px;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-icon-wrap {
  width: 340px;
  height: 340px;
  background: rgba(255,255,255,.06);
  border: 2px solid rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: float 6s ease-in-out infinite;
}
.hero-icon-wrap::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px dashed rgba(255,255,255,.15);
  border-radius: 50%;
}
.hero-icon-wrap i {
  font-size: 9rem;
  color: rgba(255,255,255,.18);
}
.hero-float-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
.hero-float-badge i { font-size: 1.2rem; color: var(--primary-light); }
.hero-float-badge.badge-top { top: 10%; left: -5%; }
.hero-float-badge.badge-bottom { bottom: 15%; right: -5%; }
.hero-float-badge.badge-bottom i { color: var(--accent2); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

/* ---------------------------------------------------------
   8. STATS BAR
   --------------------------------------------------------- */
.stats-bar {
  background: var(--white);
  padding: 40px 0;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 10;
}
.stat-item {
  text-align: center;
  padding: 20px 24px;
  border-right: 1px solid var(--border);
  transition: background var(--transition-fast);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--light-bg); }
.stat-icon {
  width: 52px;
  height: 52px;
  background: var(--light-bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.3rem;
  color: var(--primary);
  transition: all var(--transition);
}
.stat-item:hover .stat-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.08);
}
.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: .85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ---------------------------------------------------------
   9. PRODUCT CARDS
   --------------------------------------------------------- */
.products-section { background: var(--light-bg); }

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  border: 1px solid var(--border);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(46,125,50,.18);
}

.product-icon-banner {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-icon-banner i {
  font-size: 4.5rem;
  color: rgba(255,255,255,.9);
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.2));
}
.product-icon-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.06);
}

.bg-orange    { background: linear-gradient(135deg, #E65100, #FF8F00); }
.bg-teal      { background: linear-gradient(135deg, #00695C, #26A69A); }
.bg-yellow    { background: linear-gradient(135deg, #F9A825, #FFEE58); }
.bg-amber     { background: linear-gradient(135deg, #BF360C, #FF6F00); }
.bg-brown     { background: linear-gradient(135deg, #4E342E, #8D6E63); }
.bg-lime      { background: linear-gradient(135deg, #558B2F, #9CCC65); }
.bg-green     { background: linear-gradient(135deg, var(--primary-dark), var(--primary-light)); }
.bg-blue      { background: linear-gradient(135deg, #1565C0, #42A5F5); }
.bg-purple    { background: linear-gradient(135deg, #4A148C, #9C27B0); }

.product-card-body { padding: 24px; }
.product-card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.product-card-body p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.product-card-link {
  color: var(--primary);
  font-size: .88rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-fast), color var(--transition-fast);
}
.product-card-link:hover { color: var(--primary-light); gap: 10px; }

.badge-avail {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.badge-green { background: #E8F5E9; color: #2E7D32; }
.badge-orange { background: #FFF3E0; color: #E65100; }

.product-features {
  list-style: none;
  margin: 14px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--text);
}
.product-features li i { color: var(--primary-light); font-size: .8rem; flex-shrink: 0; }

/* ---------------------------------------------------------
   10. FEATURE CARDS (why us)
   --------------------------------------------------------- */
.feature-card {
  text-align: center;
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
  background: var(--white);
}
.feature-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}
.feature-icon {
  width: 72px;
  height: 72px;
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary);
  margin: 0 auto 20px;
  transition: all var(--transition);
}
.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: var(--white);
  transform: rotate(-5deg) scale(1.08);
}
.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------------------------------------------------------
   11. CTA BANNER
   --------------------------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(139,195,74,.2), transparent 60%);
}
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}
.cta-banner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------------------------------------------------------
   12. SERVICES HOME
   --------------------------------------------------------- */
.services-home { background: var(--light-bg2); }

.service-mini-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.service-mini-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
  border-color: var(--primary-light);
}
.service-mini-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  margin: 0 auto 18px;
  box-shadow: 0 6px 16px rgba(76,175,80,.3);
  transition: transform var(--transition);
}
.service-mini-card:hover .service-mini-icon { transform: scale(1.1) rotate(-5deg); }
.service-mini-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.service-mini-card p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------------------------------------------------------
   13. ABOUT PAGE
   --------------------------------------------------------- */
.about-visual {
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-visual i {
  font-size: 9rem;
  color: rgba(255,255,255,.25);
  position: relative;
  z-index: 2;
}
.about-visual::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
  top: -60px;
  right: -60px;
}
.about-visual::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
  bottom: -40px;
  left: -40px;
}

.about-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.2;
}
.about-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.values-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.value-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--light-bg);
  border: 1px solid var(--border);
  color: var(--primary);
  font-size: .82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
}
.value-badge i { font-size: .8rem; }

.mvv-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border-top: 4px solid var(--primary-light);
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
}
.mvv-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.mvv-card:nth-child(2) { border-top-color: var(--accent2); }
.mvv-card:nth-child(3) { border-top-color: var(--accent); }
.mvv-icon {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  color: var(--white);
}
.mvv-icon.green { background: linear-gradient(135deg, var(--primary-light), var(--primary)); }
.mvv-icon.amber { background: linear-gradient(135deg, var(--accent2), #FF6F00); }
.mvv-icon.lime  { background: linear-gradient(135deg, var(--accent), #689F38); }
.mvv-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.mvv-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.team-avatar {
  width: 88px;
  height: 88px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--white);
  margin: 0 auto 18px;
  box-shadow: 0 6px 20px rgba(46,125,50,.25);
}
.team-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.team-role {
  font-size: .85rem;
  color: var(--primary-light);
  font-weight: 600;
  margin-bottom: 10px;
}
.team-card p {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.method-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
}
.method-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.method-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 2px;
  background: rgba(255,255,255,.2);
  z-index: 0;
}
.method-step { text-align: center; position: relative; z-index: 1; }
.step-num-circle {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
  position: relative;
  transition: all var(--transition);
}
.method-step:hover .step-num-circle {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: scale(1.1);
}
.step-num-circle .step-dot {
  position: absolute;
  bottom: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  background: var(--accent2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .6rem;
  color: var(--white);
}
.method-step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}
.method-step p {
  font-size: .85rem;
  color: rgba(255,255,255,.72);
  line-height: 1.6;
}

/* ---------------------------------------------------------
   14. SERVICES PAGE
   --------------------------------------------------------- */
.service-block {
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.service-block:last-child { border-bottom: none; }
.service-block .grid-2 { align-items: center; gap: 56px; }

.service-visual {
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.service-visual i {
  font-size: 8rem;
  color: rgba(255,255,255,.25);
  position: relative;
  z-index: 2;
}
.service-visual::before {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
  top: -40px;
  right: -40px;
}

.service-content .service-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--light-bg);
  color: var(--primary);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid var(--border);
  margin-bottom: 16px;
}
.service-content h2 {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.25;
}
.service-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .92rem;
  color: var(--text);
  line-height: 1.5;
}
.service-list li i {
  color: var(--primary-light);
  font-size: .9rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.process-section { background: var(--light-bg); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-step {
  text-align: center;
  position: relative;
}
.process-step::after {
  content: '\f054';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: -14px;
  top: 20px;
  color: var(--border);
  font-size: .9rem;
}
.process-step:last-child::after { display: none; }
.process-num {
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 16px;
  box-shadow: 0 6px 16px rgba(46,125,50,.3);
  transition: all var(--transition);
}
.process-step:hover .process-num {
  background: var(--accent2);
  transform: scale(1.1);
}
.process-step h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.process-step p {
  font-size: .84rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 12px;
  transition: box-shadow var(--transition);
}
.faq-item.open { box-shadow: var(--shadow-card); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: var(--white);
  text-align: left;
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  transition: background var(--transition-fast);
  gap: 16px;
  border: none;
  font-family: var(--font);
}
.faq-question:hover { background: var(--light-bg); }
.faq-question i {
  color: var(--primary);
  font-size: .9rem;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-question { background: var(--light-bg); }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-answer-inner {
  padding: 0 24px 18px;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ---------------------------------------------------------
   15. GALLERY PAGE
   --------------------------------------------------------- */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 9px 20px;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 600;
  border: 2px solid var(--border);
  color: var(--text-muted);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.filter-btn:hover {
  border-color: var(--primary-light);
  color: var(--primary);
  background: var(--light-bg);
}
.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(46,125,50,.25);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); z-index: 2; }
.gallery-item.tall { grid-row: span 2; }

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
}
.gallery-placeholder i { font-size: 4rem; color: rgba(255,255,255,.5); position: relative; z-index: 2; }
.gallery-placeholder span {
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  letter-spacing: .06em;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27,94,32,.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 2.5rem; color: var(--white); }
.gallery-overlay span { color: var(--white); font-size: .88rem; font-weight: 600; }

.gallery-item[data-cat] { display: block; }
.gallery-item.hidden { display: none; }

/* ---------------------------------------------------------
   16. CONTACT PAGE
   --------------------------------------------------------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; align-items: start; }

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  margin-bottom: 16px;
}
.contact-info-card:hover { box-shadow: var(--shadow-card); transform: translateX(4px); }
.contact-info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(46,125,50,.25);
}
.contact-info-text h4 {
  font-size: .82rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 5px;
}
.contact-info-text p,
.contact-info-text a {
  font-size: .92rem;
  color: var(--text);
  line-height: 1.6;
  display: block;
  transition: color var(--transition-fast);
}
.contact-info-text a:hover { color: var(--primary); }

.social-links-contact { display: flex; gap: 10px; margin-top: 20px; }
.social-link {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  color: var(--white);
  transition: all var(--transition);
}
.social-link:hover { transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0,0,0,.2); }
.social-fb  { background: #1877F2; }
.social-ig  { background: linear-gradient(45deg, #f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.social-wa  { background: #25D366; }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.contact-form-wrap h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.contact-form-wrap > p {
  font-size: .88rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
}
.form-group label span { color: var(--accent2); }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: .93rem;
  color: var(--text);
  background: var(--white);
  transition: all var(--transition-fast);
  outline: none;
}
.form-control:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(76,175,80,.12);
}
.form-control:hover { border-color: #A5D6A7; }
textarea.form-control { resize: vertical; min-height: 140px; }
select.form-control { appearance: none; cursor: pointer; }

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

.form-success {
  display: none;
  background: var(--light-bg);
  border: 1px solid var(--primary-light);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  margin-top: 16px;
}
.form-success i { font-size: 2.5rem; color: var(--primary-light); margin-bottom: 10px; display: block; }
.form-success h4 { color: var(--primary); font-size: 1.1rem; margin-bottom: 6px; }
.form-success p { color: var(--text-muted); font-size: .9rem; }
.form-success.show { display: block; }

.map-placeholder {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(139,195,74,.15), transparent 60%);
}
.map-placeholder .container { position: relative; z-index: 2; }
.map-placeholder i {
  font-size: 4rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
  display: block;
}
.map-placeholder h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.map-placeholder p {
  font-size: .95rem;
  color: rgba(255,255,255,.72);
}

/* ---------------------------------------------------------
   17. FOOTER
   --------------------------------------------------------- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-col h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--primary-light);
  border-radius: 2px;
}

.footer-brand .logo { margin-bottom: 14px; }
.footer-brand .lt-farm { color: var(--accent) !important; }
.footer-brand .lt-mada { color: var(--accent2) !important; }
.footer-brand .logo-icon { background: rgba(255,255,255,.08); color: var(--accent); box-shadow: none; }
.footer-brand .logo-subtitle { color: rgba(255,255,255,.45); }
.footer-brand p {
  font-size: .88rem;
  line-height: 1.7;
  color: rgba(255,255,255,.55);
  margin-bottom: 20px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: all var(--transition-fast);
}
.footer-social:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a i { font-size: .7rem; color: var(--primary-light); }
.footer-links a:hover { color: var(--white); padding-left: 4px; }

.footer-contact-items { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .87rem;
  color: rgba(255,255,255,.6);
  line-height: 1.5;
}
.footer-contact-item i {
  color: var(--accent);
  font-size: .9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .83rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.55); transition: color var(--transition-fast); }
.footer-bottom a:hover { color: var(--accent); }

/* ---------------------------------------------------------
   18. SCROLL TO TOP
   --------------------------------------------------------- */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: all var(--transition);
  z-index: 999;
  cursor: pointer;
  border: none;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top:hover { background: var(--primary-light); transform: translateY(-3px); }

/* ---------------------------------------------------------
   19. RESPONSIVE 1200px
   --------------------------------------------------------- */
@media (max-width: 1200px) {
  .hero .container { padding: 64px 24px; }
  .hero-content h1 { font-size: 2.4rem; }
  .hero-icon-wrap { width: 280px; height: 280px; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; gap: 32px; }
  .footer-grid .footer-col:last-child { grid-column: 1 / -1; }
}

/* ---------------------------------------------------------
   20. RESPONSIVE 900px
   --------------------------------------------------------- */
@media (max-width: 900px) {
  .section-pad { padding: 56px 0; }
  .section-header h2 { font-size: 1.8rem; }
  .nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .hero .container { grid-template-columns: 1fr; text-align: center; gap: 32px; padding: 56px 24px; }
  .hero-content p { max-width: 100%; }
  .hero-buttons { justify-content: center; }
  .hero-visual { justify-content: center; }
  .hero-icon-wrap { width: 220px; height: 220px; }
  .hero-float-badge { display: none; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .method-steps { grid-template-columns: repeat(2, 1fr); }
  .method-steps::before { display: none; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-step::after { display: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid .footer-col:last-child { grid-column: unset; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .service-block .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .contact-layout { grid-template-columns: 1fr; }
  .about-section .grid-2 { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------
   21. RESPONSIVE 768px
   --------------------------------------------------------- */
@media (max-width: 768px) {
  .section-header h2 { font-size: 1.6rem; }
  .hero-content h1 { font-size: 2rem; }
  .page-hero-content h1 { font-size: 1.8rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .stats-bar .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .top-bar { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid .footer-col:last-child { grid-column: unset; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-banner h2 { font-size: 1.7rem; }
  .hero-icon-wrap { width: 180px; height: 180px; }
  .hero-icon-wrap i { font-size: 7rem; }
  .method-steps { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
}

/* ---------------------------------------------------------
   22. WISHLIST
   --------------------------------------------------------- */

/* Toggle button in header */
.wishlist-toggle {
  position: relative;
  width: 42px; height: 42px;
  background: transparent;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wishlist-toggle:hover {
  border-color: #e53935;
  color: #e53935;
  background: #fdecea;
}
.wishlist-badge {
  position: absolute;
  top: -7px; right: -7px;
  background: #e53935;
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  min-width: 18px; height: 18px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
  opacity: 0;
  transform: scale(0.6);
  transition: all var(--transition-fast);
}
.wishlist-badge.has-items {
  opacity: 1;
  transform: scale(1);
}

/* Overlay */
.wishlist-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 1099;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.wishlist-overlay.open { opacity: 1; pointer-events: all; }

/* Panel */
.wishlist-panel {
  position: fixed;
  top: 0; right: 0;
  width: 380px; max-width: 95vw;
  height: 100vh;
  background: #fff;
  z-index: 1100;
  display: flex; flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,.18);
  transform: translateX(110%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.wishlist-panel.open { transform: translateX(0); }

/* Panel header */
.wishlist-panel-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.wishlist-panel-title {
  display: flex; align-items: center; gap: 10px;
}
.wishlist-panel-title i { color: #e53935; font-size: 1.1rem; }
.wishlist-panel-title h3 { font-size: 1rem; font-weight: 700; margin: 0; }
.wishlist-close {
  width: 36px; height: 36px;
  background: var(--light-bg);
  border: none; border-radius: var(--radius-sm);
  font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition-fast);
  color: var(--text-muted);
}
.wishlist-close:hover { background: #fdecea; color: #e53935; }

/* Panel body */
.wishlist-panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

/* Empty state */
.wishlist-empty {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
  height: 100%;
  min-height: 260px;
  text-align: center;
  color: var(--text-muted);
}
.wishlist-empty i { font-size: 3.5rem; color: #f5c6c6; }
.wishlist-empty p { font-size: .95rem; font-weight: 500; margin: 0; }
.wishlist-empty small { font-size: .8rem; opacity: .8; }

/* Items list */
.wishlist-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.wishlist-item {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 14px;
  background: var(--light-bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition-fast);
}
.wishlist-item:hover { box-shadow: var(--shadow-sm); }
.wishlist-item-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.wishlist-item-info { flex: 1; min-width: 0; }
.wishlist-item-info strong { display: block; font-size: .9rem; font-weight: 600; }
.wishlist-item-info a {
  font-size: .78rem; color: var(--primary);
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 2px;
}
.wishlist-item-info a:hover { text-decoration: underline; }
.wishlist-remove {
  width: 30px; height: 30px; flex-shrink: 0;
  background: transparent; border: 1px solid var(--border);
  border-radius: var(--radius-sm); cursor: pointer;
  font-size: .8rem; color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition-fast);
}
.wishlist-remove:hover { background: #fdecea; color: #e53935; border-color: #e53935; }

/* Panel footer */
.wishlist-panel-footer {
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 10px;
  flex-shrink: 0;
}
.wishlist-clear {
  background: transparent; border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 9px 16px;
  font-family: var(--font); font-size: .82rem;
  color: var(--text-muted); cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: all var(--transition-fast);
}
.wishlist-clear:hover { border-color: #e53935; color: #e53935; background: #fdecea; }

/* Wish button on product card */
.wish-btn {
  width: 36px; height: 36px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer; font-size: .95rem;
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}
.wish-btn:hover  { border-color: #e53935; color: #e53935; background: #fdecea; }
.wish-btn.wished { border-color: #e53935; color: #e53935; background: #fdecea; }
.wish-btn.wished i { animation: heartPop .3s ease; }

/* Full-width wish button (produits page) */
.wish-btn-full {
  width: 100%; height: auto;
  padding: 10px 16px;
  font-family: var(--font); font-size: .85rem; font-weight: 600;
  gap: 8px;
  border-radius: var(--radius-sm);
  margin-top: 10px;
  justify-content: center;
}

/* Product card actions row */
.product-card-actions {
  display: flex; align-items: center; gap: 10px; margin-top: 12px;
}
.product-card-actions .product-card-link { flex: 1; }

/* Toast */
.wishlist-toast {
  position: fixed;
  bottom: 30px; right: 30px;
  display: flex; align-items: center; gap: 10px;
  padding: 13px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font); font-size: .875rem; font-weight: 500;
  color: #fff;
  box-shadow: 0 8px 30px rgba(0,0,0,.2);
  z-index: 1200;
  opacity: 0; transform: translateY(16px);
  transition: opacity .3s ease, transform .3s ease;
  max-width: 320px;
}
.wishlist-toast.show { opacity: 1; transform: translateY(0); }
.wishlist-toast-add    { background: #2E7D32; }
.wishlist-toast-remove { background: #616161; }
.wishlist-toast i { font-size: 1rem; flex-shrink: 0; }

@keyframes heartPop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.45); }
  100% { transform: scale(1); }
}

/* ---------------------------------------------------------
   23. RESPONSIVE 480px
   --------------------------------------------------------- */
@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.65rem; }
  .section-header h2 { font-size: 1.4rem; }
  .grid-4 { grid-template-columns: 1fr; }
  .stats-bar .grid-4 { grid-template-columns: 1fr; }
  .stat-item { border-bottom: 1px solid var(--border); border-right: none; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { justify-content: center; }
  .gallery-filters { gap: 6px; }
  .filter-btn { padding: 7px 14px; font-size: .82rem; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-item.tall { grid-row: span 1; }
  .process-steps { grid-template-columns: 1fr; }
  .method-steps { grid-template-columns: 1fr; }
  .values-badges { gap: 8px; }
  .page-hero { min-height: 220px; }
  .page-hero-content h1 { font-size: 1.5rem; }
  .cta-banner { padding: 48px 0; }
  .cta-banner h2 { font-size: 1.4rem; }
  .contact-form-wrap { padding: 24px 16px; }
  .btn { padding: 11px 22px; font-size: .88rem; }
  .footer { padding: 48px 0 0; }
}
