/* ============================================
   MICA - Car Care E-commerce | Main Stylesheet
   ============================================ */

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

/* ---- CSS Variables ---- */
:root {
  --primary:        #E31E24;
  --primary-dark:   #B81A1F;
  --primary-light:  #FF4D52;
  --primary-glow:   rgba(227, 30, 36, 0.18);

  --dark:    #0A0A0B;
  --dark-2:  #111113;
  --dark-3:  #1A1A1C;
  --dark-4:  #252528;
  --dark-5:  #2E2E32;

  --gray:    #48484A;
  --gray-2:  #636366;
  --gray-3:  #8E8E93;
  --gray-4:  #AEAEB2;
  --gray-5:  #C7C7CC;
  --gray-6:  #E5E5EA;

  --light:   #F2F2F7;
  --white:   #FFFFFF;

  --font:    'Cairo', sans-serif;

  --container: 1200px;
  --header-h:  72px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.2);
  --shadow:     0 4px 24px rgba(0,0,0,0.28);
  --shadow-lg:  0 8px 48px rgba(0,0,0,0.36);
  --shadow-red: 0 6px 24px rgba(227, 30, 36, 0.35);

  --r-sm:   6px;
  --r:      12px;
  --r-lg:   20px;
  --r-xl:   32px;
  --r-full: 9999px;

  --ease:  cubic-bezier(0.4, 0, 0.2, 1);
  --trans: all 0.3s var(--ease);

  /* Theme tokens (default = dark) */
  --bg:        var(--dark);
  --bg-2:      var(--dark-2);
  --bg-card:   var(--dark-3);
  --bg-input:  var(--dark-4);
  --txt:       var(--white);
  --txt-muted: var(--gray-3);
  --border:    var(--dark-5);
}

/* Light mode */
body.light {
  --bg:        #F5F5F7;
  --bg-2:      var(--white);
  --bg-card:   var(--white);
  --bg-input:  var(--light);
  --txt:       var(--dark);
  --txt-muted: var(--gray-2);
  --border:    var(--gray-6);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--txt);
  direction: rtl;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  transition: background 0.4s, color 0.4s;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: var(--font); }

