/* ============================================================
   KAKOO — Premium Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700;800;900&family=Space+Mono:wght@400;700&display=swap');

:root {
  --black: #0a0a0a;
  --white: #fafafa;
  --red: #e8180c;
  --red-dark: #b5120a;
  --red-light: #ff3d33;
  --grey-100: #f5f5f5;
  --grey-200: #e8e8e8;
  --grey-300: #d0d0d0;
  --grey-500: #909090;
  --grey-700: #444444;
  --grey-900: #1a1a1a;
  --font-display: 'Bebas Neue', cursive;
  --font-body: 'Outfit', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --radius: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.16);
  --shadow-red: 0 8px 32px rgba(232,24,12,0.25);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 48px 0; }

/* ===================== SCROLLBAR ===================== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--grey-100); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

/* ===================== TYPOGRAPHY ===================== */
.display-xl { font-family: var(--font-display); font-size: clamp(64px, 12vw, 140px); line-height: 0.9; letter-spacing: 0.02em; text-transform: uppercase; }
.display-lg { font-family: var(--font-display); font-size: clamp(48px, 8vw, 96px); line-height: 0.95; letter-spacing: 0.02em; text-transform: uppercase; }
.display-md { font-family: var(--font-display); font-size: clamp(36px, 5vw, 64px); line-height: 1; letter-spacing: 0.02em; text-transform: uppercase; }
.display-sm { font-family: var(--font-display); font-size: clamp(28px, 4vw, 48px); letter-spacing: 0.02em; text-transform: uppercase; }
.heading-lg { font-size: clamp(24px, 3vw, 36px); font-weight: 800; line-height: 1.2; }
.heading-md { font-size: clamp(20px, 2.5vw, 28px); font-weight: 700; }
.heading-sm { font-size: 18px; font-weight: 700; }
.body-lg { font-size: 18px; font-weight: 400; }
.body-md { font-size: 16px; }
.body-sm { font-size: 14px; color: var(--grey-500); }
.label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 700; color: var(--red); }

