/* ============================================================
   MAHADEV EARTHMOVERS — JCB GENUINE PARTS
   Industrial Design System | styles.css
   ============================================================ */

/* ── CSS VARIABLES ── */
:root {
  /* Brand Colors */
  --yellow:        #f2b600;
  --yellow-light:  #ffd84d;
  --yellow-dark:   #c99200;
  --black:         #111111;
  --black-soft:    #1a1a1a;
  --dark-1:        #1e1e1e;
  --dark-2:        #242424;
  --dark-3:        #2e2e2e;
  --dark-4:        #3a3a3a;
  --grey-1:        #555555;
  --grey-2:        #888888;
  --grey-3:        #aaaaaa;
  --grey-4:        #cccccc;
  --white:         #ffffff;
  --off-white:     #f5f5f0;
  --green:         #22c55e;
  --red:           #ef4444;
  --orange:        #f97316;

  /* Typography */
  --font-display:  'Barlow Condensed', sans-serif;
  --font-body:     'Barlow', sans-serif;
  --font-accent:   'Rajdhani', sans-serif;

  /* Spacing */
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  40px;
  --space-2xl: 64px;
  --space-3xl: 96px;

  /* Layout */
  --container-max: 1320px;
  --header-height: 120px;
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.4);
  --shadow-md:  0 8px 24px rgba(0,0,0,0.5);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.6);
  --shadow-yellow: 0 0 24px rgba(242,182,0,0.3);

  /* Transitions */
  --transition-fast:   0.15s ease;
  --transition-base:   0.3s ease;
  --transition-slow:   0.5s ease;
}

/* ── 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-body);
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ── CONTAINER ── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.text-yellow { color: var(--yellow); }
.text-grey   { color: var(--grey-3); }

/* ── PAGE LOADER ── */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}
.loader-logo {
  animation: loader-pulse 1s ease-in-out infinite alternate;
}
@keyframes loader-pulse {
  from { transform: scale(0.95); filter: brightness(0.8); }
  to   { transform: scale(1.05); filter: brightness(1.2); }
}
.loader-bar {
  width: 200px;
  height: 3px;
  background: var(--dark-3);
  border-radius: 2px;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  background: var(--yellow);
  border-radius: 2px;
  animation: loader-fill 1.8s ease-in-out forwards;
}
@keyframes loader-fill {
  0%   { width: 0%; }
  60%  { width: 80%; }
  100% { width: 100%; }
}
.loader-text {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--grey-2);
  font-weight: 600;
}

/* ── HEADER TOP BAR ── */
.header-top {
  background: var(--yellow);
  padding: 6px 0;
}
.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}
.header-top-left {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}
.header-badge {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.5px;
}
.header-top-right {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.header-contact-link,
.header-whatsapp-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  transition: opacity var(--transition-fast);
}
.header-contact-link:hover,
.header-whatsapp-link:hover { opacity: 0.7; }

/* ── MAIN NAV ── */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition-base);
}
.main-header.scrolled .main-nav {
  box-shadow: 0 4px 24px rgba(0,0,0,0.8);
}
.main-nav {
  background: var(--black-soft);
  border-bottom: 2px solid var(--dark-3);
  transition: background var(--transition-base);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: var(--space-xl);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-main {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 2px;
}
.logo-sub {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  color: var(--yellow);
  letter-spacing: 3px;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--grey-3);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 4px;
  text-transform: uppercase;
  position: relative;
}
.nav-link:hover,
.nav-link.active {
  color: var(--yellow);
  background: rgba(242,182,0,0.08);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--yellow);
  border-radius: 1px;
}

/* Mega Menu */
.has-mega-menu { position: relative; }
.mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--dark-1);
  border: 1px solid var(--dark-3);
  border-top: 3px solid var(--yellow);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  min-width: 640px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-lg);
  z-index: 100;
}
.has-mega-menu:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.mega-menu-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: var(--space-lg);
}
.mega-col { padding: var(--space-md); }
.mega-col h4 {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--dark-3);
}
.mega-link {
  display: block;
  font-size: 13px;
  color: var(--grey-3);
  padding: 5px 0;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}
.mega-link:hover {
  color: var(--yellow);
  padding-left: 6px;
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.nav-search-btn,
.nav-wishlist-btn,
.nav-cart-btn {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-3);
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
}
.nav-search-btn:hover,
.nav-wishlist-btn:hover,
.nav-cart-btn:hover {
  color: var(--yellow);
  background: rgba(242,182,0,0.08);
}
.cart-count,
.wishlist-count {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--yellow);
  color: var(--black);
  font-size: 10px;
  font-weight: 800;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
}
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: all var(--transition-base);
}