/* ---- Utilities ---- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.section { padding-block: 90px; }
.section-sm { padding-block: 60px; }
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--txt-muted);
  max-width: 520px;
}
.section-header { margin-bottom: 52px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin-inline: auto; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-glow);
  color: var(--primary-light);
  border: 1px solid rgba(227,30,36,0.25);
  border-radius: var(--r-full);
  padding: 5px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.red-line {
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), transparent);
  border-radius: var(--r-full);
  margin-top: 14px;
}
.center .red-line { margin-inline: auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--trans);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(227,30,36,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}
.btn-outline-red {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline-red:hover {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn-sm { padding: 9px 22px; font-size: 0.85rem; }
.btn-full { width: 100%; }

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: var(--trans);
}
.header.scrolled {
  background: rgba(10,10,11,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
body.light .header.scrolled {
  background: rgba(255,255,255,0.92);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: -0.5px;
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  color: white;
  box-shadow: var(--shadow-red);
}
.logo-text { color: var(--txt); }
.logo-text span { color: var(--primary); }

.nav { display: flex; align-items: center; gap: 6px; }
.nav-link {
  padding: 8px 14px;
  border-radius: var(--r-full);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--txt-muted);
  transition: var(--trans);
}
.nav-link:hover, .nav-link.active {
  color: var(--txt);
  background: var(--bg-card);
}

.header-actions { display: flex; align-items: center; gap: 10px; }
.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--txt);
  font-size: 0.9rem;
  transition: var(--trans);
  position: relative;
  cursor: pointer;
}
.icon-btn:hover { background: var(--dark-5); border-color: var(--gray-3); }
body.light .icon-btn:hover { background: var(--gray-6); }

.cart-badge {
  position: absolute;
  top: -4px;
  left: -4px;
  width: 18px;
  height: 18px;
  background: var(--primary);
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--txt);
  border-radius: 2px;
  transition: var(--trans);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: var(--header-h);
  inset-inline: 0;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 999;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: var(--trans);
}
.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-nav .nav-link {
  padding: 12px 16px;
  border-radius: var(--r);
  font-size: 1rem;
}

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(227,30,36,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(227,30,36,0.07) 0%, transparent 60%),
    linear-gradient(135deg, #0A0A0B 0%, #111113 50%, #0A0A0B 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 8s ease-in-out infinite;
}
.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(227,30,36,0.08);
  top: -100px;
  left: -100px;
}
.hero-orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(227,30,36,0.05);
  bottom: -50px;
  right: 20%;
  animation-delay: -4s;
}
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--header-h);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text { max-width: 560px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-glow);
  border: 1px solid rgba(227,30,36,0.3);
  color: var(--primary-light);
  border-radius: var(--r-full);
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.hero-badge i { font-size: 0.75rem; }

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-title .highlight {
  color: var(--primary);
  position: relative;
  display: inline-block;
}
.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), transparent);
  border-radius: var(--r-full);
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--gray-4);
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.82rem;
  color: var(--txt-muted);
  margin-top: 4px;
}

.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-car-card {
  background: var(--dark-3);
  border: 1px solid var(--dark-5);
  border-radius: var(--r-xl);
  padding: 32px;
  width: 100%;
  max-width: 420px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-car-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 160px; height: 160px;
  background: var(--primary-glow);
  border-radius: 50%;
  transform: translate(40%, -40%);
}
.hero-car-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--dark-4), var(--dark-5));
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.hero-car-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(227,30,36,0.1));
}
.car-icon-svg {
  font-size: 5rem;
  opacity: 0.15;
}
.hero-product-label { font-size: 0.78rem; color: var(--txt-muted); margin-bottom: 4px; }
.hero-product-name { font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; }
.hero-product-price { font-size: 1.5rem; font-weight: 900; color: var(--primary); }

.floating-card {
  position: absolute;
  background: var(--dark-3);
  border: 1px solid var(--dark-5);
  border-radius: var(--r-lg);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
  animation: floatCard 4s ease-in-out infinite;
  z-index: 3;
}
.floating-card-1 { bottom: 20px; right: -20px; animation-delay: -2s; }
.floating-card-2 { top: 40px; left: -20px; animation-delay: -1s; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.fc-icon {
  width: 36px; height: 36px;
  background: var(--primary-glow);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.9rem;
}
.fc-text { font-size: 0.78rem; color: var(--txt-muted); }
.fc-val { font-size: 0.9rem; font-weight: 700; }

/* ---- Featured products / Product cards ---- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--trans);
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(227,30,36,0.25);
}
.product-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--dark-4);
}
body.light .product-image { background: var(--light); }
.product-img-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.product-card:hover .product-img-el { transform: scale(1.06); }
.product-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  opacity: 0.18;
}
.product-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--primary);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--r-full);
}
.product-wishlist {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 32px;
  height: 32px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--trans);
  border: none;
}
.product-wishlist:hover, .product-wishlist.active { background: var(--primary); }

.product-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.product-category { font-size: 0.75rem; color: var(--primary); font-weight: 700; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.product-name { font-size: 1rem; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.product-stars { display: flex; gap: 2px; margin-bottom: 12px; color: #F59E0B; font-size: 0.78rem; }
.product-stars span { color: var(--txt-muted); font-size: 0.75rem; margin-right: 4px; }
.product-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.product-price { font-size: 1.25rem; font-weight: 900; color: var(--primary); }
.product-price-old { font-size: 0.8rem; color: var(--txt-muted); text-decoration: line-through; margin-bottom: 2px; }
.add-cart-btn {
  width: 38px; height: 38px;
  background: var(--primary);
  color: white;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--trans);
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(227,30,36,0.35);
}
.add-cart-btn:hover { background: var(--primary-dark); transform: scale(1.08); }
.add-cart-btn.added { background: #16A34A; }

/* ---- Categories ---- */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.category-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--trans);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-glow), transparent);
  opacity: 0;
  transition: var(--trans);
}
.category-card:hover { transform: translateY(-5px); border-color: rgba(227,30,36,0.3); }
.category-card:hover::before { opacity: 1; }
.cat-icon {
  width: 64px; height: 64px;
  background: var(--primary-glow);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.6rem;
  color: var(--primary);
  transition: var(--trans);
}
.category-card:hover .cat-icon { background: var(--primary); color: white; transform: scale(1.1); }
.cat-name { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.cat-count { font-size: 0.8rem; color: var(--txt-muted); }

/* ---- Why MICA ---- */
.why-section { background: var(--bg-2); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 0; height: 3px;
  background: var(--primary);
  transition: width 0.4s var(--ease);
}
.feature-card:hover::after { width: 100%; }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feat-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  opacity: 0.12;
  position: absolute;
  top: 16px;
  left: 20px;
  line-height: 1;
}
.feat-icon {
  width: 52px; height: 52px;
  background: var(--primary-glow);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 20px;
}
.feat-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.feat-desc { font-size: 0.88rem; color: var(--txt-muted); line-height: 1.7; }

