/*
Theme Name: Dianthe
Theme URI: https://webloomstudio.in
Author: Webloom Studio
Author URI: https://webloomstudio.in
Description: A clean, elegant theme for Dianthe — flower of the gods. Built by Webloom Studio.
Version: 1.0.0
License: GNU General Public License v2
Text Domain: dianthe
*/

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:       #2D6A4F;
  --green-light: #52B788;
  --green-pale:  #D8F3DC;
  --rose:        #B5838D;
  --rose-light:  #E8C1C8;
  --cream:       #F9F6F0;
  --white:       #FFFFFF;
  --text:        #1A1A1A;
  --muted:       #6C6C6C;
  --border:      #E0DDD8;
  --font-head:   'Cormorant Garamond', Georgia, serif;
  --font-body:   'Lato', 'Helvetica Neue', sans-serif;
  --radius:      8px;
  --shadow:      0 2px 16px rgba(0,0,0,0.07);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-light); }

h1,h2,h3,h4,h5 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 40px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
}
.btn-primary { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-primary:hover { background: var(--green-light); border-color: var(--green-light); color: var(--white); }
.btn-outline { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline:hover { background: var(--green); color: var(--white); }
.btn-whatsapp { background: #25D366; color: var(--white); border-color: #25D366; }
.btn-whatsapp:hover { background: #1ebe5d; border-color: #1ebe5d; color: var(--white); }

/* ── Section heading ───────────────────────────────────────── */
.section-heading { text-align: center; margin-bottom: 56px; }
.section-heading .floral-icon { width: 40px; margin: 0 auto 16px; opacity: 0.6; }
.section-heading h2 { font-size: clamp(28px, 4vw, 42px); color: var(--text); }
.section-heading p { font-size: 16px; color: var(--muted); margin-top: 12px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ── Header ────────────────────────────────────────────────── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(249,246,240,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.site-logo img { height: 44px; width: auto; }
.site-logo span { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--green); }

nav.main-nav ul { list-style: none; display: flex; gap: 32px; }
nav.main-nav ul li a {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  position: relative;
  padding-bottom: 4px;
}
nav.main-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--green);
  transition: width 0.25s;
}
nav.main-nav ul li a:hover::after,
nav.main-nav ul li a.active::after { width: 100%; }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; transition: all 0.3s; }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  background: var(--cream);
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--text);
}
.hero h1 em { color: var(--green); font-style: italic; }
.hero-sub {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-badges {
  display: flex;
  gap: 24px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
}
.hero-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
}
.hero-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ── Story / About ─────────────────────────────────────────── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.story-img {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story-text h2 { font-size: clamp(28px, 3.5vw, 42px); margin-bottom: 20px; }
.story-text p { color: var(--muted); margin-bottom: 16px; }

/* ── Services ──────────────────────────────────────────────── */
.services-bg { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.service-number {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 700;
  color: var(--green-pale);
  line-height: 1;
  margin-bottom: 12px;
}
.service-card h3 { font-size: 20px; margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.service-card .service-price {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  background: var(--green-pale);
  padding: 4px 12px;
  border-radius: 20px;
}

/* ── Why Us ─────────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.why-card { text-align: center; padding: 32px 20px; }
.why-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
}
.why-card h3 { font-size: 18px; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--muted); }

/* ── Gallery ───────────────────────────────────────────────── */
.gallery-tabs { display: flex; gap: 12px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; }
.gallery-tab {
  padding: 8px 24px;
  border-radius: 30px;
  border: 1.5px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  background: var(--white);
  color: var(--muted);
  transition: all 0.2s;
}
.gallery-tab.active,
.gallery-tab:hover { background: var(--green); color: var(--white); border-color: var(--green); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45,106,79,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span { color: var(--white); font-size: 13px; font-weight: 600; }

/* ── Founder ───────────────────────────────────────────────── */
.founder-bg { background: var(--cream); }
.founder-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 64px;
  align-items: center;
}
.founder-img {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.founder-img img { width: 100%; height: 100%; object-fit: cover; }
.founder-text h2 { font-size: clamp(28px, 3.5vw, 40px); margin-bottom: 8px; }
.founder-title { font-size: 14px; color: var(--rose); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
.founder-text p { color: var(--muted); margin-bottom: 14px; }

/* ── Team ──────────────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.team-card { text-align: center; }
.team-photo {
  width: 120px; height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  border: 3px solid var(--green-pale);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { font-size: 16px; margin-bottom: 4px; }
.team-card span { font-size: 13px; color: var(--rose); font-weight: 600; }

/* ── Recognitions ──────────────────────────────────────────── */
.recognitions-bg { background: var(--green); }
.recognitions-bg .section-heading h2 { color: var(--white); }
.recognitions-bg .section-heading p { color: rgba(255,255,255,0.7); }
.awards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.award-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.award-logo { width: 60px; height: 60px; object-fit: contain; border-radius: 8px; background: var(--white); padding: 6px; flex-shrink: 0; }
.award-card h4 { font-size: 15px; color: var(--white); margin-bottom: 6px; }
.award-card p { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.5; }

/* ── Testimonials ──────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--border);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-head);
  font-size: 80px;
  color: var(--green-pale);
  position: absolute;
  top: 12px;
  left: 24px;
  line-height: 1;
}
.testimonial-card p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; padding-top: 32px; }
.testimonial-author { font-weight: 700; font-size: 14px; color: var(--text); }
.testimonial-location { font-size: 12px; color: var(--muted); }

/* ── Impact stats ──────────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-card { padding: 28px 20px; }
.stat-number { font-family: var(--font-head); font-size: 52px; font-weight: 700; color: var(--green); line-height: 1; }
.stat-label { font-size: 14px; color: var(--muted); margin-top: 8px; }

/* ── How to Care ───────────────────────────────────────────── */
.care-steps { max-width: 760px; margin: 0 auto; }
.care-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.care-step:last-child { border-bottom: none; }
.care-step-num {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 700;
  color: var(--green-pale);
  line-height: 1;
  min-width: 60px;
  text-align: right;
}
.care-step h3 { font-size: 20px; margin-bottom: 8px; }
.care-step p { font-size: 15px; color: var(--muted); }

/* ── Contact ───────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-form { background: var(--cream); padding: 40px; border-radius: 20px; }
.contact-form h3 { font-size: 24px; margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; color: var(--text); text-transform: uppercase; letter-spacing: 0.05em; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info h3 { font-size: 28px; margin-bottom: 8px; }
.contact-info p { color: var(--muted); margin-bottom: 32px; }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-detail-icon { width: 40px; height: 40px; background: var(--green-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-detail h4 { font-size: 14px; margin-bottom: 2px; }
.contact-detail p { font-size: 14px; color: var(--muted); margin: 0; }

/* ── WhatsApp float ────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s;
  color: var(--white);
  font-size: 28px;
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); color: var(--white); }

/* ── Footer ────────────────────────────────────────────────── */
#site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .site-logo span { color: var(--white); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.6); margin-top: 16px; max-width: 280px; line-height: 1.7; }
.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--white); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--green-light); }
.footer-col p { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  transition: background 0.2s;
}
.social-links a:hover { background: var(--green); color: var(--white); }

/* ── Page hero (inner pages) ───────────────────────────────── */
.page-hero {
  background: var(--cream);
  padding: 80px 0 64px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero .floral-icon { width: 36px; margin: 0 auto 16px; opacity: 0.5; }
.page-hero h1 { font-size: clamp(32px, 5vw, 56px); margin-bottom: 12px; }
.page-hero p { font-size: 18px; color: var(--muted); font-style: italic; }

/* ── Mao section ───────────────────────────────────────────── */
.mao-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.mao-text h2 { font-size: clamp(28px, 3.5vw, 42px); margin-bottom: 16px; }
.mao-features { margin-top: 24px; }
.mao-feature { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 20px; }
.mao-feature-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green); margin-top: 6px; flex-shrink: 0; }
.mao-feature h4 { font-size: 16px; margin-bottom: 4px; }
.mao-feature p { font-size: 14px; color: var(--muted); }
.mao-img { border-radius: 20px; overflow: hidden; aspect-ratio: 4/5; }
.mao-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-inner, .story-grid, .founder-grid, .mao-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-image-wrap { aspect-ratio: 16/9; order: -1; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .awards-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  nav.main-nav { display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--cream); padding: 20px 24px; border-bottom: 1px solid var(--border); }
  nav.main-nav.open { display: block; }
  nav.main-nav ul { flex-direction: column; gap: 4px; }
  nav.main-nav ul li a { display: block; padding: 10px 0; font-size: 15px; }
  .menu-toggle { display: block; }
  .footer-grid { grid-template-columns: 1fr; }
  .founder-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; }
}

