/* ============================================
   SALAD'S & BOWLS - Premium Food Brand CSS
   ============================================ */

/* CSS VARIABLES */
:root {
  --green-primary: #4A7C59;
  --green-light: #6B9E7A;
  --green-pale: #E8F5E9;
  --beige: #FAF3E0;
  --beige-dark: #F0E6D3;
  --cream: #FFFDF7;
  --white: #FFFFFF;
  --off-white: #F9F9F7;
  --text-dark: #2C2C2C;
  --text-body: #4A4A4A;
  --text-light: #7A7A7A;
  --text-muted: #A0A0A0;
  --orange: #E8743C;
  --orange-light: #FFF0E8;
  --tomato: #D4543A;
  --gold: #C9A84C;
  --shadow-sm: 0 2px 8px rgba(74, 124, 89, 0.08);
  --shadow-md: 0 8px 30px rgba(74, 124, 89, 0.12);
  --shadow-lg: 0 20px 60px rgba(74, 124, 89, 0.15);
  --shadow-xl: 0 30px 80px rgba(74, 124, 89, 0.2);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 50px;
  --font-primary: 'Inter', -apple-system, sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

/* RESET */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  color: var(--text-body);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; outline: none; }
::selection { background: var(--green-primary); color: var(--white); }

/* CONTAINER */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* SECTION */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--green-primary);
  background: var(--green-pale);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title span {
  color: var(--green-primary);
  position: relative;
}

.section-title span::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--green-primary);
  opacity: 0.2;
  border-radius: 2px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}

/* ===== PRELOADER ===== */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s, visibility 0.6s;
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
}

.preloader-leaf {
  font-size: 3rem;
  color: var(--green-primary);
  animation: leafSpin 1.5s ease-in-out infinite;
}

.preloader-inner p {
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--text-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}

@keyframes leafSpin {
  0%, 100% { transform: rotate(0deg) scale(1); opacity: 1; }
  50% { transform: rotate(180deg) scale(1.2); opacity: 0.7; }
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 1px 30px rgba(0, 0, 0, 0.06);
}

.navbar.scrolled .nav-logo span { color: var(--text-dark); }
.navbar.scrolled .nav-links a { color: var(--text-body); }
.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active { color: var(--green-primary); }

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  transition: var(--transition);
}

.nav-logo i {
  font-size: 1.6rem;
  color: var(--green-light);
}

.navbar.scrolled .nav-logo i { color: var(--green-primary); }

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding: 4px 0;
  letter-spacing: 0.3px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-light);
  transition: var(--transition);
  border-radius: 1px;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-actions button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  background: rgba(255,255,255,0.1);
  transition: var(--transition);
}

.navbar.scrolled .nav-actions button {
  color: var(--text-dark);
  background: var(--off-white);
}

.nav-actions button:hover {
  background: var(--green-primary) !important;
  color: var(--white) !important;
  transform: scale(1.05);
}

.cart-btn {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
}

.navbar.scrolled .cart-count { border-color: var(--white); }

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .mobile-toggle span { background: var(--text-dark); }

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Search Bar */
.search-bar {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.search-bar.active {
  opacity: 1;
  max-height: 60px;
  padding-top: 12px;
  padding-bottom: 8px;
}

.search-bar input {
  flex: 1;
  padding: 10px 16px;
  border: 2px solid var(--green-pale);
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  background: var(--white);
  transition: var(--transition);
}

.search-bar input:focus { border-color: var(--green-primary); }

.search-bar button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-body);
  background: var(--off-white);
  transition: var(--transition);
}

.search-bar button:hover { background: var(--green-pale); color: var(--green-primary); }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slider {
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,44,44,0.7) 0%, rgba(44,44,44,0.3) 50%, rgba(44,44,44,0.5) 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 24px;
  max-width: 800px;
  margin: 0 auto;
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--white);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  width: fit-content;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s forwards 0.3s;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s forwards 0.5s;
}

.hero-title span {
  color: var(--green-light);
  position: relative;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.9);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s forwards 0.7s;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s forwards 0.9s;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.btn i { font-size: 0.9rem; }

