/* =============================================
   Excel Computers - Main Stylesheet
   Color Palette:
   #ffe7d4 - Light Peach (bg/accent light)
   #ffb072 - Orange (primary accent)
   #dcf8c2 - Light Green (success/fresh)
   #72c822 - Green (secondary accent)
   #334778 - Navy Blue (primary dark)
============================================= */

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

/* ---------- CSS Variables ---------- */
:root {
  --peach-light: #ffe7d4;
  --orange:      #ffb072;
  --green-light: #dcf8c2;
  --green:       #72c822;
  --navy:        #334778;
  --navy-dark:   #1e2d50;
  --navy-light:  #4a6194;
  --white:       #ffffff;
  --off-white:   #f8f9fa;
  --gray-100:    #f4f5f7;
  --gray-200:    #e8eaed;
  --gray-300:    #d1d5db;
  --gray-500:    #6b7280;
  --gray-700:    #374151;
  --black:       #111827;
  --danger:      #ef4444;
  --success:     #22c55e;
  --warning:     #f59e0b;
  --info:        #3b82f6;
  --border-r:    8px;
  --border-r-lg: 16px;
  --border-r-xl: 24px;
  --shadow-sm:   0 1px 3px rgba(51,71,120,0.08);
  --shadow-md:   0 4px 16px rgba(51,71,120,0.12);
  --shadow-lg:   0 8px 32px rgba(51,71,120,0.16);
  --shadow-xl:   0 16px 48px rgba(51,71,120,0.20);
  --transition:  all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-head:   'Syne', sans-serif;
  --font-body:   'Inter', sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; color: var(--navy); }

/* ---------- Container ---------- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.container-fluid { max-width: 100%; padding: 0 20px; }

/* =============================================
   TOP BAR
============================================= */
.top-bar {
  background: var(--navy-dark);
  color: var(--gray-300);
  font-size: 0.82rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 18px; }
.top-bar a { color: var(--gray-300); }
.top-bar a:hover { color: var(--orange); }
.top-bar span { display: flex; align-items: center; gap: 6px; }
.top-bar i { color: var(--orange); font-size: 0.78rem; }
.track-link { background: var(--orange); color: var(--white) !important; padding: 3px 12px; border-radius: 20px; font-weight: 600; }
.track-link:hover { background: var(--green); }

/* =============================================
   MAIN HEADER
============================================= */
.main-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.main-header.scrolled { box-shadow: var(--shadow-xl); }
.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
}