/* Search Overlay */
.search-overlay {
  background: var(--dark-1);
  border-top: 1px solid var(--dark-3);
  padding: var(--space-lg) 0;
  display: none;
  animation: slideDown 0.3s ease;
}
.search-overlay.active { display: block; }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.search-bar-wrap {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius-md);
  padding: 4px 4px 4px var(--space-lg);
  transition: border-color var(--transition-fast);
}
.search-bar-wrap:focus-within { border-color: var(--yellow); }
.search-input-main {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 16px;
  padding: var(--space-sm) 0;
}
.search-input-main::placeholder { color: var(--grey-2); }
.search-submit-btn {
  background: var(--yellow);
  color: var(--black);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}
.search-submit-btn:hover { background: var(--yellow-light); }
.search-close-btn {
  color: var(--grey-2);
  font-size: 18px;
  padding: 0 var(--space-sm);
  transition: color var(--transition-fast);
}
.search-close-btn:hover { color: var(--white); }
.search-suggestions {
  margin-top: var(--space-sm);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}
.search-tag {
  background: var(--dark-3);
  color: var(--grey-3);
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.search-tag:hover { background: var(--yellow); color: var(--black); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-sm  { font-size: 12px; padding: 8px 16px; }
.btn-md  { font-size: 14px; padding: 12px 24px; }
.btn-lg  { font-size: 15px; padding: 16px 32px; }

.btn-primary {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.btn-primary:hover {
  background: var(--yellow-light);
  border-color: var(--yellow-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-yellow);
}

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

.btn-dark {
  background: var(--dark-3);
  color: var(--white);
  border-color: var(--dark-4);
}
.btn-dark:hover {
  background: var(--dark-4);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(37,211,102,0.4);
}

.btn-danger {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-danger:hover { background: #dc2626; }

/* ── SECTION STYLES ── */
.section-dark    { background: var(--dark-1); }
.section-darker  { background: var(--black-soft); }

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}
.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  padding: 4px 16px;
  border: 1px solid rgba(242,182,0,0.3);
  border-radius: 20px;
}
.section-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
}
.section-subtitle {
  font-size: 16px;
  color: var(--grey-2);
  max-width: 500px;
  margin: 0 auto;
}
.section-cta {
  text-align: center;
  margin-top: var(--space-2xl);
}

/* ── HERO SECTION ── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.4) saturate(0.8);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(17,17,17,0.95) 0%,
    rgba(17,17,17,0.7) 50%,
    rgba(242,182,0,0.1) 100%
  );
}
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(242,182,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242,182,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 120px 0 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
  padding: 6px 16px;
  border: 1px solid rgba(242,182,0,0.4);
  border-radius: 20px;
  background: rgba(242,182,0,0.08);
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}
.hero-title {
  font-size: clamp(52px, 9vw, 100px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}
.hero-title-line {
  display: block;
  color: var(--white);
}
.hero-title-accent {
  display: block;
  color: var(--yellow);
  -webkit-text-stroke: 2px var(--yellow);
}
.hero-subtitle {
  font-size: 18px;
  color: var(--grey-3);
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  color: var(--grey-2);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--dark-4);
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  z-index: 1;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--yellow), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.4; transform: scaleY(0.6); }
}
.hero-scroll-indicator span {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--grey-2);
}

/* ── TICKER STRIP ── */
.ticker-strip {
  background: var(--yellow);
  padding: 12px 0;
  overflow: hidden;
}
.ticker-inner { overflow: hidden; }
.ticker-track {
  display: flex;
  gap: var(--space-xl);
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}
.ticker-track span {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--black);
  text-transform: uppercase;
  flex-shrink: 0;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── CATEGORIES SECTION ── */
.categories-section { padding: var(--space-3xl) 0; }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-lg);
}
.category-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  border-radius: var(--radius-md);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  group: true;
}
.category-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}
.category-card:hover {
  border-color: var(--yellow);
  transform: translateY(-6px);
  box-shadow: var(--shadow-yellow);
  background: var(--dark-3);
}
.category-card:hover::before { transform: scaleX(1); }
.category-icon {
  width: 64px;
  height: 64px;
  background: rgba(242,182,0,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  color: var(--yellow);
  transition: background var(--transition-base);
}
.category-card:hover .category-icon {
  background: rgba(242,182,0,0.2);
}
.category-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-xs);
}
.category-count {
  font-size: 12px;
  color: var(--grey-2);
}