.btn-primary {
  background: var(--green-primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(74, 124, 89, 0.3);
}

.btn-primary:hover {
  background: #3D6B4A;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(74, 124, 89, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.btn-ghost {
  color: rgba(255,255,255,0.8);
  padding: 14px 20px;
}

.btn-ghost:hover { color: var(--white); }

.hero-stats {
  display: flex;
  gap: 48px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s forwards 1.1s;
}

.hero-stat span {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.hero-stat small {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
}

/* Hero Dots */
.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  width: 32px;
  border-radius: 5px;
  background: var(--white);
}

/* Hero Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.2);
}

.hero-arrow:hover {
  background: var(--green-primary);
  border-color: var(--green-primary);
}

.hero-arrow-prev { left: 24px; }
.hero-arrow-next { right: 24px; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ===== ABOUT ===== */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.about-img-main:hover img { transform: scale(1.05); }

.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-md);
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  top: -20px;
  right: 20px;
  background: var(--green-primary);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.exp-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.exp-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
  margin-top: 4px;
}

.about-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 32px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--cream);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.about-feature:hover {
  background: var(--green-pale);
  transform: translateY(-2px);
}

.af-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 12px;
  background: var(--green-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.about-feature h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.about-feature p {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ===== BEST SELLERS / PRODUCT GRID ===== */
.best-sellers { background: var(--off-white); }

.menu-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  background: var(--white);
  border: 2px solid transparent;
  transition: var(--transition);
}

.filter-btn:hover { color: var(--green-primary); background: var(--green-pale); }

.filter-btn.active {
  background: var(--green-primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(74, 124, 89, 0.25);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-card.hidden { display: none; }

.pc-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.pc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.product-card:hover .pc-image img { transform: scale(1.1); }

.pc-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pc-badge.veg { background: var(--green-pale); color: var(--green-primary); }
.pc-badge.non-veg { background: var(--orange-light); color: var(--tomato); }

.pc-quick-add {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
  font-size: 1rem;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(10px);
}

.product-card:hover .pc-quick-add {
  opacity: 1;
  transform: translateY(0);
}

.pc-quick-add:hover { background: var(--green-primary); color: var(--white); }

.pc-info {
  padding: 20px;
}

.pc-category {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green-primary);
  margin-bottom: 6px;
}

.pc-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.pc-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 8px;
  line-height: 1.5;
}

.pc-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.pc-calories {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.pc-calories i { color: var(--orange); margin-right: 4px; }

.pc-ingredients {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.5;
}

.pc-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pc-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
}

.pc-add-btn {
  padding: 10px 20px;
  border-radius: var(--radius-full);
  background: var(--green-primary);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}

.pc-add-btn:hover { background: #3D6B4A; transform: scale(1.05); }

/* ===== CATEGORIES ===== */
.categories { background: var(--white); }

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 280px;
  display: block;
}

.cat-img {
  width: 100%;
  height: 100%;
}

.cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.category-card:hover .cat-img img { transform: scale(1.1); }

.cat-content {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(0,0,0,0.7));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--white);
}

.cat-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}

.cat-content p {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* ===== LIFESTYLE ===== */
.lifestyle { background: var(--cream); }

.lifestyle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.lifestyle-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 28px;
}

.lifestyle-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.lp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
}

.lp-item i { color: var(--green-primary); font-size: 1.1rem; }

.lifestyle-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.lifestyle-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.lifestyle-floating-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--green-primary);
}

.lifestyle-floating-card i { font-size: 1.2rem; }

/* ===== FEATURED PRODUCTS ===== */
.featured { background: var(--off-white); }

.featured-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.featured-card-lg {
  grid-row: span 2;
}

.featured-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 350px;
}

.featured-card-lg { height: 100%; min-height: 500px; }

.featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.featured-card:hover img { transform: scale(1.08); }

.fc-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 16px;
  background: var(--green-primary);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
}

.fc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, rgba(0,0,0,0.75));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--white);
  z-index: 1;
}

.fc-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.fc-overlay p {
  font-size: 0.85rem;
  opacity: 0.9;
  margin-bottom: 8px;
}

.fc-price {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-bottom: 12px;
  display: block;
}

.fc-overlay .btn {
  padding: 10px 20px;
  font-size: 0.85rem;
  width: fit-content;
}

