/* ============================================
   Zylo Technologies - Main Stylesheet
   Theme: White + Red & Blue (Bold & Professional)
   ============================================ */

:root {
  --primary: #C62828;       /* Bold Red */
  --primary-dark: #8B0000;
  --primary-light: #EF5350;
  --secondary: #1565C0;     /* Deep Blue */
  --secondary-dark: #003c8f;
  --secondary-light: #1E88E5;
  --accent: #FF6F00;        /* Orange Accent */
  --dark: #0A0A0A;
  --text: #1A1A2E;
  --text-muted: #555;
  --bg-light: #F7F8FC;
  --bg-white: #FFFFFF;
  --border: #E0E0E0;
  --success: #2E7D32;
  --warning: #F9A825;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 20px rgba(0,0,0,.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.16);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg-white);
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; }

/* ---- Top Bar ---- */
.topbar {
  background: var(--secondary-dark);
  color: #cce0ff;
  font-size: 0.8rem;
  padding: 6px 0;
}
.topbar a { color: #cce0ff; }
.topbar a:hover { color: #fff; }

/* ---- Navbar ---- */
.main-navbar {
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,.1);
  padding: 10px 0;
  z-index: 1000;
}
.brand-logo { display: flex; align-items: center; gap: 12px; }
.brand-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.2rem;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: 'Space Grotesk', sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--dark); }
.brand-accent { color: var(--primary); }
.brand-sub { font-size: 0.65rem; color: var(--text-muted); letter-spacing: 0.5px; text-transform: uppercase; }

.main-navbar .nav-link {
  color: var(--text) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 14px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.main-navbar .nav-link:hover { background: var(--bg-light); color: var(--primary) !important; }

.search-form { flex: 1; max-width: 520px; margin: 0 20px; }
.search-input-group { display: flex; border-radius: 50px; overflow: hidden; border: 2px solid var(--border); transition: var(--transition); }
.search-input-group:focus-within { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(198,40,40,.12); }
.search-input { border: none; outline: none; padding: 9px 18px; font-size: 0.9rem; flex: 1; }
.search-btn { background: var(--primary); color: #fff; border: none; padding: 9px 20px; cursor: pointer; font-size: 0.95rem; transition: var(--transition); }
.search-btn:hover { background: var(--primary-dark); }

.cart-nav { position: relative; font-size: 1.3rem; padding: 8px 16px !important; }
.cart-badge {
  position: absolute; top: 2px; right: 4px;
  background: var(--primary); color: #fff;
  font-size: 0.65rem; font-weight: 700;
  border-radius: 50%; width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
}

.category-dropdown { border: none; box-shadow: var(--shadow-md); border-radius: var(--radius); padding: 8px; min-width: 260px; }
.category-dropdown .dropdown-item { border-radius: var(--radius-sm); padding: 8px 14px; font-size: 0.88rem; color: var(--text); }
.category-dropdown .dropdown-item:hover { background: var(--bg-light); color: var(--primary); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #0D1B2A 0%, #1565C0 50%, #0D1B2A 100%);
  min-height: 580px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-canvas {
  position: absolute; inset: 0;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff; padding: 6px 16px; border-radius: 50px; font-size: 0.82rem;
  margin-bottom: 18px; backdrop-filter: blur(8px);
  animation: fadeInDown 0.8s ease;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #fff; font-weight: 800; line-height: 1.15;
  margin-bottom: 16px;
  animation: fadeInUp 0.9s ease 0.1s both;
}
.hero-title .highlight {
  background: linear-gradient(90deg, #FF6F00, #EF5350);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  color: rgba(255,255,255,.82);
  font-size: 1.05rem; max-width: 540px;
  margin-bottom: 28px;
  animation: fadeInUp 0.9s ease 0.2s both;
}
.hero-btns { animation: fadeInUp 0.9s ease 0.3s both; }
.hero-btns .btn-hero-primary {
  background: var(--primary);
  color: #fff; padding: 13px 30px;
  border-radius: 50px; font-weight: 600; font-size: 0.95rem;
  border: none; box-shadow: 0 4px 20px rgba(198,40,40,.4);
  transition: var(--transition);
}
.hero-btns .btn-hero-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(198,40,40,.5); }
.hero-btns .btn-hero-outline {
  background: transparent;
  color: #fff; padding: 12px 28px;
  border-radius: 50px; font-weight: 600; font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,.5);
  transition: var(--transition); margin-left: 12px;
}
.hero-btns .btn-hero-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; transform: translateY(-2px); }

.hero-stats {
  display: flex; gap: 28px; margin-top: 36px;
  animation: fadeInUp 0.9s ease 0.4s both;
}
.hero-stat-item { text-align: center; }
.hero-stat-number { font-size: 1.8rem; font-weight: 800; color: #fff; font-family: 'Space Grotesk', sans-serif; }
.hero-stat-label { font-size: 0.75rem; color: rgba(255,255,255,.65); letter-spacing: 0.5px; }

.hero-image-grid {
  position: relative; z-index: 2;
  animation: fadeInRight 1s ease 0.2s both;
}
.hero-img-main {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px; padding: 24px;
  backdrop-filter: blur(12px);
}
.hero-chip-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-chip {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px; padding: 14px;
  text-align: center; color: #fff;
  transition: var(--transition);
}
.hero-chip:hover { background: rgba(255,255,255,.18); transform: scale(1.03); }
.hero-chip i { font-size: 1.6rem; margin-bottom: 6px; display: block; }
.hero-chip span { font-size: 0.75rem; font-weight: 500; }

/* ---- Floating Elements ---- */
.float-element {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.05);
  animation: floatAnim 6s ease-in-out infinite;
}
.float-1 { width: 80px; height: 80px; top: 15%; right: 10%; animation-delay: 0s; }
.float-2 { width: 120px; height: 120px; bottom: 20%; left: 5%; animation-delay: 2s; }
.float-3 { width: 50px; height: 50px; top: 60%; right: 30%; animation-delay: 4s; }

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section-pad { padding: 72px 0; }
.section-pad-sm { padding: 48px 0; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--text); }
.section-subtitle { color: var(--text-muted); font-size: 1rem; max-width: 560px; margin: 0 auto; }
.section-divider {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px; margin: 12px auto 20px;
}

