/* Agrididon Nature — Static Site CSS v2.1 — matches live Bricks design */
/* Fonts loaded via Google Fonts link tag in header.php */

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

:root {
  --green:      #1fa97a;
  --green-dark: #5b8c51;
  --yellow:     #eddd5e;
  --dark:       #404a3d;
  --body-text:  #5d645b;
  --off-white:  #f8f7f0;
  --light-bg:   #f9f8f1;
  --white:      #ffffff;
  --gray:       #e7e7e7;
  --font-heading: 'Signika', sans-serif;
  --font-body:    'DM Sans', sans-serif;
}

html { background-color: var(--off-white); }

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--body-text);
  line-height: 1.7;
  background: none;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark);
  line-height: 1.25;
}
h1 { font-size: 48px; font-weight: 600; }
h2 { font-size: 40px; font-weight: 600; }
h3 { font-size: 27px; font-weight: 600; }
h4 { font-size: 20px; font-weight: 600; }

/* ── TOP BAR ─────────────────────────────────────────────── */
#top-bar {
  background: var(--green-dark);
  color: var(--white);
  font-size: 14px;
  padding: 4px 10px;
}
.top-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.top-bar-left { display: flex; align-items: center; gap: 20px; }
.top-bar-left a { color: var(--white); display: flex; align-items: center; gap: 6px; font-size: 14px; }
.top-bar-left svg { opacity: .9; flex-shrink: 0; }
.top-bar-right { display: flex; align-items: center; gap: 6px; }
.lang-btn {
  padding: 4px 10px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 4px;
  color: rgba(255,255,255,.8);
  transition: background .2s, color .2s;
}
.lang-btn:hover { color: var(--white); background: rgba(255,255,255,.15); }
.lang-btn.active { color: var(--white); background: rgba(255,255,255,.25); font-weight: 700; }
.lang-btn { display: inline-flex; align-items: center; gap: 5px; }
.lang-btn img { border-radius: 2px; flex-shrink: 0; }

/* ── HEADER / NAV ────────────────────────────────────────── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  padding: 10px 10px;
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 100px;
  padding: 8px 12px 8px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-logo img { height: 64px; width: auto; }

nav[role="navigation"] { flex: 1; display: flex; justify-content: flex-end; }
.main-nav { display: flex; align-items: center; gap: 0; list-style: none; }
.main-nav > li { position: relative; display: inline-flex; align-items: center; }
.main-nav > li > a {
  display: block;
  padding: 8px 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--dark);
  white-space: nowrap;
  transition: color .2s;
}
.main-nav > li > a:hover { color: var(--green-dark); }
.main-nav > li.active > a { color: var(--green-dark); }

/* Contact button — last nav item */
.main-nav > li:last-of-type a.contact-link,
.main-nav > li.nav-contact > a {
  background: var(--green-dark);
  color: var(--white) !important;
  border-radius: 60px;
  padding: 8px 22px;
  font-weight: 500;
}
.main-nav > li.nav-contact > a:hover { background: var(--dark); }

/* Dropdown */
.main-nav .has-dropdown { position: relative; }
.main-nav .has-dropdown > a::after { content: ' ▾'; font-size: 10px; opacity: .6; }
.main-nav .dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 230px;
  background: var(--white);
  border-top: 5px solid var(--yellow);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 200;
}
.main-nav .has-dropdown:hover .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1;
  transition: color .15s;
}
.dropdown a:hover { color: var(--green-dark); }

/* Lang in header (desktop, inside nav pill) */
.lang-switcher-nav { display: flex; gap: 4px; align-items: center; margin-left: 12px; }
.lang-switcher-nav .lang-btn { color: var(--body-text); }
.lang-switcher-nav .lang-btn.active { color: var(--dark); background: rgba(91,140,81,.12); }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  color: var(--green-dark);
}
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 8px 22px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.btn-primary { background: var(--yellow); color: var(--dark); }
.btn-primary:hover { background: var(--green-dark); color: var(--white); }
.btn-green { background: var(--green-dark); color: var(--white); }
.btn-green:hover { background: var(--green); }