/* ===== WHY US ===== */
.why-us { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: var(--green-pale);
}

.why-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: var(--green-primary);
  color: var(--white);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--cream); }

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: 100%;
  padding: 40px;
  text-align: center;
}

.tc-stars {
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 1.1rem;
  display: flex;
  gap: 4px;
  justify-content: center;
}

.tc-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-body);
  font-style: italic;
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.tc-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.tc-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.tc-author h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: left;
}

.tc-author span {
  font-size: 0.82rem;
  color: var(--text-light);
  display: block;
  text-align: left;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.tc-prev, .tc-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-body);
  transition: var(--transition);
}

.tc-prev:hover, .tc-next:hover {
  background: var(--green-primary);
  border-color: var(--green-primary);
  color: var(--white);
}

.tc-dots {
  display: flex;
  gap: 8px;
}

.tc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--beige-dark);
  cursor: pointer;
  transition: var(--transition);
}

.tc-dot.active { width: 28px; border-radius: 4px; background: var(--green-primary); }

/* ===== APP DOWNLOAD ===== */
.app-download { background: var(--white); }

.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.app-content p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 28px;
}

.app-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.app-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: var(--text-dark);
  border-radius: var(--radius-md);
  color: var(--white);
  transition: var(--transition);
}

.app-btn:hover {
  background: var(--green-primary);
  transform: translateY(-2px);
}

.app-btn i { font-size: 1.5rem; }

.app-btn small {
  display: block;
  font-size: 0.7rem;
  opacity: 0.7;
  font-weight: 400;
}

.app-btn span {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
}

.app-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.app-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-body);
}

.app-feat i { color: var(--green-primary); }

.app-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.app-image > img {
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  height: 500px;
}

.app-phone-mockup {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  padding: 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.mockup-screen {
  min-width: 160px;
  text-align: center;
}

.mockup-screen i {
  font-size: 2rem;
  color: var(--green-primary);
  margin-bottom: 4px;
}

.mockup-screen > span {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.mockup-order {
  font-size: 0.8rem;
  color: var(--green-primary);
  font-weight: 600;
}

.mockup-order small {
  display: block;
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.75rem;
}

/* ===== INSTAGRAM ===== */
.instagram { background: var(--off-white); }

.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.insta-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  display: block;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.insta-item:hover img { transform: scale(1.1); }

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(74, 124, 89, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  opacity: 0;
  transition: var(--transition);
}

.insta-item:hover .insta-overlay { opacity: 1; }

/* ===== NEWSLETTER ===== */
.newsletter { background: var(--white); padding-bottom: 0; }

.newsletter-box {
  background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-light) 100%);
  border-radius: var(--radius-xl);
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="150" cy="50" r="40" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="150" r="60" fill="rgba(255,255,255,0.05)"/><circle cx="180" cy="180" r="30" fill="rgba(255,255,255,0.05)"/></svg>');
  background-size: cover;
}

.newsletter-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}

.newsletter-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.newsletter-content h2 span { color: var(--beige); }

.newsletter-content p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
  font-size: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: var(--radius-full);
  border: none;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 0.95rem;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }

.newsletter-form input:focus { background: rgba(255,255,255,0.25); }

.newsletter-form .btn-primary {
  background: var(--white);
  color: var(--green-primary);
  box-shadow: none;
}

.newsletter-form .btn-primary:hover { background: var(--beige); }

.newsletter-disclaimer {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-top: 16px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.8);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-logo i { color: var(--green-light); }

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.6);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.footer-social a:hover { background: var(--green-primary); color: var(--white); }

.footer h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links ul li { margin-bottom: 12px; }

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-links a:hover { color: var(--green-light); padding-left: 4px; }

.footer-contact ul li {
  display: flex;
  gap: 12px;
  font-size: 0.9rem;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.6);
}

.footer-contact ul li i {
  color: var(--green-light);
  margin-top: 4px;
  width: 16px;
}

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom i { color: var(--tomato); }

/* ===== CART SIDEBAR ===== */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 380px;
  height: 100vh;
  background: var(--white);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 40px rgba(0,0,0,0.1);
}

