/* ============================================================
   ANKODE AUTOMOTIVE — Design System Premium
   ============================================================ */

/* ---- Variables CSS ---- */
:root {
  --primary:        #1e3a5f;
  --primary-light:  #2a5080;
  --primary-dark:   #12243d;
  --accent:         #c0392b;
  --accent-light:   #e74c3c;
  --accent-dark:    #922b21;
  --gold:           #d4af37;
  --gold-light:     #f0c040;
  --gray-900:       #0d0d0d;
  --gray-800:       #1a1a1a;
  --gray-700:       #2d2d2d;
  --gray-600:       #4a4a4a;
  --gray-500:       #6b6b6b;
  --gray-400:       #9a9a9a;
  --gray-300:       #c4c4c4;
  --gray-200:       #e0e0e0;
  --gray-100:       #f5f5f5;
  --gray-50:        #fafafa;
  --white:          #ffffff;
  --success:        #27ae60;
  --warning:        #f39c12;
  --danger:         #e74c3c;
  --info:           #2980b9;

  --font-primary:   'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-display:   'Rajdhani', 'Oswald', var(--font-primary);
  --font-mono:      'JetBrains Mono', 'Courier New', monospace;

  --radius-sm:      4px;
  --radius:         8px;
  --radius-md:      12px;
  --radius-lg:      16px;
  --radius-xl:      24px;
  --radius-full:    9999px;

  --shadow-sm:      0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.12);
  --shadow:         0 4px 12px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.08);
  --shadow-md:      0 8px 24px rgba(0,0,0,.12), 0 4px 10px rgba(0,0,0,.08);
  --shadow-lg:      0 16px 40px rgba(0,0,0,.14), 0 8px 16px rgba(0,0,0,.10);
  --shadow-xl:      0 24px 60px rgba(0,0,0,.18), 0 12px 24px rgba(0,0,0,.12);
  --shadow-primary: 0 8px 24px rgba(30,58,95,.30);
  --shadow-accent:  0 8px 24px rgba(192,57,43,.30);

  --transition:     all .25s cubic-bezier(.4,0,.2,1);
  --transition-fast:all .15s cubic-bezier(.4,0,.2,1);
  --transition-slow:all .4s cubic-bezier(.4,0,.2,1);

  --glass-bg:       rgba(255,255,255,.08);
  --glass-border:   rgba(255,255,255,.15);
  --glass-blur:     backdrop-filter: blur(16px);

  --header-h:       80px;
  --ticker-h:       40px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

.text-gradient {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container    { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { width: 100%; max-width: 960px;  margin: 0 auto; padding: 0 1.5rem; }
.container-xs { width: 100%; max-width: 720px;  margin: 0 auto; padding: 0 1.5rem; }

.section       { padding: 5rem 0; }
.section-sm    { padding: 3rem 0; }
.section-lg    { padding: 7rem 0; }
.section-title { text-align: center; margin-bottom: 3rem; }
.section-title h2 { margin-bottom: .75rem; }
.section-title p { color: var(--gray-500); font-size: 1.0625rem; max-width: 600px; margin: 0 auto; }

.section-title .label {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(30,58,95,.08); color: var(--primary);
  padding: .35rem 1rem; border-radius: var(--radius-full);
  font-size: .8125rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: 1rem;
}
.section-title .label::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}

.grid    { display: grid; gap: 1.5rem; }
.grid-2  { grid-template-columns: repeat(2, 1fr); }
.grid-3  { grid-template-columns: repeat(3, 1fr); }
.grid-4  { grid-template-columns: repeat(4, 1fr); }
.flex    { display: flex; }
.flex-c  { display: flex; align-items: center; }
.flex-cc { display: flex; align-items: center; justify-content: center; }
.flex-b  { display: flex; align-items: center; justify-content: space-between; }
.gap-1   { gap: .5rem; }
.gap-2   { gap: 1rem; }
.gap-3   { gap: 1.5rem; }
.gap-4   { gap: 2rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .75rem 1.75rem; border-radius: var(--radius);
  font-size: .9375rem; font-weight: 600; letter-spacing: .02em;
  transition: var(--transition); position: relative; overflow: hidden;
  white-space: nowrap; user-select: none;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.1); opacity: 0; transition: var(--transition-fast);
}
.btn:hover::after { opacity: 1; }
.btn:active { transform: translateY(1px) scale(.98); }

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white); box-shadow: var(--shadow-primary);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(30,58,95,.40);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent-light) 100%);
  color: var(--white); box-shadow: var(--shadow-accent);
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(192,57,43,.40);
}

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

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

.btn-ghost {
  background: var(--gray-100); color: var(--gray-700);
}
.btn-ghost:hover { background: var(--gray-200); transform: translateY(-1px); }

.btn-sm { padding: .5rem 1.25rem; font-size: .875rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.0625rem; }
.btn-xl { padding: 1.125rem 3rem; font-size: 1.125rem; border-radius: var(--radius-md); }