/* ===================== BUTTONS ===================== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; font-weight: 700; font-size: 15px; letter-spacing: 0.05em; text-transform: uppercase; border-radius: var(--radius); transition: var(--transition); position: relative; overflow: hidden; }

.btn::before { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0.1); transform: translateX(-100%); transition: transform 0.3s ease; }
.btn:hover::before { transform: translateX(0); }

.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: var(--shadow-red); }

.btn-outline { background: transparent; color: var(--black); border: 2px solid var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); transform: translateY(-2px); }

.btn-white { background: var(--white); color: var(--black); }
.btn-white:hover { background: var(--grey-100); transform: translateY(-2px); }

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

.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-lg { padding: 18px 48px; font-size: 16px; }
.btn-icon { padding: 14px; }

/* ===================== NAVBAR ===================== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}

.navbar-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 68px;
}

.nav-left { display: flex; align-items: center; gap: 8px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  color: rgba(255,255,255,0.7); font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 8px 12px; border-radius: var(--radius);
  transition: var(--transition); position: relative;
}
.nav-link::after { content: ''; position: absolute; bottom: 4px; left: 12px; right: 12px; height: 2px; background: var(--red); transform: scaleX(0); transition: transform 0.3s ease; border-radius: 1px; }
.nav-link:hover { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--white); }

.nav-logo {
  display: flex; align-items: center; justify-content: center;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 38px;
  letter-spacing: 0.12em;
  color: var(--white);
  line-height: 1;
}
.logo-text span { color: var(--red); }

.nav-right { display: flex; align-items: center; gap: 12px; justify-content: flex-end; }

.cart-btn {
  position: relative; background: transparent; color: var(--white);
  padding: 8px 12px; border-radius: var(--radius);
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  transition: var(--transition);
}
.cart-btn:hover { color: var(--red); }
.cart-count {
  position: absolute; top: 2px; right: 2px;
  background: var(--red); color: var(--white);
  font-size: 10px; font-weight: 700;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
}

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; padding: 8px; cursor: pointer; }
.hamburger span { width: 22px; height: 2px; background: var(--white); border-radius: 1px; transition: var(--transition); display: block; }

.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--black); z-index: 999;
  padding: 32px 24px; flex-direction: column; gap: 8px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-nav-link {
  color: rgba(255,255,255,0.8); font-size: 28px; font-family: var(--font-display);
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.mobile-nav-link:hover { color: var(--red); padding-left: 8px; }

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh; background: var(--black);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding-top: 68px;
}

.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1558171813-4955494c16d9?w=1600&q=80') center/cover no-repeat;
  opacity: 0.2;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.12); } }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 40%, rgba(232,24,12,0.12) 100%);
}

.hero-grain {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.hero-content { position: relative; z-index: 2; color: var(--white); max-width: 820px; }

.hero-label { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 24px; }
.hero-label-dot { width: 6px; height: 6px; background: var(--red); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.3); } }

.hero-headline { color: var(--white); margin-bottom: 8px; }
.hero-headline-accent { color: var(--red); display: block; }
.hero-sub { font-family: var(--font-display); font-size: clamp(28px, 5vw, 56px); color: rgba(255,255,255,0.4); letter-spacing: 0.15em; margin-bottom: 28px; }
.hero-desc { font-size: 18px; color: rgba(255,255,255,0.65); max-width: 480px; margin-bottom: 40px; line-height: 1.7; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; font-family: var(--font-mono);
}
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent); animation: scrollAnim 2s infinite; }
@keyframes scrollAnim { 0% { opacity: 1; transform: scaleY(1); transform-origin: top; } 100% { opacity: 0; transform: scaleY(0); transform-origin: top; } }

.hero-stats {
  position: absolute; right: 48px; bottom: 80px; z-index: 2;
  display: flex; flex-direction: column; gap: 24px;
}
.stat-item { text-align: right; }
.stat-num { font-family: var(--font-display); font-size: 48px; color: var(--white); line-height: 1; }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.4); letter-spacing: 0.1em; text-transform: uppercase; }

/* ===================== MARQUEE ===================== */
.marquee-strip {
  background: var(--red); padding: 12px 0; overflow: hidden;
}
.marquee-inner { display: flex; animation: marquee 20s linear infinite; white-space: nowrap; }
.marquee-inner:hover { animation-play-state: paused; }
.marquee-item { font-family: var(--font-display); font-size: 20px; color: var(--white); letter-spacing: 0.12em; padding: 0 40px; opacity: 0.9; display: flex; align-items: center; gap: 16px; }
.marquee-dot { width: 6px; height: 6px; background: rgba(255,255,255,0.5); border-radius: 50%; flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===================== FEATURES ===================== */
.features { background: var(--white); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .label { margin-bottom: 12px; display: block; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.feature-card {
  background: var(--grey-100); padding: 48px 32px;
  transition: var(--transition); position: relative; overflow: hidden;
  cursor: default;
}
.feature-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--red); transform: scaleX(0); transition: transform 0.3s ease;
  transform-origin: left;
}
.feature-card:hover { background: var(--black); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover .feature-icon { color: var(--red); }
.feature-card:hover .feature-title { color: var(--white); }
.feature-card:hover .feature-desc { color: rgba(255,255,255,0.5); }
.feature-icon { font-size: 36px; margin-bottom: 20px; transition: var(--transition); display: block; }
.feature-title { font-size: 20px; font-weight: 800; margin-bottom: 10px; transition: var(--transition); }
.feature-desc { font-size: 14px; color: var(--grey-500); line-height: 1.6; transition: var(--transition); }

/* ===================== PRODUCTS ===================== */
.products { background: var(--grey-100); }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.product-card {
  background: var(--white); overflow: hidden;
  transition: var(--transition); position: relative;
  group: true;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-img-wrap { position: relative; overflow: hidden; aspect-ratio: 4/5; background: var(--grey-100); }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.4,0,0.2,1); }
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--red); color: var(--white);
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 2px; font-family: var(--font-mono);
}
.product-actions {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px; display: flex; gap: 8px;
  transform: translateY(100%); transition: transform 0.3s ease;
}
.product-card:hover .product-actions { transform: translateY(0); }
.product-info { padding: 20px 24px 24px; }
.product-name { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.product-desc { font-size: 13px; color: var(--grey-500); margin-bottom: 14px; line-height: 1.5; }
.product-price-row { display: flex; align-items: center; gap: 10px; }
.product-price { font-family: var(--font-display); font-size: 28px; color: var(--black); }
.product-original { font-size: 14px; color: var(--grey-300); text-decoration: line-through; }
.product-discount { font-size: 12px; color: var(--red); font-weight: 700; font-family: var(--font-mono); }

/* ===================== CUSTOM DESIGN ===================== */
.custom-design { background: var(--black); color: var(--white); }
.custom-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.custom-visual {
  background: var(--grey-900); border-radius: var(--radius-lg);
  padding: 40px; min-height: 480px;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  border: 1px solid rgba(255,255,255,0.06);
  position: relative; overflow: hidden;
}
.custom-visual::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(232,24,12,0.1) 0%, transparent 60%);
}
.upload-zone {
  border: 2px dashed rgba(255,255,255,0.15); border-radius: var(--radius-md);
  padding: 48px 40px; text-align: center; width: 100%;
  cursor: pointer; transition: var(--transition); position: relative;
}
.upload-zone:hover { border-color: var(--red); background: rgba(232,24,12,0.05); }
.upload-icon { font-size: 48px; margin-bottom: 16px; }
.upload-text { font-size: 16px; font-weight: 600; color: rgba(255,255,255,0.8); margin-bottom: 8px; }
.upload-hint { font-size: 13px; color: rgba(255,255,255,0.3); }
#fileInput { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.preview-img { max-height: 240px; border-radius: var(--radius); object-fit: contain; display: none; margin-bottom: 16px; }
.custom-form { display: flex; flex-direction: column; gap: 32px; }
.custom-form .label { margin-bottom: 12px; display: block; }
.form-field { display: flex; flex-direction: column; gap: 10px; }
.form-field label { font-size: 13px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.form-select, .form-input {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  color: var(--white); padding: 14px 16px; border-radius: var(--radius);
  font-size: 15px; transition: var(--transition);
  appearance: none; -webkit-appearance: none;
}
.form-select:focus, .form-input:focus { border-color: var(--red); background: rgba(255,255,255,0.06); }
.form-select option { background: var(--black); }
.size-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.size-btn {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7); padding: 12px 8px; border-radius: var(--radius);
  font-size: 13px; font-weight: 700; text-align: center; cursor: pointer;
  transition: var(--transition);
}
.size-btn:hover, .size-btn.active { background: var(--red); border-color: var(--red); color: var(--white); }
.qty-row { display: flex; align-items: center; gap: 12px; }
.qty-btn { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); color: var(--white); width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius); font-size: 18px; font-weight: 700; transition: var(--transition); }
.qty-btn:hover { background: var(--red); border-color: var(--red); }
.qty-num { font-family: var(--font-display); font-size: 32px; min-width: 48px; text-align: center; }

