/* ===================================
   FrutaVerde Cannabis Medicinal
   Premium Dark Theme
   =================================== */

/* -- DESIGN TOKENS -- */
:root {
  --primary: #2d8a4e;
  --primary-light: #3daa64;
  --primary-dark: #1e6637;
  --primary-glow: rgba(45, 138, 78, 0.3);
  --accent: #8bc34a;
  --accent-light: #a4d65e;
  --gold: #d4a853;
  --bg-dark: #121212;
  --bg-card: #1A1A1B;
  --bg-card-hover: #222223;
  --bg-surface: #161617;
  --bg-glass: rgba(26, 26, 27, 0.9);
  --text-primary: #e8f5e9;
  --text-secondary: #9cba9c;
  --text-muted: #6a8a6a;
  --border: rgba(255, 255, 255, 0.08);
  --border-active: rgba(45, 138, 78, 0.4);
  --danger: #e74c3c;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 40px var(--primary-glow);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Outfit', sans-serif;
  --font-display: 'Playfair Display', serif;
}

/* -- RESET & BASE -- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; scroll-padding-top:80px; }
body {
  font-family: var(--font);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--primary-light); text-decoration:none; transition: var(--transition); }
a:hover { color: var(--accent); }
img { max-width:100%; display:block; }
ul { list-style:none; }
button { cursor:pointer; border:none; background:none; font-family:inherit; color:inherit; }
input, textarea { font-family:inherit; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* -- PRELOADER -- */
.preloader {
  position:fixed; inset:0; z-index:9999;
  background: var(--bg-dark);
  display: flex; align-items:center; justify-content:center;
  transition: opacity 0.5s, visibility 0.5s;
}
.preloader.hidden { opacity:0; visibility:hidden; pointer-events:none; }
.preloader-inner { text-align:center; }
.leaf-spinner {
  font-size:48px;
  animation: spin 1.5s linear infinite;
}
@keyframes spin { to { transform:rotate(360deg); } }
.preloader-text {
  display:block; margin-top:16px;
  font-size:24px; font-weight:700;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
}