.btn-icon { width: 44px; height: 44px; padding: 0; border-radius: var(--radius-full); }
.btn-icon-sm { width: 36px; height: 36px; padding: 0; border-radius: var(--radius-full); }

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--white); box-shadow: 0 8px 24px rgba(37,211,102,.35);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37,211,102,.50);
}

/* ============================================================
   NEWS TICKER
   ============================================================ */
.news-ticker {
  background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 100%);
  height: var(--ticker-h); overflow: hidden; position: relative;
  display: flex; align-items: center;
}
.news-ticker-label {
  flex-shrink: 0; background: var(--accent); color: var(--white);
  padding: 0 1.25rem; height: 100%; display: flex; align-items: center;
  font-size: .8125rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; white-space: nowrap; z-index: 2; gap: .5rem;
}
.news-ticker-label i { font-size: .75rem; animation: pulse 2s infinite; }
.ticker-track {
  display: flex; align-items: center; gap: 3rem;
  animation: tickerScroll 30s linear infinite; white-space: nowrap;
  color: rgba(255,255,255,.9); font-size: .875rem; padding-left: 2rem;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item { display: flex; align-items: center; gap: .75rem; }
.ticker-item::after {
  content: '◆'; color: var(--accent); font-size: .5rem; margin-left: .75rem;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.95); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
  height: var(--header-h);
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: transparent;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: 2rem;
}
.site-logo { display: flex; align-items: center; gap: .875rem; flex-shrink: 0; }
.site-logo-img { height: 44px; width: auto; }
.site-logo-text { display: flex; flex-direction: column; }
.site-logo-name {
  font-family: var(--font-display); font-size: 1.375rem; font-weight: 800;
  letter-spacing: -.02em; line-height: 1;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.site-logo-tagline { font-size: .6875rem; color: var(--gray-400); letter-spacing: .1em; text-transform: uppercase; margin-top: 2px; }

.main-nav { display: flex; align-items: center; gap: .25rem; }
.main-nav a {
  padding: .625rem 1rem; border-radius: var(--radius);
  font-size: .9375rem; font-weight: 500; color: var(--gray-700);
  transition: var(--transition-fast); position: relative;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--primary); background: rgba(30,58,95,.06);
}
.main-nav a.active::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 20px; height: 3px; background: var(--accent); border-radius: 2px;
}

.header-actions { display: flex; align-items: center; gap: .75rem; }
.header-cta {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white); padding: .625rem 1.25rem;
  border-radius: var(--radius); font-size: .875rem; font-weight: 600;
  transition: var(--transition);
}
.header-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-accent); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 36px; height: 36px; align-items: center; justify-content: center;
  border-radius: var(--radius);
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--gray-700); border-radius: 2px; transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed; top: calc(var(--ticker-h) + var(--header-h)); left: 0; right: 0;
  background: var(--white); border-top: 1px solid var(--gray-200);
  padding: 1.5rem; transform: translateY(-100%); opacity: 0;
  transition: var(--transition); z-index: 999; pointer-events: none;
  box-shadow: var(--shadow-lg);
}
.mobile-nav.open { transform: translateY(0); opacity: 1; pointer-events: all; }
.mobile-nav a {
  display: flex; align-items: center; gap: .875rem;
  padding: 1rem; border-radius: var(--radius);
  font-size: 1.0625rem; font-weight: 500; color: var(--gray-700);
  transition: var(--transition-fast); border-bottom: 1px solid var(--gray-100);
}
.mobile-nav a:hover { color: var(--primary); background: rgba(30,58,95,.04); }
.mobile-nav a i { width: 20px; text-align: center; color: var(--primary); }

/* ============================================================
   HERO / SLIDER
   ============================================================ */
.hero-slider {
  position: relative; overflow: hidden; background: var(--primary-dark);
  min-height: 640px;
}
.hero-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1);
  display: flex; align-items: center;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  will-change: transform; transition: transform 8s linear;
}
.hero-slide.active .hero-slide-bg { transform: scale(1.05); }
.hero-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(13,19,33,.90) 0%, rgba(13,19,33,.50) 60%, rgba(13,19,33,.20) 100%);
}
.hero-slide-content {
  position: relative; z-index: 1; max-width: 680px; padding: 3rem 0;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(192,57,43,.2); border: 1px solid rgba(192,57,43,.4);
  color: #ff8a80; padding: .375rem 1rem;
  border-radius: var(--radius-full); font-size: .8125rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1.5rem;
  animation: slideDown .6s ease both;
}
.hero-title {
  color: var(--white); font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800; line-height: 1.1; margin-bottom: 1.25rem;
  animation: slideUp .6s .1s ease both;
}
.hero-title span { color: var(--gold-light); }
.hero-subtitle {
  color: rgba(255,255,255,.75); font-size: 1.125rem;
  margin-bottom: 2.5rem; max-width: 520px; line-height: 1.7;
  animation: slideUp .6s .2s ease both;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: slideUp .6s .3s ease both;
}

