/* =============================================
   SAVORA — Artisan Platters
   styles.css
   ============================================= */

/* --- Variables --- */
:root {
  --cream:        #FAF8F4;
  --cream-dark:   #F0EBE3;
  --cream-border: #E8E0D5;
  --green:        #2C4A3E;
  --green-light:  #3D6B5C;
  --green-pale:   #EAF2EF;
  --gold:         #C9A84C;
  --gold-light:   #E8C96A;
  --text:         #1A1A1A;
  --text-muted:   #6B6B6B;
  --white:        #FFFFFF;
  --shadow-sm:    0 2px 12px rgba(44,74,62,0.07);
  --shadow:       0 6px 28px rgba(44,74,62,0.10);
  --shadow-lg:    0 16px 48px rgba(44,74,62,0.15);
  --radius:       16px;
  --radius-sm:    8px;
  --ease:         cubic-bezier(0.4,0,0.2,1);
  --transition:   all 0.35s var(--ease);
}

/* --- Reset --- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body {
  font-family:'Inter', sans-serif;
  background:var(--cream);
  color:var(--text);
  overflow-x:hidden;
  line-height:1.65;
}
img { display:block; max-width:100%; }
a { text-decoration:none; color:inherit; }
ul { list-style:none; }
button { cursor:pointer; border:none; background:none; font-family:inherit; }
input, textarea, select { font-family:inherit; }

/* --- Typography --- */
h1,h2,h3,h4,h5 {
  font-family:'Playfair Display', serif;
  line-height:1.2;
  font-weight:700;
}
h1 { font-size:clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size:clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size:clamp(1.2rem, 2.5vw, 1.5rem); }

em { font-style:italic; color:var(--gold); }

/* --- Layout --- */
.container {
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
}
.section { padding:96px 0; }
.section-sm { padding:64px 0; }

/* --- Section Header --- */
.section-header {
  text-align:center;
  max-width:640px;
  margin:0 auto 64px;
}
.section-tag {
  display:inline-block;
  font-size:0.75rem;
  font-weight:600;
  letter-spacing:0.2em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:14px;
}
.section-title { color:var(--green); margin-bottom:16px; }
.section-subtitle { color:var(--text-muted); font-size:1.05rem; line-height:1.75; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position:fixed;
  top:0; left:0; right:0;
  z-index:1000;
  padding:20px 0;
  transition:var(--transition);
}
.navbar.scrolled {
  background:rgba(250,248,244,0.96);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  padding:12px 0;
  box-shadow:var(--shadow-sm);
}
.nav-container {
  display:flex;
  align-items:center;
  justify-content:space-between;
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
}
.nav-logo {
  display:flex;
  align-items:center;
  gap:10px;
  z-index:1001;
}
.logo-text {
  font-family:'Playfair Display', serif;
  font-size:1.6rem;
  font-weight:700;
  color:var(--white);
  letter-spacing:0.04em;
  transition:var(--transition);
}
.navbar.scrolled .logo-text { color:var(--green); }
.logo-dot {
  width:7px; height:7px;
  border-radius:50%;
  background:var(--gold);
  margin-left:2px;
  display:inline-block;
  vertical-align:super;
}
.nav-links {
  display:flex;
  align-items:center;
  gap:8px;
}
.nav-link {
  font-size:0.9rem;
  font-weight:500;
  color:rgba(255,255,255,0.85);
  padding:8px 16px;
  border-radius:50px;
  transition:var(--transition);
  letter-spacing:0.01em;
}
.nav-link:hover { color:var(--white); background:rgba(255,255,255,0.12); }
.navbar.scrolled .nav-link { color:var(--text-muted); }
.navbar.scrolled .nav-link:hover { color:var(--green); background:var(--green-pale); }
.nav-link.active { color:var(--white); }
.navbar.scrolled .nav-link.active { color:var(--green); font-weight:600; }
.nav-cta {
  background:var(--gold) !important;
  color:var(--white) !important;
  font-weight:600;
  padding:10px 22px;
}
.nav-cta:hover { background:var(--gold-light) !important; transform:translateY(-1px); box-shadow:0 4px 16px rgba(201,168,76,0.35); }
.navbar.scrolled .nav-cta { color:var(--white) !important; }