/* ── SECTION DEFAULTS ────────────────────────────────────── */
section { padding: 60px 10px; }
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 10px;
}
.section-title { text-align: center; margin-bottom: 48px; }
.section-title h2 { margin-bottom: 12px; }

/* ── HERO ───────────────────────────────────────────────── */
.hero { padding: 20px 10px; }
.hero-box {
  max-width: 1100px;
  margin: 0 auto;
  height: 500px;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
}
/* Left text panel — bg-leaf + green overlay */
.hero-text {
  flex: 1;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  position: relative;
  background-image: url('https://www.agrididon-nature.com/wp-content/uploads/2024/10/bg-leaf.jpg');
  background-position: center center;
  background-size: auto;
  background-color: var(--green-dark);
}
.hero-text::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(91, 140, 81, 0.89);
  pointer-events: none;
}
.hero-text > * { position: relative; z-index: 1; }
.hero-text h1 { color: var(--white); font-size: 48px; }
.hero-text p { color: rgba(255,255,255,.92); font-size: 17px; }
.hero-text .btn { align-self: flex-start; }
/* Right palm image — no overlay */
.hero-img-col {
  width: 44%;
  flex-shrink: 0;
  background-image: url('https://www.agrididon-nature.com/wp-content/uploads/2024/11/Palmier-2.jpg');
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* ── FEATURES BAR ───────────────────────────────────────── */
.features-bar { background: var(--white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
  justify-items: center;
}
.feature-item { padding: 20px 16px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.feature-item img { width: 56px; height: 56px; object-fit: contain; }
.feature-item h3 { font-size: 22px; color: var(--dark); }
.feature-item p { font-size: 15px; color: var(--body-text); }

/* ── PRODUCT SLIDER ─────────────────────────────────────── */
.products-section { background: var(--off-white); }
.products-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}
.slider-viewport { flex: 1; }
.slider-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.slider-track .product-card.slide-hidden { display: none; }
.slider-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--yellow);
  background: var(--white);
  color: var(--dark);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .2s, color .2s;
  z-index: 2;
}
.slider-btn:hover { background: var(--yellow); }
.slider-prev { margin-right: 12px; }
.slider-next { margin-left: 12px; }
.product-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
  display: block;
  padding: 12px 12px 0;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.product-card img { width: 100%; height: 220px; object-fit: contain; border-radius: 12px; background: var(--white); }
.product-card-body { padding: 16px; }
.product-card-body h3 { font-size: 18px; color: var(--dark); margin-bottom: 6px; text-align: center; }
.product-card-body .cat-badge {
  display: block;
  text-align: center;
  font-size: 13px;
  color: var(--green-dark);
  font-weight: 500;
}