.cart-sidebar.active { right: 0; }

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.cart-overlay.active { opacity: 1; visibility: visible; }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--beige-dark);
}

.cart-header h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
}

.cart-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: var(--transition);
  background: var(--off-white);
}

.cart-close:hover { background: var(--green-pale); color: var(--green-primary); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
}

.cart-empty i {
  font-size: 3rem;
  color: var(--beige-dark);
  margin-bottom: 16px;
}

.cart-empty p {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
}

.cart-empty small { color: var(--text-muted); }

.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--beige-dark);
}

.cart-item-img {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.cart-item-info { flex: 1; }

.cart-item-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.cart-item-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green-primary);
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.cart-item-qty button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-body);
  transition: var(--transition);
}

.cart-item-qty button:hover { background: var(--green-pale); color: var(--green-primary); }

.cart-item-qty span {
  font-weight: 600;
  font-size: 0.9rem;
  min-width: 20px;
  text-align: center;
}

.cart-item-remove {
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 4px 8px;
  align-self: flex-start;
}

.cart-item-remove:hover { color: var(--tomato); }

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--beige-dark);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.cart-checkout {
  width: 100%;
  justify-content: center;
  padding: 16px;
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--green-primary);
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 30px rgba(74, 124, 89, 0.3);
  z-index: 99999;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast i { font-size: 1.2rem; }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(74, 124, 89, 0.3);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover { background: #3D6B4A; transform: translateY(-3px); }

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { max-width: 500px; margin: 0 auto; }
  .lifestyle-grid { grid-template-columns: 1fr; gap: 40px; }
  .lifestyle-image { max-width: 500px; margin: 0 auto; }
  .featured-grid { grid-template-columns: 1fr 1fr; }
  .featured-card-lg { grid-column: span 2; min-height: 400px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .app-grid { grid-template-columns: 1fr; gap: 40px; }
  .app-image { order: -1; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .insta-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 4px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    z-index: 999;
  }
  .nav-links.active { right: 0; }
  .nav-links a { color: var(--text-body) !important; padding: 12px 0; border-bottom: 1px solid var(--off-white); }
  .nav-links a::after { display: none; }
  .mobile-toggle { display: flex; }

  .hero { height: 90vh; min-height: 500px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: fit-content; }
  .hero-stats { gap: 24px; }
  .hero-stat span { font-size: 1.4rem; }
  .hero-arrow { display: none; }

  .about-features { grid-template-columns: 1fr; }
  .about-img-secondary { width: 140px; height: 140px; bottom: -20px; right: -20px; }
  .about-experience-badge { top: -10px; right: 10px; padding: 12px 16px; }

  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .category-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .category-card { height: 200px; }

  .lifestyle-points { grid-template-columns: 1fr; }

  .featured-grid { grid-template-columns: 1fr; }
  .featured-card-lg { grid-column: span 1; min-height: 300px; height: 300px; }
  .featured-card { height: 280px; }

  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 28px 20px; }

  .testimonial-card { padding: 24px 16px; }
  .tc-text { font-size: 1rem; }

  .app-buttons { flex-direction: column; }
  .app-image > img { height: 350px; }
  .app-phone-mockup { position: relative; bottom: 0; left: 0; margin-top: 16px; width: 100%; }

  .insta-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }

  .newsletter-box { padding: 40px 24px; border-radius: var(--radius-lg); }
  .newsletter-form { flex-direction: column; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer { padding: 48px 0 0; }

  .cart-sidebar { width: 100%; right: -100%; }

  .menu-filters { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 8px; justify-content: flex-start; }
  .filter-btn { white-space: nowrap; }

  .about-img-main img { height: 300px; }

  .pc-image { height: 160px; }
  .pc-info { padding: 14px; }
  .pc-name { font-size: 0.95rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .product-grid { grid-template-columns: 1fr; gap: 16px; }
  .category-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .category-card { height: 160px; }
  .hero-stats { gap: 16px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .about-img-main img { height: 240px; }
  .about-img-secondary { display: none; }
  .about-experience-badge { position: relative; top: 0; right: 0; margin-top: 16px; flex-direction: row; gap: 10px; justify-content: center; }
}
