/* ============================================
   Mansouri Fresh Export — Main Stylesheet
   ============================================ */

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

:root {
  --green-dark: #145a32;
  --green-mid: #1e8449;
  --green-light: #27ae60;
  --green-pale: #e8f5e9;
  --red: #c0392b;
  --red-light: #e74c3c;
  --watermelon: #ff6b6b;
  --gold: #f39c12;
  --gold-light: #f9e79f;
  --white: #ffffff;
  --off-white: #fafaf8;
  --gray-50: #f8f9fa;
  --gray-100: #f0f1f3;
  --gray-200: #e0e2e6;
  --gray-400: #a0a4ab;
  --gray-600: #6b7280;
  --gray-800: #2d3436;
  --gray-900: #1a1a2e;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,.12);
  --shadow-xl: 0 20px 50px rgba(0,0,0,.15);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: .3s ease;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

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

/* --- Top Bar --- */
.top-bar {
  background: var(--green-dark);
  color: var(--white);
  font-size: .85rem;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a {
  color: var(--white);
  transition: opacity var(--transition);
}
.top-bar a:hover { opacity: .8; }
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-bar-item svg { width: 14px; height: 14px; flex-shrink: 0; }

/* --- Header / Navbar --- */
.header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--green-dark);
}
.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 900;
}
.logo span { color: var(--green-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-close {
  display: none;
}
.nav-links a {
  font-weight: 600;
  font-size: .95rem;
  color: var(--gray-800);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-mid);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--green-mid); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--green-mid) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-sm);
  transition: background var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--green-dark) !important; }

/* --- Language Selector --- */
.lang-selector {
  position: relative;
  z-index: 1001;
}
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 30px;
  padding: 6px 12px;
  cursor: pointer;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-800);
  transition: all var(--transition);
  font-family: var(--font);
}
.lang-toggle:hover {
  border-color: var(--green-mid);
  background: var(--green-pale);
}
.lflag { width: 22px; height: 16px; border-radius: 3px; display: inline-block; vertical-align: middle; box-shadow: 0 0 0 .5px rgba(0,0,0,.12); }
.lang-current-flag { line-height: 1; display: flex; align-items: center; }
.lang-current-code { font-size: .8rem; letter-spacing: .5px; }
.lang-chevron {
  transition: transform var(--transition);
}
.lang-selector.open .lang-chevron {
  transform: rotate(180deg);
}
.lang-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  min-width: 170px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all .2s ease;
  overflow: hidden;
}
.lang-selector.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 16px;
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: .88rem;
  color: var(--gray-800);
  transition: background var(--transition);
  text-align: left;
}
.lang-option:hover {
  background: var(--green-pale);
}
.lang-option.active {
  background: var(--green-pale);
  color: var(--green-dark);
  font-weight: 700;
}
.lang-flag { line-height: 1; display: flex; align-items: center; }
.lang-name { flex: 1; }

/* Mobile language selector (inside nav panel) */
.lang-selector-mobile {
  display: none;
}
.lang-selector-mobile .lang-dropdown {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  box-shadow: none;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  margin-top: 8px;
}
.lang-selector-mobile .lang-toggle {
  width: 100%;
  justify-content: center;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: var(--transition);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #145a32 0%, #1e8449 50%, #27ae60 100%);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
}
.hero-video::-webkit-media-controls { display: none !important; }
.hero-video::-webkit-media-controls-enclosure { display: none !important; }
.hero-video::-webkit-media-controls-panel { display: none !important; }
.hero-video::-moz-media-controls { display: none !important; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,80,40,.30) 0%, rgba(30,100,50,.20) 60%, rgba(0,0,0,.10) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 650px;
  padding: 40px 0;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,.2);
}
.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero h1 .accent { color: var(--gold-light); }
.hero p {
  font-size: 1.15rem;
  opacity: .9;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Carousel dots */
.carousel-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
}
.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.carousel-dot.active {
  background: var(--white);
  transform: scale(1.2);
}

/* Carousel arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.2rem;
}
.carousel-arrow:hover { background: rgba(255,255,255,.3); }
.carousel-arrow.prev { left: 24px; }
.carousel-arrow.next { right: 24px; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--green-mid);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--green-mid);
  border-color: var(--green-mid);
}
.btn-outline:hover {
  background: var(--green-mid);
  color: var(--white);
}
.btn-red {
  background: var(--red);
  color: var(--white);
}
.btn-red:hover {
  background: #a93226;
  transform: translateY(-2px);
}

/* --- Section --- */
.section {
  padding: 80px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-label {
  display: inline-block;
  color: var(--green-mid);
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
}
.section-desc {
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}
.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--green-mid), var(--green-light));
  border-radius: 2px;
  margin: 16px auto 0;
}

/* --- Stats Bar --- */
.stats-bar {
  background: var(--green-dark);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
  color: var(--white);
}
.stat-item h3 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.stat-item p {
  opacity: .8;
  font-size: .9rem;
  font-weight: 500;
}