/* Mobile toggle */
.nav-toggle {
  display:none;
  flex-direction:column;
  gap:5px;
  padding:8px;
  z-index:1001;
}
.nav-toggle span {
  display:block;
  width:24px; height:2px;
  background:var(--white);
  border-radius:2px;
  transition:var(--transition);
}
.navbar.scrolled .nav-toggle span { background:var(--green); }
.nav-toggle.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity:0; transform:scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  overflow:hidden;
}
.hero-image {
  position:absolute;
  inset:0;
  z-index:0;
}
.hero-image img {
  width:100%; height:100%;
  object-fit:cover;
  object-position:center;
  transform:scale(1.04);
  transition:transform 8s ease;
}
.hero.loaded .hero-image img { transform:scale(1); }
.hero-overlay {
  position:absolute;
  inset:0;
  background:linear-gradient(135deg, rgba(20,38,30,0.78) 0%, rgba(20,38,30,0.42) 60%, rgba(20,38,30,0.2) 100%);
}
.hero-content {
  position:relative;
  z-index:1;
  max-width:1200px;
  margin:0 auto;
  padding:120px 24px 80px;
  width:100%;
}
.hero-tagline {
  font-size:0.8rem;
  font-weight:600;
  letter-spacing:0.25em;
  text-transform:uppercase;
  color:var(--gold-light);
  margin-bottom:20px;
  display:flex;
  align-items:center;
  gap:12px;
}
.hero-tagline::before {
  content:'';
  display:inline-block;
  width:32px; height:1.5px;
  background:var(--gold);
}
.hero-title {
  color:var(--white);
  margin-bottom:24px;
  max-width:700px;
}
.hero-subtitle {
  color:rgba(255,255,255,0.78);
  font-size:1.1rem;
  max-width:520px;
  margin-bottom:40px;
  line-height:1.75;
}
.hero-actions { display:flex; gap:16px; flex-wrap:wrap; margin-bottom:32px; }
.hero-notice {
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:rgba(255,255,255,0.65);
  font-size:0.82rem;
  background:rgba(255,255,255,0.1);
  border:1px solid rgba(255,255,255,0.2);
  padding:8px 16px;
  border-radius:50px;
  backdrop-filter:blur(8px);
}
.hero-scroll {
  position:absolute;
  bottom:36px; left:50%;
  transform:translateX(-50%);
  z-index:1;
}
.scroll-indicator {
  width:28px; height:44px;
  border:2px solid rgba(255,255,255,0.4);
  border-radius:14px;
  position:relative;
}
.scroll-indicator::after {
  content:'';
  position:absolute;
  top:6px; left:50%;
  transform:translateX(-50%);
  width:4px; height:8px;
  border-radius:2px;
  background:rgba(255,255,255,0.7);
  animation:scrollDot 2s ease infinite;
}
@keyframes scrollDot {
  0%,100% { opacity:1; transform:translateX(-50%) translateY(0); }
  50%      { opacity:0.3; transform:translateX(-50%) translateY(10px); }
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:14px 32px;
  border-radius:50px;
  font-size:0.9rem;
  font-weight:600;
  letter-spacing:0.02em;
  transition:var(--transition);
  cursor:pointer;
  border:2px solid transparent;
}
.btn-primary {
  background:var(--gold);
  color:var(--white);
  border-color:var(--gold);
}
.btn-primary:hover {
  background:var(--gold-light);
  border-color:var(--gold-light);
  transform:translateY(-2px);
  box-shadow:0 8px 24px rgba(201,168,76,0.4);
}
.btn-outline {
  background:transparent;
  color:var(--white);
  border-color:rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background:rgba(255,255,255,0.12);
  border-color:var(--white);
  transform:translateY(-2px);
}
.btn-green {
  background:var(--green);
  color:var(--white);
  border-color:var(--green);
}
.btn-green:hover {
  background:var(--green-light);
  border-color:var(--green-light);
  transform:translateY(-2px);
  box-shadow:0 8px 24px rgba(44,74,62,0.3);
}
.btn-outline-green {
  background:transparent;
  color:var(--green);
  border-color:var(--green);
}
.btn-outline-green:hover {
  background:var(--green);
  color:var(--white);
  transform:translateY(-2px);
}
.btn-sm { padding:10px 22px; font-size:0.82rem; }
.btn-lg { padding:18px 40px; font-size:1rem; }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  position:relative;
  height:420px;
  display:flex;
  align-items:center;
  overflow:hidden;
  margin-top:0;
}
.page-hero-image {
  position:absolute;
  inset:0;
}
.page-hero-image img {
  width:100%; height:100%;
  object-fit:cover;
  object-position:center 60%;
}
.page-hero-overlay {
  position:absolute;
  inset:0;
  background:linear-gradient(to right, rgba(20,38,30,0.82) 0%, rgba(20,38,30,0.35) 100%);
}
.page-hero-content {
  position:relative;
  z-index:1;
  max-width:1200px;
  margin:0 auto;
  padding:100px 24px 40px;
  width:100%;
}
.page-hero-tag {
  font-size:0.75rem;
  font-weight:600;
  letter-spacing:0.22em;
  text-transform:uppercase;
  color:var(--gold-light);
  display:block;
  margin-bottom:14px;
}
.page-hero-title { color:var(--white); }
.page-hero-subtitle { color:rgba(255,255,255,0.72); margin-top:14px; font-size:1.05rem; max-width:480px; }

/* =============================================
   WHY SAVORA (Feature Cards)
   ============================================= */