/* -- HEADER -- */
.main-header {
  position:fixed; top:0; left:0; right:0;
  z-index:1000;
  transition: var(--transition);
}
.main-header.scrolled {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.header-top-bar {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  padding: 8px 0;
  font-size: 13px;
}
.top-bar-content {
  display:flex; align-items:center; justify-content:space-between;
}
.top-offer { color:#fff; }
.top-offer i { margin-right:6px; }
.top-social a { color:#fff; margin-left:12px; font-size:14px; }
.top-social a:hover { color: var(--accent-light); }

.main-nav { padding: 14px 0; }
.nav-content {
  display:flex; align-items:center; justify-content:space-between;
}
.logo {
  display:flex; align-items:center; gap:8px;
  font-size:26px; font-weight:800;
  color: var(--text-primary);
}
.logo:hover { color: var(--text-primary); }
.logo-icon { font-size:30px; }
.logo .accent { color: var(--primary-light); }

.nav-links {
  display:flex; gap:28px;
}
.nav-links a {
  color: var(--text-secondary);
  font-size:15px; font-weight:500;
  position:relative; padding:4px 0;
}
.nav-links a::after {
  content:''; position:absolute; bottom:0; left:0;
  width:0; height:2px;
  background: var(--primary-light);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text-primary);
}
.nav-links a:hover::after, .nav-links a.active::after { width:100%; }

.nav-actions { display:flex; align-items:center; gap:12px; }
.nav-btn {
  width:42px; height:42px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  font-size:16px; color: var(--text-secondary);
  transition: var(--transition); position:relative;
}
.nav-btn:hover { background: var(--bg-card-hover); color: var(--text-primary); border-color: var(--border-active); }
.cart-count {
  position:absolute; top:-4px; right:-4px;
  background: var(--primary); color:#fff;
  font-size:10px; font-weight:700;
  width:18px; height:18px;
  border-radius:50%; display:flex;
  align-items:center; justify-content:center;
}
.nav-cta { font-size:14px; padding:10px 20px; }
.mobile-toggle {
  display:none; flex-direction:column; gap:5px;
  width:28px;
}
.mobile-toggle span {
  width:100%; height:2px;
  background: var(--text-primary);
  transition: var(--transition);
}

/* Search Overlay */
.search-overlay {
  position:absolute; top:100%; left:0; right:0;
  background: var(--bg-glass);
  backdrop-filter:blur(20px);
  padding:20px 0;
  transform: translateY(-10px);
  opacity:0; visibility:hidden;
  transition: var(--transition);
}
.search-overlay.active { transform:translateY(0); opacity:1; visibility:visible; }
.search-form {
  display:flex; gap:12px; align-items:center;
}
.search-form input {
  flex:1; background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  color: var(--text-primary);
  font-size:16px; outline:none;
}
.search-form input:focus { border-color: var(--primary-light); }
.search-form button {
  width:48px; height:48px;
  border-radius: var(--radius-md);
  background: var(--primary);
  color:#fff; font-size:18px;
  display:flex; align-items:center; justify-content:center;
  transition: var(--transition);
}
.search-form button:hover { background: var(--primary-light); }

/* -- CTA BUTTON -- */
.cta-btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:14px 28px;
  border-radius: var(--radius-xl);
  font-weight:600; font-size:15px;
  transition: var(--transition);
  cursor:pointer; border:none;
}
.primary-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color:#fff;
  box-shadow: 0 4px 20px var(--primary-glow);
}
.primary-btn:hover {
  transform:translateY(-2px);
  box-shadow: 0 8px 32px var(--primary-glow);
  color:#fff;
}
.secondary-btn {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.secondary-btn:hover {
  border-color: var(--primary-light);
  background: var(--bg-card-hover);
  color: var(--text-primary);
}
.full-width { width:100%; justify-content:center; }

/* -- HERO -- */
.hero {
  min-height:100vh;
  padding:180px 0 100px;
  position:relative;
  overflow:hidden;
  background: linear-gradient(170deg, #121212 0%, #1A1A1B 40%, #121212 100%);
}
.hero-bg-effects { position:absolute; inset:0; pointer-events:none; }
.floating-leaf {
  position:absolute; font-size:40px;
  animation: floatLeaf 8s ease-in-out infinite;
  opacity:0.15;
}
.leaf-1 { top:20%; right:10%; animation-delay:0s; }
.leaf-2 { bottom:30%; left:5%; animation-delay:2s; font-size:60px; }
.leaf-3 { top:50%; right:25%; animation-delay:4s; }
@keyframes floatLeaf {
  0%, 100% { transform:translateY(0) rotate(0deg); }
  50% { transform:translateY(-30px) rotate(15deg); }
}
.hero-glow {
  position:absolute;
  width:600px; height:600px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  top:10%; right:-10%;
  border-radius:50%;
  filter:blur(80px);
}

.hero-grid {
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:60px;
  align-items:center;
}
.hero-badge {
  display:inline-block;
  background: rgba(45, 138, 78, 0.15);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 8px 20px;
  font-size:14px; font-weight:500;
  color: var(--accent);
  margin-bottom:20px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.15;
  margin-bottom:20px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}
.hero-text {
  font-size:18px;
  color: var(--text-secondary);
  margin-bottom:28px;
  max-width:520px;
}
.hero-features {
  display:flex; gap:24px;
  margin-bottom:32px;
}
.hero-feature {
  display:flex; align-items:center; gap:8px;
  color: var(--text-secondary);
  font-size:14px;
}
.hero-feature i {
  color: var(--primary-light);
  font-size:18px;
}
.hero-actions { display:flex; gap:14px; margin-bottom:40px; flex-wrap:wrap; }
.hero-stats {
  display:flex; align-items:center; gap:24px;
}
.stat { text-align:center; }
.stat-num {
  display:block; font-size:28px; font-weight:800;
  color: var(--text-primary);
}
.stat-label { font-size:13px; color: var(--text-muted); }
.stat-divider { width:1px; height:40px; background: var(--border); }

.hero-visual {
  position:relative;
  display:flex; justify-content:center; align-items:center;
  min-height:480px;
}
.main-card {
  width:320px; height:420px;
  border-radius: var(--radius-lg);
  overflow:hidden;
  border: 1px solid var(--border);
  position:relative;
  box-shadow: var(--shadow-lg);
}
.main-card .product-glow {
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,26,10,0.9));
  z-index:1;
}
.hero-product-img {
  width:100%; height:100%; object-fit:cover;
}
.hero-card-badge {
  position:absolute; top:16px; left:16px;
  background: var(--gold);
  color:#000; font-size:12px; font-weight:700;
  padding:6px 14px;
  border-radius: var(--radius-sm);
  z-index:2;
}
.floating-card {
  position:absolute;
  background: var(--bg-glass);
  backdrop-filter:blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding:12px 16px;
  animation: floatCard 4s ease-in-out infinite;
  box-shadow: var(--shadow-md);
}
.card-1 { top:10%; right:-20px; animation-delay:0s; }
.card-2 { bottom:20%; left:-30px; animation-delay:1s; }
.card-3 { bottom:5%; right:-10px; animation-delay:2s; }
@keyframes floatCard {
  0%, 100% { transform:translateY(0); }
  50% { transform:translateY(-12px); }
}
.mini-product { display:flex; align-items:center; gap:10px; }
.mini-emoji { font-size:28px; }
.mini-name { font-size:13px; font-weight:600; display:block; color: var(--text-primary); }
.mini-price { font-size:12px; color: var(--text-muted); }