/* ===================== REVIEWS ===================== */
.reviews { background: var(--white); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--grey-100); padding: 32px;
  border-radius: var(--radius-md); transition: var(--transition);
  border: 1px solid transparent;
}
.review-card:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: var(--shadow); }
.review-stars { color: #fbbf24; font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.review-text { font-size: 15px; line-height: 1.7; color: var(--grey-700); margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--red); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 20px; color: var(--white); flex-shrink: 0; }
.review-name { font-weight: 700; font-size: 15px; }
.review-meta { font-size: 12px; color: var(--grey-500); font-family: var(--font-mono); }

/* ===================== MAP / GOOGLE SECTION ===================== */
.local-section { background: var(--black); color: var(--white); }
.local-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.map-wrap { position: relative; }
.map-wrap iframe { width: 100%; height: 480px; border: none; filter: grayscale(20%) contrast(1.1); }
.local-info { padding: 64px 48px; display: flex; flex-direction: column; justify-content: center; }
.local-info .label { margin-bottom: 16px; }
.address-block { margin-top: 32px; padding: 24px; background: rgba(255,255,255,0.04); border-radius: var(--radius-md); border: 1px solid rgba(255,255,255,0.06); }
.address-row { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
.address-row:last-child { margin-bottom: 0; }
.address-icon { color: var(--red); font-size: 18px; margin-top: 2px; flex-shrink: 0; }

/* ===================== GALLERY ===================== */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 200px); gap: 4px; }
.gallery-item { overflow: hidden; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-overlay { position: absolute; inset: 0; background: rgba(232,24,12,0); transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.gallery-item:hover .gallery-overlay { background: rgba(232,24,12,0.2); }

/* ===================== WHATSAPP FLOAT ===================== */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: var(--transition); animation: waPulse 3s infinite;
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(37,211,102,0.6); }
@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.wa-tooltip {
  position: absolute; right: 72px; top: 50%; transform: translateY(-50%);
  background: var(--black); color: var(--white); font-size: 13px; font-weight: 600;
  padding: 8px 14px; border-radius: 6px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: var(--transition);
}
.wa-tooltip::after { content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%); border: 6px solid transparent; border-left-color: var(--black); border-right: none; }
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ===================== FOOTER ===================== */
footer { background: var(--black); color: rgba(255,255,255,0.7); border-top: 1px solid rgba(255,255,255,0.06); }
.footer-top { padding: 64px 0 48px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand .logo-text { font-size: 48px; margin-bottom: 16px; display: block; }
.footer-tagline { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.45); margin-bottom: 24px; max-width: 240px; }
.footer-socials { display: flex; gap: 10px; }
.social-link { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; font-size: 16px; color: rgba(255,255,255,0.5); transition: var(--transition); }
.social-link:hover { background: var(--red); color: var(--white); transform: translateY(-2px); }
.footer-col h4 { color: var(--white); font-size: 13px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 20px; font-family: var(--font-mono); }
.footer-link { display: block; color: rgba(255,255,255,0.45); font-size: 14px; padding: 5px 0; transition: var(--transition); }
.footer-link:hover { color: var(--red); padding-left: 6px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-bottom a { color: rgba(255,255,255,0.3); transition: var(--transition); }
.footer-bottom a:hover { color: var(--red); }

/* ===================== CART SIDEBAR ===================== */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 1100; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-sidebar {
  position: fixed; top: 0; right: 0; bottom: 0; width: 420px; max-width: 100vw;
  background: var(--white); z-index: 1200;
  transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
}
.cart-sidebar.open { transform: translateX(0); }
.cart-header { padding: 24px; border-bottom: 1px solid var(--grey-200); display: flex; justify-content: space-between; align-items: center; }
.cart-title { font-size: 20px; font-weight: 800; }
.cart-close { background: none; font-size: 22px; color: var(--grey-500); padding: 4px; transition: var(--transition); }
.cart-close:hover { color: var(--red); transform: rotate(90deg); }
.cart-body { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty { text-align: center; padding: 60px 0; color: var(--grey-500); }
.cart-empty-icon { font-size: 56px; margin-bottom: 16px; }
.cart-item { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--grey-200); }
.cart-item-img { width: 80px; height: 80px; object-fit: cover; border-radius: var(--radius); flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.cart-item-meta { font-size: 12px; color: var(--grey-500); margin-bottom: 8px; font-family: var(--font-mono); }
.cart-item-row { display: flex; align-items: center; justify-content: space-between; }
.cart-item-price { font-family: var(--font-display); font-size: 22px; }
.cart-item-remove { background: none; color: var(--grey-300); font-size: 18px; transition: var(--transition); }
.cart-item-remove:hover { color: var(--red); }
.cart-footer { padding: 24px; border-top: 1px solid var(--grey-200); }
.cart-total-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.cart-total-label { font-size: 16px; font-weight: 600; }
.cart-total-price { font-family: var(--font-display); font-size: 36px; }

/* ===================== PAGE HERO ===================== */
.page-hero {
  background: var(--black); color: var(--white);
  padding: 140px 0 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; right: -100px; top: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,24,12,0.12) 0%, transparent 70%);
}
.page-hero .label { margin-bottom: 12px; display: block; }
.breadcrumb { display: flex; gap: 8px; align-items: center; margin-top: 16px; font-size: 14px; color: rgba(255,255,255,0.3); }
.breadcrumb a { color: rgba(255,255,255,0.3); transition: var(--transition); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: var(--white); }