/* ── PRODUCT CARDS ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-lg);
}
.products-grid.list-view {
  grid-template-columns: 1fr;
}
.products-grid.list-view .product-card {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.products-grid.list-view .product-image-wrap {
  width: 200px;
  flex-shrink: 0;
}

.product-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-base);
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.product-image-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--dark-3);
}
.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.product-card:hover .product-image-wrap img {
  transform: scale(1.06);
}
.product-badges {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.badge {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 3px;
  text-transform: uppercase;
}
.badge-genuine { background: var(--yellow); color: var(--black); }
.badge-new     { background: var(--green);  color: var(--white); }
.badge-sale    { background: var(--red);    color: var(--white); }
.badge-hot     { background: var(--orange); color: var(--white); }

.product-actions-overlay {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-base);
}
.product-card:hover .product-actions-overlay {
  opacity: 1;
  transform: translateX(0);
}
.product-action-btn {
  width: 36px;
  height: 36px;
  background: var(--dark-1);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-3);
  transition: all var(--transition-fast);
}
.product-action-btn:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.product-action-btn.wishlisted {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.stock-indicator {
  position: absolute;
  bottom: var(--space-sm);
  left: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 3px;
  background: rgba(0,0,0,0.7);
}
.stock-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.in-stock .stock-dot  { background: var(--green); }
.out-stock .stock-dot { background: var(--red); }
.in-stock  { color: var(--green); }
.out-stock { color: var(--red); }

.product-info {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.product-category-tag {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--yellow);
  text-transform: uppercase;
}
.product-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  text-transform: uppercase;
}
.product-oem {
  font-size: 12px;
  color: var(--grey-2);
  font-family: monospace;
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}
.stars {
  display: flex;
  gap: 2px;
  color: var(--yellow);
  font-size: 12px;
}
.rating-count {
  font-size: 11px;
  color: var(--grey-2);
}
.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.product-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--yellow);
}
.product-price-original {
  font-size: 14px;
  color: var(--grey-2);
  text-decoration: line-through;
  margin-left: 6px;
}
.product-card-actions {
  display: flex;
  gap: var(--space-sm);
  padding: 0 var(--space-md) var(--space-md);
}
.product-card-actions .btn {
  flex: 1;
  justify-content: center;
  font-size: 12px;
  padding: 10px 12px;
}

/* ── STATS SECTION ── */
.stats-section {
  position: relative;
  padding: var(--space-3xl) 0;
  overflow: hidden;
}
.stats-bg {
  position: absolute;
  inset: 0;
}
.stats-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.2) saturate(0.5);
}
.stats-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,17,17,0.9), rgba(242,182,0,0.15));
}
.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}
.stat-card {
  text-align: center;
  padding: var(--space-xl);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(242,182,0,0.2);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  transition: all var(--transition-base);
}
.stat-card:hover {
  background: rgba(242,182,0,0.08);
  border-color: var(--yellow);
  transform: translateY(-4px);
}
.stat-card .stat-icon {
  color: var(--yellow);
  margin: 0 auto var(--space-md);
  width: fit-content;
}
.stat-card .stat-number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  display: inline;
}
.stat-card .stat-suffix {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--yellow);
  display: inline;
}
.stat-card .stat-label {
  font-size: 13px;
  color: var(--grey-3);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: var(--space-sm);
}

/* ── WHY SECTION ── */
.why-section { padding: var(--space-3xl) 0; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.why-card {
  padding: var(--space-xl);
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--yellow);
  transition: height var(--transition-slow);
}
.why-card:hover {
  border-color: var(--dark-4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.why-card:hover::after { height: 100%; }
.why-icon {
  color: var(--yellow);
  margin-bottom: var(--space-md);
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}
.why-card p {
  font-size: 14px;
  color: var(--grey-2);
  line-height: 1.7;
}

/* ── TESTIMONIALS ── */
.testimonials-section { padding: var(--space-3xl) 0; }
.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track {
  display: flex;
  gap: var(--space-lg);
  transition: transform var(--transition-slow);
}
.testimonial-card {
  min-width: calc(33.333% - 11px);
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  flex-shrink: 0;
  transition: border-color var(--transition-base);
}
.testimonial-card:hover { border-color: var(--yellow); }
.testimonial-stars {
  display: flex;
  gap: 3px;
  color: var(--yellow);
  font-size: 16px;
  margin-bottom: var(--space-md);
}
.testimonial-text {
  font-size: 15px;
  color: var(--grey-3);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  font-style: italic;
}
.testimonial-text::before { content: '"'; color: var(--yellow); font-size: 24px; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--dark-4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--yellow);
  flex-shrink: 0;
}
.author-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}
.author-role {
  font-size: 12px;
  color: var(--grey-2);
}
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}
.slider-btn {
  width: 44px;
  height: 44px;
  background: var(--dark-3);
  border: 1px solid var(--dark-4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-3);
  transition: all var(--transition-fast);
}
.slider-btn:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.slider-dots {
  display: flex;
  gap: var(--space-sm);
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dark-4);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.slider-dot.active {
  background: var(--yellow);
  width: 24px;
  border-radius: 4px;
}

