/* Base Styles */
:root {
  --green-900: #0f5b47;
  --green-700: #15735a;
  --green-600: #1b8a6c;
  --green-500: #24a37f;
  --green-300: #87d7bd;
  --gold-500: #d4a84b;
  --gold-400: #e0b966;
  --bg-100: #f7f7f5;
  --bg-900: #0c1412;
  --text-900: #0c1412;
  --text-700: #35423e;
  --text-500: #64736e;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(15, 91, 71, 0.15);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text-900);
  background: var(--bg-100);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* Logo */
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon { width: 42px; height: 32px; display: grid; place-items: center; }
.logo-text { display: grid; line-height: 1; }
.logo-name { font-weight: 700; font-size: 18px; color: var(--green-700); text-transform: lowercase; }
.logo-tagline { font-weight: 600; font-size: 14px; color: var(--green-600); }

/* Navbar */
.navbar { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(0,0,0,0.06); box-shadow: 0 2px 8px rgba(0,0,0,0.04); transition: all 200ms ease; }
.navbar.scrolled { background: rgba(255,255,255,0.98); box-shadow: var(--shadow); }
.nav-container { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 24px; max-width: 100%; }
.nav-links { list-style: none; display: flex; gap: 22px; margin: 0; padding: 0; }
.nav-links a { text-decoration: none; color: var(--text-700); font-weight: 500; transition: color 200ms ease; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--green-700); transition: width 200ms ease; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active, .nav-links a:hover { color: var(--green-700); }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.nav-actions button { border: none; background: var(--white); color: var(--green-700); padding: 8px 10px; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); cursor: pointer; transition: all 200ms ease; }
.nav-actions button:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.cart-btn { position: relative; }
.cart-count { position: absolute; top: -6px; right: -6px; background: var(--gold-500); color: var(--white); font-size: 11px; padding: 2px 6px; border-radius: 999px; animation: pulse 2s infinite; }
.menu-toggle { display: none; }
/* Mobile nav: collapsible menu */
@media (max-width: 768px) {
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 16px 20px;
    z-index: 60;
  }
  .nav-links a { padding: 8px 6px; }
  .nav-links.mobile-open { display: flex; }
}

/* Search Modal */
.search-modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 100; padding: 40px 20px; }
.search-modal.active { display: grid; place-items: start; padding-top: 100px; }
.search-box { background: var(--white); border-radius: 16px; padding: 20px; width: 100%; max-width: 600px; box-shadow: var(--shadow); }
.search-input { width: 100%; border: none; font-size: 18px; padding: 10px 0; outline: none; border-bottom: 2px solid var(--green-300); }
.search-results { margin-top: 14px; max-height: 400px; overflow-y: auto; }
.search-result { padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.06); cursor: pointer; transition: color 200ms; }
.search-result:hover { color: var(--green-700); }