.features-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px,1fr));
  gap:24px;
  margin-top:0;
}
.feature-card {
  background:var(--white);
  border-radius:var(--radius);
  padding:40px 32px;
  text-align:center;
  box-shadow:var(--shadow-sm);
  border:1px solid var(--cream-border);
  transition:var(--transition);
}
.feature-card:hover {
  transform:translateY(-6px);
  box-shadow:var(--shadow);
}
.feature-icon {
  width:64px; height:64px;
  background:var(--green-pale);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 20px;
  font-size:1.6rem;
}
.feature-card h3 {
  color:var(--green);
  margin-bottom:10px;
  font-size:1.15rem;
}
.feature-card p { color:var(--text-muted); font-size:0.92rem; }

/* =============================================
   CATEGORY / MENU CARDS
   ============================================= */
.categories-grid {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
}
.category-card {
  position:relative;
  border-radius:var(--radius);
  overflow:hidden;
  aspect-ratio:3/4;
  cursor:pointer;
  group:true;
}
.category-card img {
  width:100%; height:100%;
  object-fit:cover;
  transition:transform 0.6s var(--ease);
}
.category-card:hover img { transform:scale(1.07); }
.category-overlay {
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(20,38,30,0.88) 0%, rgba(20,38,30,0.1) 55%);
  transition:var(--transition);
}
.category-card:hover .category-overlay { background:linear-gradient(to top, rgba(20,38,30,0.92) 0%, rgba(20,38,30,0.2) 55%); }
.category-info {
  position:absolute;
  bottom:0; left:0; right:0;
  padding:28px 24px;
  transition:var(--transition);
}
.category-tag {
  font-size:0.7rem;
  font-weight:600;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--gold-light);
  display:block;
  margin-bottom:6px;
}
.category-name {
  color:var(--white);
  font-size:1.25rem;
  font-family:'Playfair Display', serif;
  margin-bottom:10px;
}
.category-desc {
  color:rgba(255,255,255,0.72);
  font-size:0.82rem;
  line-height:1.6;
  margin-bottom:16px;
  max-height:0;
  overflow:hidden;
  transition:max-height 0.4s var(--ease), opacity 0.35s ease;
  opacity:0;
}
.category-card:hover .category-desc { max-height:80px; opacity:1; }
.category-link {
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:var(--gold-light);
  font-size:0.82rem;
  font-weight:600;
  letter-spacing:0.04em;
  opacity:0;
  transform:translateY(8px);
  transition:var(--transition);
}
.category-card:hover .category-link { opacity:1; transform:translateY(0); }
.category-link svg { width:14px; height:14px; }

/* =============================================
   ABOUT TEASER
   ============================================= */
.about-split {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}
.about-image-wrap {
  position:relative;
}
.about-image-wrap .main-img {
  width:100%;
  height:500px;
  object-fit:cover;
  border-radius:var(--radius);
  box-shadow:var(--shadow-lg);
}
.about-accent-img {
  position:absolute;
  bottom:-32px;
  right:-32px;
  width:200px;
  height:200px;
  object-fit:cover;
  border-radius:var(--radius-sm);
  border:6px solid var(--cream);
  box-shadow:var(--shadow);
}
.about-badge {
  position:absolute;
  top:-20px; left:-20px;
  width:100px; height:100px;
  background:var(--gold);
  border-radius:50%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  color:var(--white);
  box-shadow:var(--shadow);
}
.about-badge strong { font-size:1.4rem; font-family:'Playfair Display',serif; line-height:1; }
.about-badge span { font-size:0.65rem; font-weight:600; letter-spacing:0.08em; text-transform:uppercase; }
.about-text { padding:20px 0; }
.about-text .section-tag { text-align:left; }
.about-text .section-title { text-align:left; margin-bottom:20px; }
.about-text p { color:var(--text-muted); margin-bottom:18px; font-size:1rem; line-height:1.8; }
.about-stats {
  display:flex;
  gap:32px;
  margin:32px 0;
  padding:24px 0;
  border-top:1px solid var(--cream-border);
  border-bottom:1px solid var(--cream-border);
}
.stat strong { display:block; font-family:'Playfair Display',serif; font-size:2rem; color:var(--green); }
.stat span { font-size:0.82rem; color:var(--text-muted); font-weight:500; }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background:var(--green);
  padding:96px 0;
  position:relative;
  overflow:hidden;
}
.cta-banner::before {
  content:'';
  position:absolute;
  top:-60px; right:-60px;
  width:300px; height:300px;
  border-radius:50%;
  background:rgba(255,255,255,0.04);
}
.cta-banner::after {
  content:'';
  position:absolute;
  bottom:-80px; left:10%;
  width:220px; height:220px;
  border-radius:50%;
  background:rgba(201,168,76,0.12);
}
.cta-inner {
  text-align:center;
  position:relative;
  z-index:1;
}
.cta-inner .section-tag { color:var(--gold-light); }
.cta-inner h2 { color:var(--white); margin-bottom:16px; }
.cta-inner p { color:rgba(255,255,255,0.72); margin-bottom:36px; font-size:1.05rem; max-width:520px; margin-left:auto; margin-right:auto; }
.cta-actions { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section { background:var(--cream-dark); }
.testimonials-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(300px,1fr));
  gap:24px;
}
.testimonial-card {
  background:var(--white);
  border-radius:var(--radius);
  padding:36px 32px;
  box-shadow:var(--shadow-sm);
  border:1px solid var(--cream-border);
  transition:var(--transition);
  position:relative;
}
.testimonial-card:hover { transform:translateY(-4px); box-shadow:var(--shadow); }
.testimonial-card::before {
  content:'\201C';
  font-family:'Playfair Display',serif;
  font-size:5rem;
  color:var(--gold);
  opacity:0.25;
  position:absolute;
  top:12px; left:24px;
  line-height:1;
}
.stars { color:var(--gold); font-size:1rem; margin-bottom:14px; letter-spacing:2px; }
.testimonial-text {
  color:var(--text);
  font-size:0.97rem;
  line-height:1.8;
  margin-bottom:24px;
  font-style:italic;
}
.testimonial-author {
  display:flex;
  align-items:center;
  gap:14px;
}
.author-avatar {
  width:44px; height:44px;
  border-radius:50%;
  object-fit:cover;
  border:2px solid var(--cream-border);
}
.author-name { font-weight:600; font-size:0.9rem; color:var(--green); }
.author-occasion { font-size:0.78rem; color:var(--text-muted); }