/* ── TRUST SECTION ── */
.trust-section { padding: var(--space-xl) 0; border-top: 1px solid var(--dark-3); }
.trust-inner {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}
.trust-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--grey-2);
  text-transform: uppercase;
  white-space: nowrap;
}
.trust-models {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}
.model-tag {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--grey-3);
  padding: 4px 12px;
  border: 1px solid var(--dark-4);
  border-radius: 3px;
  letter-spacing: 0.5px;
  transition: all var(--transition-fast);
  cursor: default;
}
.model-tag:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

/* ── PAGE HERO MINI ── */
.page-hero-mini {
  background: var(--dark-1);
  border-bottom: 1px solid var(--dark-3);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}
.page-hero-mini::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(242,182,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242,182,0,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.page-hero-mini .container { position: relative; }
.page-hero-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  text-transform: uppercase;
  margin-top: var(--space-sm);
}
.page-hero-mini p {
  color: var(--grey-2);
  margin-top: var(--space-sm);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 13px;
  color: var(--grey-2);
}
.breadcrumb a {
  color: var(--yellow);
  transition: opacity var(--transition-fast);
}
.breadcrumb a:hover { opacity: 0.7; }

/* ── SHOP LAYOUT ── */
.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-xl);
  padding-top: var(--space-xl);
  padding-bottom: var(--space-3xl);
  align-items: start;
}
.shop-sidebar {
  background: var(--dark-1);
  border: 1px solid var(--dark-3);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  position: sticky;
  top: 130px;
}
.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--dark-3);
}
.sidebar-header h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}
.clear-filters-btn {
  font-size: 12px;
  color: var(--yellow);
  font-family: var(--font-display);
  font-weight: 600;
  transition: opacity var(--transition-fast);
}
.clear-filters-btn:hover { opacity: 0.7; }
.filter-group {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--dark-3);
}
.filter-group:last-child { border-bottom: none; margin-bottom: 0; }
.filter-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--grey-3);
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}
.filter-input {
  width: 100%;
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius-sm);
  padding: 10px var(--space-md);
  color: var(--white);
  font-size: 13px;
  outline: none;
  transition: border-color var(--transition-fast);
}
.filter-input:focus { border-color: var(--yellow); }
.filter-options {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.filter-option {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 13px;
  color: var(--grey-3);
  cursor: pointer;
  transition: color var(--transition-fast);
}
.filter-option:hover { color: var(--white); }
.filter-option input[type="checkbox"] {
  accent-color: var(--yellow);
  width: 14px;
  height: 14px;
}
.price-slider {
  width: 100%;
  accent-color: var(--yellow);
  margin-bottom: var(--space-sm);
}
.price-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--grey-2);
}

/* Shop Toolbar */
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
  padding: var(--space-md) var(--space-lg);
  background: var(--dark-1);
  border: 1px solid var(--dark-3);
  border-radius: var(--radius-md);
}
.shop-results-info {
  font-size: 14px;
  color: var(--grey-2);
}
.shop-toolbar-right {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.sort-select {
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius-sm);
  color: var(--white);
  padding: 8px var(--space-md);
  font-size: 13px;
  outline: none;
  cursor: pointer;
}
.view-toggle {
  display: flex;
  gap: 4px;
}
.view-btn {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius-sm);
  color: var(--grey-2);
  transition: all var(--transition-fast);
}
.view-btn.active,
.view-btn:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-2xl);
}
.page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius-sm);
  color: var(--grey-3);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.page-btn.active,
.page-btn:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