.hero-wave {
  position:absolute; bottom:-2px; left:0; right:0;
}
.hero-wave svg { width:100%; height:auto; display:block; }

/* -- SECTIONS COMMON -- */
section { padding:100px 0; }
.section-header {
  margin-bottom:50px;
}
.section-header.center { text-align:center; }
.section-tag {
  display:inline-block;
  font-size:14px; font-weight:600;
  color: var(--accent);
  margin-bottom:12px;
  letter-spacing:1px;
  text-transform:uppercase;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--text-primary);
}
.section-desc {
  color: var(--text-secondary);
  font-size:16px;
  margin-top:12px;
  max-width:600px;
  margin-left:auto; margin-right:auto;
}

/* -- CATEGORIES -- */
.categories { background: var(--bg-dark); }
.categories-grid {
  display:grid;
  grid-template-columns:repeat(6, 1fr);
  gap:20px;
}
.category-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding:30px 20px;
  text-align:center;
  cursor:pointer;
  transition: var(--transition);
}
.category-card:hover {
  transform:translateY(-8px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-glow);
  background: var(--bg-card-hover);
}
.cat-icon-wrap {
  width:64px; height:64px;
  border-radius:50%;
  background: rgba(45,138,78,0.1);
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 16px;
  font-size:30px;
  transition: var(--transition);
}
.category-card:hover .cat-icon-wrap {
  background: rgba(45,138,78,0.25);
  transform:scale(1.1);
}
.category-card h3 {
  font-size:16px; font-weight:600;
  margin-bottom:6px;
}
.cat-count {
  font-size:13px; color: var(--text-muted);
}