/* =============================================
   GALLERY STRIP
   ============================================= */
.gallery-section { padding:0; }
.gallery-strip {
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:4px;
}
.gallery-item {
  aspect-ratio:1;
  overflow:hidden;
  position:relative;
}
.gallery-item img {
  width:100%; height:100%;
  object-fit:cover;
  transition:transform 0.5s var(--ease);
}
.gallery-item:hover img { transform:scale(1.1); }
.gallery-item-overlay {
  position:absolute;
  inset:0;
  background:rgba(44,74,62,0.5);
  opacity:0;
  transition:var(--transition);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--white);
  font-size:1.4rem;
}
.gallery-item:hover .gallery-item-overlay { opacity:1; }

/* =============================================
   MENU PAGE
   ============================================= */
.menu-filters {
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:48px;
  justify-content:center;
}
.filter-btn {
  padding:10px 24px;
  border-radius:50px;
  border:1.5px solid var(--cream-border);
  font-size:0.85rem;
  font-weight:500;
  color:var(--text-muted);
  background:var(--white);
  transition:var(--transition);
  cursor:pointer;
}
.filter-btn:hover, .filter-btn.active {
  background:var(--green);
  border-color:var(--green);
  color:var(--white);
}
.menu-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(300px,1fr));
  gap:28px;
}
.menu-card {
  background:var(--white);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow-sm);
  border:1px solid var(--cream-border);
  transition:var(--transition);
}
.menu-card:hover { transform:translateY(-6px); box-shadow:var(--shadow); }
.menu-card-image {
  height:220px;
  overflow:hidden;
  position:relative;
}
.menu-card-image img {
  width:100%; height:100%;
  object-fit:cover;
  transition:transform 0.5s var(--ease);
}
.menu-card:hover .menu-card-image img { transform:scale(1.06); }
.menu-card-badge {
  position:absolute;
  top:14px; left:14px;
  background:var(--gold);
  color:var(--white);
  font-size:0.7rem;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  padding:4px 12px;
  border-radius:50px;
}
.menu-card-body { padding:24px; }
.menu-card-category {
  font-size:0.72rem;
  font-weight:600;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:8px;
}
.menu-card-name {
  font-family:'Playfair Display',serif;
  font-size:1.15rem;
  color:var(--green);
  margin-bottom:8px;
}
.menu-card-desc { color:var(--text-muted); font-size:0.875rem; line-height:1.65; margin-bottom:16px; }
.menu-card-footer {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-top:16px;
  border-top:1px solid var(--cream-border);
}
.menu-price { font-family:'Playfair Display',serif; font-size:1.1rem; color:var(--green); font-weight:700; }
.menu-price .price-from { font-size:0.72rem; font-weight:400; color:var(--text-muted); font-family:'Inter',sans-serif; display:block; }
.btn-order { padding:8px 18px; font-size:0.8rem; }

/* Serves badge */
.serves-badge {
  display:inline-flex;
  align-items:center;
  gap:5px;
  font-size:0.75rem;
  color:var(--text-muted);
  background:var(--cream);
  padding:4px 10px;
  border-radius:50px;
  margin-bottom:14px;
}

/* =============================================
   PRE-ORDER PAGE
   ============================================= */
.preorder-section { padding:60px 0 100px; }
.preorder-grid {
  display:grid;
  grid-template-columns:1fr 380px;
  gap:48px;
  align-items:start;
}
/* Progress steps */
.progress-steps {
  display:flex;
  gap:0;
  margin-bottom:48px;
  position:relative;
}
.progress-steps::before {
  content:'';
  position:absolute;
  top:20px; left:20px; right:20px;
  height:2px;
  background:var(--cream-border);
  z-index:0;
}
.progress-fill {
  position:absolute;
  top:20px; left:20px;
  height:2px;
  background:var(--gold);
  transition:width 0.5s var(--ease);
  z-index:1;
}
.step-item {
  flex:1;
  text-align:center;
  position:relative;
  z-index:2;
}
.step-circle {
  width:40px; height:40px;
  border-radius:50%;
  background:var(--cream-dark);
  border:2px solid var(--cream-border);
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 10px;
  font-size:0.85rem;
  font-weight:600;
  color:var(--text-muted);
  transition:var(--transition);
}
.step-item.active .step-circle {
  background:var(--green);
  border-color:var(--green);
  color:var(--white);
}
.step-item.done .step-circle {
  background:var(--gold);
  border-color:var(--gold);
  color:var(--white);
}
.step-label { font-size:0.78rem; color:var(--text-muted); font-weight:500; }
.step-item.active .step-label { color:var(--green); font-weight:600; }