/* ===================== ABOUT PAGE ===================== */
.about-story { background: var(--white); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-img { position: relative; }
.story-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius-md); }
.story-img-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--red); color: var(--white);
  padding: 20px 28px; border-radius: var(--radius-md);
  box-shadow: var(--shadow-red);
}
.story-img-badge .num { font-family: var(--font-display); font-size: 52px; line-height: 1; }
.story-img-badge .txt { font-size: 13px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.story-content .label { display: block; margin-bottom: 16px; }
.story-text { font-size: 16px; line-height: 1.8; color: var(--grey-700); margin-top: 20px; margin-bottom: 16px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { text-align: center; padding: 40px 24px; background: var(--grey-100); border-radius: var(--radius-md); transition: var(--transition); }
.value-card:hover { background: var(--black); }
.value-card:hover .value-icon, .value-card:hover .value-title, .value-card:hover .value-text { color: var(--white); }
.value-icon { font-size: 40px; margin-bottom: 16px; display: block; transition: var(--transition); }
.value-title { font-size: 18px; font-weight: 800; margin-bottom: 10px; transition: var(--transition); }
.value-text { font-size: 14px; color: var(--grey-500); line-height: 1.6; transition: var(--transition); }

/* ===================== CONTACT PAGE ===================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-info { }
.contact-info-card { padding: 32px; background: var(--grey-100); border-radius: var(--radius-md); margin-bottom: 16px; display: flex; gap: 20px; align-items: flex-start; transition: var(--transition); }
.contact-info-card:hover { background: var(--black); }
.contact-info-card:hover .contact-icon, .contact-info-card:hover h4, .contact-info-card:hover p { color: var(--white); }
.contact-icon { font-size: 24px; color: var(--red); flex-shrink: 0; margin-top: 2px; transition: var(--transition); }
.contact-info-card h4 { font-size: 15px; font-weight: 800; margin-bottom: 4px; transition: var(--transition); }
.contact-info-card p { font-size: 14px; color: var(--grey-500); line-height: 1.5; transition: var(--transition); }
.contact-form-wrap { background: var(--white); padding: 48px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--grey-700); }
.form-group input, .form-group textarea, .form-group select {
  padding: 14px 16px; border: 1.5px solid var(--grey-200); border-radius: var(--radius);
  font-size: 15px; transition: var(--transition); background: var(--white); color: var(--black);
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(232,24,12,0.08); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===================== LEGAL PAGES ===================== */
.legal-content { max-width: 840px; margin: 0 auto; }
.legal-content h2 { font-size: 26px; font-weight: 800; margin-top: 48px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--grey-200); }
.legal-content h3 { font-size: 19px; font-weight: 700; margin-top: 32px; margin-bottom: 12px; }
.legal-content p { font-size: 15px; line-height: 1.8; color: var(--grey-700); margin-bottom: 14px; }
.legal-content ul { margin-bottom: 14px; padding-left: 20px; }
.legal-content li { font-size: 15px; line-height: 1.8; color: var(--grey-700); margin-bottom: 8px; list-style: disc; }
.legal-updated { font-size: 13px; color: var(--grey-500); font-family: var(--font-mono); margin-bottom: 40px; }
.legal-tabs { display: flex; gap: 4px; margin-bottom: 48px; border-bottom: 2px solid var(--grey-200); }
.legal-tab { padding: 12px 28px; font-weight: 700; font-size: 15px; cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -2px; transition: var(--transition); background: none; color: var(--grey-500); }
.legal-tab.active { color: var(--red); border-bottom-color: var(--red); }
.legal-panel { display: none; }
.legal-panel.active { display: block; }

/* ===================== TRUST BADGE ===================== */
.trust-strip { background: var(--red); padding: 24px 0; }
.trust-inner { display: flex; justify-content: center; gap: 64px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--white); font-weight: 700; font-size: 14px; letter-spacing: 0.05em; }
.trust-icon { font-size: 20px; }