/* ============================================================
   CATEGORIES STRIP
   ============================================================ */
.categories-strip { background: var(--bg-light); padding: 48px 0; }
.cat-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 16px; text-align: center;
  border: 2px solid transparent;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer; display: block;
  height: 100%;
}
.cat-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.cat-icon-wrap {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(198,40,40,.1), rgba(21,101,192,.1));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; font-size: 1.6rem;
  color: var(--primary); transition: var(--transition);
}
.cat-card:hover .cat-icon-wrap { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; }
.cat-name { font-weight: 700; font-size: 0.9rem; color: var(--text); }

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.product-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden; transition: var(--transition);
  height: 100%; display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(198,40,40,.3); }

.product-img-wrap {
  position: relative; overflow: hidden;
  background: var(--bg-light);
  padding: 20px; aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
}
.product-img-wrap img { max-height: 170px; object-fit: contain; transition: var(--transition); }
.product-card:hover .product-img-wrap img { transform: scale(1.08); }
.product-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--primary); color: #fff;
  padding: 3px 10px; border-radius: 50px; font-size: 0.72rem; font-weight: 700;
}
.product-badge.sale { background: var(--success); }

.product-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.product-category { font-size: 0.72rem; color: var(--secondary); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.product-name { font-weight: 700; font-size: 0.92rem; color: var(--text); margin-bottom: 10px; line-height: 1.4; flex: 1; }
.product-name:hover { color: var(--primary); }
.product-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 14px; }
.product-price .price { font-size: 1.15rem; font-weight: 800; color: var(--primary); }
.product-price .mrp { font-size: 0.82rem; color: var(--text-muted); text-decoration: line-through; }
.product-price .discount { font-size: 0.78rem; color: var(--success); font-weight: 600; background: #e8f5e9; padding: 2px 7px; border-radius: 50px; }
/* Stock Alert Badges */
.stock-alert {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.72rem; font-weight: 700; padding: 3px 10px;
  border-radius: 50px; margin-bottom: 8px; letter-spacing: 0.2px;
}
.stock-in { background: #e8f5e9; color: #2E7D32; }
.stock-low { background: #fff3e0; color: #E65100; animation: pulse 2s ease-in-out infinite; }
.stock-limited { background: #fff8e1; color: #F57F17; }
.stock-out { background: #fce4ec; color: #B71C1C; }

.btn-add-cart {
  background: var(--primary); color: #fff;
  border: none; border-radius: var(--radius-sm);
  padding: 9px; font-weight: 600; font-size: 0.88rem;
  width: 100%; cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-add-cart:hover { background: var(--primary-dark); transform: scale(1.02); }
.btn-add-cart.secondary { background: var(--secondary); }
.btn-add-cart.secondary:hover { background: var(--secondary-dark); }

/* ============================================================
   FEATURES BANNER
   ============================================================ */
.features-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary), #B71C1C);
  padding: 36px 0;
}
.feature-item { text-align: center; color: #fff; }
.feature-icon { font-size: 2rem; margin-bottom: 8px; }
.feature-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
.feature-text { font-size: 0.8rem; color: rgba(255,255,255,.78); }

/* ============================================================
   STATS COUNTER
   ============================================================ */
.stats-section { background: var(--secondary-dark); padding: 56px 0; }
.stat-box { text-align: center; padding: 24px; }
.stat-number {
  font-size: clamp(2rem, 5vw, 3rem); font-weight: 800;
  color: #fff; font-family: 'Space Grotesk', sans-serif;
}
.stat-label { color: rgba(255,255,255,.7); font-size: 0.9rem; font-weight: 500; margin-top: 4px; }
.stat-box-wrap { border-left: 1px solid rgba(255,255,255,.15); }

/* ============================================================
   MARQUEE BRANDS
   ============================================================ */
.brands-section { background: var(--bg-light); padding: 32px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.marquee-track { display: flex; gap: 48px; animation: marquee 20s linear infinite; white-space: nowrap; }
.marquee-wrap { overflow: hidden; }
.brand-item { color: var(--text-muted); font-weight: 700; font-size: 0.95rem; letter-spacing: 1px; text-transform: uppercase; display: flex; align-items: center; gap: 10px; }
.brand-item i { color: var(--primary); }

/* ============================================================
   PROMO BANNER
   ============================================================ */
.promo-banner {
  background: linear-gradient(135deg, #0D1B2A, #1565C0);
  border-radius: var(--radius); overflow: hidden;
  padding: 40px; position: relative;
}
.promo-banner::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%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.promo-content { position: relative; z-index: 1; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--bg-light); }
.testimonial-card {
  background: #fff; border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-stars { color: var(--warning); margin-bottom: 12px; }
.testimonial-text { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; margin-bottom: 16px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--secondary)); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 1rem; }
.author-name { font-weight: 700; font-size: 0.9rem; }
.author-role { font-size: 0.78rem; color: var(--text-muted); }

/* ============================================================
   AUTH PAGES
   ============================================================ */
.auth-page { min-height: 80vh; background: var(--bg-light); display: flex; align-items: center; padding: 48px 0; }
.auth-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); overflow: hidden; }
.auth-left { background: linear-gradient(135deg, var(--secondary-dark), var(--secondary)); padding: 48px 40px; color: #fff; display: flex; flex-direction: column; justify-content: center; min-height: 500px; }
.auth-right { padding: 48px 40px; }
.auth-form .form-control { border-radius: var(--radius-sm); border: 1.5px solid var(--border); padding: 10px 14px; font-size: 0.92rem; }
.auth-form .form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(198,40,40,.1); }
.btn-auth { background: var(--primary); color: #fff; border: none; border-radius: var(--radius-sm); padding: 12px; font-weight: 700; font-size: 0.95rem; width: 100%; transition: var(--transition); }
.btn-auth:hover { background: var(--primary-dark); transform: translateY(-1px); }

/* ============================================================
   CART
   ============================================================ */
.cart-table { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.cart-table thead th { background: var(--text); color: #fff; border: none; font-size: 0.88rem; padding: 14px 16px; }
.cart-table tbody td { padding: 16px; border-color: var(--border); vertical-align: middle; }
.qty-input { width: 70px; text-align: center; border-radius: var(--radius-sm); border: 1.5px solid var(--border); padding: 5px; }
.cart-summary-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px; }
.cart-summary-card .summary-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.92rem; }
.cart-summary-card .summary-row.total { font-size: 1.1rem; font-weight: 800; color: var(--primary); border-bottom: none; }
.btn-checkout { background: var(--primary); color: #fff; border: none; border-radius: var(--radius-sm); padding: 14px; font-weight: 700; font-size: 1rem; width: 100%; transition: var(--transition); }
.btn-checkout:hover { background: var(--primary-dark); }

/* ============================================================
   CHECKOUT & UPI
   ============================================================ */
.checkout-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px; }
.upi-box {
  border: 2px dashed var(--secondary);
  border-radius: var(--radius); padding: 28px; text-align: center;
  background: #EFF6FF;
}
.upi-id-display {
  font-size: 1.4rem; font-weight: 800; color: var(--secondary);
  letter-spacing: 1px; margin: 12px 0;
  background: #fff; border-radius: var(--radius-sm);
  padding: 12px 20px; display: inline-block;
  border: 1px solid var(--border);
}
.upi-qr-placeholder {
  width: 140px; height: 140px;
  background: #fff; border: 2px solid var(--secondary);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px; font-size: 4rem; color: var(--secondary);
}

/* ============================================================
   ADMIN PANEL
   ============================================================ */
.admin-body { background: #F1F3F6; min-height: 100vh; font-family: 'Inter', sans-serif; }
.admin-sidebar {
  width: 260px; background: var(--text); color: #fff;
  min-height: 100vh; position: fixed; left: 0; top: 0; z-index: 100;
  transition: var(--transition);
}
.admin-sidebar-logo {
  padding: 20px; background: rgba(255,255,255,.05);
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.admin-sidebar-logo .icon { font-size: 1.4rem; color: var(--primary-light); }
.admin-sidebar-logo .text { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1rem; }
.admin-sidebar-logo .sub { font-size: 0.7rem; color: rgba(255,255,255,.5); }
.sidebar-nav { padding: 12px 0; }
.sidebar-section { padding: 12px 18px 6px; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.35); }
.sidebar-link {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 18px; color: rgba(255,255,255,.75);
  font-size: 0.88rem; font-weight: 500; transition: var(--transition);
  border-left: 3px solid transparent;
}
.sidebar-link:hover, .sidebar-link.active {
  background: rgba(255,255,255,.06);
  color: #fff; border-left-color: var(--primary);
}
.sidebar-link i { width: 20px; text-align: center; }
.admin-content { margin-left: 260px; padding: 28px; }
.admin-topbar {
  background: #fff; box-shadow: var(--shadow);
  padding: 14px 24px; display: flex; align-items: center;
  justify-content: space-between; border-radius: var(--radius);
  margin-bottom: 24px;
}
.admin-stat-card {
  background: #fff; border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow);
  border-left: 5px solid var(--primary);
  transition: var(--transition);
}
.admin-stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.admin-stat-card.blue { border-left-color: var(--secondary); }
.admin-stat-card.green { border-left-color: var(--success); }
.admin-stat-card.orange { border-left-color: var(--accent); }
.admin-stat-number { font-size: 1.8rem; font-weight: 800; font-family: 'Space Grotesk', sans-serif; }
.admin-stat-label { color: var(--text-muted); font-size: 0.85rem; margin-top: 2px; }
.admin-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); }
.admin-card-header { padding: 18px 24px; border-bottom: 1px solid var(--border); font-weight: 700; font-size: 1rem; display: flex; align-items: center; justify-content: space-between; }
.admin-card-body { padding: 24px; }
.btn-primary-admin { background: var(--primary); color: #fff; border: none; border-radius: var(--radius-sm); padding: 9px 20px; font-weight: 600; font-size: 0.88rem; transition: var(--transition); }
.btn-primary-admin:hover { background: var(--primary-dark); color: #fff; }
.admin-table thead th { background: var(--bg-light); color: var(--text); font-weight: 600; font-size: 0.82rem; border: none; padding: 12px 16px; }
.admin-table tbody td { padding: 12px 16px; font-size: 0.88rem; vertical-align: middle; border-color: var(--border); }
.admin-table tbody tr:hover { background: var(--bg-light); }
.badge-status { padding: 4px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 600; }
.badge-active { background: #e8f5e9; color: var(--success); }
.badge-inactive { background: #fce4ec; color: var(--primary); }
.badge-pending { background: #fff3e0; color: var(--accent); }
.badge-paid { background: #e8f5e9; color: var(--success); }

/* ============================================================
   PRODUCT DETAIL
   ============================================================ */
.product-detail-img { background: var(--bg-light); border-radius: var(--radius); padding: 32px; display: flex; align-items: center; justify-content: center; min-height: 380px; }
.product-detail-img img { max-height: 300px; object-fit: contain; }
.product-detail-title { font-size: 1.5rem; font-weight: 800; margin-bottom: 12px; }
.product-detail-price { font-size: 2rem; font-weight: 800; color: var(--primary); }
.product-spec-table td { padding: 8px 12px; border: 1px solid var(--border); font-size: 0.88rem; }
.product-spec-table td:first-child { background: var(--bg-light); font-weight: 600; width: 40%; }
.qty-selector { display: flex; align-items: center; gap: 12px; }
.qty-btn { width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--border); background: #fff; cursor: pointer; font-size: 1rem; font-weight: 700; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.qty-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.qty-num { font-size: 1.1rem; font-weight: 700; min-width: 36px; text-align: center; }

/* ============================================================
   SEARCH PAGE
   ============================================================ */
.search-hero { background: var(--secondary-dark); padding: 40px 0; color: #fff; }

/* ============================================================
   ORDER SUCCESS
   ============================================================ */
.order-success-icon { width: 90px; height: 90px; background: linear-gradient(135deg, #2E7D32, #66BB6A); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 2.5rem; color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #0A0E1A; color: rgba(255,255,255,.75); }
.footer-top { padding: 56px 0 40px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-icon { font-size: 1.8rem; color: var(--primary); }
.footer-logo-text { font-family: 'Space Grotesk', sans-serif; font-size: 1.2rem; font-weight: 800; color: #fff; }
.footer-logo-text span { color: var(--primary); }
.footer-desc { font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
.footer-contact div { font-size: 0.83rem; margin-bottom: 8px; display: flex; align-items: flex-start; gap: 10px; }
.footer-contact i { color: var(--primary); margin-top: 3px; min-width: 16px; }
.footer-heading { color: #fff; font-weight: 700; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: rgba(255,255,255,.65); font-size: 0.88rem; transition: var(--transition); }
.footer-links a:hover { color: var(--primary); padding-left: 4px; }
.footer-features { list-style: none; padding: 0; margin: 0; }
.footer-features li { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; font-size: 0.85rem; }
.footer-tagline { color: rgba(255,255,255,.5); }
.footer-bottom { background: rgba(0,0,0,.3); padding: 16px 0; }
.footer-bottom p { margin: 0; font-size: 0.82rem; color: rgba(255,255,255,.45); }

/* ============================================================
   UTILITIES & MISC
   ============================================================ */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px;
  background: #25D366; color: #fff;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; box-shadow: 0 4px 16px rgba(37,211,102,.4);
  z-index: 9999; transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.12); background: #128C7E; color: #fff; }

.back-to-top {
  position: fixed; bottom: 90px; right: 24px;
  background: var(--primary); color: #fff;
  width: 42px; height: 42px; border-radius: 50%;
  border: none; font-size: 1rem; cursor: pointer;
  display: none; align-items: center; justify-content: center;
  box-shadow: var(--shadow); z-index: 9999; transition: var(--transition);
}
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }
.back-to-top.visible { display: flex; }

.text-primary-custom { color: var(--primary) !important; }
.text-secondary-custom { color: var(--secondary) !important; }
.bg-primary-custom { background: var(--primary) !important; }
.page-header { background: linear-gradient(135deg, var(--text) 0%, #1B2A4A 100%); color: #fff; padding: 40px 0; }
.breadcrumb-item a { color: rgba(255,255,255,.7); }
.breadcrumb-item.active { color: rgba(255,255,255,.9); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInRight { from { opacity:0; transform:translateX(40px); } to { opacity:1; transform:translateX(0); } }
@keyframes floatAnim { 0%,100% { transform:translateY(0) rotate(0deg); } 50% { transform:translateY(-20px) rotate(5deg); } }
@keyframes marquee { from { transform:translateX(0); } to { transform:translateX(-50%); } }
@keyframes pulse { 0%,100%{transform:scale(1);} 50%{transform:scale(1.05);} }
@keyframes slideInLeft { from{opacity:0;transform:translateX(-40px);} to{opacity:1;transform:translateX(0);} }
@keyframes countUp { from{opacity:0;} to{opacity:1;} }

.animate-on-scroll { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .topbar .topbar-left { display: none; }
  .admin-sidebar { width: 100%; position: relative; min-height: auto; }
  .admin-content { margin-left: 0; }
  .hero-image-grid { display: none; }
  .search-form { margin: 10px 0; max-width: 100%; }
}
@media (max-width: 767px) {
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .auth-left { display: none; }
  .hero-section { min-height: 420px; }
}