/* Form panels */
.form-panel { display:none; }
.form-panel.active { display:block; }
.form-section-title {
  font-family:'Playfair Display',serif;
  font-size:1.5rem;
  color:var(--green);
  margin-bottom:8px;
}
.form-section-subtitle { color:var(--text-muted); font-size:0.9rem; margin-bottom:32px; }

/* Product selector */
.product-options {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-bottom:28px;
}
.product-option {
  border:2px solid var(--cream-border);
  border-radius:var(--radius-sm);
  padding:16px;
  cursor:pointer;
  transition:var(--transition);
  position:relative;
}
.product-option:hover { border-color:var(--green-light); }
.product-option.selected { border-color:var(--green); background:var(--green-pale); }
.product-option input[type="radio"] { position:absolute; opacity:0; }
.product-option-name { font-weight:600; font-size:0.9rem; color:var(--green); margin-bottom:4px; }
.product-option-price { font-size:0.82rem; color:var(--gold); font-weight:600; }
.product-option-tag {
  position:absolute;
  top:10px; right:10px;
  width:18px; height:18px;
  border-radius:50%;
  border:2px solid var(--cream-border);
  transition:var(--transition);
}
.product-option.selected .product-option-tag {
  background:var(--green);
  border-color:var(--green);
}
.product-option.selected .product-option-tag::after {
  content:'✓';
  font-size:10px;
  color:var(--white);
  display:flex;
  align-items:center;
  justify-content:center;
  height:100%;
  line-height:14px;
  text-align:center;
}

/* Form fields */
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-group { margin-bottom:20px; }
.form-group.full { grid-column:1/-1; }
.form-label {
  display:block;
  font-size:0.82rem;
  font-weight:600;
  color:var(--green);
  margin-bottom:7px;
  letter-spacing:0.02em;
}
.form-input, .form-select, .form-textarea {
  width:100%;
  padding:13px 16px;
  border:1.5px solid var(--cream-border);
  border-radius:var(--radius-sm);
  font-size:0.9rem;
  color:var(--text);
  background:var(--white);
  transition:var(--transition);
  outline:none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color:var(--green);
  box-shadow:0 0 0 3px rgba(44,74,62,0.08);
}
.form-textarea { resize:vertical; min-height:100px; }
.form-hint {
  font-size:0.76rem;
  color:var(--text-muted);
  margin-top:5px;
  display:flex;
  align-items:center;
  gap:5px;
}
.form-divider { border:none; border-top:1px solid var(--cream-border); margin:28px 0; }
.form-notice {
  background:var(--green-pale);
  border:1.5px solid rgba(44,74,62,0.15);
  border-radius:var(--radius-sm);
  padding:14px 16px;
  font-size:0.85rem;
  color:var(--green);
  margin-bottom:24px;
  display:flex;
  gap:10px;
  align-items:flex-start;
}
.form-nav { display:flex; justify-content:space-between; align-items:center; margin-top:36px; gap:16px; }
.form-nav .btn { min-width:130px; justify-content:center; }

/* Order summary card */
.order-summary {
  background:var(--white);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  border:1px solid var(--cream-border);
  padding:32px;
  position:sticky;
  top:100px;
}
.order-summary h3 {
  font-size:1.2rem;
  color:var(--green);
  margin-bottom:24px;
  padding-bottom:16px;
  border-bottom:1px solid var(--cream-border);
}
.summary-row {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:12px;
  font-size:0.9rem;
}
.summary-label { color:var(--text-muted); }
.summary-value { font-weight:600; color:var(--text); }
.summary-total {
  font-size:1.1rem;
  padding-top:16px;
  margin-top:8px;
  border-top:2px solid var(--cream-border);
}
.summary-total .summary-label { color:var(--green); font-weight:700; }
.summary-total .summary-value { color:var(--gold); font-size:1.3rem; font-family:'Playfair Display',serif; }
.summary-notice {
  background:var(--cream);
  border-radius:var(--radius-sm);
  padding:12px;
  font-size:0.78rem;
  color:var(--text-muted);
  margin-top:20px;
  line-height:1.6;
}
.size-selector { display:flex; gap:10px; margin-top:10px; }
.size-btn {
  flex:1;
  padding:10px;
  border:1.5px solid var(--cream-border);
  border-radius:var(--radius-sm);
  text-align:center;
  cursor:pointer;
  transition:var(--transition);
  font-size:0.82rem;
}
.size-btn.active { border-color:var(--green); background:var(--green); color:var(--white); }