/* Logo */
.logo-wrap { display: flex; align-items: center; gap: 10px; flex-shrink: 0; text-decoration: none; }
.site-logo { height: 48px; width: auto; }
.logo-text { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  font-size: 1.2rem;
}
.logo-name {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

/* Header Search */
.header-search { flex: 1; max-width: 520px; }
.search-form { display: flex; position: relative; }
.search-input {
  flex: 1;
  padding: 10px 48px 10px 18px;
  border: 2px solid var(--gray-200);
  border-radius: 50px;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
  background: var(--gray-100);
}
.search-input:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255,176,114,0.15);
}
.search-btn {
  position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  background: linear-gradient(135deg, var(--orange), #ff8c42);
  color: var(--white);
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}
.search-btn:hover { background: var(--navy); transform: translateY(-50%) scale(1.05); }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.action-btn {
  position: relative;
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  font-size: 1.05rem;
  background: var(--gray-100);
  transition: var(--transition);
  border: 2px solid transparent;
}
.action-btn:hover { background: var(--peach-light); color: var(--orange); border-color: var(--orange); }
.action-badge {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 18px; height: 18px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  background: var(--gray-100);
  border-radius: 8px;
  padding: 8px;
  transition: var(--transition);
}
.mobile-menu-toggle span {
  display: block;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.mobile-menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =============================================
   NAVIGATION
============================================= */
.main-nav {
  background: var(--navy);
  border-top: 3px solid var(--orange);
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-list > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 13px 16px;
  color: rgba(255,255,255,0.88);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  white-space: nowrap;
  transition: var(--transition);
  position: relative;
}
.nav-list > li > a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 3px;
  background: var(--orange);
  transition: var(--transition);
}
.nav-list > li > a:hover::after,
.nav-list > li > a.active::after { left: 0; right: 0; }
.nav-list > li > a:hover,
.nav-list > li > a.active { color: var(--white); }
.nav-list > li.nav-cta > a {
  background: var(--orange);
  color: var(--white);
  border-radius: 6px;
  margin: 6px 0 6px 8px;
  padding: 8px 18px;
  font-weight: 600;
}
.nav-list > li.nav-cta > a:hover { background: var(--green); }
.nav-list > li.nav-cta > a::after { display: none; }

/* Mega Menu */
.has-dropdown { position: relative; }
.mega-menu {
  position: absolute;
  top: 100%; left: -20px;
  background: var(--white);
  border-radius: 0 0 var(--border-r-lg) var(--border-r-lg);
  box-shadow: var(--shadow-xl);
  min-width: 560px;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  border-top: 3px solid var(--orange);
  z-index: 1000;
}
.has-dropdown:hover .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-menu-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.mega-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--border-r);
  color: var(--gray-700);
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
  border: 1px solid transparent;
}
.mega-menu-item:hover { background: var(--peach-light); color: var(--navy); border-color: var(--orange); }
.mega-icon {
  width: 34px; height: 34px;
  background: var(--navy);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.mega-all { background: var(--navy); color: var(--white) !important; }
.mega-all .mega-icon { background: var(--orange); color: var(--white); }
.mega-all:hover { background: var(--navy-dark) !important; border-color: transparent !important; }

/* Mobile Overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
}
.mobile-overlay.show { display: block; }

/* =============================================
   WHATSAPP FLOAT BUTTON
============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.7rem;
  box-shadow:
    0 0 0 0 rgba(37,211,102,0.7),
    0 4px 20px rgba(37,211,102,0.5);
  animation: whatsappGlow 2.5s infinite;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.whatsapp-float:hover { transform: scale(1.12); color: var(--white); }
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--black);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }
@keyframes whatsappGlow {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.7), 0 4px 20px rgba(37,211,102,0.5); }
  50%  { box-shadow: 0 0 0 18px rgba(37,211,102,0), 0 4px 20px rgba(37,211,102,0.5); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0), 0 4px 20px rgba(37,211,102,0.5); }
}

/* =============================================
   HERO SLIDER
============================================= */
.hero-slider { position: relative; overflow: hidden; height: 580px; background: var(--navy-dark); }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--navy-dark);
}
.hero-slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(30,45,80,0.92) 0%, rgba(51,71,120,0.75) 50%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,176,114,0.2);
  border: 1px solid var(--orange);
  color: var(--orange);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero-title {
  font-size: 2.9rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero-title span { color: var(--orange); }
.hero-desc { font-size: 1.05rem; color: rgba(255,255,255,0.82); margin-bottom: 30px; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active { background: var(--orange); width: 24px; border-radius: 4px; }
.hero-prev, .hero-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}
.hero-prev { left: 20px; }
.hero-next { right: 20px; }
.hero-prev:hover, .hero-next:hover { background: var(--orange); border-color: var(--orange); }

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.3px;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange), #ff8c42);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(255,176,114,0.4);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #ff8c42, var(--orange));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,176,114,0.5);
  color: var(--white);
}
.btn-secondary {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-secondary:hover { background: var(--white); color: var(--navy); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(51,71,120,0.3);
}
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-2px); color: var(--white); }
.btn-outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-green {
  background: linear-gradient(135deg, var(--green), #5aaa15);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(114,200,34,0.4);
}
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(114,200,34,0.5); color: var(--white); }
.btn-sm { padding: 8px 18px; font-size: 0.82rem; }
.btn-lg { padding: 15px 34px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }
.btn-icon { width: 42px; height: 42px; padding: 0; justify-content: center; border-radius: 50%; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none !important; }