/* ── Product Catalogue ──────────────────────────────────────── */
.product-catalogue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}

.product-card-img {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--cream);
  overflow: hidden;
}
.product-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.product-cat-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 20px;
}
.cultivated-badge {
  background: var(--green-pale);
  color: var(--green);
}
.wild-badge {
  background: var(--rose-light);
  color: #7a3d48;
}

.product-card-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-code {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.product-name {
  font-size: 18px;
  font-family: var(--font-head);
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--text);
}
.product-aka {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 12px;
}
.product-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 14px;
  flex: 1;
}
.product-style {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 16px;
  padding: 8px 12px;
  background: var(--cream);
  border-radius: var(--radius);
}
.product-style-label {
  font-weight: 700;
  color: var(--text);
  margin-right: 4px;
}
.product-enquire-btn {
  display: block;
  text-align: center;
  padding: 10px 16px;
  background: var(--green);
  color: var(--white);
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.2s;
  text-decoration: none;
}
.product-enquire-btn:hover {
  background: var(--green-light);
  color: var(--white);
}
.wild-enquire {
  background: var(--rose);
}
.wild-enquire:hover {
  background: #9a6672;
}

@media (max-width: 1024px) {
  .product-catalogue-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .product-catalogue-grid { grid-template-columns: 1fr; }
}