/* ---- Testimonials ---- */
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: var(--trans);
  position: relative;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.quote-icon {
  font-size: 2rem;
  color: var(--primary);
  opacity: 0.25;
  margin-bottom: 12px;
  line-height: 1;
}
.testi-text { font-size: 0.9rem; color: var(--txt-muted); line-height: 1.8; margin-bottom: 20px; }
.testi-footer { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 0.9rem; }
.testi-location { font-size: 0.78rem; color: var(--txt-muted); }
.testi-stars { color: #F59E0B; font-size: 0.78rem; margin-bottom: 3px; }

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #FF4D52 100%);
  border-radius: var(--r-xl);
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-banner-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 900;
  color: white;
  margin-bottom: 12px;
  position: relative;
}
.cta-banner-sub {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  margin-bottom: 32px;
  position: relative;
}
.cta-banner .btn-outline { position: relative; }

/* ---- About hero ---- */
.about-hero {
  background: var(--bg-2);
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: 80px;
}
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-hero-img {
  height: 400px;
  background: linear-gradient(135deg, var(--dark-3), var(--dark-4));
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}
body.light .about-hero-img { background: linear-gradient(135deg, #e8e8e8, #f0f0f0); }
.about-hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(227,30,36,0.08));
}
.about-hero-icon { font-size: 8rem; opacity: 0.08; }
.about-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: white;
  padding: 6px 16px;
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 700;
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 2;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.value-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: var(--trans);
}
.value-item:hover { border-color: rgba(227,30,36,0.3); }
.value-icon {
  width: 40px; height: 40px;
  background: var(--primary-glow);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}