/* ── PRODUCT DETAIL ── */
.product-detail-section {
  padding: var(--space-2xl) 0 var(--space-3xl);
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}
.product-gallery { position: sticky; top: 130px; }
.gallery-main {
  aspect-ratio: 1;
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-md);
  cursor: zoom-in;
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.gallery-main:hover img { transform: scale(1.1); }
.gallery-thumbs {
  display: flex;
  gap: var(--space-sm);
  overflow-x: auto;
}
.gallery-thumb {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  background: var(--dark-2);
  border: 2px solid var(--dark-3);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--transition-fast);
}
.gallery-thumb.active,
.gallery-thumb:hover { border-color: var(--yellow); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-detail-info { display: flex; flex-direction: column; gap: var(--space-lg); }
.product-detail-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
}
.product-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
}
.product-detail-oem {
  font-family: monospace;
  font-size: 13px;
  color: var(--grey-2);
  background: var(--dark-3);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}
.product-detail-price {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 900;
  color: var(--yellow);
}
.product-detail-price-original {
  font-size: 20px;
  color: var(--grey-2);
  text-decoration: line-through;
}
.product-detail-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.qty-selector {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.qty-btn {
  width: 40px;
  height: 40px;
  background: var(--dark-3);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}
.qty-btn:hover { background: var(--yellow); color: var(--black); }
.qty-input {
  width: 60px;
  text-align: center;
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  padding: 8px;
  outline: none;
}
.product-detail-btns {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.product-detail-btns .btn { flex: 1; justify-content: center; min-width: 140px; }

.product-specs {
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.specs-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: var(--space-md) var(--space-lg);
  background: var(--dark-3);
  border-bottom: 1px solid var(--dark-4);
}
.spec-row {
  display: flex;
  border-bottom: 1px solid var(--dark-3);
}
.spec-row:last-child { border-bottom: none; }
.spec-key {
  width: 40%;
  padding: var(--space-sm) var(--space-lg);
  font-size: 13px;
  color: var(--grey-2);
  background: var(--dark-2);
  border-right: 1px solid var(--dark-3);
}
.spec-val {
  flex: 1;
  padding: var(--space-sm) var(--space-lg);
  font-size: 13px;
  color: var(--white);
  font-weight: 500;
}

/* ── CART DRAWER ── */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
}
.cart-drawer.open { pointer-events: all; }
.cart-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  opacity: 0;
  transition: opacity var(--transition-base);
}
.cart-drawer.open .cart-drawer-overlay { opacity: 1; }
.cart-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  max-width: 100vw;
  background: var(--dark-1);
  border-left: 1px solid var(--dark-3);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
}
.cart-drawer.open .cart-drawer-panel { transform: translateX(0); }
.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg);
  border-bottom: 1px solid var(--dark-3);
}
.cart-drawer-header h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}
.cart-close-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-3);
  border-radius: var(--radius-sm);
  color: var(--grey-3);
  font-size: 16px;
  transition: all var(--transition-fast);
}
.cart-close-btn:hover { background: var(--red); color: var(--white); }
.cart-drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-md);
}
.cart-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
}
.cart-item-img {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: var(--dark-3);
  flex-shrink: 0;
}
.cart-item-info { flex: 1; }
.cart-item-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.cart-item-oem { font-size: 11px; color: var(--grey-2); margin-bottom: 6px; }
.cart-item-price {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--yellow);
}
.cart-item-controls {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}
.cart-item-remove {
  color: var(--grey-2);
  font-size: 14px;
  transition: color var(--transition-fast);
}
.cart-item-remove:hover { color: var(--red); }
.cart-drawer-footer {
  padding: var(--space-lg);
  border-top: 1px solid var(--dark-3);
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
}
.cart-total-label {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--grey-3);
}
.cart-total-amount {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--yellow);
}
.cart-drawer-btns {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.cart-drawer-btns .btn { justify-content: center; }
.cart-empty {
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
  color: var(--grey-2);
}
.cart-empty svg { color: var(--dark-4); margin: 0 auto var(--space-lg); }
.cart-empty h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

/* ── CHECKOUT ── */
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-xl);
  padding: var(--space-2xl) 0 var(--space-3xl);
  align-items: start;
}
.checkout-form-section {
  background: var(--dark-1);
  border: 1px solid var(--dark-3);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
}
.checkout-section-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--dark-3);
  color: var(--yellow);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--grey-3);
  text-transform: uppercase;
}
.form-control {
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius-sm);
  padding: 12px var(--space-md);
  color: var(--white);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition-fast);
  width: 100%;
}
.form-control:focus { border-color: var(--yellow); }
.form-control::placeholder { color: var(--grey-2); }
select.form-control { cursor: pointer; }

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}
.payment-option {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--dark-2);
  border: 2px solid var(--dark-4);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.payment-option:hover,