/* ── Catalogue section headings ─────────────────────────────── */
.cat-section-heading {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 12px;
}
.cat-line { height: 2px; background: var(--green); flex: 1; }
.cat-section-heading h2 { font-size: clamp(20px,3vw,30px); white-space: nowrap; margin: 0; }
.cat-section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  max-width: 600px;
  margin: 0 auto 40px;
}
.assorted-feature {
  margin-top: 64px;
  background: var(--green-pale);
  border-radius: 20px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.assorted-feature h3 { font-size: clamp(22px,3vw,32px); margin-bottom: 12px; }
.assorted-feature p { color: var(--muted); }
.assorted-feature-img { border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; }
.assorted-feature-img img { width: 100%; height: 100%; object-fit: cover; }
.pdf-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.pdf-strip h4 { font-size: 18px; }
.pdf-strip-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Product card image (now real photo) ─────────────────────── */
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.product-card:hover .product-card-img img { transform: scale(1.05); }

/* ── How-to-care responsive ──────────────────────────────────── */
@media (max-width: 900px) {
  .how-to-care-layout { grid-template-columns: 1fr !important; }
  .how-to-care-sticky { position: static !important; }
}

/* ── Full mobile overrides ───────────────────────────────────── */
@media (max-width: 768px) {
  /* Hero */
  .hero { min-height: auto; padding: 48px 0; }
  .hero h1 { font-size: 36px; }
  .hero-sub { font-size: 15px; }
  .hero-badges { gap: 16px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; text-align: center; }

  /* Grids → single column */
  .story-grid,
  .founder-grid,
  .mao-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-image-wrap { order: -1; aspect-ratio: 16/9; border-radius: 16px; }

  /* Services 3col → 1col */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 24px 20px; }
  .service-number { font-size: 36px; }

  /* Why us 3col → 1col */
  .why-grid { grid-template-columns: 1fr; gap: 20px; }
  .why-card { padding: 20px 16px; }

  /* Gallery 4col → 2col on mobile */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  /* Products 3col → 1col */
  .product-catalogue-grid { grid-template-columns: 1fr; }

  /* Awards 3col → 1col */
  .awards-grid { grid-template-columns: 1fr; }
  .award-card { flex-direction: column; gap: 12px; }
  .award-logo { width: 48px; height: 48px; }

  /* Testimonials 3col → 1col */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Stats 4col → 2col */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-number { font-size: 36px; }

  /* Team 4col → 2col */
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  /* Assorted feature */
  .assorted-feature { grid-template-columns: 1fr; padding: 28px 20px; gap: 24px; }
  .assorted-feature-img { order: -1; aspect-ratio: 16/9; }

  /* PDF strip */
  .pdf-strip { flex-direction: column; align-items: flex-start; }
  .pdf-strip-btns { flex-direction: column; width: 100%; }
  .pdf-strip-btns .btn { width: 100%; text-align: center; }

  /* Section padding */
  .section { padding: 48px 0; }
  .section-sm { padding: 32px 0; }
  .page-hero { padding: 48px 0 36px; }
  .page-hero h1 { font-size: 32px; }

  /* Nav */
  nav.main-nav { display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--cream); padding: 16px 24px; border-bottom: 1px solid var(--border); z-index: 99; }
  nav.main-nav.open { display: block; }
  nav.main-nav ul { flex-direction: column; gap: 0; }
  nav.main-nav ul li a { display: block; padding: 12px 0; font-size: 15px; border-bottom: 1px solid var(--border); }
  nav.main-nav ul li:last-child a { border-bottom: none; }
  .menu-toggle { display: block; }

  /* How-to-care page sticky column */
  .care-step { flex-direction: column; gap: 12px; }
  .care-step-num { text-align: left; min-width: auto; font-size: 36px; }

  /* Mao features */
  .mao-grid { grid-template-columns: 1fr; }
  .mao-img { order: -1; aspect-ratio: 16/9; }

  /* Founder */
  .founder-img { aspect-ratio: 1; max-width: 280px; margin: 0 auto; }

  /* WhatsApp float position */
  .whatsapp-float { bottom: 16px; right: 16px; width: 48px; height: 48px; font-size: 22px; }

  /* Contact form */
  .contact-form { padding: 24px 20px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Cat section headings */
  .cat-section-heading h2 { font-size: 20px; }
  .cat-line { display: none; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gallery-tabs { gap: 8px; }
  .gallery-tab { padding: 6px 14px; font-size: 12px; }
  .btn { padding: 11px 24px; font-size: 13px; }
  .hero h1 { font-size: 30px; }
  .section-heading h2 { font-size: 24px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .team-photo { width: 88px; height: 88px; }
}
