/* =====================================================
   GLOBAL RESET & BASE
===================================================== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle at top, #ffffff, #f4f7f3 70%);
  color: #1c1c1c;
}

/* Global luxury motion */
a, button, .card, .menu-premium-card, .hero-visual img {
  transition:
    transform 1.05s cubic-bezier(.16,1,.3,1),
    box-shadow 1.05s cubic-bezier(.16,1,.3,1),
    opacity .6s ease;
}

/* =====================================================
   NAVBAR
===================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  padding: 16px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0,0,0,.04);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-left img {
  height: 40px;
}

.nav-left span {
  font-weight: 700;
  font-size: 20px;
}

.nav-right a {
  margin-left: 28px;
  text-decoration: none;
  color: #1c1c1c;
  font-weight: 500;
  position: relative;
}

.nav-right a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #64936a;
  transition: width .4s ease;
}

.nav-right a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 8px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #6f8f73, #9bbf9c);
  color: #fff !important;
}

/* =====================================================
   HERO (HOME)
===================================================== */
.hero {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  padding: 90px 64px;
  align-items: center;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  line-height: 1.05;
}

.hero-content h1 span {
  color: #6f8f73;
}

.hero-content p {
  margin: 20px 0 28px;
  font-size: 16px;
  color: #555;
  max-width: 520px;
}

.badge {
  display: inline-block;
  background: rgba(111,143,115,.12);
  color: #4a6b4f;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 22px;
}

/* Buttons */
.hero-actions {
  margin-bottom: 24px;
}

.btn {
  padding: 14px 32px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  margin-right: 14px;
  display: inline-block;
}

.btn.primary {
  background: linear-gradient(135deg, #6f8f73, #9bbf9c);
  color: #fff;
  box-shadow: 0 16px 36px rgba(122,155,118,.3);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(122,155,118,.4);
}

.btn.outline {
  border: 1.5px solid #6f8f73;
  color: #6f8f73;
}

/* Hero points */
.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-points li {
  font-size: 14px;
  margin-bottom: 6px;
  color: #444;
}

/* Hero images */
.hero-visual {
  position: relative;
  height: 300px;
}

.hero-visual img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 26px;
  position: absolute;
  box-shadow: 0 28px 60px rgba(0,0,0,.14);
}

.hero-visual img:hover {
  transform: translateY(-6px);
}

.img1 { top: 0; left: 160px; }
.img2 { bottom: 0; left: 0; }
.img3 { top: 100px; right: 0; }

/* =====================================================
   TRUST STRIP
===================================================== */
.trust-strip {
  margin: 40px 56px;
  padding: 26px;
  border-radius: 26px;
  background: #eef3ee;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(160px,1fr));
  text-align: center;
  font-weight: 500;
}

/* =====================================================
   FEATURED PRODUCTS
===================================================== */
.featured {
  padding: 80px 64px;
  text-align: center;
}

.featured-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 36px;
}

.card {
  background: #fff;
  padding: 22px;
  border-radius: 32px;
  box-shadow:
    0 26px 60px rgba(0,0,0,.1),
    inset 0 0 0 1px rgba(0,0,0,.03);
}

.card:hover {
  transform: translateY(-10px);
}

.card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 22px;
}

/* =====================================================
   PROCESS
===================================================== */
.process {
  padding: 80px 64px;
  background: #f3f6f2;
  text-align: center;
}

.process-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(160px,1fr));
  gap: 20px;
}

/* =====================================================
   CTA
===================================================== */
.cta {
  padding: 80px 40px;
  text-align: center;
  background: linear-gradient(135deg, #6f8f73, #9bbf9c);
  color: #fff;
}

.cta .btn {
  background: #fff;
  color: #4a6b4f;
  margin-top: 16px;
}

/* =====================================================
   MENU PAGE (ULTRA PREMIUM)
===================================================== */
.menu-hero-premium {
  padding: 64px 24px 32px;
  background:
    radial-gradient(circle at top, rgba(122,155,118,0.12), transparent 60%),
    linear-gradient(180deg, #ffffff, #f3f6f2);
}

.menu-hero-card {
  max-width: 620px;
  margin: auto;
  background: #ffffff;
  padding: 44px 36px;
  border-radius: 36px;
  text-align: center;

  /* Stable premium shadow */
  box-shadow: 0 18px 40px rgba(0,0,0,.08);

  /* Force stable rendering */
  will-change: transform;
  transform: translateZ(0);
}

.menu-premium-grid {
  padding: 72px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.menu-premium-card {
  border-radius: 36px;
  overflow: hidden;
  box-shadow:
    0 18px 40px rgba(0,0,0,.08),
    inset 0 0 0 1px rgba(0,0,0,.03);
}

.menu-premium-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0,0,0,.14);
}

.menu-premium-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.menu-premium-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,.72));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  color: #fff;
}

/* =====================================================
   FOOTER
===================================================== */
.footer {
  padding: 36px;
  text-align: center;
  background: #eef3ee;
  font-size: 14px;
}

/* =====================================================
   WHATSAPP FLOAT
===================================================== */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #25d366;
  color: #fff;
  font-size: 24px;
  padding: 14px 18px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 20px 40px rgba(37,211,102,.45);
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-visual {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 14px 24px;
  }
  .hero {
    padding: 70px 24px;
  }
  .hero-visual {
    display: none;
  }
  .featured,
  .process {
    padding: 70px 24px;
  }
}