/* ── CATEGORY PAGE ──────────────────────────────────────── */
.category-section { background: var(--off-white); padding: 48px 10px; }
.category-header { text-align: center; margin-bottom: 48px; }
.category-header h1 { font-size: 40px; color: var(--dark); margin-bottom: 0; }
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ── ABOUT SECTION ──────────────────────────────────────── */
.about-section { background: var(--white); }
.about-grid {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
.about-images {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}
.about-images img {
  border-radius: 30px;
  object-fit: cover;
  height: 330px;
}
.about-images img:first-child { width: 55%; }
.about-images img:last-child  { width: 40%; }
.about-text { flex: 1; padding-left: 20px; display: flex; flex-direction: column; gap: 16px; }
.about-text h2 { color: var(--dark); }
.about-text p { color: var(--body-text); line-height: 1.8; }
.about-text .btn { align-self: flex-start; }

/* ── TESTIMONIALS ───────────────────────────────────────── */
.testimonials-section { background: var(--off-white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  border-right: 1px solid var(--gray);
}
.testimonial-card blockquote {
  font-size: 15px;
  margin-bottom: 20px;
  color: var(--body-text);
  line-height: 1.7;
}
.testimonial-card .author { font-weight: 600; font-size: 14px; color: var(--dark); }
.testimonial-card .role { font-size: 13px; color: var(--green-dark); }

/* ── NEWSLETTER ─────────────────────────────────────────── */
.newsletter-section {
  background: var(--yellow);
  padding: 60px 10px;
}
.newsletter-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 0 10px;
}
.newsletter-text { flex: 1; }
.newsletter-text h2 { color: var(--dark); font-size: 27px; margin-bottom: 8px; }
.newsletter-text p { color: var(--dark); opacity: .8; font-size: 16px; width: 90%; }
.newsletter-form-wrap { width: 40%; flex-shrink: 0; }
.newsletter-form {
  background: var(--white);
  border-radius: 100px;
  padding: 5px 5px 5px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.newsletter-form input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--dark);
  outline: none;
  padding: 8px 0;
}
.newsletter-form button {
  background: var(--green-dark);
  color: var(--white);
  border: none;
  border-radius: 100px;
  padding: 10px 20px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  transition: background .2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.newsletter-form button:hover { background: var(--green); }

/* ── FOOTER ─────────────────────────────────────────────── */
#site-footer {
  background-color: var(--white);
  position: relative;
  padding: 60px 10px 0;
}
#site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://www.agrididon-nature.com/wp-content/uploads/2024/10/bg-leaf.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.12;
  pointer-events: none;
}
.footer-inner {
  position: relative;
  z-index: 1;
}
.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 40px;
}
.footer-brand { width: 40%; padding-right: 40px; }
.footer-brand img { height: 56px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--body-text); line-height: 1.7; }
.footer-brand .social-links { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.footer-brand .social-links a {
  background: var(--light-bg);
  color: var(--green-dark);
  border-radius: 30px;
  padding: 4px 12px;
  font-size: 13px;
  font-weight: 500;
  transition: background .2s;
}
.footer-brand .social-links a:hover { background: var(--gray); }
.footer-col { width: 25%; }
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--dark);
}
.footer-col nav ul { display: flex; flex-direction: column; gap: 4px; }
.footer-col nav ul li a {
  color: var(--body-text);
  font-size: 15px;
  padding: 4px 0;
  display: block;
  transition: color .2s;
}
.footer-col nav ul li a:hover { color: var(--green-dark); }
.footer-contact-list { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--body-text); }
.footer-contact-item svg { color: var(--green-dark); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: var(--body-text); transition: color .2s; }
.footer-contact-item a:hover { color: var(--green-dark); }
.footer-bottom {
  position: relative; z-index: 1;
  max-width: 1100px; margin: 40px auto 0;
  padding: 20px 10px;
  border-top: 1px solid var(--gray);
  text-align: center;
  font-size: 14px;
  color: var(--body-text);
}

/* ── BREADCRUMB ─────────────────────────────────────────── */
.breadcrumb { background: var(--off-white); padding: 12px 10px; font-size: 14px; }
.breadcrumb-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--green-dark); }
.breadcrumb .sep { color: #ccc; }
.breadcrumb .current { color: var(--body-text); }

/* ── PRODUCT PAGE ───────────────────────────────────────── */
.product-page { padding: 48px 10px; }
.product-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.product-main h1 { margin-bottom: 8px; }
.product-subtitle {
  font-size: 16px;
  color: var(--body-text);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray);
}
.product-specs {
  background: var(--off-white);
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 32px;
}
.product-specs table { width: 100%; border-collapse: collapse; }
.product-specs tr { border-bottom: 1px solid var(--gray); }
.product-specs tr:last-child { border-bottom: none; }
.product-specs td { padding: 10px 4px; font-size: 15px; }
.product-specs td:first-child { font-weight: 600; color: var(--dark); width: 45%; }
.product-section { margin-bottom: 36px; }
.product-section h2 {
  font-size: 22px;
  color: var(--green-dark);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--green);
  display: inline-block;
}
.product-section h3 {
  font-size: 17px;
  color: var(--dark);
  margin: 16px 0 8px;
}
.product-section ul { padding-left: 4px; }
.product-section ul li {
  padding: 6px 0 6px 20px;
  position: relative;
  font-size: 15px;
  color: var(--body-text);
  border-bottom: 1px solid #f0f5f0;
}
.product-section ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-dark);
  font-weight: 700;
}
.product-section p { font-size: 15px; margin-bottom: 12px; line-height: 1.8; color: var(--body-text); }
.product-sidebar { position: sticky; top: 100px; }
.product-sidebar img { width: 100%; border-radius: 20px; margin-bottom: 16px; object-fit: cover; }