.payment-option.selected {
  border-color: var(--yellow);
  background: rgba(242,182,0,0.05);
}
.payment-option input[type="radio"] { accent-color: var(--yellow); }
.payment-option-label {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}
.payment-option-desc { font-size: 12px; color: var(--grey-2); }

.order-summary-card {
  background: var(--dark-1);
  border: 1px solid var(--dark-3);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  position: sticky;
  top: 130px;
}
.order-summary-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
  color: var(--yellow);
}
.order-items { margin-bottom: var(--space-lg); }
.order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--dark-3);
  font-size: 13px;
}
.order-item:last-child { border-bottom: none; }
.order-item-name { color: var(--grey-3); }
.order-item-price { color: var(--white); font-weight: 600; }
.order-totals { border-top: 1px solid var(--dark-3); padding-top: var(--space-md); }
.order-total-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 14px;
  color: var(--grey-3);
}
.order-total-row.grand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--yellow);
  border-top: 1px solid var(--dark-3);
  margin-top: var(--space-sm);
  padding-top: var(--space-md);
}

/* ── ABOUT PAGE ── */
.about-hero {
  position: relative;
  padding: var(--space-3xl) 0;
  overflow: hidden;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
}
.about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.2);
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(17,17,17,0.98), rgba(17,17,17,0.6));
}
.about-hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}
.about-hero-content h2 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}
.about-hero-content p {
  font-size: 16px;
  color: var(--grey-3);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}
.about-features {
  padding: var(--space-3xl) 0;
  background: var(--dark-1);
}
.about-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}
.about-feature-card {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}
.about-feature-card:hover {
  border-color: var(--yellow);
  transform: translateY(-3px);
}
.about-feature-icon {
  color: var(--yellow);
  flex-shrink: 0;
}
.about-feature-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}
.about-feature-card p {
  font-size: 14px;
  color: var(--grey-2);
  line-height: 1.7;
}

/* ── CONTACT PAGE ── */
.contact-section { padding: var(--space-3xl) 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
}
.contact-info-card {
  background: var(--dark-1);
  border: 1px solid var(--dark-3);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
}
.contact-info-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}
.contact-detail {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  align-items: flex-start;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(242,182,0,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  flex-shrink: 0;
}
.contact-detail-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--grey-2);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-detail-value {
  font-size: 15px;
  color: var(--white);
  font-weight: 500;
}
.contact-detail-value a {
  color: var(--yellow);
  transition: opacity var(--transition-fast);
}
.contact-detail-value a:hover { opacity: 0.7; }
.contact-cta-btns {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}
.contact-cta-btns .btn { justify-content: center; }
.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--dark-3);
  margin-top: var(--space-lg);
}
.map-embed iframe {
  width: 100%;
  height: 250px;
  border: none;
  filter: grayscale(0.5) invert(0.9) hue-rotate(180deg);
}
.contact-form-card {
  background: var(--dark-1);
  border: 1px solid var(--dark-3);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
}
.contact-form-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}

/* ── ADMIN PANEL ── */
.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  padding: var(--space-lg);
}
.admin-login-card {
  background: var(--dark-1);
  border: 1px solid var(--dark-3);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  width: 100%;
  max-width: 420px;
}
.admin-login-logo {
  text-align: center;
  margin-bottom: var(--space-xl);
}
.admin-login-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: var(--space-xs);
}
.admin-login-sub {
  text-align: center;
  font-size: 13px;
  color: var(--grey-2);
  margin-bottom: var(--space-xl);
}