/* Hero */
.hero { display: grid; grid-template-columns: 1fr; align-items: center; gap: 24px; padding: 40px 24px; position: relative; overflow: hidden; }
.hero-bg-pattern { position: absolute; inset: 0; background: radial-gradient(1000px 600px at 20% 80%, rgba(212,168,75,0.08), transparent), radial-gradient(1000px 600px at 80% 20%, rgba(21,115,90,0.12), transparent); pointer-events: none; }
.hero-content { position: relative; z-index: 1; }
.hero-badge { display: inline-block; background: var(--green-300); color: var(--green-900); padding: 6px 12px; border-radius: 999px; font-weight: 600; font-size: 13px; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(36px, 5vw, 64px); line-height: 1.08; margin: 14px 0 12px; color: var(--text-900); }
.hero .highlight { color: var(--green-700); }
.hero p { color: var(--text-700); max-width: 620px; }
.hero-buttons { display: flex; gap: 16px; margin-top: 28px; flex-wrap: wrap; }
.hero-buttons .btn { padding: 16px 32px; font-size: 16px; letter-spacing: 0.3px; }
.btn { display: inline-block; padding: 14px 28px; border-radius: 12px; font-weight: 700; text-decoration: none; border: 1px solid transparent; font-size: 15px; transition: all 250ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.btn-primary { background: linear-gradient(135deg, var(--green-700) 0%, var(--green-600) 100%); color: var(--white); box-shadow: 0 8px 20px rgba(21, 115, 90, 0.25); }
.btn-secondary { background: var(--white); color: var(--green-700); border-color: var(--green-700); border-width: 2px; font-weight: 600; }
.btn:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(21, 115, 90, 0.35); }
.btn-secondary:hover { background: rgba(21, 115, 90, 0.08); border-color: var(--green-600); }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 24px; }
.stat { background: var(--white); border: 1px solid rgba(0,0,0,0.06); border-radius: 14px; padding: 16px; text-align: center; box-shadow: var(--shadow); }
.stat-number { font-size: 22px; font-weight: 700; color: var(--green-700); }
.stat-label { color: var(--text-500); font-size: 13px; }
.hero-image { position: relative; }
.hero-image-wrapper { position: relative; height: 420px; border-radius: 24px; background-image: linear-gradient(135deg, rgba(15,91,71,0.45), rgba(21,115,90,0.35)), url('images/photo_2026-01-30_15-55-09.jpg'); background-size: cover, cover; background-position: center, center; box-shadow: var(--shadow); overflow: hidden; display: grid; place-items: center; }
.plant-circle { width: 70%; aspect-ratio: 1/1; border-radius: 50%; background: radial-gradient(circle at 50% 40%, rgba(135,215,189,0.14), rgba(255,255,255,0.06)); border: 1px dashed rgba(255,255,255,0.25); }
.floating-card { position: absolute; background: rgba(255,255,255,0.92); border: 1px solid rgba(0,0,0,0.06); padding: 10px 12px; border-radius: 12px; display: flex; align-items: center; gap: 8px; box-shadow: var(--shadow); color: var(--green-700); font-weight: 600; }
.card-1 { top: 14px; left: 14px; }
.card-2 { bottom: 14px; right: 14px; }

/* Features */
.features { padding: 40px 0; }
.features-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.feature-card { background: var(--white); border: 1px solid rgba(0,0,0,0.06); border-radius: 16px; padding: 18px; box-shadow: var(--shadow); }
.feature-icon { width: 42px; height: 42px; border-radius: 10px; display: grid; place-items: center; color: var(--green-700); background: rgba(21,115,90,0.1); margin-bottom: 10px; }
.feature-card h3 { margin: 6px 0 6px; }
.feature-card p { color: var(--text-500); }

/* About */
.about { padding: 60px 0; }

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

.fade-in-up { animation: fadeInUp 600ms ease forwards; }
.slide-in-left { animation: slideInLeft 600ms ease forwards; }
.slide-in-right { animation: slideInRight 600ms ease forwards; }

/* Base hidden state for scroll-reveal elements */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(16px);
  will-change: opacity, transform;
}

/* Button ripple effect */
.btn { position: relative; overflow: hidden; }
.btn .ripple {
  position: absolute;
  left: 0; top: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  transform: scale(0);
  background: rgba(255,255,255,0.5);
  pointer-events: none;
  animation: ripple 600ms ease-out;
}
@keyframes ripple {
  to { transform: scale(18); opacity: 0; }
}

/* Interactive tilt cards */
.interactive-tilt { transition: transform 150ms ease, box-shadow 150ms ease; will-change: transform; transform-style: preserve-3d; }
.interactive-tilt:hover { /* Disable default hover translate to let JS tilt control transform */ transform: none; }

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
  .fade-in-up,
  .slide-in-left,
  .slide-in-right,
  .btn .ripple { animation: none !important; }
  .interactive-tilt { transition: none !important; }
}

.about-content { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: center; }
.about-image-wrapper { height: 320px; border-radius: 22px; background-image: linear-gradient(135deg, rgba(15,91,71,0.35), rgba(21,115,90,0.25)), url('images/photo_2026-01-30_15-55-14.jpg'); background-size: cover, cover; background-position: center, center; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.experience-badge { position: absolute; bottom: 16px; left: 16px; background: var(--green-700); color: var(--white); border-radius: 14px; padding: 10px 14px; box-shadow: var(--shadow); display: grid; grid-template-columns: auto auto; align-items: center; gap: 10px; }
.experience-badge .years { font-size: 26px; font-weight: 800; }
.experience-badge .text { font-size: 12px; opacity: 0.9; }
.about-text .section-badge { color: var(--green-700); font-weight: 700; letter-spacing: 0.2px; }
.about-text h2 { font-family: 'Playfair Display', serif; font-size: 36px; margin: 10px 0; }
.about-text .lead { color: var(--text-700); }
.about-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 14px 0; }
.about-feature { display: flex; align-items: center; gap: 10px; color: var(--text-700); }
.about-feature i { color: var(--green-600); }