.value-title { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
.value-desc { font-size: 0.8rem; color: var(--txt-muted); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-align: center;
  transition: var(--trans);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.team-avatar {
  height: 160px;
  background: linear-gradient(135deg, var(--dark-4), var(--dark-5));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  opacity: 0.2;
}
body.light .team-avatar { background: linear-gradient(135deg, #e0e0e0, #ebebeb); }
.team-body { padding: 20px; }
.team-name { font-weight: 800; margin-bottom: 4px; }
.team-role { font-size: 0.82rem; color: var(--primary); font-weight: 600; }

/* ---- Products Page ---- */
.page-hero {
  padding-top: calc(var(--header-h) + 48px);
  padding-bottom: 48px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--txt-muted);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--txt-muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb i { font-size: 0.6rem; transform: rotate(180deg); }

.products-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start;
}
.filters-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.filter-title { font-size: 0.9rem; font-weight: 800; margin-bottom: 16px; display: flex; justify-content: space-between; align-items: center; }
.filter-clear { font-size: 0.75rem; color: var(--primary); cursor: pointer; font-weight: 600; }
.filter-group { margin-bottom: 24px; }
.filter-group-title { font-size: 0.8rem; font-weight: 700; color: var(--txt-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; }
.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  cursor: pointer;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.filter-option:hover { color: var(--primary); }
.filter-checkbox {
  width: 18px; height: 18px;
  border: 2px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
  flex-shrink: 0;
}
.filter-option.checked .filter-checkbox {
  background: var(--primary);
  border-color: var(--primary);
}
.filter-option.checked .filter-checkbox::after {
  content: '✓';
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
}
.price-range { display: flex; flex-direction: column; gap: 12px; }
.price-slider {
  width: 100%;
  appearance: none;
  height: 4px;
  background: linear-gradient(to left, var(--primary) 0%, var(--primary) 60%, var(--border) 60%);
  border-radius: var(--r-full);
  outline: none;
  cursor: pointer;
}
.price-slider::-webkit-slider-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(227,30,36,0.4);
  cursor: pointer;
}
.price-labels { display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--txt-muted); }

.products-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.products-count { font-size: 0.88rem; color: var(--txt-muted); }
.products-count strong { color: var(--txt); }
.sort-select {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 8px 16px;
  color: var(--txt);
  font-size: 0.88rem;
  cursor: pointer;
  outline: none;
}
.view-toggle { display: flex; gap: 4px; }
.view-btn {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--txt-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--trans);
}
.view-btn.active { background: var(--primary); color: white; border-color: var(--primary); }

/* ---- Single Product ---- */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.product-gallery { position: sticky; top: calc(var(--header-h) + 24px); }
.main-image {
  height: 420px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
}
.main-image-icon { font-size: 7rem; opacity: 0.08; }
.image-thumbs { display: flex; gap: 12px; }
.thumb {
  width: 72px; height: 72px;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--trans);
  font-size: 1.4rem;
  opacity: 0.2;
}
.thumb.active { border-color: var(--primary); opacity: 1; }
.thumb:hover { border-color: var(--primary); opacity: 0.8; }

.product-detail-name { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 900; margin-bottom: 12px; line-height: 1.3; }
.product-detail-stars { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.product-detail-stars .stars { color: #F59E0B; }
.product-detail-stars .review-count { font-size: 0.85rem; color: var(--txt-muted); }
.product-detail-price {
  font-size: 2rem; font-weight: 900; color: var(--primary);
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 12px;
}
.product-detail-price-old { font-size: 1rem; color: var(--txt-muted); text-decoration: line-through; font-weight: 400; }
.product-detail-save { background: var(--primary); color: white; font-size: 0.75rem; padding: 3px 10px; border-radius: var(--r-full); font-weight: 700; }
.product-detail-desc { font-size: 0.9rem; color: var(--txt-muted); line-height: 1.8; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  width: fit-content;
}
.qty-btn {
  width: 44px; height: 44px;
  background: var(--bg-input);
  border: none;
  color: var(--txt);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--trans);
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-btn:hover { background: var(--primary); color: white; }
.qty-input {
  width: 56px; height: 44px;
  background: transparent;
  border: none;
  border-inline: 1px solid var(--border);
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--txt);
  outline: none;
}
.product-actions-row { display: flex; gap: 12px; align-items: center; margin-top: 20px; }
.wishlist-btn-lg {
  width: 50px; height: 50px;
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--txt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--trans);
  flex-shrink: 0;
}
.wishlist-btn-lg:hover { border-color: var(--primary); color: var(--primary); }
.wishlist-btn-lg.active { background: var(--primary); color: white; border-color: var(--primary); }

.product-features-list { margin-top: 24px; }
.product-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border);
}
.product-feature-item:last-child { border-bottom: none; }
.product-feature-item i { color: var(--primary); font-size: 0.8rem; }