/* ── ABOUT PAGE ─────────────────────────────────────────── */
.about-page, .values-section, .direction-section { max-width: 1100px; margin: 0 auto; padding: 0 10px; }
.about-page .about-grid { flex-direction: row-reverse; }
.values-section { margin-top: 0; }
.direction-section .about-grid { flex-direction: row; }
.about-text ul { padding-left: 20px; margin-top: 12px; }
.about-text ul li { list-style: disc; margin-bottom: 10px; color: var(--body-text); line-height: 1.7; }

/* ── À PROPOS PAGE ──────────────────────────────────────── */
.page-title-bar { background: var(--off-white); padding: 32px 10px 24px; }
.page-title-bar h1 { font-size: 36px; color: var(--dark); }
.section-label {
  color: var(--green-dark);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Intro: image left, text right */
.ap-intro-section { background: var(--off-white); }
.ap-intro-grid {
  display: flex;
  flex-direction: row;
  gap: 60px;
  align-items: center;
  margin-top: 28px;
}
.ap-intro-img { flex: 0 0 44%; }
.ap-intro-img img { width: 100%; border-radius: 20px; object-fit: contain; }
.ap-intro-text { flex: 1; display: flex; flex-direction: column; gap: 14px; }
.ap-intro-text h2 { font-size: 34px; color: var(--dark); }
.ap-intro-text p { color: var(--body-text); line-height: 1.8; font-size: 15px; }

/* Values: 3 cards with yellow circle icons */
.ap-values-section { background: var(--off-white); }
.ap-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.ap-value-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.ap-value-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ap-value-icon img { width: 40px; height: 40px; object-fit: contain; }
.ap-value-card h3 { font-size: 22px; color: var(--dark); }
.ap-value-card p { font-size: 15px; color: var(--body-text); line-height: 1.75; }

/* Direction: text left, image right */
.ap-direction-section { background: var(--off-white); }
.ap-direction-grid {
  display: flex;
  flex-direction: row;
  gap: 60px;
  align-items: center;
}
.ap-direction-text { flex: 1; display: flex; flex-direction: column; gap: 14px; }
.ap-direction-text h2 { font-size: 34px; color: var(--dark); }
.ap-direction-text p { color: var(--body-text); font-size: 15px; line-height: 1.8; }
.ap-direction-text ul { padding-left: 20px; display: flex; flex-direction: column; gap: 8px; }
.ap-direction-text ul li { list-style: disc; color: var(--body-text); font-size: 15px; line-height: 1.7; }
.ap-direction-img { flex: 0 0 40%; }
.ap-direction-img img { width: 100%; border-radius: 20px; object-fit: cover; max-height: 460px; }

/* ── CONTACT PAGE ───────────────────────────────────────── */
.contact-hero-section { padding: 60px 0 40px; }
.contact-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

/* Left column */
.contact-label { color: var(--green-dark); font-weight: 600; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px; display: flex; align-items: center; }
.contact-hero-left h1 { font-size: 36px; color: var(--dark); line-height: 1.25; margin-bottom: 16px; }
.contact-hero-desc { color: var(--body-text); font-size: 16px; line-height: 1.7; margin-bottom: 28px; }
.contact-social { margin-top: 8px; }
.social-label { font-weight: 600; font-size: 15px; color: var(--dark); margin-bottom: 12px; }
.social-icons { display: flex; gap: 10px; }
.social-icons a {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 8px;
  border: 1px solid var(--gray); color: var(--dark);
  transition: background .2s, color .2s, border-color .2s;
}
.social-icons a:hover { background: var(--green-dark); color: var(--white); border-color: var(--green-dark); }

/* Right column: form */
.contact-form { display: flex; flex-direction: column; gap: 14px; background: var(--white); border-radius: 16px; padding: 32px; box-shadow: 0 4px 24px rgba(64,74,61,.08); }
.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--gray); border-radius: 8px;
  font-size: 15px; font-family: var(--font-body); color: var(--dark);
  background: #fafafa; outline: none; transition: border-color .2s;
  box-sizing: border-box;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--green-dark); background: var(--white); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-send-btn { display: flex; align-items: center; gap: 8px; align-self: flex-start; }