@media (max-width: 480px) {
  .btn {
    width: 100%;
    margin-bottom: 12px;
    text-align: center;
  }
}
/* ===== STOP MENU HERO TEXT MOTION ===== */

.menu-hero-premium,
.menu-hero-card,
.menu-hero-card * {
  transition: none !important;
  animation: none !important;
  transform: none !important;
}
/* SEARCH */
.search-wrap {
  padding: 40px;
  text-align: center;
}

.search {
  width: 280px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #ccc;
}

/* PRODUCT GRID */
.product-grid {
  padding: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap: 36px;
}

.product-card {
  background: #fff;
  padding: 22px;
  border-radius: 28px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,.1);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 18px;
}

.product-card h3 {
  margin: 14px 0;
}

.product-card select {
  width: 100%;
  padding: 10px;
  border-radius: 999px;
  margin: 10px 0;
}

/* ANIMATION */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
  transition: all .6s ease;
}

/* MENU CARD FIX */
.menu-premium-card {
  position: relative;
}

.menu-premium-card.wide {
  grid-column: span 2;
}
/* =====================================================
   MOBILE MENU PAGE FIX
===================================================== */

@media (max-width: 768px) {

  /* Fix body overflow */
  body {
    overflow-x: hidden;
  }

  /* Fix menu grid width */
  .menu-premium-grid {
    padding: 32px 16px;
    grid-template-columns: 1fr;
  }

  /* Make cards fit screen */
  .menu-premium-card {
    width: 100%;
    max-width: 100%;
    border-radius: 24px;
  }

  /* Fix images inside cards */
  .menu-premium-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }

  /* Fix overlay spacing */
  .menu-premium-overlay {
    padding: 18px;
  }

  .menu-premium-overlay h3 {
    font-size: 18px;
  }

  .menu-premium-overlay span {
    font-size: 13px;
  }

  /* Wide card should NOT be wide on mobile */
  .menu-premium-card.wide {
    grid-column: span 1;
  }
}
/* =====================================================
   FINAL NAVBAR FIX – MOBILE (ALL PAGES)
===================================================== */

@media (max-width: 900px) {

  /* Navbar container */
  .navbar {
    padding: 12px 16px !important;
    flex-wrap: nowrap;
  }

  /* Left logo + text */
  .nav-left span {
    font-size: 16px;
    white-space: nowrap;
  }

  .nav-left img {
    height: 34px;
  }

  /* Right nav links */
  .nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .nav-right a {
    margin-left: 0 !important;
    font-size: 14px;
    padding: 6px 10px;
    white-space: nowrap;
  }

  /* CTA button (Call) */
  .nav-cta {
    padding: 6px 14px !important;
    font-size: 14px;
    border-radius: 999px;
  }
}

/* Extra small devices (iPhone SE etc.) */
@media (max-width: 380px) {

  .nav-left span {
    font-size: 14px;
  }

  .nav-right a {
    font-size: 13px;
    padding: 5px 8px;
  }

  .nav-cta {
    padding: 5px 12px !important;
    font-size: 13px;
  }
}
/* =====================================================
   NAVBAR TEXT SIZE – FINAL REFINEMENT (ALL PAGES)
===================================================== */

/* Desktop & tablet – slightly smaller */
.nav-right a {
  font-size: 15px;
}

/* Mobile screens */
@media (max-width: 768px) {

  .nav-right a {
    font-size: 13px;   /* Home / Menu / Call smaller */
    padding: 5px 8px;  /* tighter spacing */
  }

  .nav-cta {
    font-size: 13px;
    padding: 5px 12px;
  }

  .nav-left span {
    font-size: 15px;   /* Brand text slightly smaller */
  }
}

/* Very small phones (iPhone SE etc.) */
@media (max-width: 380px) {

  .nav-right a {
    font-size: 12px;
  }

  .nav-cta {
    font-size: 12px;
    padding: 4px 10px;
  }
}
/* =====================================================
   NAVBAR TEXT – EXTRA SMALL POLISH (FINAL)
===================================================== */

/* Default (desktop stays elegant but slightly smaller) */
.nav-right a {
  font-size: 14px;
}

/* Mobile */
@media (max-width: 768px) {

  .nav-right a {
    font-size: 12px;      /* Home / Menu / Call */
    padding: 4px 7px;
  }

  .nav-cta {
    font-size: 12px;
    padding: 4px 10px;
  }

  .nav-left span {
    font-size: 14px;      /* Brand text */
  }
}

/* Very small devices (iPhone SE, compact Android) */
@media (max-width: 380px) {

  .nav-right a {
    font-size: 11px;
  }

  .nav-cta {
    font-size: 11px;
    padding: 3px 9px;
  }

  .nav-left span {
    font-size: 13px;
  }
}
/* =====================================================
   NAVBAR GAP REDUCTION (FINAL POLISH)
===================================================== */

/* Desktop & mobile */
.nav-right a {
  margin-left: 14px;   /* reduced from 28px */
}

/* Mobile */
@media (max-width: 768px) {
  .nav-right a {
    margin-left: 10px;
  }
}

/* Very small devices */
@media (max-width: 380px) {
  .nav-right a {
    margin-left: 8px;
  }
}
