/* ============================================
   GREEN MEADOW DAIRY FARM - Main Stylesheet
   Natural Green & Cream Theme
   ============================================ */

@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&family=Dancing+Script:wght@600&display=swap');

:root {
  --green-dark:   #2d5a27;
  --green-mid:    #4a8c3f;
  --green-light:  #7ab648;
  --green-pale:   #e8f5e2;
  --cream:        #fdf6e3;
  --cream-dark:   #f0e6c8;
  --brown:        #6b4c2a;
  --brown-light:  #a07850;
  --white:        #ffffff;
  --text-dark:    #2c2c2c;
  --text-mid:     #555555;
  --text-light:   #888888;
  --border:       #d9e8c8;
  --shadow:       rgba(45,90,39,0.12);
  --shadow-dark:  rgba(0,0,0,0.18);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', sans-serif;
  --font-accent:  'Dancing Script', cursive;
  --radius:       6px;
  --radius-lg:    14px;
  --transition:   0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; border-radius: 10px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--green-dark);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p { color: var(--text-mid); margin-bottom: 1rem; }

.section-label {
  font-family: var(--font-accent);
  color: var(--green-light);
  font-size: 1.3rem;
  display: block;
  margin-bottom: 0.4rem;
}
.section-title { margin-bottom: 1rem; }
.section-desc { max-width: 600px; color: var(--text-mid); }
.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-transform: uppercase;
}
.btn-primary {
  background: var(--green-mid);
  color: var(--white);
  border-color: var(--green-mid);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow);
}
.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.btn-outline:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
}
.btn-sm { padding: 0.55rem 1.3rem; font-size: 0.85rem; }

/* ===================== LAYOUT ===================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.row { display: flex; flex-wrap: wrap; gap: 2rem; }
.col-2 { flex: 1 1 calc(50% - 1rem); }
.col-3 { flex: 1 1 calc(33.333% - 1.5rem); }
.col-4 { flex: 1 1 calc(25% - 1.5rem); }

/* ===================== HEADER / NAV ===================== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--green-dark);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
#header.scrolled { box-shadow: 0 4px 20px var(--shadow); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-img {
  height: 100px;   /* Perfect header size */
  width: auto;    /* Maintain aspect ratio */
  object-fit: contain;
}
.logo-text { font-family: var(--font-heading); line-height: 1.2; }
.logo-text strong { display: block; font-size: 1rem; color: var(--white); }
.logo-text span { font-size: 0.85rem; color: var(--green-light); letter-spacing: 0.08em; text-transform: uppercase; }

nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
nav ul li a {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  position: relative;
}
nav ul li a:hover,
nav ul li a.active {
  color: var(--green-mid);
  background: var(--green-pale);
}
.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.cart-icon {
  position: relative;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background var(--transition);
}
.cart-icon:hover { background: var(--green-light); color: white; }
.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--brown);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 25px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #e8f5e2 0%, #fdf6e3 50%, #d6efc7 100%);
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(122,182,72,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(45,90,39,0.1) 0%, transparent 40%);
}
.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(122,182,72,0.08);
  animation: floatShape 8s ease-in-out infinite;
}
.hero-shape:nth-child(1) { width: 400px; height: 400px; top: -100px; right: -100px; animation-delay: 0s; }
.hero-shape:nth-child(2) { width: 200px; height: 200px; bottom: 100px; left: 5%; animation-delay: 2s; }
.hero-shape:nth-child(3) { width: 150px; height: 150px; top: 30%; right: 20%; animation-delay: 4s; background: rgba(45,90,39,0.06); }

@keyframes floatShape {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.03); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero-content { animation: fadeInUp 0.9s ease both; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green-pale);
  border: 1px solid var(--green-light);
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-title {
  color: var(--green-dark);
  margin-bottom: 1.5rem;
  font-size: clamp(2.5rem, 5vw, 4rem);
}
.hero-title em {
  font-style: italic;
  color: var(--green-light);
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-mid);
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-dark);
  display: block;
}
.stat-label { font-size: 0.82rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; }