/* Trust Badges Section */
.trust-badges { padding: 40px 0; background: linear-gradient(135deg, rgba(21,115,90,0.08), rgba(24,163,127,0.05)); border-top: 1px solid rgba(21,115,90,0.1); border-bottom: 1px solid rgba(21,115,90,0.1); }
.badges-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.badge-item { display: flex; align-items: center; gap: 16px; padding: 18px; background: var(--white); border-radius: 14px; border: 1px solid rgba(21,115,90,0.08); box-shadow: 0 2px 8px rgba(21,115,90,0.06); transition: all 250ms ease; }
.badge-item:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(21,115,90,0.12); border-color: rgba(21,115,90,0.15); }
.badge-icon { width: 56px; height: 56px; border-radius: 12px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(21,115,90,0.1), rgba(24,163,127,0.1)); color: var(--green-700); font-size: 24px; flex-shrink: 0; }
.badge-item h4 { margin: 0 0 4px; font-size: 15px; color: var(--text-900); font-weight: 700; }
.badge-item p { margin: 0; font-size: 13px; color: var(--text-500); line-height: 1.4; }

/* Products */
.products { padding: 60px 0; }
.section-header { text-align: center; margin-bottom: 20px; }
.section-badge { display: inline-block; background: rgba(21,115,90,0.1); color: var(--green-700); padding: 6px 12px; border-radius: 999px; font-weight: 600; font-size: 13px; }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: 34px; }
.section-header .highlight { color: var(--green-700); }
.product-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 14px; }
.filter-btn { padding: 8px 14px; border-radius: 999px; border: 1px solid rgba(0,0,0,0.12); background: var(--white); color: var(--text-700); cursor: pointer; }
.filter-btn.active, .filter-btn:hover { background: var(--green-700); color: var(--white); border-color: transparent; }
.products-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.product-card { background: var(--white); border-radius: 18px; box-shadow: var(--shadow); border: 1px solid rgba(0,0,0,0.06); overflow: hidden; transition: all 300ms ease; cursor: pointer; }
.product-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(15, 91, 71, 0.25); }
.product-image { position: relative; height: 220px; overflow: hidden; }
.product-placeholder { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 300ms ease; }
.product-image img.product-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; display: block; }
.product-card:hover .product-placeholder { transform: scale(1.05); }
.product-badge { position: absolute; top: 12px; left: 12px; background: var(--green-700); color: var(--white); font-size: 12px; padding: 4px 8px; border-radius: 999px; z-index: 2; }
.product-actions { position: absolute; right: 12px; bottom: 12px; display: flex; gap: 8px; z-index: 2; opacity: 0; transform: translateY(10px); transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.product-card:hover .product-actions { opacity: 1; transform: translateY(0); }
.action-btn:hover { background: linear-gradient(135deg, var(--green-700), var(--green-600)); color: var(--white); transform: scale(1.12) translateY(-2px); border-color: var(--green-700); box-shadow: 0 8px 20px rgba(21, 115, 90, 0.3); }
.product-info { padding: 14px; }
.product-category { color: var(--text-500); font-size: 12px; }
.product-info h3 { margin: 6px 0; font-size: 18px; transition: color 200ms; }
.product-card:hover .product-info h3 { color: var(--green-700); }
.product-rating { color: #ffb100; font-size: 12px; display: flex; align-items: center; gap: 4px; }
.product-price { display: flex; align-items: center; gap: 10px; margin-top: 6px; }
.current-price { font-weight: 700; color: var(--green-700); font-size: 16px; }
.original-price { color: var(--text-500); text-decoration: line-through; font-size: 14px; }
.products-cta { text-align: center; margin-top: 32px; padding-top: 20px; border-top: 1px solid rgba(0, 0, 0, 0.08); }\n.products-cta .btn-primary { padding: 18px 40px; font-size: 17px; }

/* Placeholder imagery using provided attachments */
.succulent-1 {
  /* Gradient fallback + image overlay */
  background-image: linear-gradient(135deg, #0f5b47, #15735a);
  background-size: cover, cover;
  background-position: center, center;
}

.succulent-2 {
  background-image: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  background-size: cover, cover;
  background-position: center, center;
}

.flowers-1 {
  background-image: linear-gradient(135deg, #d4a37f, #c794a9);
  background-size: cover, cover;
  background-position: center, center;
}

.indoor-1 { 
  background: linear-gradient(135deg, #87d7bd, #e9efe7);
  position: relative;
  overflow: hidden;
}
.indoor-1::before {
  content: '🪴';
  position: absolute;
  font-size: 120px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.3;
}

.indoor-2 { 
  background: linear-gradient(135deg, #87d7bd, #c8e5d0);
  position: relative;
  overflow: hidden;
}
.indoor-2::before {
  content: '🌱';
  position: absolute;
  font-size: 120px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.3;
}

.outdoor-1 { 
  background: linear-gradient(135deg, #9bb89b, #87d7bd);
  position: relative;
  overflow: hidden;
}
.outdoor-1::before {
  content: '🌼';
  position: absolute;
  font-size: 120px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.3;
}

/* Gallery placeholders mapped to attachments */
.g1 { background-image: linear-gradient(135deg, #e9d9c6, #c794a9); background-size: cover, cover; background-position: center, center; }
.g2 { background-image: linear-gradient(135deg, #0f5b47, #15735a); background-size: cover, cover; background-position: center, center; }
.g3 { background-image: linear-gradient(135deg, #0f5b47, #15735a); background-size: cover, cover; background-position: center, center; }
.g4 { background-image: linear-gradient(135deg, #0f5b47, #15735a); background-size: cover, cover; background-position: center, center; }
.g5 { background: linear-gradient(135deg, #0f5b47, #15735a); }

@keyframes gradientShift {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

/* Services */
.services { padding: 60px 0; background: #f0f5f3; }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.service-card { background: var(--white); border: 1px solid rgba(0,0,0,0.06); border-radius: 18px; padding: 18px; box-shadow: var(--shadow); }
.service-icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; color: var(--green-700); background: rgba(21,115,90,0.1); margin-bottom: 10px; }
.service-link { color: var(--green-700); text-decoration: none; font-weight: 600; }

/* Gallery */
.gallery { padding: 60px 0; }
.gallery-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.gallery-item { position: relative; height: 220px; border-radius: 20px; overflow: hidden; box-shadow: 0 8px 24px rgba(15, 91, 71, 0.15); cursor: pointer; transition: all 350ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.gallery-item:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(15, 91, 71, 0.25); }
.gallery-item.large { grid-column: span(2); height: 280px; }
.gallery-item.tall { grid-row: span(2); height: 500px; }
.gallery-placeholder { position: absolute; inset: 0; background: linear-gradient(135deg, #0f5b47, #15735a); background-size: cover; background-position: center; transition: transform 350ms ease; }
.gallery-item:hover .gallery-placeholder { transform: scale(1.08); }
.gallery-overlay { position: absolute; inset: 0; padding: 20px; color: var(--white); background: linear-gradient(180deg, rgba(0,0,0,0.1), rgba(15,91,71,0.7)); display: flex; flex-direction: column; justify-content: flex-end; transition: all 350ms ease; opacity: 0.9; }
.gallery-item:hover .gallery-overlay { background: linear-gradient(180deg, rgba(0,0,0,0.2), rgba(15,91,71,0.85)); opacity: 1; }
.gallery-overlay h4 { margin: 0 0 6px; font-size: 18px; font-weight: 700; letter-spacing: 0.2px; }
.gallery-overlay p { margin: 0; font-size: 13px; opacity: 0.95; font-weight: 500; }

/* Testimonials */
.testimonials { padding: 60px 0; background: #0f5b47; color: var(--white); }
.testimonials .section-header .section-badge { background: rgba(255,255,255,0.12); color: #e9efe7; }
.testimonials .section-header h2 { color: #e9efe7; }
.testimonials-slider { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 12px; }
.testimonial-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2); border-radius: 18px; padding: 18px; }
.testimonial-content .stars { color: #ffd56b; }
.testimonial-author { margin-top: 10px; display: flex; align-items: center; gap: 10px; }
.author-avatar { width: 36px; height: 36px; border-radius: 999px; display: grid; place-items: center; font-weight: 700; background: rgba(255,255,255,0.15); }

/* Newsletter */
.newsletter { padding: 60px 0; }
.newsletter-content { background: var(--white); border: 1px solid rgba(0,0,0,0.06); border-radius: 20px; padding: 18px; box-shadow: var(--shadow); display: grid; grid-template-columns: 1fr; align-items: center; gap: 16px; }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input { flex: 1; padding: 12px 14px; border-radius: 12px; border: 1px solid rgba(0,0,0,0.12); transition: all 200ms ease; }
.newsletter-form input:focus { outline: none; border-color: var(--green-700); }

/* Contact */
.contact { padding: 60px 24px; background: linear-gradient(135deg, #f0f5f3 0%, #e9efe7 100%); }
.contact-wrapper { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start; }
.contact-info .section-badge { color: var(--green-700); background: rgba(21,115,90,0.1); }
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: 36px; margin: 10px 0; }
.contact-details { display: grid; gap: 18px; margin: 22px 0; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; transition: all 200ms ease; padding: 14px; border-radius: 12px; }
.contact-item:hover { transform: translateX(4px); background: rgba(255,255,255,0.5); }
.contact-item h4 { margin: 0 0 6px; font-weight: 700; font-size: 16px; color: var(--text-900); letter-spacing: -0.3px; }
.contact-item p { margin: 0; color: var(--text-700); font-size: 15px; line-height: 1.5; }
.contact-icon { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: var(--green-700); color: var(--white); transition: all 200ms ease; font-size: 20px; flex-shrink: 0; }
.contact-item:hover .contact-icon { background: var(--green-900); transform: scale(1.08); }
.contact-form-wrapper { background: var(--white); border-radius: 20px; padding: 28px; box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.contact-form { display: grid; gap: 14px; }
.form-group { margin-bottom: 0; }
.form-group input, .form-group textarea { width: 100%; padding: 12px 16px; border-radius: 14px; border: 2px solid rgba(0,0,0,0.08); font-family: inherit; font-size: 15px; transition: all 200ms ease; background: #fafafa; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--green-700); background: var(--white); box-shadow: 0 0 0 4px rgba(21,115,90,0.08); }
.form-group textarea { resize: vertical; min-height: 140px; }
.btn-block { width: 100%; padding: 16px 24px; font-size: 16px; font-weight: 700; border-radius: 12px; letter-spacing: 0.3px; }
.btn-primary.btn-block { background: linear-gradient(135deg, var(--green-700) 0%, var(--green-600) 100%); color: var(--white); box-shadow: 0 10px 28px rgba(21,115,90,0.28); }
.btn-primary.btn-block:hover { background: linear-gradient(135deg, var(--green-600) 0%, var(--green-700) 100%); transform: translateY(-3px); box-shadow: 0 14px 36px rgba(21,115,90,0.4); }

/* Transitions & Animations for all interactive elements */
.btn { transition: all 200ms ease; }
.feature-card, .service-card, .gallery-item, .testimonial-card { 
  will-change: transform;
  transition: all 300ms ease; 
}
.fade-in-up { animation: fadeInUp 600ms ease forwards; }
.slide-in-left { animation: slideInLeft 600ms ease forwards; }
.slide-in-right { animation: slideInRight 600ms ease forwards; }

/* Footer */
.footer { padding: 40px 0 20px; background: #0f5b47; color: #e9efe7; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.footer a { color: #cfe5dd; text-decoration: none; }
.footer-links h4 { margin: 6px 0; }
.footer-links ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.featured-list { display: grid; gap: 10px; }
.featured-item { display: grid; grid-template-columns: 40px 1fr; gap: 8px; align-items: center; }
.featured-item img { width: 40px; height: 40px; object-fit: cover; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.25); }
.footer-bottom { margin-top: 16px; border-top: 1px solid rgba(255,255,255,0.2); padding-top: 16px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-bottom-content { width: 100%; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-left { flex: 1; min-width: 200px; }
.footer-left p { margin: 0; font-size: 14px; opacity: 0.9; }
.footer-right { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.payment-methods-label { font-size: 13px; font-weight: 600; opacity: 0.95; text-transform: uppercase; letter-spacing: 0.5px; }
.payment-methods { display: flex; gap: 12px; flex-wrap: wrap; }
.payment-badge { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 8px 12px; background: rgba(255,255,255,0.08); border-radius: 10px; border: 1px solid rgba(255,255,255,0.15); font-size: 12px; opacity: 0.9; transition: all 200ms ease; cursor: help; }
.payment-badge:hover { background: rgba(255,255,255,0.12); opacity: 1; transform: translateY(-2px); }
.payment-badge i { font-size: 18px; }
.payment-badge span { font-weight: 500; text-align: center; }

/* WhatsApp Chat Button */
.whatsapp-chat { position: fixed; bottom: 20px; right: 20px; z-index: 100; }
.whatsapp-chat-btn {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #25D366;
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
  z-index: 1;
  border: none;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.whatsapp-chat-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.whatsapp-chat-btn i { line-height: 1; }
.whatsapp-chat-tooltip {
  position: absolute;
  right: 70px;
  bottom: 8px;
  background: var(--green-900);
  color: var(--white);
  padding: 8px 10px;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
  font-size: 13px;
  white-space: nowrap;
  opacity: 1;
  transform: none;
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease;
}
.whatsapp-chat-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  bottom: 14px;
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent transparent var(--green-900);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Social Media Links */
.social-links-wrapper { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.social-links-title { margin: 0; font-size: 14px; font-weight: 600; color: var(--text-900); text-transform: uppercase; letter-spacing: 0.5px; }
.footer .social-links-title { color: #e9efe7; opacity: 0.9; }
.social-links { display: flex; gap: 12px; }
.social-link { 
  display: grid; 
  place-items: center; 
  width: 48px; 
  height: 48px; 
  border-radius: 50%; 
  background: var(--green-700); 
  border: none; 
  color: var(--white); 
  text-decoration: none; 
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94); 
  font-size: 18px; 
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(15,91,71,0.25);
}

.social-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
  opacity: 0;
  transition: opacity 300ms ease;
}

.social-link:hover {
  background: var(--green-500);
  color: var(--white);
  transform: translateY(-6px);
  box-shadow: 0 16px 28px rgba(15,91,71,0.35);
}

.social-link:hover::before {
  opacity: 1;
}

.social-link i { 
  position: relative; 
  z-index: 1; 
  font-size: 20px;
}

/* Responsive (mobile-first) */
/* Base is mobile. Scale up with min-width breakpoints. */
@media (min-width: 640px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .whatsapp-chat-tooltip { display: block; }
}

@media (min-width: 768px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-slider { grid-template-columns: 1fr 1fr; }
  .newsletter-form { flex-direction: row; }
  .badges-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .hero { display: grid; grid-template-columns: 1.1fr 0.9fr; }
  .hero-image-wrapper { height: 420px; }
  .about-content { grid-template-columns: 1fr 1.2fr; }
  .about-image-wrapper { height: 420px; }
  .badges-grid { grid-template-columns: repeat(4, 1fr); }
  .features-grid { grid-template-columns: repeat(4, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr 1fr; }
  .newsletter-content { grid-template-columns: 1.2fr 0.8fr; }
  .contact-wrapper { grid-template-columns: 1fr 1fr; }
  .badge-item { flex-direction: column; text-align: center; padding: 24px; }
}

/* ===== ADVANCED FEATURES ===== */

/* Enhanced Product Toolbar */
.products-toolbar { margin: 16px 0; }
.search-filter-wrapper { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.product-search-box { position: relative; flex: 1; min-width: 280px; }
.product-search-box i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-500); }
.product-search-box input { width: 100%; padding: 10px 14px 10px 40px; border-radius: 10px; border: 1px solid rgba(0,0,0,0.12); font-family: inherit; transition: all 200ms ease; }
.product-search-box input:focus { outline: none; border-color: var(--green-700); box-shadow: 0 0 0 3px rgba(21,115,90,0.1); }
.filter-controls { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-select { padding: 10px 14px; border-radius: 10px; border: 1px solid rgba(0,0,0,0.12); font-family: inherit; background: var(--white); cursor: pointer; transition: all 200ms ease; }
.filter-select:focus { outline: none; border-color: var(--green-700); box-shadow: 0 0 0 3px rgba(21,115,90,0.1); }
.products-results-bar { margin: 10px 0; color: var(--text-500); font-size: 14px; }

/* Product Reviews Link */
.product-reviews-link { margin-top: 6px; }
.view-reviews { color: var(--green-700); text-decoration: none; font-size: 13px; transition: color 200ms; }
.view-reviews:hover { color: var(--green-900); text-decoration: underline; }

/* Modal Base */
.modal, .lightbox { display: none; position: fixed; inset: 0; z-index: 200; align-items: center; justify-content: center; animation: fadeIn 300ms ease; }
.modal.active, .lightbox.active { display: flex; }
.modal-overlay, .lightbox-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(4px); }
.modal-content, .lightbox-content { position: relative; z-index: 1; background: var(--white); border-radius: 20px; max-width: 90vw; max-height: 90vh; overflow: auto; box-shadow: 0 20px 60px rgba(0,0,0,0.3); animation: slideUp 300ms ease; }
.modal-close, .lightbox-close { position: absolute; top: 12px; right: 12px; background: rgba(0,0,0,0.6); color: var(--white); border: none; width: 36px; height: 36px; border-radius: 50%; font-size: 24px; cursor: pointer; z-index: 10; transition: all 200ms ease; line-height: 1; }
.modal-close:hover, .lightbox-close:hover { background: rgba(0,0,0,0.8); transform: scale(1.1); }

/* Quick View Modal */
.quick-view-content { width: 900px; max-width: 90vw; padding: 30px; }
.quick-view-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.quick-view-image { border-radius: 16px; overflow: hidden; background: #f5f5f5; }
.quick-view-image img { width: 100%; height: auto; object-fit: cover; }
.quick-view-details h2 { margin: 10px 0; font-family: 'Playfair Display', serif; font-size: 28px; }
.qv-description { color: var(--text-700); margin: 12px 0; line-height: 1.6; }
.qv-actions { display: flex; gap: 14px; align-items: center; margin: 24px 0; }
.quantity-selector { display: flex; align-items: center; gap: 8px; border: 2px solid rgba(21, 115, 90, 0.2); border-radius: 10px; padding: 6px; }
.qty-btn { border: none; background: transparent; color: var(--green-700); font-size: 18px; width: 32px; height: 32px; cursor: pointer; border-radius: 6px; transition: all 200ms ease; font-weight: 700; }
.qty-btn:hover { background: var(--green-300); }
.qty-input { border: none; width: 50px; text-align: center; font-size: 16px; font-weight: 600; }
.qty-input:focus { outline: none; }
.add-to-cart-qv { flex: 1; padding: 16px 24px !important; font-size: 16px !important; }
.qv-reviews-summary { margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(0,0,0,0.1); }
.qv-reviews-summary h4 { margin: 0 0 10px; }
#qv-reviews-list { display: grid; gap: 10px; max-height: 200px; overflow-y: auto; }
.review-item { padding: 10px; background: var(--bg-100); border-radius: 10px; }
.review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.review-author { font-weight: 600; font-size: 14px; }
.review-date { font-size: 12px; color: var(--text-500); }
.review-stars { color: #ffb100; font-size: 12px; }
.review-text { font-size: 13px; color: var(--text-700); }
.qv-review-form { margin-top: 12px; display: grid; gap: 8px; }
.qv-form-row { display: grid; grid-template-columns: 1fr 160px; gap: 8px; }
.qv-review-form input, .qv-review-form select, .qv-review-form textarea { padding: 10px 12px; border-radius: 10px; border: 1px solid rgba(0,0,0,0.12); font-family: inherit; }
.qv-review-form input:focus, .qv-review-form select:focus, .qv-review-form textarea:focus { outline: none; border-color: var(--green-700); box-shadow: 0 0 0 3px rgba(21,115,90,0.1); }

/* Shopping Cart Sidebar */
.cart-sidebar { position: fixed; top: 0; right: -400px; width: 400px; height: 100vh; background: var(--white); box-shadow: -4px 0 20px rgba(0,0,0,0.2); z-index: 150; display: flex; flex-direction: column; transition: right 300ms ease; }
.cart-sidebar.active { right: 0; }
.cart-header { display: flex; justify-content: space-between; align-items: center; padding: 20px; border-bottom: 1px solid rgba(0,0,0,0.1); }
.cart-header h3 { margin: 0; }
.cart-close { border: none; background: transparent; font-size: 28px; cursor: pointer; color: var(--text-700); transition: color 200ms; }
.cart-close:hover { color: var(--green-700); }
.cart-items { flex: 1; padding: 20px; overflow-y: auto; }
.cart-item { display: grid; grid-template-columns: 70px 1fr auto; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.cart-item-image { width: 70px; height: 70px; border-radius: 10px; background: #f5f5f5; overflow: hidden; }
.cart-item-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-details h4 { margin: 0 0 4px; font-size: 14px; }
.cart-item-price { color: var(--green-700); font-weight: 600; font-size: 14px; }
.cart-item-qty { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.cart-qty-btn { border: none; background: var(--bg-100); color: var(--text-700); width: 24px; height: 24px; border-radius: 4px; cursor: pointer; font-size: 14px; transition: all 200ms; }
.cart-qty-btn:hover { background: var(--green-300); }
.cart-qty-value { font-size: 13px; min-width: 20px; text-align: center; }
.cart-item-remove { align-self: start; border: none; background: transparent; color: var(--text-500); cursor: pointer; font-size: 18px; transition: color 200ms; }
.cart-item-remove:hover { color: #c94f4f; }
.cart-footer { padding: 20px; border-top: 1px solid rgba(0,0,0,0.1); }
.cart-subtotal { display: flex; justify-content: space-between; font-size: 18px; font-weight: 600; margin-bottom: 14px; }
#cart-subtotal-amount { color: var(--green-700); }
.cart-footer .btn { margin-bottom: 8px; }
.continue-shopping { background: transparent; color: var(--green-700); border: 1px solid var(--green-700); }
.empty-cart-message { text-align: center; padding: 40px 20px; color: var(--text-500); }

/* Gallery Lightbox */
.lightbox-content { background: transparent; max-width: 95vw; max-height: 95vh; padding: 0; border-radius: 0; }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.6); color: var(--white); border: none; width: 50px; height: 50px; border-radius: 50%; font-size: 32px; cursor: pointer; z-index: 10; transition: all 200ms ease; line-height: 1; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(0,0,0,0.8); transform: translateY(-50%) scale(1.1); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
#lightbox-image { max-width: 90vw; max-height: 85vh; border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lightbox-caption { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); background: rgba(0,0,0,0.7); color: var(--white); padding: 10px 20px; border-radius: 8px; font-size: 14px; }
.lightbox-toolbar { position: absolute; top: 16px; left: 16px; display: flex; gap: 8px; z-index: 11; }
.lightbox-toolbar button { background: rgba(0,0,0,0.6); color: var(--white); border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; padding: 8px 10px; cursor: pointer; font-weight: 600; }
.lightbox-toolbar button:hover { background: rgba(0,0,0,0.8); }

/* Loading Skeleton */
.skeleton { background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%); background-size: 200% 100%; animation: skeleton-loading 1.5s infinite; border-radius: 8px; }
.skeleton-card { height: 320px; }
.skeleton-text { height: 14px; margin: 8px 0; }
.skeleton-title { height: 20px; width: 70%; margin: 10px 0; }

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Lazy Loading */
.lazy-image { opacity: 0; transition: opacity 400ms ease; }
.lazy-image.loaded { opacity: 1; }

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInFromRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Responsive for Advanced Features */
/* CTA Button Animation */
@keyframes pulse-glow {
  0% {
    box-shadow: 0 8px 20px rgba(21, 115, 90, 0.25);
  }
  50% {
    box-shadow: 0 8px 28px rgba(21, 115, 90, 0.35);
  }
  100% {
    box-shadow: 0 8px 20px rgba(21, 115, 90, 0.25);
  }
}

/* Hero buttons with enhanced styling */
.hero-buttons .btn-primary {
  animation: pulse-glow 3s ease-in-out infinite;
  position: relative;
}

.hero-buttons .btn-primary::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, var(--green-700) 0%, var(--green-600) 100%);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 300ms ease;
  z-index: -1;
}

.hero-buttons .btn-primary:hover::before {
  opacity: 0.3;
}

@media (max-width: 1024px) {
  .quick-view-grid { grid-template-columns: 1fr; }
  .cart-sidebar { width: 350px; right: -350px; }
}

@media (max-width: 768px) {
  .products-toolbar { flex-direction: column; align-items: stretch; }
  .search-filter-wrapper { flex-direction: column; }
  .product-search-box { min-width: 100%; }
  .filter-controls { flex-direction: column; }
  .filter-select { width: 100%; }
  .quick-view-content { padding: 20px; width: 95vw; }
  .qv-actions { flex-direction: column; align-items: stretch; }
  .cart-sidebar { width: 100%; right: -100%; }
  .lightbox-prev, .lightbox-next { width: 40px; height: 40px; font-size: 24px; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .footer-bottom-content { flex-direction: column; align-items: center; justify-content: center; text-align: center; }
  .footer-left { width: 100%; }
  .footer-right { width: 100%; justify-content: center; }
  .payment-methods { justify-content: center; }
  .social-links-wrapper { align-items: center; }
  .social-links { justify-content: center; }
}

/* Chatbot styles removed per request */