/* -- PRODUCTS -- */
.products { background: var(--bg-surface); }
.product-filters {
  display:flex; gap:10px; margin-bottom:36px; flex-wrap:wrap;
}
.filter-btn {
  padding:10px 22px;
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size:14px; font-weight:500;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  color:#fff; border-color: var(--primary);
}
.products-grid {
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:24px;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow:hidden;
  transition: var(--transition);
}
.product-card:hover {
  transform:translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-active);
}
.product-img-wrap {
  position:relative; overflow:hidden;
  height:220px;
}
.product-img-wrap img {
  width:100%; height:100%; object-fit:cover;
  transition: var(--transition);
}
.product-card:hover .product-img-wrap img { transform:scale(1.08); }
.product-badge {
  position:absolute; top:12px; left:12px;
  padding:5px 12px;
  border-radius: var(--radius-sm);
  font-size:11px; font-weight:700;
  text-transform:uppercase;
  z-index:2;
}
.product-badge.sale { background: var(--danger); color:#fff; }
.product-badge.new { background: var(--primary); color:#fff; }
.product-badge.hot { background: var(--gold); color:#000; }
.wishlist-btn {
  position:absolute; top:12px; right:12px;
  width:36px; height:36px;
  background: var(--bg-glass);
  backdrop-filter:blur(8px);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:14px; color: var(--text-secondary);
  z-index:2;
  transition: var(--transition);
  border: 1px solid var(--border);
}
.wishlist-btn:hover, .wishlist-btn.active {
  background: var(--danger);
  color:#fff; border-color: var(--danger);
}
.product-overlay {
  position:absolute; inset:0;
  background: rgba(10,26,10,0.7);
  display:flex; align-items:center; justify-content:center;
  opacity:0; transition: var(--transition);
}
.product-card:hover .product-overlay { opacity:1; }
.quick-view-btn {
  padding:10px 20px;
  background:#fff; color:#000;
  border-radius: var(--radius-xl);
  font-size:13px; font-weight:600;
  transition: var(--transition);
}
.quick-view-btn:hover { background: var(--accent); }

.product-info { padding:18px; }
.product-rating { display:flex; align-items:center; gap:6px; margin-bottom:8px; }
.stars { color: var(--gold); font-size:13px; letter-spacing:2px; }
.rating-count { font-size:12px; color: var(--text-muted); }
.product-name {
  font-size:16px; font-weight:600;
  margin-bottom:4px;
  color: var(--text-primary);
}
.product-strain {
  font-size:13px; color: var(--text-muted);
  margin-bottom:14px;
}
.product-bottom {
  display:flex; align-items:center; justify-content:space-between;
}
.current-price {
  font-size:20px; font-weight:700;
  color: var(--accent);
}
.old-price {
  font-size:14px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left:8px;
}
.add-cart-btn {
  width:40px; height:40px;
  border-radius:50%;
  background: var(--primary);
  color:#fff; font-size:16px;
  display:flex; align-items:center; justify-content:center;
  transition: var(--transition);
  border: none;
}
.add-cart-btn:hover {
  background: var(--primary-light);
  transform:scale(1.1);
  box-shadow: 0 4px 16px var(--primary-glow);
}

/* -- DELIVERY SECTION -- */
.delivery-section {
  background: linear-gradient(170deg, var(--bg-dark), #1A1A1B, var(--bg-dark));
  padding:100px 0;
}
.delivery-app-showcase {
  display:grid;
  grid-template-columns: auto 1fr;
  gap:80px;
  align-items:center;
}

/* Phone Mockup */
.phone-mockup {
  display:flex; justify-content:center;
}
.phone-frame {
  width:300px;
  background:#000;
  border-radius:40px;
  padding:12px;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(45,138,78,0.15);
  border: 2px solid #222;
  position:relative;
}
.phone-notch {
  width:120px; height:28px;
  background:#000;
  border-radius:0 0 16px 16px;
  margin:0 auto;
  position:relative; z-index:5;
}
.phone-screen {
  background: var(--bg-dark);
  border-radius:28px;
  overflow:hidden;
  height:580px;
  position:relative;
}

/* Mini App */
.mini-app {
  height:100%;
  display:flex; flex-direction:column;
  overflow-y:auto;
}
.app-header {
  display:flex; justify-content:space-between; align-items:center;
  padding:14px 16px 8px;
}
.app-location {
  display:flex; align-items:center; gap:6px;
  font-size:12px; color: var(--text-secondary);
}
.app-location i:first-child { color: var(--primary-light); font-size:14px; }
.app-location small { display:block; font-size:10px; color: var(--text-muted); }
.app-location span { font-size:13px; font-weight:600; color: var(--text-primary); }
.app-notif {
  position:relative;
  width:32px; height:32px;
  background: var(--bg-card);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:14px; color: var(--text-secondary);
}
.notif-dot {
  position:absolute; top:2px; right:2px;
  width:8px; height:8px;
  background: var(--danger);
  border-radius:50%;
}
.app-title {
  padding:8px 16px 12px;
  font-size:20px; font-weight:700;
  color: var(--text-primary);
  line-height:1.3;
}
.app-search {
  margin:0 16px 12px;
  display:flex; align-items:center; gap:8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding:10px 14px;
}
.app-search i { color: var(--text-muted); font-size:14px; }
.app-search input {
  flex:1; background:none; border:none; outline:none;
  color: var(--text-primary); font-size:13px;
}
.app-cats {
  display:flex; gap:6px;
  padding:0 16px 12px;
  overflow-x:auto;
}
.app-cat {
  padding:6px 14px;
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size:11px; font-weight:500;
  white-space:nowrap;
  transition: var(--transition);
}
.app-cat.active { background: var(--primary); color:#fff; border-color: var(--primary); }
.app-deals { padding:0 16px; flex:1; }
.app-deal-header {
  display:flex; justify-content:space-between; align-items:center;
  margin-bottom:10px;
}
.app-deal-header h3 { font-size:15px; font-weight:700; }
.app-deal-header a { font-size:12px; color: var(--primary-light); }
.app-cards-scroll { display:flex; gap:12px; overflow-x:auto; padding-bottom:12px; }
.app-food-card {
  min-width:160px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow:hidden;
}
.afc-img {
  height:100px;
  display:flex; align-items:center; justify-content:center;
  position:relative;
}
.afc-badge {
  position:absolute; top:6px; left:6px;
  background: var(--danger);
  color:#fff; font-size:9px; font-weight:700;
  padding:3px 8px;
  border-radius: var(--radius-sm);
}
.afc-emoji { font-size:36px; }
.afc-info { padding:10px; }
.afc-info h4 { font-size:13px; font-weight:600; margin-bottom:4px; }
.afc-meta { font-size:10px; color: var(--text-muted); display:block; margin-bottom:6px; }
.afc-bottom { display:flex; justify-content:space-between; align-items:center; }
.afc-price { font-size:14px; font-weight:700; color: var(--accent); }
.afc-rating { font-size:11px; color: var(--text-secondary); }
.app-bottom-nav {
  display:flex; justify-content:space-around;
  padding:10px 0 14px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  margin-top:auto;
}
.abn-item {
  display:flex; flex-direction:column; align-items:center;
  gap:2px; font-size:10px; color: var(--text-muted);
  cursor:pointer; position:relative;
}
.abn-item i { font-size:18px; }
.abn-item.active { color: var(--primary-light); }
.abn-badge {
  position:absolute; top:-4px; right:-8px;
  background: var(--danger); color:#fff;
  font-size:8px; font-weight:700;
  width:14px; height:14px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
}

/* Delivery Features */
.delivery-features {
  display:flex; flex-direction:column; gap:24px;
}
.df-card {
  display:flex; gap:20px; align-items:flex-start;
  padding:24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.df-card:hover {
  border-color: var(--primary-light);
  transform:translateX(8px);
  box-shadow: var(--shadow-glow);
}
.df-icon {
  width:52px; height:52px; min-width:52px;
  border-radius: var(--radius-md);
  background: rgba(45,138,78,0.15);
  display:flex; align-items:center; justify-content:center;
  font-size:22px; color: var(--primary-light);
}
.df-content h3 { font-size:18px; font-weight:600; margin-bottom:6px; }
.df-content p { font-size:14px; color: var(--text-secondary); }

/* -- ABOUT -- */
.about-section { background: var(--bg-dark); }
.about-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  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:400px; object-fit:cover;
}
.about-img-secondary {
  position:absolute;
  bottom:-30px; right:-20px;
  width:200px;
  border-radius: var(--radius-md);
  overflow:hidden;
  border: 4px solid var(--bg-dark);
  box-shadow: var(--shadow-md);
}
.about-img-secondary img { width:100%; height:160px; object-fit:cover; }
.about-experience-badge {
  position:absolute;
  top:20px; right:20px;
  background: var(--primary);
  color:#fff;
  padding:20px;
  border-radius: var(--radius-md);
  text-align:center;
  box-shadow: var(--shadow-md);
}
.exp-num { font-size:36px; font-weight:900; display:block; }
.exp-text { font-size:12px; line-height:1.3; }

.about-text {
  color: var(--text-secondary);
  font-size:16px; margin:16px 0 28px;
}
.about-checks {
  display:grid; grid-template-columns:1fr 1fr; gap:14px;
  margin-bottom:32px;
}
.check-item {
  display:flex; align-items:center; gap:10px;
  font-size:14px;
}
.check-item i { color: var(--primary-light); }

/* -- TESTIMONIALS -- */
.testimonials { background: var(--bg-surface); }
.testimonials-grid {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding:32px;
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: var(--border-active);
  transform:translateY(-4px);
}
.testimonial-card.featured {
  background: linear-gradient(135deg, rgba(45,138,78,0.1), rgba(139,195,74,0.05));
  border-color: var(--primary-light);
}
.test-stars { color: var(--gold); margin-bottom:16px; font-size:16px; letter-spacing:2px; }
.test-text {
  font-size:15px; color: var(--text-secondary);
  margin-bottom:24px; font-style:italic;
  line-height:1.7;
}
.test-author { display:flex; align-items:center; gap:14px; }
.test-avatar {
  width:44px; height:44px;
  border-radius:50%;
  background: var(--primary);
  color:#fff; font-weight:700;
  display:flex; align-items:center; justify-content:center;
  font-size:14px;
}
.test-author h4 { font-size:15px; font-weight:600; }
.test-author span { font-size:12px; color: var(--text-muted); }

/* -- CTA BANNER -- */
.cta-banner {
  padding:80px 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
}
.cta-content {
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap:wrap; gap:24px;
}
.cta-text h2 { font-family: var(--font-display); font-size:32px; color:#fff; }
.cta-text p { color:rgba(255,255,255,0.8); font-size:16px; margin-top:8px; }
.cta-text strong { color:#fff; background: rgba(0,0,0,0.2); padding:3px 10px; border-radius:6px; }
.cta-banner .primary-btn {
  background:#fff; color: var(--primary-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.cta-banner .primary-btn:hover { background:var(--accent-light); color:#000; }

/* -- CONTACT -- */
.contact-section { background: var(--bg-dark); }
.contact-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
}
.contact-info p { color: var(--text-secondary); margin:12px 0 32px; }
.contact-methods { display:flex; flex-direction:column; gap:20px; }
.contact-method {
  display:flex; align-items:center; gap:16px;
  padding:16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.contact-method:hover { border-color: var(--primary-light); }
.contact-method i {
  width:44px; height:44px;
  background: rgba(45,138,78,0.15);
  color: var(--primary-light);
  border-radius: var(--radius-sm);
  display:flex; align-items:center; justify-content:center;
  font-size:18px;
}
.contact-method h4 { font-size:15px; font-weight:600; }
.contact-method span { font-size:13px; color: var(--text-muted); }

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding:36px;
}
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-group { margin-bottom:16px; }
.form-group input, .form-group textarea {
  width:100%;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding:14px 18px;
  color: var(--text-primary);
  font-size:15px;
  outline:none;
  transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--primary-light);
}
.form-group textarea { resize:vertical; min-height:100px; }

/* -- FOOTER -- */
.main-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding:60px 0 30px;
}
.footer-grid {
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1.5fr;
  gap:40px;
  margin-bottom:40px;
}
.footer-brand p {
  color: var(--text-secondary);
  font-size:14px;
  margin:16px 0;
}
.footer-social { display:flex; gap:12px; }
.footer-social a {
  width:38px; height:38px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color: var(--text-secondary);
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--primary); color:#fff; border-color: var(--primary);
}
.footer-links h4 {
  font-size:16px; font-weight:600;
  margin-bottom:20px; color: var(--text-primary);
}
.footer-links li { margin-bottom:10px; }
.footer-links a { color: var(--text-secondary); font-size:14px; }
.footer-links a:hover { color: var(--primary-light); padding-left:4px; }
.footer-newsletter h4 {
  font-size:16px; font-weight:600;
  margin-bottom:8px;
}
.footer-newsletter p {
  color: var(--text-secondary); font-size:14px;
  margin-bottom:16px;
}
.newsletter-form {
  display:flex;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow:hidden;
}
.newsletter-form input {
  flex:1; background: var(--bg-card);
  border:none; padding:12px 16px;
  color: var(--text-primary); font-size:14px;
  outline:none;
}
.newsletter-form button {
  background: var(--primary); color:#fff;
  padding:12px 18px; font-size:16px;
  transition: var(--transition);
}
.newsletter-form button:hover { background: var(--primary-light); }
.footer-bottom {
  display:flex; justify-content:space-between; align-items:center;
  padding-top:24px;
  border-top: 1px solid var(--border);
}
.footer-bottom p { font-size:13px; color: var(--text-muted); }
.payment-methods { display:flex; gap:16px; font-size:24px; color: var(--text-muted); }

/* -- CART SIDEBAR -- */
.cart-overlay {
  position:fixed; inset:0;
  background: rgba(0,0,0,0.6);
  z-index:2000;
  opacity:0; visibility:hidden;
  transition: var(--transition);
}
.cart-overlay.active { opacity:1; visibility:visible; }
.cart-sidebar {
  position:fixed; top:0; right:0;
  width:380px; height:100vh;
  background: var(--bg-surface);
  border-left: 1px solid var(--border);
  z-index:2001;
  display:flex; flex-direction:column;
  transform: translateX(100%);
  transition: var(--transition);
}
.cart-sidebar.active { transform:translateX(0); }
.cart-header {
  display:flex; justify-content:space-between; align-items:center;
  padding:20px 24px;
  border-bottom: 1px solid var(--border);
}
.cart-header h3 { font-size:18px; font-weight:600; }
.cart-header h3 i { margin-right:8px; color: var(--primary-light); }
.cart-close {
  width:36px; height:36px;
  border-radius:50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  font-size:16px; color: var(--text-secondary);
}
.cart-close:hover { background: var(--danger); color:#fff; }
.cart-items {
  flex:1; overflow-y:auto; padding:20px 24px;
}
.cart-empty {
  text-align:center; padding:60px 20px;
  color: var(--text-muted);
}
.cart-empty span { font-size:48px; display:block; margin-bottom:12px; }
.cart-item {
  display:flex; gap:14px; align-items:center;
  padding:14px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-img {
  width:60px; height:60px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  display:flex; align-items:center; justify-content:center;
  font-size:28px;
}
.cart-item-info { flex:1; }
.cart-item-name { font-size:14px; font-weight:600; }
.cart-item-price { font-size:14px; color: var(--accent); font-weight:600; }
.cart-item-qty {
  display:flex; align-items:center; gap:10px;
}
.qty-btn {
  width:28px; height:28px;
  border-radius:50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  font-size:14px; color: var(--text-primary);
}
.qty-btn:hover { background: var(--primary); color:#fff; }
.cart-item-remove {
  color: var(--text-muted);
  font-size:14px;
  transition: var(--transition);
}
.cart-item-remove:hover { color: var(--danger); }
.cart-footer {
  padding:20px 24px;
  border-top: 1px solid var(--border);
}
.cart-subtotal {
  display:flex; justify-content:space-between;
  font-size:18px; font-weight:700;
  margin-bottom:16px;
}
.cart-subtotal span:last-child { color: var(--accent); }

/* -- BACK TO TOP -- */
.back-to-top {
  position:fixed; bottom:30px; right:30px;
  width:48px; height:48px;
  border-radius:50%;
  background: var(--primary);
  color:#fff; font-size:18px;
  display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow-md);
  z-index:99;
  opacity:0; visibility:hidden;
  transform: translateY(20px);
  transition: var(--transition);
}
.back-to-top.visible { opacity:1; visibility:visible; transform:translateY(0); }
.back-to-top:hover { background: var(--primary-light); transform:translateY(-4px); }

/* -- RESPONSIVE -- */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns:1fr; text-align:center; }
  .hero-content { order:2; }
  .hero-visual { order:1; min-height:360px; }
  .hero-text { margin-left:auto; margin-right:auto; }
  .hero-features { justify-content:center; }
  .hero-actions { justify-content:center; }
  .hero-stats { justify-content:center; }
  .main-card { width:260px; height:340px; }
  .delivery-app-showcase { grid-template-columns:1fr; }
  .phone-mockup { order:1; }
  .delivery-features { order:2; }
}

@media (max-width: 968px) {
  .nav-links { display:none; }
  .mobile-toggle { display:flex; }
  .nav-links.active {
    display:flex; flex-direction:column;
    position:absolute; top:100%; left:0; right:0;
    background: var(--bg-glass);
    backdrop-filter:blur(20px);
    padding:20px 24px;
    border-bottom: 1px solid var(--border);
    gap:0;
  }
  .nav-links.active a { padding:14px 0; border-bottom:1px solid var(--border); }
  .nav-cta { display:none; }
  .categories-grid { grid-template-columns:repeat(3, 1fr); }
  .products-grid { grid-template-columns:repeat(2, 1fr); }
  .about-grid { grid-template-columns:1fr; }
  .contact-grid { grid-template-columns:1fr; }
  .testimonials-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .cta-content { flex-direction:column; text-align:center; }
}

@media (max-width: 640px) {
  .hero { padding:140px 0 80px; }
  .hero-title { font-size:32px; }
  .categories-grid { grid-template-columns:repeat(2, 1fr); gap:12px; }
  .products-grid { grid-template-columns:1fr; }
  .product-img-wrap { height:200px; }
  .footer-grid { grid-template-columns:1fr; }
  .form-row { grid-template-columns:1fr; }
  .cart-sidebar { width:100%; }
  .phone-frame { width:260px; }
  .phone-screen { height:480px; }
  .about-checks { grid-template-columns:1fr; }
  .floating-card { display:none; }
  .header-top-bar { font-size:11px; }
  .top-social { display:none; }
}

/* Animations on scroll */
.reveal {
  opacity:0; transform:translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.active { opacity:1; transform:translateY(0); }

/* -- NAV HIGHLIGHT -- */
.nav-highlight {
  color: var(--primary-light) !important;
  font-weight: 600 !important;
  position: relative;
}
.nav-highlight i { margin-right: 4px; }
.nav-highlight::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--primary-light);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(61, 170, 100, 0.6); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(61, 170, 100, 0); }
}

/* -- TELECONSULTA SECTION -- */
.teleconsulta-section {
  background: linear-gradient(170deg, #121212 0%, #1A1A1B 50%, #121212 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.teleconsulta-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(45, 138, 78, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.tele-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}

.tele-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.tele-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.tele-feature:hover {
  border-color: var(--primary-light);
  transform: translateX(8px);
  box-shadow: var(--shadow-glow);
}
.tf-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: var(--radius-md);
  background: rgba(45, 138, 78, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary-light);
}
.tf-content h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-primary);
}
.tf-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.tele-showcase {
  position: sticky;
  top: 120px;
}
.tele-card {
  background: var(--bg-card);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-glow);
}
.tele-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.tele-card-header i {
  color: var(--primary-light);
  font-size: 20px;
}
.tele-card-price {
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 24px;
}
.tele-card-price small {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 400;
}
.tele-card-list {
  list-style: none;
  margin-bottom: 28px;
}
.tele-card-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(45, 138, 78, 0.08);
}
.tele-card-list li:last-child { border-bottom: none; }
.tele-card-list li i {
  color: var(--primary-light);
  font-size: 14px;
  width: 20px;
  text-align: center;
}

@media (max-width: 900px) {
  .tele-grid { grid-template-columns: 1fr; gap: 30px; }
  .tele-showcase { position: static; }
}