.hero-image { animation: fadeInRight 0.9s 0.2s ease both; position: relative; }
.hero-img-wrap {
  position: relative;
  border-radius: 40% 60% 60% 40% / 50% 50% 50% 50%;
  overflow: hidden;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--green-pale), var(--cream-dark));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 30px 80px rgba(45,90,39,0.2);
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fills entire shape */
  object-position: center;
  animation: floatImage 3s ease-in-out infinite;
}
@keyframes floatImage {
  0%, 100% { transform: translateY(2px); }
  50% { transform: translateY(-2px); }
}
.hero-float-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-lg);
  padding: 0.9rem 1.2rem;
  box-shadow: 0 10px 30px var(--shadow-dark);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: floatCard 4s ease-in-out infinite;
}
.hero-float-card:nth-child(2) { bottom: 10%; left: -8%; animation-delay: 1s; }
.hero-float-card:nth-child(3) { top: 15%; right: -5%; animation-delay: 2.5s; }
.card-icon { font-size: 1.8rem; }
.card-text strong { display: block; font-size: 0.85rem; color: var(--green-dark); font-family: var(--font-heading); }
.card-text span { font-size: 0.75rem; color: var(--text-light); }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ===================== PAGE HERO (inner pages) ===================== */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  padding: 120px 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='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 { color: white; position: relative; }
.page-hero .breadcrumb {
  display: flex; gap: 0.5rem; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-top: 0.75rem;
  position: relative;
}
.page-hero .breadcrumb a { color: var(--green-pale); }
.page-hero .breadcrumb a:hover { color: white; }

/* ===================== FEATURES BAR ===================== */
.features-bar {
  background: var(--green-dark);
  padding: 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: background var(--transition);
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: rgba(255,255,255,0.05); }
.feature-icon { font-size: 2rem; flex-shrink: 0; }
.feature-text strong { display: block; color: white; font-size: 0.95rem; font-weight: 700; }
.feature-text span { color: rgba(255,255,255,0.6); font-size: 0.8rem; }

/* ===================== ABOUT SNIPPET ===================== */
.about-section { background: linear-gradient(135deg, #e8f5e2 0%, #fdf6e3 50%, #d6efc7 100%); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-block { position: relative; }
.about-img-main {
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-pale), var(--cream-dark));
  aspect-ratio: 4/5;
  display: flex; align-items: center; justify-content: center;
  font-size: 8rem;
  box-shadow: 0 20px 60px var(--shadow);
}
.about-img-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 140px; height: 140px;
  background: var(--green-mid);
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: white;
  box-shadow: 0 10px 30px rgba(74,140,63,0.4);
  text-align: center;
}
.about-img-badge strong { font-family: var(--font-heading); font-size: 2.2rem; line-height: 1; }
.about-img-badge span { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.9; }

.about-content { padding: 1rem 0; }
.about-features { margin: 2rem 0; display: flex; flex-direction: column; gap: 1rem; }
.about-feat {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--green-light);
}
.about-feat-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 0.1rem; }
.about-feat h4 { font-size: 1rem; margin-bottom: 0.2rem; color: var(--green-dark); }
.about-feat p { font-size: 0.88rem; margin: 0; }

/* ===================== PRODUCTS GRID ===================== */
.products-section { background: var(--cream); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(45,90,39,0.18);
}
.product-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--green-light);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
}
.product-badge.organic { background: var(--brown-light); }
.product-img {
  background: linear-gradient(135deg, var(--green-pale), var(--cream-dark));
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}
.product-body { padding: 1.25rem; }
.product-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-light);
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.product-name { font-size: 1.05rem; font-family: var(--font-heading); color: var(--green-dark); margin-bottom: 0.3rem; }
.product-desc { font-size: 0.83rem; color: var(--text-light); margin-bottom: 1rem; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-family: var(--font-heading); font-size: 1.2rem; color: var(--green-dark); font-weight: 700; }
.product-price .old { font-size: 0.85rem; color: var(--text-light); text-decoration: line-through; margin-right: 0.3rem; font-weight: 400; font-family: var(--font-body); }
.add-cart {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--green-pale);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: background var(--transition), transform var(--transition);
}
.add-cart:hover { background: var(--green-mid); transform: scale(1.1); }
.product-stars { color: #f4a416; font-size: 0.8rem; margin-bottom: 0.3rem; }

/* ===================== TESTIMONIALS ===================== */
.testimonials-section { background: var(--white); }
.testimonials-section .section-label { color: var(--green-dark); }
.testimonials-section .section-title { color: var(--green-dark); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--green-mid);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: background var(--transition);
}
.testimonial-card:hover { background: rgba(255,255,255,0.11); }
.testi-quote { font-size: 2.5rem; color: var(--green-light); line-height: 1; margin-bottom: 1rem; font-family: serif; }
.testi-text { color: var(--green-dark); font-size: 0.95rem; font-style: italic; margin-bottom: 1.5rem; }
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--green-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.testi-name { color: var(--green-dark); font-weight: 700; font-size: 0.9rem; display: block; }
.testi-loc { color: var(--green-dark); font-size: 0.78rem; }