/* Slider controls */
.slider-prev, .slider-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; width: 52px; height: 52px;
  background: rgba(255,255,255,.1); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-full);
  color: var(--white); font-size: 1rem; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.slider-prev { left: 1.5rem; }
.slider-next { right: 1.5rem; }
.slider-prev:hover, .slider-next:hover {
  background: rgba(255,255,255,.2);
  transform: translateY(-50%) scale(1.05);
}
.slider-dots {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; gap: .5rem;
}
.slider-dot {
  width: 8px; height: 8px; border-radius: var(--radius-full);
  background: rgba(255,255,255,.4); transition: var(--transition); cursor: pointer;
}
.slider-dot.active { width: 24px; background: var(--white); }

/* ============================================================
   TRUST BADGES
   ============================================================ */
.trust-strip {
  background: var(--gray-50); border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200); padding: 1.5rem 0;
}
.trust-strip-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 2.5rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: .875rem;
}
.trust-icon {
  width: 44px; height: 44px; border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1rem; flex-shrink: 0;
}
.trust-text strong { display: block; font-size: .9375rem; color: var(--gray-800); }
.trust-text span { font-size: .8125rem; color: var(--gray-500); }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow); overflow: hidden; transition: var(--transition);
  border: 1px solid var(--gray-200);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

/* Category Card */
.category-card {
  background: var(--white); border-radius: var(--radius-md);
  border: 1px solid var(--gray-200); overflow: hidden;
  transition: var(--transition); text-align: center;
}
.category-card:hover {
  border-color: var(--primary); box-shadow: var(--shadow-primary);
  transform: translateY(-4px);
}
.category-card-img {
  height: 160px; overflow: hidden; position: relative;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-50) 100%);
  display: flex; align-items: center; justify-content: center;
}
.category-card-img i {
  font-size: 2.5rem; color: var(--primary); opacity: .7;
}
.category-card-img img { width: 100%; height: 100%; object-fit: cover; }
.category-card-body { padding: 1.25rem; }
.category-card-name { font-size: 1rem; font-weight: 700; color: var(--gray-800); margin-bottom: .25rem; }
.category-card-count { font-size: .8125rem; color: var(--gray-500); }
.category-card:hover .category-card-name { color: var(--primary); }