/* =============================================
   SECTION STYLES
============================================= */
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-lg { padding: 100px 0; }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-light { background: var(--gray-100); }
.section-peach { background: var(--peach-light); }
.section-green { background: var(--green-light); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  width: 30px; height: 2px;
  background: var(--orange);
}
.section-title { font-size: 2.2rem; font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.section-title span { color: var(--orange); }
.section-subtitle { font-size: 1.05rem; color: var(--gray-500); max-width: 580px; margin: 0 auto; line-height: 1.7; }
.section-navy .section-title { color: var(--white); }
.section-navy .section-subtitle { color: rgba(255,255,255,0.72); }

/* =============================================
   PRODUCT CARDS
============================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--border-r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--orange);
}
.product-img-wrap {
  position: relative;
  padding-top: 72%;
  background: var(--gray-100);
  overflow: hidden;
}
.product-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-badges {
  position: absolute;
  top: 10px; left: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.badge {
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-sale { background: var(--danger); color: var(--white); }
.badge-new  { background: var(--green); color: var(--white); }
.badge-hot  { background: var(--orange); color: var(--white); }
.product-actions {
  position: absolute;
  top: 10px; right: 10px;
  display: flex; flex-direction: column; gap: 6px;
  opacity: 0; transform: translateX(10px);
  transition: var(--transition);
}
.product-card:hover .product-actions { opacity: 1; transform: translateX(0); }
.product-action-btn {
  width: 36px; height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-500);
  font-size: 0.85rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid var(--gray-200);
}
.product-action-btn:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }
.product-action-btn.wishlisted { background: var(--danger); color: var(--white); }
.product-info { padding: 16px; }
.product-category { font-size: 0.72rem; color: var(--orange); font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 5px; }
.product-name { font-size: 0.95rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-name a:hover { color: var(--orange); }
.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.stars { color: var(--warning); font-size: 0.78rem; display: flex; gap: 2px; }
.rating-count { font-size: 0.75rem; color: var(--gray-500); }
.product-price { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.price-current { font-size: 1.15rem; font-weight: 700; color: var(--navy); }
.price-original { font-size: 0.88rem; color: var(--gray-500); text-decoration: line-through; }
.price-save { font-size: 0.72rem; color: var(--success); font-weight: 600; }
.product-footer { display: flex; gap: 8px; }
.btn-add-cart {
  flex: 1;
  padding: 9px 12px;
  font-size: 0.82rem;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: var(--transition);
}
.btn-add-cart:hover { background: var(--orange); color: var(--white); }
.btn-view-product {
  padding: 9px 12px;
  font-size: 0.82rem;
  border-radius: 8px;
  background: var(--gray-100);
  color: var(--navy);
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.btn-view-product:hover { background: var(--peach-light); color: var(--orange); }
.out-of-stock { font-size: 0.78rem; color: var(--danger); font-weight: 600; text-align: center; padding: 6px; }

/* =============================================
   CATEGORY CARDS
============================================= */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
}
.cat-card {
  background: var(--white);
  border-radius: var(--border-r-lg);
  padding: 28px 16px;
  text-align: center;
  transition: var(--transition);
  border: 2px solid var(--gray-200);
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.cat-card:hover {
  border-color: var(--orange);
  background: var(--peach-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.cat-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  font-size: 1.5rem;
  margin: 0 auto 14px;
  transition: var(--transition);
}
.cat-card:hover .cat-icon { background: var(--orange); color: var(--white); transform: rotate(8deg); }
.cat-name { font-size: 0.88rem; font-weight: 600; color: var(--navy); line-height: 1.3; }
.cat-count { font-size: 0.72rem; color: var(--gray-500); margin-top: 4px; }

/* =============================================
   SERVICE CARDS
============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--border-r-xl);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--green));
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: transparent; }
.service-icon {
  width: 68px; height: 68px;
  background: linear-gradient(135deg, var(--peach-light), var(--orange));
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--navy); color: var(--orange); }
.service-title { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.service-desc { font-size: 0.9rem; color: var(--gray-500); line-height: 1.7; margin-bottom: 20px; }
.service-features { margin-bottom: 20px; }
.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gray-700);
  padding: 4px 0;
}
.service-features li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--green); font-size: 0.7rem; }
.service-link { color: var(--orange); font-weight: 600; font-size: 0.88rem; display: flex; align-items: center; gap: 6px; }
.service-link:hover { gap: 10px; color: var(--navy); }

/* =============================================
   STATS SECTION
============================================= */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.stat-item {
  padding: 40px 24px;
  text-align: center;
  background: rgba(255,255,255,0.06);
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,176,114,0.12); }
.stat-number {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.7); font-weight: 500; }

/* =============================================
   TESTIMONIALS
============================================= */
.testimonials-slider { position: relative; overflow: hidden; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--border-r-xl);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  position: relative;
}
.testimonial-card::before {
  content: '\f10d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 20px; right: 28px;
  font-size: 3rem;
  color: var(--peach-light);
  line-height: 1;
}
.testimonial-text { font-size: 0.95rem; color: var(--gray-700); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--peach-light);
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
}
.testimonial-name { font-weight: 700; color: var(--navy); font-size: 0.95rem; }
.testimonial-role { font-size: 0.8rem; color: var(--gray-500); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }

/* =============================================
   BLOG CARDS
============================================= */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.blog-card {
  background: var(--white);
  border-radius: var(--border-r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.blog-img {
  position: relative;
  padding-top: 58%;
  background: var(--gray-100);
  overflow: hidden;
}
.blog-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-cat {
  position: absolute;
  bottom: 12px; left: 12px;
  background: var(--orange);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
}
.blog-body { padding: 22px; }
.blog-meta { display: flex; gap: 14px; margin-bottom: 10px; }
.blog-meta span { display: flex; align-items: center; gap: 5px; font-size: 0.78rem; color: var(--gray-500); }
.blog-meta i { color: var(--orange); font-size: 0.7rem; }
.blog-title { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-title a:hover { color: var(--orange); }
.blog-excerpt { font-size: 0.875rem; color: var(--gray-500); line-height: 1.65; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-footer { display: flex; align-items: center; justify-content: space-between; padding: 14px 22px; border-top: 1px solid var(--gray-200); }
.read-more { color: var(--orange); font-weight: 600; font-size: 0.85rem; display: flex; align-items: center; gap: 6px; }
.read-more:hover { gap: 10px; color: var(--navy); }

/* =============================================
   WHY CHOOSE US
============================================= */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 28px; }
.feature-item {
  text-align: center;
  padding: 36px 20px;
  border-radius: var(--border-r-xl);
  background: var(--white);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}
.feature-item:hover { background: var(--peach-light); border-color: var(--orange); transform: translateY(-4px); }
.feature-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  font-size: 1.6rem;
  margin: 0 auto 18px;
  transition: var(--transition);
}
.feature-item:hover .feature-icon { background: var(--navy-dark); transform: rotate(-6deg); }
.feature-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.feature-desc { font-size: 0.85rem; color: var(--gray-500); line-height: 1.65; }

/* =============================================
   NEWSLETTER STRIP
============================================= */
.newsletter-strip {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 48px 0;
}
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.newsletter-text h3 { font-size: 1.5rem; color: var(--white); margin-bottom: 6px; }
.newsletter-text p { color: rgba(255,255,255,0.72); font-size: 0.95rem; }
.newsletter-form { flex: 1; max-width: 480px; }
.newsletter-input-wrap { display: flex; gap: 0; background: var(--white); border-radius: 50px; overflow: hidden; padding: 4px; }
.newsletter-input-wrap input {
  flex: 1;
  padding: 10px 18px;
  border: none;
  outline: none;
  font-size: 0.9rem;
  background: transparent;
}
.btn-subscribe {
  background: linear-gradient(135deg, var(--orange), #ff8c42);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 46px;
  font-weight: 600;
  font-size: 0.88rem;
  white-space: nowrap;
}
.btn-subscribe:hover { background: var(--navy); }
.newsletter-msg { margin-top: 8px; font-size: 0.82rem; }
.newsletter-msg .success { color: var(--green-light); }
.newsletter-msg .error { color: #ff9999; }

/* =============================================
   FOOTER
============================================= */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.78); }
.footer-main { padding: 64px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 44px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-icon {
  width: 40px; height: 40px;
  background: var(--orange);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
}
.footer-logo-text { font-family: var(--font-head); font-size: 1.35rem; font-weight: 800; color: var(--white); }
.footer-about-text { font-size: 0.88rem; line-height: 1.75; color: rgba(255,255,255,0.65); margin-bottom: 20px; }
.footer-social { display: flex; gap: 8px; margin-bottom: 20px; }
.social-icon {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}
.social-icon:hover { background: var(--orange); color: var(--white); border-color: var(--orange); transform: translateY(-2px); }
.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(114,200,34,0.15);
  border: 1px solid rgba(114,200,34,0.3);
  color: var(--green-light);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  margin-right: 6px;
}
.footer-heading { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--orange); display: inline-block; }
.footer-links li a {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 0;
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  transition: var(--transition);
}
.footer-links li a i { font-size: 0.6rem; color: var(--orange); transition: var(--transition); }
.footer-links li a:hover { color: var(--orange); padding-left: 4px; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.footer-contact li { display: flex; gap: 12px; font-size: 0.875rem; }
.footer-contact li i { color: var(--orange); font-size: 0.9rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: var(--orange); }
.business-hours { background: rgba(255,255,255,0.05); border-radius: 8px; padding: 14px 16px; border: 1px solid rgba(255,255,255,0.08); }
.business-hours h5 { color: var(--orange); font-size: 0.85rem; margin-bottom: 8px; }
.business-hours p { font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-bottom: 4px; }
.footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.copyright { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.footer-bottom-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--orange); }
.payment-icons-fallback { display: flex; gap: 8px; color: rgba(255,255,255,0.5); font-size: 1.6rem; }

/* =============================================
   ALERT / FLASH MESSAGES
============================================= */
.alert {
  padding: 14px 18px;
  border-radius: var(--border-r);
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
}
.alert-success { background: rgba(114,200,34,0.1); border: 1px solid var(--green); color: #2d6b00; }
.alert-error   { background: rgba(239,68,68,0.1); border: 1px solid var(--danger); color: #b91c1c; }
.alert-info    { background: rgba(59,130,246,0.1); border: 1px solid var(--info); color: #1e40af; }
.alert-warning { background: rgba(245,158,11,0.1); border: 1px solid var(--warning); color: #92400e; }

/* =============================================
   FORMS
============================================= */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.form-label .required { color: var(--danger); margin-left: 3px; }
.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid var(--gray-200);
  border-radius: var(--border-r);
  font-size: 0.9rem;
  color: var(--gray-700);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,176,114,0.15); }
.form-control::placeholder { color: var(--gray-300); }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.form-note { font-size: 0.78rem; color: var(--gray-500); margin-top: 4px; }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

/* =============================================
   BREADCRUMB
============================================= */
.breadcrumb-section { background: var(--gray-100); padding: 16px 0; border-bottom: 1px solid var(--gray-200); }
.breadcrumb { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumb a { font-size: 0.82rem; color: var(--gray-500); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { font-size: 0.82rem; color: var(--gray-300); }
.breadcrumb .current { font-size: 0.82rem; color: var(--navy); font-weight: 600; }

/* =============================================
   PAGE HERO
============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { font-size: 2.4rem; color: var(--white); margin-bottom: 10px; }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.75); }

/* =============================================
   CART STYLES
============================================= */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start; }
.cart-table-wrap { background: var(--white); border-radius: var(--border-r-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { background: var(--navy); color: var(--white); padding: 14px 16px; text-align: left; font-size: 0.85rem; font-weight: 600; }
.cart-table td { padding: 16px; border-bottom: 1px solid var(--gray-200); vertical-align: middle; }
.cart-table tr:last-child td { border-bottom: none; }
.cart-item-img { width: 72px; height: 72px; border-radius: 8px; object-fit: cover; }
.cart-item-name { font-weight: 600; color: var(--navy); font-size: 0.9rem; }
.qty-control { display: flex; align-items: center; gap: 0; border: 1px solid var(--gray-200); border-radius: 8px; overflow: hidden; width: fit-content; }
.qty-btn { width: 32px; height: 32px; background: var(--gray-100); font-size: 1rem; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.qty-btn:hover { background: var(--orange); color: var(--white); }
.qty-input { width: 44px; height: 32px; border: none; border-left: 1px solid var(--gray-200); border-right: 1px solid var(--gray-200); text-align: center; font-size: 0.9rem; font-weight: 600; outline: none; }
.cart-summary { background: var(--white); border-radius: var(--border-r-lg); padding: 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); position: sticky; top: 90px; }
.cart-summary h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--gray-200); }
.summary-row { display: flex; justify-content: space-between; padding: 9px 0; font-size: 0.9rem; border-bottom: 1px solid var(--gray-100); }
.summary-total { display: flex; justify-content: space-between; padding: 14px 0; font-size: 1.1rem; font-weight: 700; color: var(--navy); border-top: 2px solid var(--navy); margin-top: 8px; }
.coupon-section { margin-top: 16px; padding: 14px; background: var(--gray-100); border-radius: var(--border-r); }
.coupon-input-wrap { display: flex; gap: 8px; }
.coupon-input-wrap input { flex: 1; padding: 8px 12px; border: 1px solid var(--gray-200); border-radius: 6px; font-size: 0.85rem; outline: none; }
.coupon-discount { color: var(--success); font-weight: 600; }

/* =============================================
   SHOP LAYOUT
============================================= */
.shop-layout { display: grid; grid-template-columns: 280px 1fr; gap: 28px; align-items: start; }
.shop-sidebar { position: sticky; top: 90px; }
.sidebar-widget {
  background: var(--white);
  border-radius: var(--border-r-lg);
  padding: 22px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}
.widget-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--orange); display: flex; align-items: center; gap: 8px; }
.widget-title i { color: var(--orange); }
.filter-list li { padding: 7px 0; border-bottom: 1px solid var(--gray-100); display: flex; align-items: center; justify-content: space-between; }
.filter-list li:last-child { border-bottom: none; }
.filter-list label { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: 0.875rem; color: var(--gray-700); }
.filter-count { font-size: 0.72rem; color: var(--gray-500); background: var(--gray-100); padding: 2px 7px; border-radius: 10px; }
.price-range-inputs { display: flex; gap: 8px; align-items: center; }
.price-range-inputs input { width: 80px; padding: 7px 10px; border: 1px solid var(--gray-200); border-radius: 6px; font-size: 0.82rem; outline: none; }
.shop-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; background: var(--white); padding: 14px 20px; border-radius: var(--border-r); border: 1px solid var(--gray-200); flex-wrap: wrap; gap: 10px; }
.shop-results { font-size: 0.88rem; color: var(--gray-500); }
.sort-controls { display: flex; align-items: center; gap: 10px; }
.view-toggle { display: flex; gap: 4px; }
.view-btn { width: 32px; height: 32px; background: var(--gray-100); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: var(--gray-500); font-size: 0.8rem; cursor: pointer; transition: var(--transition); }
.view-btn.active, .view-btn:hover { background: var(--navy); color: var(--white); }

/* =============================================
   PRODUCT SINGLE
============================================= */
.product-single-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.product-gallery { position: sticky; top: 90px; }
.gallery-main { border-radius: var(--border-r-lg); overflow: hidden; background: var(--gray-100); margin-bottom: 12px; aspect-ratio: 1; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.gallery-thumb { width: 72px; height: 72px; border-radius: 8px; overflow: hidden; cursor: pointer; border: 2px solid var(--gray-200); transition: var(--transition); }
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--orange); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-single-info { }
.product-single-category { font-size: 0.78rem; color: var(--orange); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.product-single-name { font-size: 1.8rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; line-height: 1.25; }
.product-single-price { display: flex; align-items: baseline; gap: 14px; margin-bottom: 20px; }
.price-big { font-size: 2rem; font-weight: 800; color: var(--navy); }
.price-was { font-size: 1rem; color: var(--gray-500); text-decoration: line-through; }
.price-off { font-size: 0.875rem; background: var(--green-light); color: #2d6b00; padding: 3px 10px; border-radius: 4px; font-weight: 600; }
.product-single-desc { font-size: 0.95rem; color: var(--gray-500); line-height: 1.75; margin-bottom: 24px; }
.product-add-section { display: flex; gap: 12px; align-items: center; margin-bottom: 24px; flex-wrap: wrap; }
.product-specs { margin-top: 28px; }
.specs-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.specs-table tr { border-bottom: 1px solid var(--gray-100); }
.specs-table td { padding: 10px 12px; }
.specs-table td:first-child { color: var(--gray-500); font-weight: 600; width: 40%; background: var(--gray-100); }

/* =============================================
   CHECKOUT
============================================= */
.checkout-layout { display: grid; grid-template-columns: 1fr 420px; gap: 36px; align-items: start; }
.checkout-section {
  background: var(--white);
  border-radius: var(--border-r-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  margin-bottom: 24px;
}
.checkout-section h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 24px; padding-bottom: 12px; border-bottom: 2px solid var(--gray-200); display: flex; align-items: center; gap: 10px; }
.checkout-section h3 i { color: var(--orange); }
.payment-methods { display: flex; flex-direction: column; gap: 12px; }
.payment-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--border-r);
  cursor: pointer;
  transition: var(--transition);
}
.payment-option:has(input:checked) { border-color: var(--orange); background: var(--peach-light); }
.payment-option label { cursor: pointer; display: flex; align-items: center; gap: 10px; font-weight: 500; font-size: 0.9rem; }
.payment-option label i { font-size: 1.2rem; color: var(--orange); }
.order-review-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--gray-200); align-items: center; }
.order-review-item:last-child { border-bottom: none; }
.order-review-item img { width: 60px; height: 60px; object-fit: cover; border-radius: 8px; }
.order-item-details { flex: 1; }
.order-item-name { font-size: 0.875rem; font-weight: 600; color: var(--navy); }
.order-item-qty { font-size: 0.78rem; color: var(--gray-500); }
.order-item-price { font-weight: 700; color: var(--navy); font-size: 0.95rem; }