/* Success state */
.order-success {
  text-align:center;
  padding:60px 20px;
  display:none;
}
.success-icon {
  width:80px; height:80px;
  background:var(--green-pale);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 24px;
  font-size:2rem;
}
.order-success h2 { color:var(--green); margin-bottom:14px; }
.order-success p { color:var(--text-muted); margin-bottom:32px; }

/* =============================================
   ABOUT PAGE
   ============================================= */
.process-steps {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  position:relative;
}
.process-steps::before {
  content:'';
  position:absolute;
  top:32px; left:calc(12.5% + 16px); right:calc(12.5% + 16px);
  height:2px;
  background:linear-gradient(to right, var(--green), var(--gold));
  z-index:0;
}
.process-step {
  text-align:center;
  position:relative;
  z-index:1;
  padding-top:10px;
}
.process-number {
  width:64px; height:64px;
  border-radius:50%;
  background:var(--green);
  color:var(--white);
  font-family:'Playfair Display',serif;
  font-size:1.3rem;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 20px;
  box-shadow:var(--shadow);
}
.process-step h3 { color:var(--green); font-size:1rem; margin-bottom:8px; }
.process-step p { color:var(--text-muted); font-size:0.85rem; line-height:1.65; }

.values-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.value-card {
  background:var(--white);
  border-radius:var(--radius);
  padding:36px 28px;
  box-shadow:var(--shadow-sm);
  border:1px solid var(--cream-border);
  transition:var(--transition);
}
.value-card:hover { transform:translateY(-4px); box-shadow:var(--shadow); }
.value-icon { font-size:2rem; margin-bottom:16px; }
.value-card h3 { color:var(--green); margin-bottom:10px; font-size:1.1rem; }
.value-card p { color:var(--text-muted); font-size:0.88rem; line-height:1.7; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid {
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:64px;
  align-items:start;
}
.contact-info-card {
  display:flex;
  gap:16px;
  margin-bottom:28px;
  padding:20px;
  background:var(--white);
  border-radius:var(--radius-sm);
  border:1px solid var(--cream-border);
  box-shadow:var(--shadow-sm);
  transition:var(--transition);
}
.contact-info-card:hover { box-shadow:var(--shadow); transform:translateX(4px); }
.contact-icon {
  width:48px; height:48px; min-width:48px;
  background:var(--green-pale);
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.2rem;
}
.contact-info-title { font-weight:700; font-size:0.9rem; color:var(--green); margin-bottom:4px; }
.contact-info-value { font-size:0.88rem; color:var(--text-muted); line-height:1.6; }
.contact-form-card {
  background:var(--white);
  border-radius:var(--radius);
  padding:48px 40px;
  box-shadow:var(--shadow);
  border:1px solid var(--cream-border);
}
.contact-form-card h3 { color:var(--green); margin-bottom:8px; font-size:1.5rem; }
.contact-form-card > p { color:var(--text-muted); font-size:0.9rem; margin-bottom:32px; }

/* FAQ */
.faq-list { max-width:720px; margin:0 auto; }
.faq-item {
  border-bottom:1px solid var(--cream-border);
  overflow:hidden;
}
.faq-question {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:22px 0;
  font-weight:600;
  font-size:0.97rem;
  cursor:pointer;
  color:var(--green);
  transition:var(--transition);
  gap:16px;
}
.faq-question:hover { color:var(--gold); }
.faq-chevron {
  width:24px; height:24px;
  display:flex;
  align-items:center;
  justify-content:center;
  min-width:24px;
  transition:transform 0.35s var(--ease);
  color:var(--gold);
}
.faq-item.open .faq-chevron { transform:rotate(180deg); }
.faq-answer {
  max-height:0;
  overflow:hidden;
  transition:max-height 0.45s var(--ease), padding 0.35s ease;
  color:var(--text-muted);
  font-size:0.92rem;
  line-height:1.75;
}
.faq-item.open .faq-answer { max-height:300px; padding-bottom:20px; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background:var(--green);
  color:rgba(255,255,255,0.72);
  padding:80px 0 0;
}
.footer-grid {
  display:grid;
  grid-template-columns:1.6fr 1fr 1fr 1.2fr;
  gap:48px;
  margin-bottom:64px;
}
.footer-brand .logo-text { color:var(--white); font-size:1.8rem; }
.footer-tagline { color:rgba(255,255,255,0.55); font-size:0.88rem; margin:12px 0 24px; line-height:1.7; max-width:260px; }
.footer-social { display:flex; gap:10px; }
.social-btn {
  width:38px; height:38px;
  border-radius:50%;
  border:1.5px solid rgba(255,255,255,0.2);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:0.9rem;
  transition:var(--transition);
  color:rgba(255,255,255,0.7);
}
.social-btn:hover { background:var(--gold); border-color:var(--gold); color:var(--white); }
.footer-col h4 { color:var(--white); font-family:'Inter',sans-serif; font-size:0.85rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; margin-bottom:20px; }
.footer-links li { margin-bottom:10px; }
.footer-links a {
  color:rgba(255,255,255,0.6);
  font-size:0.9rem;
  transition:var(--transition);
}
.footer-links a:hover { color:var(--gold-light); padding-left:4px; }
.footer-newsletter p { font-size:0.88rem; margin-bottom:16px; line-height:1.6; }
.newsletter-form { display:flex; gap:8px; }
.newsletter-input {
  flex:1;
  padding:11px 16px;
  border-radius:50px;
  border:1.5px solid rgba(255,255,255,0.18);
  background:rgba(255,255,255,0.08);
  color:var(--white);
  font-size:0.85rem;
  outline:none;
  transition:var(--transition);
}
.newsletter-input::placeholder { color:rgba(255,255,255,0.4); }
.newsletter-input:focus { border-color:var(--gold); background:rgba(255,255,255,0.12); }
.newsletter-btn {
  padding:11px 22px;
  background:var(--gold);
  color:var(--white);
  border-radius:50px;
  font-size:0.82rem;
  font-weight:600;
  transition:var(--transition);
  cursor:pointer;
  border:none;
}
.newsletter-btn:hover { background:var(--gold-light); }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,0.1);
  padding:24px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-size:0.8rem;
  flex-wrap:wrap;
  gap:12px;
}
.footer-bottom a { color:rgba(255,255,255,0.5); transition:var(--transition); }
.footer-bottom a:hover { color:var(--gold-light); }
.footer-bottom-links { display:flex; gap:24px; }