/* Product Card */
.product-card {
  background: var(--white); border-radius: var(--radius-md);
  border: 1px solid var(--gray-200); overflow: hidden;
  transition: var(--transition); display: flex; flex-direction: column;
  position: relative;
}
.product-card:hover { border-color: rgba(30,58,95,.2); box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.product-badges {
  position: absolute; top: .875rem; left: .875rem; z-index: 2;
  display: flex; flex-direction: column; gap: .375rem;
}
.product-badge {
  padding: .25rem .625rem; border-radius: var(--radius-full);
  font-size: .6875rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
.badge-new      { background: var(--primary); color: var(--white); }
.badge-sale     { background: var(--accent); color: var(--white); }
.badge-premium  { background: var(--gold); color: var(--gray-900); }
.badge-original { background: var(--success); color: var(--white); }
.badge-order    { background: var(--warning); color: var(--white); }

.product-card-img {
  height: 220px; overflow: hidden; position: relative;
  background: var(--gray-50); flex-shrink: 0;
}
.product-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-card-img .no-image {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-300); font-size: 3rem;
}

.product-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.product-card-brand { font-size: .75rem; color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .375rem; }
.product-card-name { font-size: 1rem; font-weight: 700; color: var(--gray-800); margin-bottom: .625rem; flex: 1; line-height: 1.4; }
.product-card-name a:hover { color: var(--primary); }
.product-card-meta { display: flex; gap: .75rem; margin-bottom: .875rem; flex-wrap: wrap; }
.product-card-meta span { font-size: .8125rem; color: var(--gray-500); display: flex; align-items: center; gap: .25rem; }
.product-card-meta i { font-size: .75rem; color: var(--primary-light); }

.product-card-price { display: flex; align-items: baseline; gap: .5rem; margin-bottom: 1rem; }
.price-current { font-size: 1.375rem; font-weight: 800; color: var(--primary); font-family: var(--font-display); }
.price-old { font-size: .9375rem; color: var(--gray-400); text-decoration: line-through; }
.price-discount { font-size: .75rem; background: rgba(192,57,43,.1); color: var(--accent); padding: .15rem .5rem; border-radius: var(--radius-full); font-weight: 600; }

.product-card-stock { margin-bottom: 1rem; }
.stock-in    { color: var(--success); font-size: .8125rem; font-weight: 600; display: flex; align-items: center; gap: .375rem; }
.stock-out   { color: var(--danger); font-size: .8125rem; font-weight: 600; display: flex; align-items: center; gap: .375rem; }
.stock-order { color: var(--warning); font-size: .8125rem; font-weight: 600; display: flex; align-items: center; gap: .375rem; }
.stock-dot   { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.stock-in   .stock-dot { background: var(--success); box-shadow: 0 0 6px rgba(39,174,96,.6); animation: pulse 2s infinite; }
.stock-out  .stock-dot { background: var(--danger); }
.stock-order .stock-dot { background: var(--warning); box-shadow: 0 0 6px rgba(243,156,18,.6); animation: pulse 2s infinite; }

.product-card-actions { display: flex; gap: .625rem; }
.product-card-actions .btn { flex: 1; padding: .625rem; font-size: .875rem; }

/* ============================================================
   STATS
   ============================================================ */
.stats-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  position: relative; overflow: hidden;
}
.stats-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stat-card { text-align: center; color: var(--white); position: relative; }
.stat-number {
  font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800; line-height: 1; display: block;
  background: linear-gradient(180deg, var(--white) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: 1rem; color: rgba(255,255,255,.75); margin-top: .5rem; font-weight: 500; }
.stat-icon { font-size: 2rem; color: var(--gold); margin-bottom: .75rem; opacity: .8; }

/* ============================================================
   BRANDS SECTION
   ============================================================ */
.brands-track {
  display: flex; gap: 2.5rem; align-items: center;
  animation: brandsScroll 20s linear infinite;
}
.brands-track:hover { animation-play-state: paused; }
.brand-logo-item {
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  padding: 1rem 2rem; background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--gray-200); transition: var(--transition); min-width: 140px; height: 72px;
}
.brand-logo-item:hover {
  border-color: var(--primary); box-shadow: var(--shadow-primary);
  transform: translateY(-2px);
}
.brand-logo-item img { max-height: 36px; width: auto; object-fit: contain; filter: grayscale(60%); transition: var(--transition); }
.brand-logo-item:hover img { filter: grayscale(0); }
.brand-logo-text { font-family: var(--font-display); font-size: 1.125rem; font-weight: 800; color: var(--gray-600); }
@keyframes brandsScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; box-shadow: var(--shadow); border: 1px solid var(--gray-200);
  position: relative; transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testimonial-card::before {
  content: '"'; position: absolute; top: 1rem; right: 1.5rem;
  font-size: 5rem; color: var(--primary); opacity: .08; font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-stars { display: flex; gap: .2rem; margin-bottom: 1rem; }
.testimonial-stars i { color: var(--gold); font-size: .9375rem; }
.testimonial-text { color: var(--gray-600); line-height: 1.7; margin-bottom: 1.5rem; font-size: .9375rem; }
.testimonial-author { display: flex; align-items: center; gap: .875rem; }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: var(--radius-full); overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 1.125rem; flex-shrink: 0;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-weight: 700; font-size: .9375rem; color: var(--gray-800); }
.testimonial-role { font-size: .8125rem; color: var(--gray-500); }
.testimonial-vehicle { font-size: .75rem; color: var(--primary); font-weight: 600; margin-top: .125rem; }

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }

label.form-label {
  display: block; font-size: .875rem; font-weight: 600;
  color: var(--gray-700); margin-bottom: .5rem;
}
label.form-label .req { color: var(--accent); margin-left: .2em; }

.form-control {
  width: 100%; padding: .75rem 1rem;
  background: var(--white); border: 1.5px solid var(--gray-300);
  border-radius: var(--radius); font-size: .9375rem; color: var(--gray-800);
  transition: var(--transition-fast); line-height: 1.5;
  appearance: none; -webkit-appearance: none;
}
.form-control:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30,58,95,.12);
  background: var(--white);
}
.form-control::placeholder { color: var(--gray-400); }
.form-control.error { border-color: var(--danger); box-shadow: 0 0 0 3px rgba(231,76,60,.12); }
.form-control.success { border-color: var(--success); }