/* ---- Contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  margin-bottom: 16px;
  transition: var(--trans);
}
.contact-info-item:hover { border-color: rgba(227,30,36,0.3); transform: translateX(-4px); }
.contact-info-icon {
  width: 46px; height: 46px;
  background: var(--primary-glow);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-label { font-size: 0.78rem; color: var(--txt-muted); margin-bottom: 4px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-info-value { font-weight: 700; font-size: 0.95rem; }

.wa-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: white;
  padding: 14px 24px;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: 0.95rem;
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  transition: var(--trans);
  border: none;
  cursor: pointer;
}
.wa-btn:hover { background: #128C7E; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.35); }

.contact-form { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 36px; }
.contact-form-title { font-size: 1.2rem; font-weight: 800; margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 8px; color: var(--txt); }
.form-input, .form-textarea, .form-select {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 12px 16px;
  color: var(--txt);
  font-size: 0.9rem;
  font-family: var(--font);
  outline: none;
  transition: var(--trans);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--gray-3); }

.map-placeholder {
  height: 240px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--txt-muted);
  font-size: 0.9rem;
  margin-top: 24px;
}
.map-placeholder i { font-size: 2rem; color: var(--primary); }

/* ---- Privacy / Terms ---- */
.legal-content { max-width: 760px; margin-inline: auto; }
.legal-content h2 { font-size: 1.2rem; font-weight: 800; margin: 32px 0 12px; color: var(--txt); }
.legal-content p { font-size: 0.9rem; color: var(--txt-muted); line-height: 1.9; margin-bottom: 14px; }
.legal-content ul { padding-right: 20px; margin-bottom: 14px; }
.legal-content li { font-size: 0.9rem; color: var(--txt-muted); line-height: 1.9; list-style: disc; }
.legal-update { background: var(--primary-glow); border: 1px solid rgba(227,30,36,0.2); border-radius: var(--r); padding: 12px 16px; font-size: 0.82rem; color: var(--primary-light); margin-bottom: 32px; }

/* ---- Footer ---- */
.footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding-top: 60px;
}
body.light .footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand-desc {
  font-size: 0.88rem;
  color: var(--gray-3);
  line-height: 1.8;
  margin: 16px 0 20px;
  max-width: 260px;
}
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  background: var(--dark-4);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-3);
  font-size: 0.9rem;
  transition: var(--trans);
}
.social-link:hover { background: var(--primary); color: white; transform: translateY(-2px); }

.footer-col-title {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-4);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: 0.88rem;
  color: var(--gray-3);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-link:hover { color: var(--primary); }
.footer-link::before { content: '←'; font-size: 0.75rem; opacity: 0; transition: opacity 0.2s; }
.footer-link:hover::before { opacity: 1; }

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: var(--gray-3);
}
.footer-contact-item i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 20px;
  font-size: 0.8rem;
  color: var(--gray-3);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--gray-3); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--primary); }