/* =============================================
   ANIMATIONS
   ============================================= */
.animate-item {
  opacity:0;
  transform:translateY(28px);
}
[data-anim] {
  opacity:0;
  transition:opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
[data-anim="fade-up"]    { transform:translateY(36px); }
[data-anim="fade-right"] { transform:translateX(-36px); }
[data-anim="fade-left"]  { transform:translateX(36px); }
[data-anim="scale"]      { transform:scale(0.92); }
[data-anim="fade"]       { transform:none; }

[data-anim].in-view {
  opacity:1;
  transform:none;
}

/* Stagger delay helpers */
[data-delay="1"] { transition-delay:0.1s; }
[data-delay="2"] { transition-delay:0.2s; }
[data-delay="3"] { transition-delay:0.3s; }
[data-delay="4"] { transition-delay:0.4s; }
[data-delay="5"] { transition-delay:0.5s; }
[data-delay="6"] { transition-delay:0.6s; }

/* Hero animate-in */
@keyframes heroFadeUp {
  from { opacity:0; transform:translateY(32px); }
  to   { opacity:1; transform:translateY(0); }
}
.animate-item.in-view {
  animation:heroFadeUp 0.7s var(--ease) both;
}
.animate-item:nth-child(1) { animation-delay:0.1s; }
.animate-item:nth-child(2) { animation-delay:0.25s; }
.animate-item:nth-child(3) { animation-delay:0.4s; }
.animate-item:nth-child(4) { animation-delay:0.55s; }
.animate-item:nth-child(5) { animation-delay:0.7s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .categories-grid { grid-template-columns:repeat(2,1fr); }
  .about-split { grid-template-columns:1fr; gap:48px; }
  .about-accent-img { display:none; }
  .process-steps { grid-template-columns:repeat(2,1fr); }
  .process-steps::before { display:none; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .preorder-grid { grid-template-columns:1fr; }
  .order-summary { position:static; }
  .contact-grid { grid-template-columns:1fr; }
}
@media (max-width: 768px) {
  .section { padding:64px 0; }
  .categories-grid { grid-template-columns:1fr; gap:20px; }
  .category-card { aspect-ratio:4/3; }
  .nav-links {
    position:fixed;
    top:0; right:-100%;
    width:280px;
    height:100vh;
    background:var(--cream);
    flex-direction:column;
    padding:100px 32px 40px;
    transition:right 0.4s var(--ease);
    box-shadow:-4px 0 24px rgba(0,0,0,0.1);
    align-items:flex-start;
    gap:4px;
  }
  .nav-links.open { right:0; }
  .nav-link { color:var(--text-muted) !important; width:100%; padding:14px 16px; border-radius:var(--radius-sm); }
  .nav-link:hover { color:var(--green) !important; background:var(--green-pale); }
  .nav-link.active { color:var(--green) !important; font-weight:600; }
  .nav-cta { background:var(--gold) !important; color:var(--white) !important; margin-top:12px; justify-content:center; }
  .nav-toggle { display:flex; }
  .logo-text { color:var(--green) !important; }
  .navbar:not(.scrolled) { background:rgba(250,248,244,0.95); backdrop-filter:blur(12px); }
  .navbar:not(.scrolled) .nav-toggle span { background:var(--green); }
  .hero-content { padding:100px 20px 60px; }
  .hero-actions { flex-direction:column; align-items:flex-start; }
  .btn { width:fit-content; }
  .gallery-strip { grid-template-columns:repeat(3,1fr); }
  .testimonials-grid { grid-template-columns:1fr; }
  .features-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; gap:32px; }
  .footer-bottom { flex-direction:column; text-align:center; }
  .footer-bottom-links { gap:16px; }
  .product-options { grid-template-columns:1fr; }
  .form-row { grid-template-columns:1fr; }
  .values-grid { grid-template-columns:1fr; }
  .process-steps { grid-template-columns:1fr; }
  .page-hero { height:320px; }
  .about-image-wrap .main-img { height:360px; }
  .cta-actions { flex-direction:column; align-items:center; }
  .menu-grid { grid-template-columns:1fr; }
  .contact-form-card { padding:32px 24px; }
}
@media (max-width: 480px) {
  .gallery-strip { grid-template-columns:repeat(2,1fr); }
  .category-card { aspect-ratio:3/2; }
  .newsletter-form { flex-direction:column; }
  .about-badge { display:none; }
}



/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 62px;
    height: 62px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.28);
    z-index: 9999;
    transition: transform .3s ease,
                box-shadow .3s ease,
                background .3s ease;
    animation: whatsappPulse 2.8s infinite;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 16px 40px rgba(37, 211, 102, 0.4);
    animation-play-state: paused;
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .45);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* Respect accessibility preferences */
@media (prefers-reduced-motion: reduce) {
    .whatsapp-float {
        animation: none;
    }
}