select.form-control { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b6b6b' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

textarea.form-control { resize: vertical; min-height: 120px; }

.form-hint { font-size: .8125rem; color: var(--gray-500); margin-top: .375rem; }
.form-error { font-size: .8125rem; color: var(--danger); margin-top: .375rem; display: flex; align-items: center; gap: .3rem; }
.form-error i { font-size: .75rem; }

/* Upload Zone */
.upload-zone {
  border: 2px dashed var(--gray-300); border-radius: var(--radius-md);
  padding: 2rem; text-align: center; cursor: pointer;
  transition: var(--transition); position: relative; overflow: hidden;
  background: var(--gray-50);
}
.upload-zone:hover, .upload-zone.dragover {
  border-color: var(--primary); background: rgba(30,58,95,.04);
}
.upload-zone input[type=file] {
  position: absolute; inset: 0; opacity: 0; cursor: pointer; z-index: 1;
}
.upload-zone-icon { font-size: 2rem; color: var(--primary); margin-bottom: .75rem; opacity: .7; }
.upload-zone-text strong { display: block; font-size: .9375rem; color: var(--gray-700); margin-bottom: .25rem; }
.upload-zone-text span { font-size: .8125rem; color: var(--gray-500); }
.upload-preview { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1rem; }
.upload-preview-item {
  width: 80px; height: 80px; border-radius: var(--radius);
  overflow: hidden; position: relative; border: 2px solid var(--gray-200);
}
.upload-preview-item img { width: 100%; height: 100%; object-fit: cover; }
.upload-preview-item .remove-img {
  position: absolute; top: .2rem; right: .2rem;
  width: 20px; height: 20px; background: var(--danger); color: var(--white);
  border-radius: 50%; font-size: .625rem; display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; transition: var(--transition-fast);
}
.upload-preview-item:hover .remove-img { opacity: 1; }

/* ============================================================
   ALERTS / NOTIFICATIONS
   ============================================================ */
.alert {
  padding: 1rem 1.25rem; border-radius: var(--radius);
  display: flex; align-items: flex-start; gap: .875rem; margin-bottom: 1.25rem;
  font-size: .9375rem;
}
.alert i { font-size: 1rem; flex-shrink: 0; margin-top: .1rem; }
.alert-success { background: rgba(39,174,96,.1); border: 1px solid rgba(39,174,96,.25); color: #1d6e40; }
.alert-danger  { background: rgba(231,76,60,.1); border: 1px solid rgba(231,76,60,.25); color: #922b21; }
.alert-warning { background: rgba(243,156,18,.1); border: 1px solid rgba(243,156,18,.25); color: #7d6608; }
.alert-info    { background: rgba(41,128,185,.1); border: 1px solid rgba(41,128,185,.25); color: #1a5276; }

/* Toast notifications */
.toast-container { position: fixed; top: 1.5rem; right: 1.5rem; z-index: 9999; display: flex; flex-direction: column; gap: .75rem; }
.toast {
  background: var(--white); border-radius: var(--radius-md); padding: 1rem 1.25rem;
  box-shadow: var(--shadow-xl); min-width: 300px; max-width: 380px;
  display: flex; align-items: flex-start; gap: .875rem;
  animation: toastIn .3s cubic-bezier(.34,1.56,.64,1) both;
  border-left: 4px solid var(--primary);
}
.toast.success { border-left-color: var(--success); }
.toast.error   { border-left-color: var(--danger); }
.toast.warning { border-left-color: var(--warning); }
@keyframes toastIn { from { transform: translateX(120%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes toastOut { from { transform: translateX(0); opacity: 1; } to { transform: translateX(120%); opacity: 0; } }

/* ============================================================
   WHATSAPP BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
}
.whatsapp-btn {
  width: 60px; height: 60px; border-radius: var(--radius-full);
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--white); font-size: 1.75rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,.45);
  transition: var(--transition); animation: bounce 2s infinite;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37,211,102,.60);
  animation: none;
}
.whatsapp-tooltip {
  position: absolute; right: calc(100% + .75rem); top: 50%; transform: translateY(-50%);
  background: var(--gray-900); color: var(--white);
  padding: .5rem .875rem; border-radius: var(--radius); font-size: .8125rem; font-weight: 500;
  white-space: nowrap; pointer-events: none;
  opacity: 0; transition: var(--transition-fast);
}
.whatsapp-tooltip::after {
  content: ''; position: absolute; left: 100%; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent; border-left-color: var(--gray-900);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }
@keyframes bounce {
  0%,20%,50%,80%,100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  60% { transform: translateY(-4px); }
}

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.product-gallery { display: flex; gap: 1rem; }
.gallery-thumbs {
  display: flex; flex-direction: column; gap: .625rem; flex-shrink: 0;
}
.gallery-thumb {
  width: 72px; height: 72px; border-radius: var(--radius); overflow: hidden;
  border: 2px solid var(--gray-200); cursor: pointer; transition: var(--transition-fast);
}
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--primary); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-main {
  flex: 1; aspect-ratio: 1/1; border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--gray-200); background: var(--gray-50);
  cursor: zoom-in; position: relative;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-main:hover img { transform: scale(1.04); }

.product-detail-specs {
  background: var(--gray-50); border-radius: var(--radius-md);
  border: 1px solid var(--gray-200); overflow: hidden;
}
.spec-row { display: flex; padding: .75rem 1.25rem; border-bottom: 1px solid var(--gray-200); }
.spec-row:last-child { border-bottom: none; }
.spec-row:nth-child(even) { background: var(--white); }
.spec-key { font-size: .875rem; font-weight: 600; color: var(--gray-600); min-width: 180px; flex-shrink: 0; }
.spec-val { font-size: .875rem; color: var(--gray-800); }

.product-tabs { border-bottom: 2px solid var(--gray-200); display: flex; gap: 0; margin-bottom: 2rem; }
.product-tab {
  padding: .875rem 1.5rem; font-size: .9375rem; font-weight: 600; color: var(--gray-500);
  cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px;
  transition: var(--transition-fast);
}
.product-tab.active { color: var(--primary); border-bottom-color: var(--primary); }
.product-tab:hover { color: var(--primary); }
.product-tab-content { display: none; }
.product-tab-content.active { display: block; }

/* ============================================================
   FILTERS
   ============================================================ */
.filters-sidebar {
  background: var(--white); border-radius: var(--radius-md);
  border: 1px solid var(--gray-200); overflow: hidden;
  position: sticky; top: calc(var(--ticker-h) + var(--header-h) + 1rem);
}
.filter-header {
  padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: space-between;
}
.filter-header h3 { font-size: 1rem; font-weight: 700; color: var(--gray-800); }
.filter-section { padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--gray-100); }
.filter-section-title { font-size: .875rem; font-weight: 700; color: var(--gray-700); margin-bottom: .875rem; text-transform: uppercase; letter-spacing: .06em; }
.filter-option { display: flex; align-items: center; gap: .625rem; padding: .375rem 0; cursor: pointer; }
.filter-option input[type=checkbox] { accent-color: var(--primary); width: 16px; height: 16px; }
.filter-option label { font-size: .875rem; color: var(--gray-600); cursor: pointer; flex: 1; }
.filter-option .count { font-size: .75rem; color: var(--gray-400); }

/* Range slider */
.price-range { display: flex; flex-direction: column; gap: .75rem; }
.price-range input[type=range] { width: 100%; accent-color: var(--primary); }
.price-range-values { display: flex; justify-content: space-between; font-size: .8125rem; color: var(--gray-600); }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  display: flex; align-items: center; gap: .5rem; flex-wrap: wrap;
  font-size: .875rem; color: var(--gray-500); padding: 1.25rem 0;
}
.breadcrumb a { color: var(--gray-500); transition: var(--transition-fast); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb-sep { color: var(--gray-300); }
.breadcrumb-current { color: var(--gray-800); font-weight: 500; }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display: flex; align-items: center; justify-content: center;
  gap: .375rem; padding: 2rem 0;
}
.page-link {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius); font-size: .875rem; font-weight: 500;
  border: 1.5px solid var(--gray-200); color: var(--gray-600);
  transition: var(--transition-fast);
}
.page-link:hover { border-color: var(--primary); color: var(--primary); background: rgba(30,58,95,.06); }
.page-link.active { background: var(--primary); border-color: var(--primary); color: var(--white); }
.page-link.disabled { opacity: .4; pointer-events: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--gray-900); color: rgba(255,255,255,.8);
}
.footer-main { padding: 4rem 0 2rem; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
}
.footer-brand { }
.footer-logo { margin-bottom: 1.25rem; }
.footer-logo-name {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 800;
  color: var(--white); letter-spacing: -.02em;
}
.footer-logo-name span { color: var(--accent); }
.footer-tagline { font-size: .8125rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .1em; margin-top: .25rem; }
.footer-desc { font-size: .9375rem; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: .625rem; }
.social-icon {
  width: 38px; height: 38px; border-radius: var(--radius-full);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.7); display: flex; align-items: center; justify-content: center;
  font-size: .9rem; transition: var(--transition-fast);
}
.social-icon:hover { background: var(--primary); border-color: var(--primary); color: var(--white); transform: translateY(-2px); }
.social-icon.facebook:hover  { background: #1877f2; border-color: #1877f2; }
.social-icon.instagram:hover { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.social-icon.whatsapp:hover  { background: #25D366; border-color: #25D366; }

.footer-heading { font-size: .9375rem; font-weight: 700; color: var(--white); margin-bottom: 1.25rem; }
.footer-links li { margin-bottom: .625rem; }
.footer-links a {
  font-size: .875rem; color: rgba(255,255,255,.55); transition: var(--transition-fast);
  display: flex; align-items: center; gap: .5rem;
}
.footer-links a:hover { color: var(--white); padding-left: .375rem; }
.footer-links a i { font-size: .75rem; color: var(--primary-light); }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: .875rem; margin-bottom: 1rem; font-size: .9rem;
}
.footer-contact-icon {
  width: 34px; height: 34px; background: rgba(255,255,255,.06); border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-light); font-size: .875rem; flex-shrink: 0;
}
.footer-contact-text strong { display: block; font-size: .8125rem; color: rgba(255,255,255,.4); font-weight: 400; margin-bottom: .125rem; }
.footer-contact-text a { color: rgba(255,255,255,.8); }
.footer-contact-text a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06); padding: 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.footer-bottom p { font-size: .8125rem; color: rgba(255,255,255,.35); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: .8125rem; color: rgba(255,255,255,.35); transition: var(--transition-fast); }
.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }
.footer-rccm { font-size: .75rem; color: rgba(255,255,255,.25); }

/* ============================================================
   ADMIN LAYOUT
   ============================================================ */
.admin-wrapper { display: flex; min-height: 100vh; background: #f0f2f5; }

.admin-sidebar {
  width: 260px; flex-shrink: 0; background: var(--primary-dark);
  display: flex; flex-direction: column; position: fixed; top: 0; left: 0; bottom: 0;
  z-index: 100; transition: var(--transition); overflow-y: auto;
}
.admin-sidebar::-webkit-scrollbar { width: 4px; }
.admin-sidebar::-webkit-scrollbar-track { background: transparent; }
.admin-sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,.15); border-radius: 2px; }

.sidebar-brand {
  padding: 1.5rem; border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex; align-items: center; gap: .875rem;
}
.sidebar-brand-icon {
  width: 42px; height: 42px; background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.1rem; flex-shrink: 0;
}
.sidebar-brand-text .name { font-family: var(--font-display); font-size: 1.0625rem; font-weight: 800; color: var(--white); }
.sidebar-brand-text .sub { font-size: .6875rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .08em; }

.sidebar-nav { padding: 1rem 0; flex: 1; }
.sidebar-section-title {
  font-size: .6875rem; font-weight: 600; color: rgba(255,255,255,.3);
  text-transform: uppercase; letter-spacing: .1em;
  padding: .875rem 1.5rem .375rem; margin-top: .5rem;
}
.sidebar-item { display: block; }
.sidebar-link {
  display: flex; align-items: center; gap: .875rem;
  padding: .75rem 1.5rem; color: rgba(255,255,255,.65);
  font-size: .9375rem; transition: var(--transition-fast);
  border-left: 3px solid transparent; position: relative;
}
.sidebar-link:hover { color: var(--white); background: rgba(255,255,255,.06); border-left-color: rgba(255,255,255,.3); }
.sidebar-link.active { color: var(--white); background: rgba(255,255,255,.1); border-left-color: var(--accent); }
.sidebar-link .icon { width: 20px; text-align: center; font-size: .95rem; flex-shrink: 0; }
.sidebar-link .label { flex: 1; }
.sidebar-badge {
  background: var(--accent); color: var(--white);
  font-size: .6875rem; font-weight: 700; padding: .15rem .45rem;
  border-radius: var(--radius-full); min-width: 18px; text-align: center;
}

.sidebar-footer {
  padding: 1rem 1.5rem; border-top: 1px solid rgba(255,255,255,.06);
}
.sidebar-user { display: flex; align-items: center; gap: .75rem; margin-bottom: .875rem; }
.sidebar-user-avatar {
  width: 36px; height: 36px; border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: .875rem; flex-shrink: 0;
}
.sidebar-user-name { font-size: .875rem; font-weight: 600; color: var(--white); }
.sidebar-user-role { font-size: .75rem; color: rgba(255,255,255,.4); }
.sidebar-logout {
  width: 100%; display: flex; align-items: center; gap: .5rem;
  padding: .625rem 1rem; background: rgba(255,255,255,.06);
  border-radius: var(--radius); color: rgba(255,255,255,.6); font-size: .875rem;
  transition: var(--transition-fast);
}
.sidebar-logout:hover { background: rgba(231,76,60,.2); color: #ff8a80; }

/* Admin Main */
.admin-main { flex: 1; margin-left: 260px; display: flex; flex-direction: column; min-height: 100vh; }

.admin-topbar {
  background: var(--white); border-bottom: 1px solid var(--gray-200);
  padding: 0 2rem; height: 64px; display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 50; box-shadow: var(--shadow-sm);
}
.topbar-title { font-size: 1.25rem; font-weight: 700; color: var(--gray-800); }
.topbar-breadcrumb { font-size: .8125rem; color: var(--gray-400); }
.topbar-actions { display: flex; align-items: center; gap: 1rem; }

.admin-content { flex: 1; padding: 2rem; }

/* Admin Cards */
.stat-card-admin {
  background: var(--white); border-radius: var(--radius-md); padding: 1.5rem;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200);
  transition: var(--transition); display: flex; flex-direction: column;
}
.stat-card-admin:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.stat-card-admin .header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; }
.stat-card-admin .icon-box {
  width: 48px; height: 48px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.25rem;
}
.stat-card-admin .number { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--gray-900); line-height: 1; margin-bottom: .375rem; }
.stat-card-admin .label { font-size: .875rem; color: var(--gray-500); }
.stat-card-admin .trend { font-size: .8125rem; display: flex; align-items: center; gap: .25rem; margin-top: .5rem; }
.trend-up   { color: var(--success); }
.trend-down { color: var(--danger); }