.testimonials-slider { overflow: hidden; cursor: grab; }
.testimonials-slider.drag { cursor: grabbing; }

.testimonials-grid {
  display: flex;
  gap: 2rem;
  transition: transform .5s ease;
}

.testimonial-card {
  min-width: 300px;
  flex: 0 0 calc(33.33% - 1.5rem);
}

@media (max-width: 992px) {
  .testimonial-card { flex: 0 0 calc(50% - 1rem); }
}
@media (max-width: 600px) {
  .testimonial-card { flex: 0 0 100%; }
}

/* ===================== BLOG CARDS ===================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(45,90,39,0.16);
}
.blog-img {
  height: 200px;
  background: linear-gradient(135deg, var(--green-pale), var(--cream-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 4.5rem;
}
.blog-body { padding: 1.5rem; }
.blog-meta {
  display: flex; gap: 1rem; margin-bottom: 0.75rem;
  font-size: 0.78rem; color: var(--text-light);
}
.blog-meta span { display: flex; align-items: center; gap: 0.3rem; }
.blog-tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}
.blog-title { font-size: 1.05rem; margin-bottom: 0.5rem; }
.blog-title a { color: var(--green-dark); }
.blog-title a:hover { color: var(--green-light); }
.blog-excerpt { font-size: 0.85rem; color: var(--text-light); margin-bottom: 1rem; }
.read-more {
  font-size: 0.85rem;
  color: var(--green-mid);
  font-weight: 700;
  display: inline-flex; align-items: center; gap: 0.3rem;
  transition: gap var(--transition);
}
.read-more:hover { gap: 0.6rem; }

/* ===================== GALLERY ===================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
  margin-top: 3rem;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: linear-gradient(135deg, var(--green-pale), var(--cream-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
}
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(45,90,39,0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  color: white;
  font-size: 2rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ===================== TEAM ===================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(45,90,39,0.16);
}
.team-img {
  height: 220px;
  background: linear-gradient(135deg, var(--green-pale), var(--cream-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  position: relative;
}
.team-body { padding: 1.25rem; }
.team-name { font-size: 1.1rem; color: var(--green-dark); margin-bottom: 0.2rem; }
.team-role { font-size: 0.82rem; color: var(--green-light); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.75rem; }
.team-bio { font-size: 0.83rem; color: var(--text-light); margin-bottom: 1rem; }
.team-social { display: flex; justify-content: center; gap: 0.5rem; }
.social-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: var(--green-dark);
  transition: background var(--transition), color var(--transition);
  cursor: pointer;
}
.social-btn:hover { background: var(--green-mid); color: white; }

/* ===================== CONTACT ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  margin-top: 3rem;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--green-light);
}
.contact-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-item h4 { font-size: 0.95rem; color: var(--green-dark); margin-bottom: 0.2rem; }
.contact-item p { font-size: 0.85rem; margin: 0; }

.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: 0 4px 20px var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 700; color: var(--green-dark); margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 0.04em; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(74,140,63,0.15);
  background: white;
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ===================== SHOP ===================== */
/* SECTION */
.shop-section {
  background: var(--cream);
  padding: 70px 20px;
}

.shop-container {
  max-width: 1200px;
  margin: auto;
}

.shop-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