/* newsletter pop up css */


/* ==============================
   SAVORA NEWSLETTER POPUP
   ============================== */


.newsletter-overlay {

    position: fixed;
    inset: 0;

    background: rgba(26, 26, 26, 0.45);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;

    transition: all 0.35s ease;

    z-index: 9999;
}


.newsletter-overlay.active {

    opacity: 1;
    visibility: visible;

}



/* Popup Card */

.newsletter-box {

    width: 430px;
    max-width: 90%;

    background: var(--cream);

    border: 1px solid var(--cream-border);

    border-radius: 28px;

    overflow: hidden;

    position: relative;

    transform: translateY(40px) scale(0.96);

    transition: all 0.4s ease;

    box-shadow:
        0 25px 70px rgba(44,74,62,0.18);

}



.newsletter-overlay.active .newsletter-box {

    transform: translateY(0) scale(1);

}



/* Top Image Section */

.newsletter-image {

    height: 150px;
    color: var(--white) !important;

    background:
        linear-gradient(
            135deg,
            var(--green),
            var(--green-light)
        );

    display:flex;

    justify-content:center;

    align-items:center;

    position:relative;

}

.newsletter-image img{
    height: 7em;
}


.newsletter-image::after {

    content:"";

    position:absolute;

    inset:0;

    background:
        radial-gradient(
            circle at top right,
            rgba(201,168,76,0.35),
            transparent 45%
        );

}



.newsletter-image span {

    font-size:65px;

    z-index:1;

}



/* Content */

.newsletter-content {

    padding:38px 35px;

    text-align:center;

}



.newsletter-content h2 {

    margin:0 0 12px;

    font-size:32px;

    font-weight:600;

    color:var(--green);

    letter-spacing:-0.5px;

}



.newsletter-content p {

    color:var(--text-muted);

    font-size:15px;

    line-height:1.7;

    margin-bottom:10px;

}



/* Form */

#newsletterForm {

    margin-top:25px;

    display:flex;

    flex-direction:column;

    gap:14px;

}



#newsletterEmail {

    width:100%;

    padding:16px 20px;

    border-radius:50px;

    border:

    1px solid var(--cream-border);

    background:var(--white);

    color:var(--text);

    font-size:15px;

    outline:none;

    transition:0.3s;

}



#newsletterEmail::placeholder {

    color:#999;

}



#newsletterEmail:focus {

    border-color:var(--gold);

    box-shadow:

    0 0 0 4px rgba(201,168,76,0.12);

}



/* Button */

#newsletterForm button {

    padding:16px;

    border:none;

    border-radius:50px;

    background:var(--green);

    color:var(--white);

    font-size:16px;

    font-weight:500;

    cursor:pointer;

    transition:0.3s ease;

}



#newsletterForm button:hover {

    background:var(--green-light);

    transform:translateY(-2px);

}



/* Close Button */

.newsletter-close {

    position:absolute;

    top:18px;

    right:18px;

    width:38px;

    height:38px;

    border-radius:50%;

    border:1px solid var(--cream-border);

    background:var(--cream);

    color:var(--green);

    font-size:25px;

    cursor:pointer;

    z-index:5;

    transition:0.3s;

}



.newsletter-close:hover {

    background:var(--gold);

    color:white;

}



/* Success/Error Message */

.newsletter-message {

    margin-top:15px;

    color:var(--green);

    font-weight:600;

}



/* Footer Text */

.newsletter-content small {

    display:block;

    margin-top:18px;

    color:var(--text-muted);

    font-size:13px;

}



/* Mobile */

@media(max-width:500px){


    .newsletter-box {

        border-radius:22px;

    }


    .newsletter-content {

        padding:28px 22px;

    }


    .newsletter-content h2 {

        font-size:26px;

    }


}