.admin-layout {
  display: flex;
  min-height: 100vh;
}
.admin-sidebar {
  width: 260px;
  background: var(--dark-1);
  border-right: 1px solid var(--dark-3);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
.admin-sidebar-header {
  padding: var(--space-lg);
  border-bottom: 1px solid var(--dark-3);
}
.admin-sidebar-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.admin-nav { padding: var(--space-md); flex: 1; }
.admin-nav-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: 12px var(--space-md);
  border-radius: var(--radius-sm);
  color: var(--grey-3);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-fast);
  margin-bottom: 2px;
}
.admin-nav-item:hover,
.admin-nav-item.active {
  background: rgba(242,182,0,0.1);
  color: var(--yellow);
}
.admin-nav-item.active {
  border-left: 3px solid var(--yellow);
}
.admin-main {
  flex: 1;
  background: var(--black-soft);
  overflow-y: auto;
}
.admin-topbar {
  background: var(--dark-1);
  border-bottom: 1px solid var(--dark-3);
  padding: var(--space-md) var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.admin-topbar-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
}
.admin-content { padding: var(--space-xl); }
.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}
.admin-stat-card {
  background: var(--dark-1);
  border: 1px solid var(--dark-3);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  transition: all var(--transition-base);
}
.admin-stat-card:hover {
  border-color: var(--yellow);
  transform: translateY(-2px);
}
.admin-stat-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.admin-stat-icon.yellow { background: rgba(242,182,0,0.15); color: var(--yellow); }
.admin-stat-icon.green  { background: rgba(34,197,94,0.15);  color: var(--green); }
.admin-stat-icon.blue   { background: rgba(59,130,246,0.15); color: #3b82f6; }
.admin-stat-icon.red    { background: rgba(239,68,68,0.15);  color: var(--red); }
.admin-stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.admin-stat-label {
  font-size: 12px;
  color: var(--grey-2);
  margin-top: 2px;
}
.admin-table-card {
  background: var(--dark-1);
  border: 1px solid var(--dark-3);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-xl);
}
.admin-table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg);
  border-bottom: 1px solid var(--dark-3);
}
.admin-table-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
}
.admin-table th {
  background: var(--dark-2);
  padding: var(--space-sm) var(--space-md);
  text-align: left;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--grey-2);
  text-transform: uppercase;
  border-bottom: 1px solid var(--dark-3);
}
.admin-table td {
  padding: var(--space-sm) var(--space-md);
  font-size: 13px;
  color: var(--grey-3);
  border-bottom: 1px solid var(--dark-3);
  vertical-align: middle;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: rgba(255,255,255,0.02); }
.status-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 3px;
  text-transform: uppercase;
}
.status-pending   { background: rgba(249,115,22,0.2); color: var(--orange); }
.status-confirmed { background: rgba(34,197,94,0.2);  color: var(--green); }
.status-shipped   { background: rgba(59,130,246,0.2); color: #3b82f6; }
.status-delivered { background: rgba(34,197,94,0.2);  color: var(--green); }
.status-cancelled { background: rgba(239,68,68,0.2);  color: var(--red); }
.admin-action-btns {
  display: flex;
  gap: 6px;
}
.admin-action-btn {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 13px;
  transition: all var(--transition-fast);
}
.admin-action-btn.edit   { background: rgba(59,130,246,0.15); color: #3b82f6; }
.admin-action-btn.delete { background: rgba(239,68,68,0.15);  color: var(--red); }
.admin-action-btn:hover  { opacity: 0.8; transform: scale(1.1); }

/* Product Form Modal */
.admin-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  background: rgba(0,0,0,0.8);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}
.admin-modal.open { opacity: 1; visibility: visible; }
.admin-modal-panel {
  background: var(--dark-1);
  border: 1px solid var(--dark-3);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.95);
  transition: transform var(--transition-base);
}
.admin-modal.open .admin-modal-panel { transform: scale(1); }
.admin-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg);
  border-bottom: 1px solid var(--dark-3);
  position: sticky;
  top: 0;
  background: var(--dark-1);
  z-index: 1;
}
.admin-modal-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}
.admin-modal-body { padding: var(--space-xl); }
.admin-modal-footer {
  padding: var(--space-lg);
  border-top: 1px solid var(--dark-3);
  display: flex;
  gap: var(--space-md);
  justify-content: flex-end;
}

/* ── QUICK VIEW MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2500;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-container {
  background: var(--dark-1);
  border: 1px solid var(--dark-3);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.95);
  transition: transform var(--transition-base);
}
.modal-overlay.open .modal-container { transform: scale(1); }
.modal-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 36px;
  height: 36px;
  background: var(--dark-3);
  border-radius: var(--radius-sm);
  color: var(--grey-3);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: all var(--transition-fast);
}
.modal-close:hover { background: var(--red); color: var(--white); }
.modal-content { padding: var(--space-xl); }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 1500;
}
.whatsapp-float-btn {
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: all var(--transition-base);
  position: relative;
  z-index: 1;
}
.whatsapp-float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.7);
}
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark-1);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
  border: 1px solid var(--dark-3);
}
.whatsapp-float-btn:hover .whatsapp-tooltip { opacity: 1; }
.whatsapp-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37,211,102,0.3);
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
  0%   { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ── TOAST NOTIFICATIONS ── */