/* --- Product Cards --- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--gray-100);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-card-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}
.product-card-img .placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.product-card-img .badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--green-mid);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
}
.product-card-body {
  padding: 24px;
}
.product-card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--gray-900);
}
.product-card-body p {
  color: var(--gray-600);
  font-size: .9rem;
  margin-bottom: 16px;
  line-height: 1.5;
}
.product-card-body .btn {
  padding: 10px 20px;
  font-size: .85rem;
  width: 100%;
  justify-content: center;
}

/* Watermelon gradient */
.bg-watermelon { background: linear-gradient(135deg, #4caf50 0%, #2e7d32 30%, #c62828 60%, #e53935 100%); }
.bg-tomato { background: linear-gradient(135deg, #e53935 0%, #c62828 50%, #b71c1c 100%); }
.bg-pepper { background: linear-gradient(135deg, #f9a825 0%, #e65100 50%, #bf360c 100%); }
.bg-squash { background: linear-gradient(135deg, #f57f17 0%, #e65100 50%, #4e342e 100%); }

/* --- Why Choose Us --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}
.why-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
}
.why-card:hover {
  border-color: var(--green-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.why-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--green-mid);
}
.why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--gray-900);
}
.why-card p {
  color: var(--gray-600);
  font-size: .9rem;
}

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}
.cta-section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.cta-section p {
  opacity: .9;
  margin-bottom: 32px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Product Detail Page --- */
.product-hero {
  padding: 100px 0 60px;
  color: var(--white);
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
}
.product-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
}
.product-hero .container { position: relative; z-index: 2; }
.product-hero .breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
  font-size: .9rem;
  opacity: .8;
}
.product-hero .breadcrumb a:hover { text-decoration: underline; }
.product-hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.product-hero .tagline {
  font-size: 1.2rem;
  opacity: .9;
  font-style: italic;
}

.product-content { padding: 60px 0; }
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.product-image-box {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}
.product-info h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
}
.product-info p {
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.7;
}
.product-features {
  margin: 24px 0;
}
.product-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  color: var(--gray-800);
  font-size: .95rem;
}
.product-features li svg {
  color: var(--green-mid);
  flex-shrink: 0;
  margin-top: 3px;
}

/* --- Contact Page --- */
.contact-hero {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: var(--white);
  padding: 100px 0 60px;
  text-align: center;
}
.contact-hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.contact-hero p {
  opacity: .9;
  font-size: 1.1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info-card {
  background: var(--green-pale);
  border-radius: var(--radius-md);
  padding: 36px;
}
.contact-info-card h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--green-dark);
}
.contact-info-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--green-mid);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-item h4 {
  font-size: .85rem;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.contact-info-item p, .contact-info-item a {
  color: var(--gray-800);
  font-weight: 600;
}
.contact-info-item a:hover { color: var(--green-mid); }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}
.contact-form-card h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--gray-900);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: 6px;
  color: var(--gray-800);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: .95rem;
  transition: border-color var(--transition);
  background: var(--gray-50);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(30,132,73,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* --- Footer --- */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,.8);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand p {
  font-size: .9rem;
  line-height: 1.7;
  margin-top: 16px;
}
.footer h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.footer-links a {
  display: block;
  padding: 4px 0;
  font-size: .9rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--green-light); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: .9rem;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--green-light); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  opacity: .6;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a:hover { opacity: 1; color: var(--green-light); }

/* --- WhatsApp Float --- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: all var(--transition);
  animation: whatsappPulse 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.5);
}
.whatsapp-float svg { width: 32px; height: 32px; fill: var(--white); }

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,.6); }
}

/* --- Page Header (for inner pages) --- */
.page-header {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: var(--white);
  padding: 100px 0 50px;
  text-align: center;
}
.page-header h1 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.page-header p {
  opacity: .85;
  font-size: 1.05rem;
}

/* --- Legal Pages --- */
.legal-content {
  padding: 60px 0;
  max-width: 800px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--gray-900);
}
.legal-content p {
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.7;
}
.legal-content ul {
  margin: 12px 0 20px 24px;
  list-style: disc;
  color: var(--gray-600);
}
.legal-content ul li {
  padding: 4px 0;
  line-height: 1.6;
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 968px) {
  .hero h1 { font-size: 2.4rem; }
  .section-title { font-size: 2rem; }
  .product-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 768px) {
  .top-bar-right { display: none; }
  .hamburger { display: flex; }
  .lang-selector:not(.lang-selector-mobile) { display: none; }
  .lang-selector-mobile { display: block; margin-top: 12px; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 0;
    box-shadow: var(--shadow-xl);
    transition: right var(--transition);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-100);
    width: 100%;
  }
  .nav-cta { margin-top: 16px; text-align: center; }
  .nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--gray-800);
  }
  .hero { min-height: 70vh; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: .95rem; }
  .hero-content { padding: 32px 0; text-align: center; }
  .hero-content p { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .carousel-arrow { width: 36px; height: 36px; font-size: 1rem; }
  .carousel-arrow.prev { left: 10px; }
  .carousel-arrow.next { right: 10px; }
  .carousel-dots { bottom: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .product-hero h1 { font-size: 2rem; }
}

@media (max-width: 480px) {
  .hero { min-height: 70vh; }
  .hero h1 { font-size: 1.7rem; }
  .hero p { font-size: .9rem; }
  .hero-badge { font-size: .75rem; padding: 5px 12px; }
  .section { padding: 56px 0; }
  .section-title { font-size: 1.7rem; }
  .stat-item h3 { font-size: 2rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .carousel-arrow { width: 30px; height: 30px; font-size: .9rem; }
}