/* =============================================
   PAGINATION
============================================= */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 40px; }
.page-link {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
  text-decoration: none;
}
.page-link:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }
.page-link.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* =============================================
   EMPTY STATES
============================================= */
.empty-state { text-align: center; padding: 80px 20px; }
.empty-state-icon { font-size: 4rem; color: var(--gray-300); margin-bottom: 20px; }
.empty-state h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 10px; }
.empty-state p { color: var(--gray-500); font-size: 0.95rem; margin-bottom: 24px; }

/* =============================================
   TAB COMPONENT
============================================= */
.tabs { }
.tab-nav { display: flex; gap: 0; border-bottom: 2px solid var(--gray-200); margin-bottom: 24px; overflow-x: auto; }
.tab-btn {
  padding: 12px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-500);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: var(--transition);
  background: none;
}
.tab-btn:hover { color: var(--orange); }
.tab-btn.active { color: var(--navy); border-bottom-color: var(--orange); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* =============================================
   BACK TO TOP
============================================= */
.back-to-top {
  position: fixed;
  bottom: 100px; right: 28px;
  width: 44px; height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0; visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: var(--shadow-lg);
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--orange); transform: translateY(-2px); }

/* =============================================
   TRUST BADGES
============================================= */
.trust-section { background: var(--white); padding: 28px 0; border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
.trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-icon { font-size: 1.6rem; color: var(--orange); flex-shrink: 0; }
.trust-label { font-size: 0.78rem; font-weight: 600; color: var(--navy); line-height: 1.35; }

/* =============================================
   UTILITY CLASSES
============================================= */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-orange { color: var(--orange) !important; }
.text-navy { color: var(--navy) !important; }
.text-green { color: var(--green) !important; }
.text-muted { color: var(--gray-500) !important; }
.text-white { color: var(--white) !important; }
.bg-navy { background: var(--navy); }
.bg-orange { background: var(--orange); }
.bg-light { background: var(--gray-100); }
.fw-bold { font-weight: 700; }
.fw-semibold { font-weight: 600; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.w-100 { width: 100%; }
.img-fluid { max-width: 100%; height: auto; }
.rounded { border-radius: var(--border-r); }
.rounded-lg { border-radius: var(--border-r-lg); }
.shadow { box-shadow: var(--shadow-md); }
.overflow-hidden { overflow: hidden; }
.d-none { display: none; }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-title { font-size: 2.4rem; }
}

@media (max-width: 992px) {
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; }
  .cart-layout { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .product-single-layout { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .section-title { font-size: 1.9rem; }
  .hero-title { font-size: 2rem; }
}

@media (max-width: 768px) {
  .top-bar-left { display: none; }
  .header-search { display: none; }
  .main-nav .container .nav-list { display: none; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--navy-dark); z-index: 999; overflow-y: auto; padding: 80px 24px 40px; gap: 0; }
  .main-nav .container .nav-list.open { display: flex; }
  .nav-list > li > a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 1.05rem; }
  .nav-list > li > a::after { display: none; }
  .mega-menu { position: static; opacity: 1; visibility: visible; transform: none; min-width: auto; padding: 10px 0 10px 16px; box-shadow: none; background: rgba(255,255,255,0.05); border-top: none; border-radius: 0; }
  .mega-menu-inner { grid-template-columns: 1fr; }
  .mega-menu-item { color: rgba(255,255,255,0.75); padding: 8px 0; }
  .mega-menu-item:hover { background: transparent; color: var(--orange); }
  .mobile-menu-toggle { display: flex; }
  .hero-slider { height: auto; min-height: 400px; }
  .hero-content { padding: 40px 24px; }
  .hero-title { font-size: 1.7rem; }
  .section { padding: 56px 0; }
  .section-title { font-size: 1.65rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter-inner { flex-direction: column; }
  .newsletter-form { width: 100%; max-width: 100%; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .page-hero h1 { font-size: 1.9rem; }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-table { font-size: 0.82rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
  .section-header { margin-bottom: 36px; }
  .trust-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 1.45rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 2rem; }
}