/* ===================== TOAST ===================== */
.toast {
  position: fixed; bottom: 100px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--black); color: var(--white); padding: 14px 28px;
  border-radius: 40px; font-size: 14px; font-weight: 600; z-index: 2000;
  opacity: 0; transition: all 0.3s ease; border: 1px solid rgba(255,255,255,0.1);
  white-space: nowrap; pointer-events: none;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.success::before { content: '✓ '; color: #22c55e; }
.toast.error::before { content: '✗ '; color: var(--red); }

/* ===================== SCROLL REVEAL ===================== */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item:first-child { grid-column: span 1; grid-row: span 1; }
  .custom-grid { grid-template-columns: 1fr; gap: 48px; }
  .local-grid { grid-template-columns: 1fr; }
  .map-wrap iframe { height: 320px; }
  .hero-stats { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-right .btn { display: none; }
  .hamburger { display: flex; }
  .nav-right { gap: 8px; }
  .features-grid { grid-template-columns: 1fr; gap: 2px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid { grid-template-columns: 1fr; }
  .story-img-badge { bottom: 16px; right: 16px; }
  .values-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .trust-inner { gap: 28px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .section-pad { padding: 56px 0; }
  .local-info { padding: 40px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .size-grid { grid-template-columns: repeat(4, 1fr); }
  .navbar-inner { grid-template-columns: 1fr auto 1fr; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .cart-sidebar { width: 100vw; }
}