/* GRID */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* CARD */
.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.product-card:hover {
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* IMAGE */
.product-img {
  font-size: 60px;
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, #f9fafb, #eef2f7);
  transition: 0.3s;
}

/* BODY */
.product-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-category {
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
}

.product-name {
  font-size: 18px;
  font-weight: 600;
}

.product-desc {
  font-size: 14px;
  color: #666;
}

.product-price {
  font-size: 20px;
  font-weight: bold;
  color: var(--green-mid);
}

/* FOOTER ACTIONS */
.product-footer {
  margin-top: 12px;
  display: flex;
  gap: 10px;
}

/* BUTTONS */
.add-cart {
  flex: 1;
  padding: 10px;
  border: none;
  background: #f1f5f9;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
}

.buy-now {
  flex: 1;
  text-align: center;
  background: var(--green-mid);
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.buy-now:hover {
  background: var(--green-dark);
}

/* RESPONSIVE IMPROVEMENTS */
@media (max-width: 768px) {
  .shop-title {
    font-size: 26px;
  }

  .product-img {
    font-size: 50px;
    padding: 30px;
  }
}

@media (max-width: 480px) {
  .product-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-group {
    width: 100%;
  }

  .buy-now {
    width: 100%;
  }
}

/* ===================== CTA BANNER ===================== */
.cta-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 60%, var(--green-light) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.05) 0%, transparent 60%);
}
.cta-section h2 { color: white; margin-bottom: 1rem; position: relative; }
.cta-section p { color: rgba(255,255,255,0.8); max-width: 540px; margin: 0 auto 2rem; position: relative; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; position: relative; }

/* ===================== NEWSLETTER ===================== */
.newsletter-section { background: var(--cream-dark); padding: 60px 0; }
.newsletter-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 3rem;
  flex-wrap: wrap;
}
.newsletter-form { display: flex; gap: 0; max-width: 460px; width: 100%; }
.newsletter-form input {
  flex: 1;
  padding: 0.9rem 1.25rem;
  border: 2px solid var(--border);
  border-right: none;
  border-radius: 50px 0 0 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: white;
  outline: none;
}
.newsletter-form input:focus { border-color: var(--green-mid); }
.newsletter-form button {
  padding: 0.9rem 1.8rem;
  background: var(--green-mid);
  color: white;
  border: 2px solid var(--green-mid);
  border-radius: 0 50px 50px 0;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background var(--transition);
}
.newsletter-form button:hover { background: var(--green-dark); border-color: var(--green-dark); }

/* ===================== FOOTER ===================== */
#footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.8);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand .logo-text strong,
.footer-brand .logo-text span { color: white; }
.footer-desc { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.5rem; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  transition: background var(--transition);
}
.footer-social a:hover { background: var(--green-light); }
.footer-col h4 { color: white; font-size: 1rem; margin-bottom: 1.25rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: color var(--transition);
  display: flex; align-items: center; gap: 0.4rem;
}
.footer-col ul li a:hover { color: var(--green-pale); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom a { color: var(--green-pale); }

/* ===================== MISC ===================== */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag {
  padding: 0.3rem 0.8rem;
  background: var(--green-pale);
  color: var(--green-dark);
  border-radius: 50px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  border: 1px solid var(--border);
}
.tag:hover, .tag.active { background: var(--green-mid); color: white; border-color: var(--green-mid); }

.divider { height: 2px; background: var(--border); margin: 2.5rem 0; }

.icon-check { color: var(--green-light); }
.icon-star { color: #f4a416; }

/* ===================== ANIMATIONS ===================== */
.fade-in { animation: fadeIn 0.6s ease both; }
.slide-up { animation: fadeInUp 0.7s ease both; }

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .shop-layout { grid-template-columns: 220px 1fr; }
  .hero-inner { gap: 2.5rem; }
  .header-actions .btn {
    display: none; /* hide order button in mobile */
  }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  nav { display: none; position: fixed; inset: 100px 0 0; background: var(--cream); z-index: 999; flex-direction: column; padding: 5rem; overflow-y: auto; }
  nav.open { display: flex; }
  nav ul { flex-direction: column; gap: 0; }
  nav ul li a { display: block; padding: 0.75rem 1rem; font-size: 1rem; color: var(--green-dark); border-radius: var(--radius); }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .hero-stats { gap: 1.5rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-block { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .newsletter-inner { flex-direction: column; }
  .header-actions .btn {
    display: none; /* hide order button in mobile */
  }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide, .gallery-item.tall { grid-column: auto; grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .cta-actions { flex-direction: column; align-items: center; }
  .header-actions .btn {
    display: none; /* hide order button in mobile */
  }
}