/* Cards section */
.contact-cards-section { padding: 40px 0; }
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.contact-card {
  background: var(--white); border-radius: 16px;
  padding: 36px 24px; text-align: center;
  box-shadow: 0 2px 12px rgba(64,74,61,.07);
}
.contact-card-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--yellow); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.contact-card h4 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.contact-card p { font-size: 14px; color: var(--body-text); line-height: 1.6; }
.contact-card a { color: var(--body-text); transition: color .2s; }
.contact-card a:hover { color: var(--green-dark); }

/* Map */
.contact-map-section { margin: 0 0 0; }

/* Legacy contact styles (keep for any old pages) */
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; font-size: 15px; color: var(--body-text); }
.contact-info-item a { color: var(--body-text); transition: color .2s; }
.contact-info-item a:hover { color: var(--green-dark); }

/* ── CATEGORY PAGE ──────────────────────────────────────── */
.category-page { background: var(--off-white); padding: 48px 10px; }
.category-page .section-inner { max-width: 1100px; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .about-images { flex-direction: column; }
  .about-images img:first-child, .about-images img:last-child { width: 100%; }
  .footer-grid { flex-wrap: wrap; }
  .footer-brand { width: 100%; padding-right: 0; }
  .footer-col { width: 45%; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .newsletter-inner { flex-direction: column; }
  .newsletter-form-wrap { width: 100%; }
}
@media (max-width: 768px) {
  h1 { font-size: 40px; }
  h2 { font-size: 30px; }
  h3 { font-size: 22px; }
  .hero-box { height: 600px; flex-direction: column; }
  .hero-img-col { display: none; }
  .hero-text { padding: 30px 24px; }
  .hero-text h1 { font-size: 36px; }
  nav[role="navigation"] { display: none; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--white); padding: 80px 24px 24px; z-index: 999; overflow-y: auto; }
  nav[role="navigation"].open { display: flex; }
  .main-nav { flex-direction: column; width: 100%; gap: 4px; }
  .main-nav > li { width: 100%; }
  .main-nav > li > a { padding: 14px 16px; border-bottom: 1px solid var(--gray); font-size: 16px; }
  .main-nav .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; border-top: none; padding: 0 0 0 16px; display: none; }
  .main-nav .has-dropdown.open .dropdown { display: block; }
  .menu-toggle { display: flex; }
  .header-inner { border-radius: 50px; padding: 8px 12px; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { flex-direction: column; }
  .footer-col { width: 100%; }
  .contact-grid { grid-template-columns: 1fr; }
  .product-layout { grid-template-columns: 1fr; }
  .product-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .product-sidebar img { margin-bottom: 0; }
  .top-bar-left { display: none; }
}
@media (max-width: 480px) {
  h1 { font-size: 32px; }
  .products-grid { grid-template-columns: 1fr; }
  .hero-box { height: 600px; border-radius: 20px; }
}