/* Admin Table */
.admin-table-wrap { background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); overflow: hidden; }
.admin-table-header { padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--gray-200); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.admin-table-title { font-size: 1.0625rem; font-weight: 700; color: var(--gray-800); }

table.admin-table { width: 100%; border-collapse: collapse; }
table.admin-table th {
  padding: .875rem 1.25rem; text-align: left; font-size: .8125rem;
  font-weight: 600; color: var(--gray-500); text-transform: uppercase;
  letter-spacing: .06em; background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}
table.admin-table td {
  padding: .875rem 1.25rem; font-size: .9rem; color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100); vertical-align: middle;
}
table.admin-table tr:last-child td { border-bottom: none; }
table.admin-table tr:hover td { background: rgba(30,58,95,.02); }

/* Status badges */
.status-badge {
  display: inline-flex; align-items: center; gap: .375rem;
  padding: .3rem .875rem; border-radius: var(--radius-full);
  font-size: .75rem; font-weight: 600; white-space: nowrap;
}
.status-new        { background: rgba(41,128,185,.12); color: #1a6fa0; }
.status-untreated  { background: rgba(231,76,60,.12);  color: #b03026; }
.status-searching  { background: rgba(243,156,18,.12); color: #8d6508; }
.status-quote      { background: rgba(30,58,95,.12);   color: var(--primary); }
.status-validated  { background: rgba(39,174,96,.12);  color: #1a6b3c; }
.status-importing  { background: rgba(155,89,182,.12); color: #6c3483; }
.status-shipped    { background: rgba(41,128,185,.15); color: #1a6fa0; }
.status-delivered  { background: rgba(39,174,96,.15);  color: #1a6b3c; }
.status-completed  { background: rgba(39,174,96,.2);   color: #145a32; }
.status-cancelled  { background: rgba(127,127,127,.12);color: #555; }

/* ============================================================
   PAGE HERO (intérieur)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 4rem 0; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; right: -5%; top: -20%;
  width: 50vmin; height: 50vmin;
  background: radial-gradient(circle, rgba(192,57,43,.15) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero p  { color: rgba(255,255,255,.75); font-size: 1.0625rem; max-width: 600px; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes slideUp   { from { transform: translateY(24px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes slideDown { from { transform: translateY(-24px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes fadeIn    { from { opacity: 0; } to { opacity: 1; } }
@keyframes scaleIn   { from { transform: scale(.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes pulse     { 0%,100% { opacity: 1; } 50% { opacity: .5; } }
@keyframes shimmer   { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

.animate-fadeIn    { animation: fadeIn .5s ease both; }
.animate-slideUp   { animation: slideUp .5s ease both; }
.animate-scaleIn   { animation: scaleIn .4s cubic-bezier(.34,1.56,.64,1) both; }
.animate-delay-1   { animation-delay: .1s; }
.animate-delay-2   { animation-delay: .2s; }
.animate-delay-3   { animation-delay: .3s; }
.animate-delay-4   { animation-delay: .4s; }

/* Intersection observer animations */
[data-animate] { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
[data-animate].animated { opacity: 1; transform: translateY(0); }

/* Skeleton loading */
.skeleton { background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: var(--radius); }
.skeleton-text { height: 14px; margin-bottom: .5rem; }
.skeleton-title { height: 24px; width: 70%; margin-bottom: 1rem; }
.skeleton-img   { padding-bottom: 60%; }

/* ============================================================
   GLASSMORPHISM ELEMENTS
   ============================================================ */
.glass {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-md);
}
.glass-dark {
  background: rgba(0,0,0,.3);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1);
}
.glass-card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-card {
  background: var(--white); border-radius: var(--radius-md); padding: 2rem;
  box-shadow: var(--shadow); border: 1px solid var(--gray-200); height: 100%;
}
.contact-info-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(30,58,95,.1) 0%, rgba(30,58,95,.05) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.375rem; color: var(--primary); margin-bottom: 1rem;
}
.contact-info-title { font-size: 1.0625rem; font-weight: 700; color: var(--gray-800); margin-bottom: .5rem; }
.contact-info-text { font-size: .9375rem; color: var(--gray-600); line-height: 1.6; }
.contact-info-text a { color: var(--primary); }
.contact-info-text a:hover { text-decoration: underline; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  .admin-sidebar  { transform: translateX(-100%); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main     { margin-left: 0; }
  .grid-4         { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .main-nav, .header-cta { display: none; }
  .hamburger  { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .hero-slider { min-height: 480px; }
  .trust-strip-inner { gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 3.5rem 0; }
  .product-gallery { flex-direction: column; }
  .gallery-thumbs { flex-direction: row; }
  .gallery-thumb { width: 60px; height: 60px; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .whatsapp-float { bottom: 1.25rem; right: 1.25rem; }
  .whatsapp-btn { width: 52px; height: 52px; font-size: 1.5rem; }
}

/* Print styles */
@media print {
  .site-header, .news-ticker, .whatsapp-float, .site-footer { display: none; }
  .admin-sidebar, .admin-topbar { display: none; }
  .admin-main { margin-left: 0; }
  body { color: #000; background: #fff; }
}