.toast-container {
  position: fixed;
  bottom: 100px;
  right: 32px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.toast {
  background: var(--dark-1);
  border: 1px solid var(--dark-3);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  min-width: 280px;
  box-shadow: var(--shadow-lg);
  animation: toast-in 0.3s ease;
  font-size: 14px;
}
.toast.success { border-left: 3px solid var(--green); }
.toast.error   { border-left: 3px solid var(--red); }
.toast.info    { border-left: 3px solid var(--yellow); }
@keyframes toast-in {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── FOOTER ── */
.main-footer { background: var(--black); border-top: 1px solid var(--dark-3); }
.footer-top { padding: var(--space-3xl) 0 var(--space-2xl); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-2xl);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}
.footer-logo-main {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 2px;
}
.footer-logo-sub {
  display: block;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 600;
  color: var(--yellow);
  letter-spacing: 3px;
}
.footer-desc {
  font-size: 14px;
  color: var(--grey-2);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}
.footer-social {
  display: flex;
  gap: var(--space-sm);
}
.social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}
.social-link.whatsapp { background: rgba(37,211,102,0.15); color: #25D366; }
.social-link.phone    { background: rgba(242,182,0,0.15);  color: var(--yellow); }
.social-link:hover    { transform: translateY(-3px); opacity: 0.8; }
.footer-col-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.footer-links a {
  font-size: 14px;
  color: var(--grey-2);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}
.footer-links a:hover {
  color: var(--yellow);
  padding-left: 6px;
}
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}
.footer-contact-item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  font-size: 13px;
  color: var(--grey-2);
}
.footer-contact-item svg { color: var(--yellow); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: var(--yellow); }
.footer-newsletter h5 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--grey-3);
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}
.newsletter-form {
  display: flex;
  gap: 4px;
}
.newsletter-input {
  flex: 1;
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius-sm);
  padding: 10px var(--space-md);
  color: var(--white);
  font-size: 13px;
  outline: none;
  transition: border-color var(--transition-fast);
}
.newsletter-input:focus { border-color: var(--yellow); }
.newsletter-btn {
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  transition: background var(--transition-fast);
}
.newsletter-btn:hover { background: var(--yellow-light); }
.footer-bottom {
  border-top: 1px solid var(--dark-3);
  padding: var(--space-lg) 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--grey-2);
}
.footer-bottom-links {
  display: flex;
  gap: var(--space-lg);
}
.footer-bottom-links a {
  font-size: 12px;
  color: var(--grey-2);
  transition: color var(--transition-fast);
}
.footer-bottom-links a:hover { color: var(--yellow); }
.admin-link { color: var(--dark-4) !important; }
.admin-link:hover { color: var(--grey-2) !important; }

/* ── ANIMATIONS ── */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.7s ease forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── PAGE TRANSITIONS ── */
.page { display: none; }
.page.active { display: block; animation: pageIn 0.4s ease; }
@keyframes pageIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── UTILITY ── */
.hidden { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--dark-4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--yellow); }

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .why-grid    { grid-template-columns: repeat(2, 1fr); }
  .admin-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .checkout-grid { grid-template-columns: 1fr; }
  .order-summary-card { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-features-grid { grid-template-columns: 1fr; }
  .testimonial-card { min-width: calc(50% - 8px); }
}

@media (max-width: 768px) {
  :root { --space-3xl: 64px; --space-2xl: 48px; }

  .header-top-left { display: none; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark-1);
    border-top: 1px solid var(--dark-3);
    padding: var(--space-md);
    z-index: 100;
  }
  .mega-menu { display: none; }

  .hero-title { font-size: clamp(40px, 12vw, 72px); }
  .hero-stats { gap: var(--space-lg); }
  .hero-stat-divider { display: none; }

  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid   { grid-template-columns: repeat(2, 1fr); }
  .why-grid        { grid-template-columns: 1fr; }
  .stats-grid      { grid-template-columns: repeat(2, 1fr); }
  .testimonial-card { min-width: 100%; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .admin-layout { flex-direction: column; }
  .admin-sidebar { width: 100%; }
  .admin-stats-grid { grid-template-columns: repeat(2, 1fr); }

  .cart-drawer-panel { width: 100%; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid   { grid-template-columns: 1fr; }
  .hero-actions    { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .admin-stats-grid { grid-template-columns: 1fr; }
  .whatsapp-float  { bottom: 20px; right: 20px; }
}

/* ── PRINT ── */
@media print {
  .main-header, .main-footer, .whatsapp-float, .cart-drawer { display: none; }
  body { background: white; color: black; }
}