/* ---- Toast ---- */
.toast-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toast {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
  box-shadow: var(--shadow-lg);
  animation: slideIn 0.3s var(--ease);
  font-size: 0.88rem;
}
body.light .toast { background: white; }
.toast.success { border-color: rgba(22, 163, 74, 0.3); }
.toast.error { border-color: rgba(227,30,36,0.3); }
.toast-icon { font-size: 1.1rem; }
.toast.success .toast-icon { color: #16A34A; }
.toast.error .toast-icon { color: var(--primary); }
@keyframes slideIn {
  from { transform: translateX(-20px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ---- Cart Drawer ---- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(4px);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed;
  top: 0; left: 0;
  width: 380px;
  max-width: 100vw;
  height: 100vh;
  background: var(--bg-2);
  border-right: 1px solid var(--border);
  z-index: 1101;
  transform: translateX(-100%);
  transition: transform 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-header-title { font-size: 1.05rem; font-weight: 800; }
.cart-close {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--txt);
  transition: var(--trans);
}
.cart-close:hover { background: var(--primary); color: white; border-color: var(--primary); }
.cart-items { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-img {
  width: 64px; height: 64px;
  background: var(--bg-card);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  opacity: 0.3;
  flex-shrink: 0;
}
.cart-item-name { font-size: 0.88rem; font-weight: 700; margin-bottom: 4px; }
.cart-item-price { font-size: 0.85rem; color: var(--primary); font-weight: 700; }
.cart-item-remove { color: var(--txt-muted); font-size: 0.78rem; cursor: pointer; transition: color 0.2s; margin-top: 4px; display: inline-block; }
.cart-item-remove:hover { color: var(--primary); }
.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--txt-muted);
}
.cart-empty i { font-size: 3rem; margin-bottom: 16px; opacity: 0.3; }
.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 16px;
}
.cart-total-price { color: var(--primary); }

/* ---- Animations ---- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(1) { transition-delay: 0.05s; }
.fade-up:nth-child(2) { transition-delay: 0.12s; }
.fade-up:nth-child(3) { transition-delay: 0.19s; }
.fade-up:nth-child(4) { transition-delay: 0.26s; }
.fade-up:nth-child(5) { transition-delay: 0.33s; }
.fade-up:nth-child(6) { transition-delay: 0.40s; }

/* ---- Page transitions ---- */
.page-enter { animation: pageEnter 0.4s var(--ease); }
@keyframes pageEnter {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--dark-5); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gray); }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .section-header:not(.center) { text-align: center; }
  .section-header:not(.center) .red-line { margin-inline: auto; }
  .section-header:not(.center) .section-sub { margin-inline: auto; }
  .about-hero-grid { grid-template-columns: 1fr; }
  .about-hero-img { display: none; }
  .products-layout { grid-template-columns: 1fr; }
  .filters-sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
}
@media (max-width: 768px) {
  :root { --section-py: 60px; }
  .section { padding-block: 60px; }
  .nav { display: none; }
  .hamburger { display: flex; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .cta-banner { padding: 40px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .container { padding-inline: 16px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ---- Floating WhatsApp Button ---- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  color: white;
  z-index: 1050;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s var(--ease), background 0.3s, box-shadow 0.3s;
  text-decoration: none;
  overflow: visible;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  background: #128C7E;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.55);
}
.whatsapp-float-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: waPulse 2.4s ease-out infinite;
  z-index: -1;
  pointer-events: none;
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.55; }
  100% { transform: scale(1.85); opacity: 0; }
}

/* ---- WhatsApp button variant ---- */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  background: #25D366;
  color: white;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: var(--trans);
  width: 100%;
  font-family: var(--font);
  letter-spacing: 0.2px;
}
.btn-whatsapp:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}
.btn-whatsapp i { font-size: 1.3rem; }

/* ---- Checkout Page ---- */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 28px;
  align-items: start;
  max-width: 960px;
  margin-inline: auto;
}
.checkout-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
}
.checkout-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.checkout-card-title i { color: var(--primary); font-size: 1rem; }
.checkout-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.checkout-item:last-of-type { border-bottom: none; }
.checkout-item-icon {
  width: 54px;
  height: 54px;
  background: var(--bg-input);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.checkout-item-name { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
.checkout-item-price { font-size: 0.82rem; color: var(--txt-muted); }
.checkout-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}
.checkout-total-row:last-child { border-bottom: none; }
.checkout-total-row.grand {
  font-size: 1.1rem;
  font-weight: 900;
  padding-top: 16px;
}
.checkout-total-row.grand span:last-child { color: var(--primary); }
.checkout-form-field { margin-bottom: 18px; }
.checkout-form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.checkout-form-field label .req { color: var(--primary); }
.checkout-wa-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--txt-muted);
}
.checkout-wa-note i { color: #25D366; }
.checkout-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--txt-muted);
  max-width: 400px;
  margin-inline: auto;
}
.checkout-empty i { font-size: 3.5rem; margin-bottom: 20px; display: block; opacity: 0.3; }
.checkout-empty h2 { font-size: 1.3rem; font-weight: 800; margin-bottom: 10px; color: var(--txt); }

@media (max-width: 768px) {
  .checkout-layout { grid-template-columns: 1fr; }
  .whatsapp-float { bottom: 20px; left: 20px; width: 52px; height: 52px; font-size: 1.4rem; }
}
