/*
Theme Name: Ravi Light House Blue
Theme URI: https://ravilighthouse.com
Description: Premium Maker Blue v3.7 — Auto-creates Checkout/Cart/My Account/Shop pages, Force Update for rich content pages, all bug fixes.
Author: Ravi Light House
Version: 4.8.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
WC tested up to: 8.5
Text Domain: ei-blue
Tags: woocommerce, electronics, robotics, ecommerce, blue, animated, slider, buy-now, full-pages
*/

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

/* ============================================
   CSS VARIABLES
============================================ */
:root {
  /* ORIGINAL ELECTRONICSITEM PALETTE — Maker Blue (theme default, restored) */
  --primary: #0066FF;       /* Maker Blue */
  --primary-dark: #0047B3;
  --primary-light: #E6F1FB;
  --primary-50: #F0F7FF;
  --navy: #0A2540;          /* Dark text */
  --navy2: #1E293B;
  --blue: #0066FF;
  --blue-light: #378ADD;
  --accent: #00D4AA;        /* Mint green */
  --accent-yellow: #FFB800; /* Yellow for sales */
  --alert: #FF4757;         /* Sale red */
  --bg: #FFFFFF;
  --bg-alt: #F8FAFC;
  --bg-section: #F1F5F9;
  --white: #ffffff;
  --border: #E2E8F0;
  --border-light: #F1F5F9;
  --text: #0A2540;
  --text2: #475569;
  --muted: #94A3B8;
  --green: #00D4AA;
  --green-light: #ECFDF5;
  --orange: #FFB800;
  --shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.08);
  --shadow-hover: 0 12px 28px rgba(0, 102, 255, 0.15);
  --shadow-blue: 0 8px 24px rgba(0, 102, 255, 0.20);
  --radius: 8px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ============================================
   RESET & BASE
============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 15px; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; padding: 0; margin: 0; }
h1,h2,h3,h4,h5,h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
input, button, select, textarea {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
}
button { cursor: pointer; }

/* ============================================
   LAYOUT
============================================ */
.ei-container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.ei-page-wrap { max-width: 1280px; margin: 0 auto; padding: 20px; }
.ei-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ei-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.ei-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.ei-grid-5 { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; }
.ei-grid-6 { display: grid; grid-template-columns: repeat(6,1fr); gap: 12px; }

/* ============================================
   TOP ANNOUNCEMENT BAR
============================================ */
.ei-announce {
  background: var(--navy);
  color: #b0bec5;
  font-size: 12px;
  padding: 6px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.ei-announce a { color: #90caf9; }
.ei-announce a:hover { color: var(--primary); }
.ei-announce-r { display: flex; gap: 18px; align-items: center; }
.ei-announce-r a { font-size: 11px; }

/* ============================================
   HEADER
============================================ */
.ei-header {
  background: var(--white);
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.ei-header-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Logo */
.ei-logo { flex-shrink: 0; text-decoration: none; }
.ei-logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.5px;
}
.ei-logo-text span { color: var(--blue); }
.ei-logo-tag {
  font-size: 9px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'Poppins', sans-serif;
}

/* Search */
.ei-search-wrap {
  flex: 1;
  display: flex;
  height: 44px;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 600px;
}
.ei-search-wrap select {
  padding: 0 12px;
  border: none;
  border-right: 1px solid var(--border);
  background: #fff8f8;
  font-size: 12px;
  color: var(--text);
  outline: none;
  cursor: pointer;
  min-width: 120px;
}
.ei-search-wrap input {
  flex: 1;
  border: none;
  padding: 0 14px;
  font-size: 14px;
  outline: none;
  color: var(--text);
}
.ei-search-wrap input::placeholder { color: var(--muted); }
.ei-search-btn {
  background: var(--primary);
  border: none;
  color: white;
  padding: 0 18px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s;
}
.ei-search-btn:hover { background: var(--primary-dark); }

/* Header Actions */
.ei-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: auto;
}
.ei-haction {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  padding: 6px 10px;
  border-radius: var(--radius);
  color: var(--text2);
  font-size: 10px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}
.ei-haction:hover { color: var(--primary); background: var(--primary-light); }
.ei-haction .ei-icon { font-size: 20px; line-height: 1; }
.ei-cart-action {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius);
  padding: 8px 16px;
  text-decoration: none;
  transition: background 0.2s;
  flex-shrink: 0;
}
.ei-cart-action:hover { background: var(--primary-dark); color: white; }
.ei-cart-action .ei-icon { font-size: 20px; }
.ei-cart-info { display: flex; flex-direction: column; line-height: 1.3; }
.ei-cart-qty { font-size: 11px; opacity: 0.85; }
.ei-cart-amt { font-weight: 700; font-size: 14px; }

/* ============================================
   MEGA MENU NAV
============================================ */
.ei-nav {
  background: var(--navy);
  position: sticky;
  top: 70px;
  z-index: 999;
}
.ei-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: stretch;
}
.ei-nav-all-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: white;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  height: 44px;
  font-family: 'Poppins', sans-serif;
  transition: background 0.2s;
  position: relative;
  flex-shrink: 0;
}
.ei-nav-all-btn:hover { background: var(--primary-dark); }

/* Category Mega Dropdown */
.ei-mega-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 240px;
  background: white;
  border: 1px solid var(--border);
  border-top: 2px solid var(--primary);
  box-shadow: var(--shadow-hover);
  z-index: 1000;
  border-radius: 0 0 var(--radius) var(--radius);
}
.ei-nav-all-btn:hover .ei-mega-dropdown,
.ei-nav-all-btn.open .ei-mega-dropdown { display: block; }
.ei-mega-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-bottom: 1px solid #f5f5f5;
  font-size: 13px;
  color: var(--text);
  transition: all 0.15s;
  text-decoration: none;
}
.ei-mega-item:hover { background: var(--primary-light); color: var(--primary); }
.ei-mega-item-l { display: flex; align-items: center; gap: 8px; }

/* Nav Links */
.ei-nav-menu {
  display: flex;
  align-items: stretch;
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  overflow-x: auto;
}
.ei-nav-menu::-webkit-scrollbar { height: 0; }
.ei-nav-menu > li { position: relative; }
.ei-nav-menu > li > a {
  display: flex;
  align-items: center;
  height: 44px;
  padding: 0 14px;
  color: #cfd8dc;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: var(--transition);
}
.ei-nav-menu > li > a:hover,
.ei-nav-menu > li.current-menu-item > a { color: white; background: rgba(255,255,255,0.1); }

/* Dropdown */
.ei-nav-menu > li > ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: white;
  border: 1px solid var(--border);
  border-top: 2px solid var(--primary);
  box-shadow: var(--shadow-hover);
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 100;
}
.ei-nav-menu > li:hover > ul { display: block; }
.ei-nav-menu > li > ul > li > a {
  display: block;
  padding: 10px 16px;
  color: var(--text);
  font-size: 13px;
  border-bottom: 1px solid #f5f5f5;
  transition: all 0.15s;
}
.ei-nav-menu > li > ul > li > a:hover { color: var(--primary); background: var(--primary-light); padding-left: 20px; }

.ei-nav-badge {
  background: var(--primary);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  margin-left: auto;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}

/* ============================================
   BREADCRUMB
============================================ */
.ei-breadcrumb {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.ei-breadcrumb-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  flex-wrap: wrap;
}
.ei-breadcrumb-inner a { color: var(--primary); }
.ei-breadcrumb-inner a:hover { text-decoration: underline; }
.ei-breadcrumb-inner .sep { color: var(--border); }

/* ============================================
   TRUST BAR
============================================ */
.ei-trust {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.ei-trust-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.ei-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text2);
  white-space: nowrap;
}
.ei-trust-item .ti { font-size: 20px; }
.ei-trust-item strong { font-size: 13px; color: var(--text); display: block; }

/* ============================================
   HERO + SIDEBAR LAYOUT
============================================ */
.ei-hero-wrap {
  max-width: 1280px;
  margin: 16px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 16px;
}

/* Category Sidebar */
.ei-cat-sidebar {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.ei-csb-hd {
  background: var(--navy);
  color: white;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: 'Poppins', sans-serif;
}
.ei-csb-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 14px;
  border-bottom: 1px solid #f8f8f8;
  font-size: 12.5px;
  color: var(--text);
  text-decoration: none;
  transition: all 0.15s;
  font-family: 'Poppins', sans-serif;
}
.ei-csb-item:hover { background: var(--primary-light); color: var(--primary); padding-left: 18px; }
.ei-csb-item-l { display: flex; align-items: center; gap: 7px; }
.ei-csb-item-l span:first-child { font-size: 15px; }
.ei-csb-arr { color: var(--muted); font-size: 11px; }

/* Hero Banner Slider */
.ei-hero-banners { display: flex; flex-direction: column; gap: 12px; }
.ei-main-banner {
  background: linear-gradient(135deg, #000000 0%, #1D1D1F 50%, #2C2C2E 100%);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
  flex: 1;
}
.ei-main-banner::before {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(41,151,255,0.18) 0%, transparent 70%);
  border-radius: 50%;
}
.ei-main-banner::after {
  content: '🤖';
  position: absolute;
  right: 40px; bottom: -10px;
  font-size: 160px;
  opacity: 0.07;
  pointer-events: none;
}
.ei-banner-content { position: relative; z-index: 1; max-width: 460px; }
.ei-banner-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  font-family: 'Poppins', sans-serif;
}
.ei-banner-title {
  font-family: 'Poppins', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 10px;
}
.ei-banner-title span { color: var(--blue); }
.ei-banner-desc {
  color: #90caf9;
  font-size: 13.5px;
  margin-bottom: 22px;
  line-height: 1.6;
  font-family: 'Poppins', sans-serif;
}
.ei-banner-btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* Mini Banners */
.ei-mini-banners { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ei-mini-banner {
  border-radius: var(--radius-lg);
  padding: 18px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 110px;
  transition: transform 0.2s;
}
.ei-mini-banner:hover { transform: scale(1.02); }
.ei-mb-1 { background: linear-gradient(135deg, #1b5e20, #388e3c); }
.ei-mb-2 { background: linear-gradient(135deg, #0d47a1, #1565c0); }
.ei-mb-3 { background: linear-gradient(135deg, #4a148c, #7b1fa2); }
.ei-mb-4 { background: linear-gradient(135deg, #e65100, #f57c00); }
.ei-mb-tag { font-size: 9px; font-weight: 700; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.ei-mb-title { font-family: 'Poppins', sans-serif; font-size: 17px; font-weight: 700; color: white; line-height: 1.2; margin-bottom: 4px; }
.ei-mb-price { font-size: 11px; color: rgba(255,255,255,0.8); font-weight: 600; }

/* ============================================
   BUTTONS
============================================ */
.ei-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: white;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 13px;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  white-space: nowrap;
}
.ei-btn:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: white; }
.ei-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: white;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 13px;
  border: 2px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
}
.ei-btn-ghost:hover { border-color: white; color: white; background: rgba(255,255,255,0.1); }
.ei-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: white;
  color: var(--primary);
  padding: 8px 18px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 13px;
  border: 1.5px solid var(--primary);
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
}
.ei-btn-outline:hover { background: var(--primary); color: white; }
.ei-btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--navy);
  color: white;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 13px;
  border: 2px solid var(--navy);
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
}
.ei-btn-navy:hover { background: var(--navy2); color: white; }

/* ============================================
   SECTION HEADERS
============================================ */
.ei-sec-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}
.ei-sec-title {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
}
.ei-sec-title::before {
  content: '';
  display: block;
  width: 4px;
  height: 20px;
  background: var(--primary);
  border-radius: 2px;
}
.ei-sec-va {
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: color 0.2s;
  white-space: nowrap;
}
.ei-sec-va:hover { color: var(--primary-dark); }

/* ============================================
   CATEGORY CARDS
============================================ */
.ei-cat-cards {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}
.ei-cat-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 8px 12px;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: var(--transition);
}
.ei-cat-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(232,37,42,0.12);
}
.ei-cat-card .cc-emoji { font-size: 28px; margin-bottom: 7px; display: block; }
.ei-cat-card .cc-name { font-size: 11px; font-weight: 600; color: var(--text); line-height: 1.3; font-family: 'Poppins', sans-serif; }
.ei-cat-card .cc-count { font-size: 10px; color: var(--muted); margin-top: 2px; }

/* ============================================
   PRODUCT CARDS
============================================ */
.ei-products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.ei-product-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.ei-product-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.ei-product-card:hover .ei-pc-cart { opacity: 1; transform: translateY(0); }

.ei-pc-badge {
  position: absolute;
  top: 8px; left: 8px;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  z-index: 2;
  letter-spacing: 0.04em;
}
.ei-pcb-new { background: var(--green); color: white; }
.ei-pcb-hot { background: var(--primary); color: white; }
.ei-pcb-sale { background: var(--orange); color: white; }
.ei-pcb-out { background: var(--muted); color: white; }

.ei-pc-wishlist {
  position: absolute;
  top: 8px; right: 8px;
  width: 28px; height: 28px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  z-index: 2;
  opacity: 0;
}
.ei-product-card:hover .ei-pc-wishlist { opacity: 1; }
.ei-pc-wishlist:hover { background: var(--primary-light); border-color: var(--primary); }

.ei-pc-img {
  background: #f8f9fa;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.ei-pc-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 0.3s ease;
}
.ei-product-card:hover .ei-pc-img img { transform: scale(1.05); }

.ei-pc-body { padding: 10px; flex: 1; display: flex; flex-direction: column; }
.ei-pc-brand { font-size: 10px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 3px; }
.ei-pc-name {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 8px;
  flex: 1;
  font-family: 'Poppins', sans-serif;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ei-pc-name a { color: inherit; }
.ei-pc-name a:hover { color: var(--primary); }
.ei-pc-price { display: flex; align-items: center; gap: 6px; margin-bottom: 6px; flex-wrap: wrap; }
.ei-pc-price-main { font-size: 16px; font-weight: 700; color: var(--text); font-family: 'Poppins', sans-serif; }
.ei-pc-price-old { font-size: 12px; color: var(--muted); text-decoration: line-through; }
.ei-pc-price-off { font-size: 10px; color: var(--green); font-weight: 700; background: var(--green-light); padding: 1px 5px; border-radius: 3px; }
.ei-pc-rating { display: flex; align-items: center; gap: 4px; margin-bottom: 8px; }
.ei-stars { color: #ffc107; font-size: 11px; letter-spacing: -1px; }
.ei-rating-count { font-size: 10px; color: var(--muted); }
.ei-pc-stock { font-size: 11px; font-weight: 500; margin-bottom: 8px; }
.ei-in-stock { color: var(--green); }
.ei-low-stock { color: var(--orange); }
.ei-out-stock { color: var(--primary); }

.ei-pc-cart {
  width: 100%;
  background: var(--primary);
  color: white;
  border: none;
  padding: 8px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(4px);
}
.ei-pc-cart:hover { background: var(--primary-dark); }
.ei-pc-cart-always {
  width: 100%;
  background: var(--primary);
  color: white;
  border: none;
  padding: 8px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: var(--transition);
}
.ei-pc-cart-always:hover { background: var(--primary-dark); }

/* ============================================
   WOOCOMMERCE PRODUCT LOOP
============================================ */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 12px !important;
  margin: 0 0 24px !important;
  padding: 0 !important;
  list-style: none !important;
}
/* WooCommerce ka clearfix ::before grid me pehla khali cell bana deta hai — usse hatao */
.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after {
  content: none !important;
  display: none !important;
}
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  background: white !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-lg) !important;
  overflow: hidden !important;
  transition: var(--transition) !important;
  position: relative !important;
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
}
.woocommerce ul.products li.product:hover {
  border-color: var(--primary) !important;
  box-shadow: var(--shadow-hover) !important;
  transform: translateY(-3px) !important;
}
.woocommerce ul.products li.product a img {
  width: 100% !important;
  height: 170px !important;
  object-fit: contain !important;
  padding: 12px !important;
  background: #f8f9fa !important;
  margin: 0 !important;
  transition: transform 0.3s !important;
}
.woocommerce ul.products li.product:hover a img { transform: scale(1.05) !important; }
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 12.5px !important;
  font-weight: 500 !important;
  color: var(--text) !important;
  padding: 8px 10px 4px !important;
  font-family: 'Poppins', sans-serif !important;
  line-height: 1.4 !important;
}
.woocommerce ul.products li.product .price {
  color: var(--text) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  padding: 0 10px 6px !important;
  display: block !important;
  font-family: 'Poppins', sans-serif !important;
}
.woocommerce ul.products li.product .price del { color: var(--muted) !important; font-size: 12px !important; font-weight: 400 !important; font-family: 'Poppins', sans-serif !important; }
.woocommerce ul.products li.product .price ins { color: var(--text) !important; text-decoration: none !important; }
.woocommerce ul.products li.product a.button {
  display: block !important;
  margin: auto 10px 10px !important;
  width: calc(100% - 20px) !important;
  text-align: center !important;
  background: var(--primary) !important;
  color: white !important;
  border-radius: var(--radius) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  padding: 8px !important;
  border: none !important;
  font-family: 'Poppins', sans-serif !important;
  transition: background 0.2s !important;
}
.woocommerce ul.products li.product a.button:hover { background: var(--primary-dark) !important; }
.woocommerce ul.products li.product .onsale {
  background: var(--orange) !important;
  color: white !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  border-radius: 4px !important;
  padding: 2px 7px !important;
  min-width: auto !important;
  min-height: auto !important;
  line-height: 1.4 !important;
  top: 8px !important;
  left: 8px !important;
  border-radius: 4px !important;
}
.woocommerce .star-rating { color: #ffc107 !important; }

/* WooCommerce General Buttons */
.woocommerce .button,
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background: var(--primary) !important;
  color: white !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  border-radius: var(--radius) !important;
  border: none !important;
  transition: background 0.2s !important;
  padding: 10px 20px !important;
}
.woocommerce .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover { background: var(--primary-dark) !important; color: white !important; }
.woocommerce .button.alt,
.woocommerce #payment #place_order { background: var(--navy) !important; }
.woocommerce .button.alt:hover,
.woocommerce #payment #place_order:hover { background: var(--navy2) !important; }
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button { background: var(--primary) !important; color: white !important; font-size: 15px !important; padding: 14px 28px !important; }
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span { color: var(--primary) !important; border-color: var(--border) !important; }
.woocommerce nav.woocommerce-pagination ul li span.current { background: var(--primary) !important; border-color: var(--primary) !important; color: white !important; }

/* Single Product */
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--primary) !important;
  font-size: 28px !important;
  font-weight: 700 !important;
  font-family: 'Poppins', sans-serif !important;
}
.woocommerce div.product p.price del { color: var(--muted) !important; font-size: 18px !important; }
.woocommerce div.product .woocommerce-product-gallery img { border-radius: var(--radius-lg) !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: var(--primary) !important; border-bottom: 2px solid var(--primary) !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs li a { font-family: 'Poppins', sans-serif !important; font-weight: 600 !important; }

/* Cart & Checkout */
.woocommerce table.shop_table { border-radius: var(--radius-lg) !important; overflow: hidden !important; font-family: 'Poppins', sans-serif !important; }
.woocommerce table.shop_table th { background: var(--navy) !important; color: white !important; font-weight: 600 !important; }
.woocommerce .order-total .amount { color: var(--primary) !important; font-weight: 700 !important; font-family: 'Poppins', sans-serif !important; font-size: 22px !important; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  border-radius: var(--radius) !important;
  border: 1px solid var(--border) !important;
  padding: 10px 14px !important;
  font-family: 'Poppins', sans-serif !important;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row select:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 2px rgba(232,37,42,0.1) !important;
  outline: none !important;
}

/* ============================================
   SHOP PAGE LAYOUT
============================================ */
.ei-shop-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 20px;
  align-items: start;
}
.ei-shop-sidebar {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky;
  top: 130px;
}
.ei-shop-sidebar .widget {
  padding: 16px;
  border-bottom: 1px solid var(--border);
}
.ei-shop-sidebar .widget:last-child { border-bottom: none; }
.ei-shop-sidebar .widget-title {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.ei-shop-sidebar .widget_product_categories ul li {
  padding: 4px 0;
  font-size: 13px;
  border-bottom: 1px solid #f5f5f5;
}
.ei-shop-sidebar .widget_product_categories ul li a { color: var(--text2); }
.ei-shop-sidebar .widget_product_categories ul li a:hover { color: var(--primary); }
.ei-shop-sidebar .widget_product_categories ul li .count { float: right; background: var(--bg); border-radius: 10px; padding: 1px 6px; font-size: 10px; color: var(--muted); }

/* Price Filter */
.ei-shop-sidebar .price_slider_wrapper .ui-widget-content { background: var(--border); }
.ei-shop-sidebar .price_slider_wrapper .ui-slider-range { background: var(--primary); }
.ei-shop-sidebar .price_slider_wrapper .ui-slider-handle { background: var(--primary); border-color: var(--primary); }

/* Shop Top Bar */
.ei-shop-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding: 10px 16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  flex-wrap: wrap;
  gap: 8px;
}
.ei-shop-result { font-size: 13px; color: var(--muted); font-family: 'Poppins', sans-serif; }
.ei-shop-sort { font-size: 13px; font-family: 'Poppins', sans-serif; }
.ei-shop-sort select { border: 1px solid var(--border); border-radius: var(--radius); padding: 4px 8px; font-size: 12px; font-family: 'Poppins', sans-serif; outline: none; }
.ei-view-btns { display: flex; gap: 4px; }
.ei-view-btn { width: 30px; height: 30px; border: 1px solid var(--border); border-radius: 4px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 14px; transition: all 0.15s; }
.ei-view-btn.active, .ei-view-btn:hover { border-color: var(--primary); color: var(--primary); }

/* ============================================
   PROMO BANNER
============================================ */
.ei-promo-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.ei-promo-banner {
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.2s;
}
.ei-promo-banner:hover { transform: scale(1.01); }
.ei-pb-1 { background: linear-gradient(135deg, #0a0a1a, #1a1a3e); }
.ei-pb-2 { background: linear-gradient(135deg, #1b5e20, #2e7d32); }
.ei-pb-tag { font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px; font-family: 'Poppins', sans-serif; }
.ei-pb-title { font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 700; color: white; margin-bottom: 4px; }
.ei-pb-desc { font-size: 12px; color: rgba(255,255,255,0.75); font-family: 'Poppins', sans-serif; margin-bottom: 14px; }
.ei-pb-price { text-align: right; color: white; }
.ei-pb-from { font-size: 11px; opacity: 0.75; font-family: 'Poppins', sans-serif; }
.ei-pb-amount { font-family: 'Poppins', sans-serif; font-size: 32px; font-weight: 700; line-height: 1; }

/* ============================================
   BRANDS
============================================ */
.ei-brands-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px 20px;
}
.ei-brands-inner {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 28px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.ei-brands-label { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; white-space: nowrap; font-family: 'Poppins', sans-serif; }
.ei-brands-list { display: flex; gap: 28px; align-items: center; flex: 1; flex-wrap: wrap; justify-content: space-around; }
.ei-brand-item { font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 700; color: #c0c0c0; letter-spacing: 0.04em; transition: color 0.2s; cursor: pointer; }
.ei-brand-item:hover { color: var(--primary); }

/* ============================================
   NEWSLETTER
============================================ */
.ei-newsletter {
  background: linear-gradient(135deg, #0066FF 0%, #0047B3 100%);
  padding: 32px 0;
  margin-bottom: 20px;
}
.ei-nl-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.ei-nl-text h3 { font-family: 'Poppins', sans-serif; font-size: 24px; font-weight: 700; color: white; margin-bottom: 3px; }
.ei-nl-text p { font-size: 13px; color: rgba(255,255,255,0.85); font-family: 'Poppins', sans-serif; }
.ei-nl-form { display: flex; flex: 1; min-width: 260px; max-width: 460px; }
.ei-nl-form input { flex: 1; padding: 12px 16px; border: none; border-radius: var(--radius) 0 0 var(--radius); font-size: 14px; font-family: 'Poppins', sans-serif; outline: none; }
.ei-nl-form button { background: var(--navy); color: white; border: none; padding: 12px 20px; border-radius: 0 var(--radius) var(--radius) 0; font-size: 13px; font-weight: 700; cursor: pointer; font-family: 'Poppins', sans-serif; white-space: nowrap; transition: background 0.2s; }
.ei-nl-form button:hover { background: var(--navy2); }

/* ============================================
   FOOTER
============================================ */
.ei-footer { background: var(--navy); color: #90a4ae; }
.ei-footer-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 44px 20px 32px;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
}
.ei-footer-brand {}
.ei-footer-logo { font-family: 'Poppins', sans-serif; font-size: 28px; font-weight: 700; color: white; margin-bottom: 10px; line-height: 1; }
.ei-footer-logo span { color: var(--primary); }
.ei-footer-desc { font-size: 12.5px; line-height: 1.7; color: #78909c; margin-bottom: 18px; font-family: 'Poppins', sans-serif; }
.ei-footer-social { display: flex; gap: 8px; flex-wrap: wrap; }
.ei-fs-btn { width: 34px; height: 34px; background: rgba(255,255,255,0.08); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 15px; cursor: pointer; transition: background 0.2s; text-decoration: none; }
.ei-fs-btn:hover { background: var(--primary); }
.ei-footer-col h4 { font-size: 12px; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 0.09em; margin-bottom: 16px; font-family: 'Poppins', sans-serif; }
.ei-footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.ei-footer-col ul li a { font-size: 12.5px; color: #78909c; transition: color 0.2s; font-family: 'Poppins', sans-serif; }
.ei-footer-col ul li a:hover { color: var(--primary); }
.ei-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 16px 20px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #546e7a;
  font-family: 'Poppins', sans-serif;
  flex-wrap: wrap;
  gap: 10px;
}
.ei-pay-methods { display: flex; gap: 7px; flex-wrap: wrap; }
.ei-pay-badge { background: white; border-radius: 4px; padding: 3px 10px; font-size: 10px; font-weight: 700; color: var(--navy); }

/* WhatsApp */
.ei-wa-fab {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 9999;
  text-decoration: none;
  animation: wapulse 2.5s infinite;
}
@keyframes wapulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 36px rgba(37,211,102,0.75); }
}

/* ============================================
   SINGLE PRODUCT PAGE
============================================ */
.ei-single-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px;
}
.ei-single-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  margin-bottom: 24px;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1200px) {
  .ei-cat-cards { grid-template-columns: repeat(6,1fr); }
  .woocommerce ul.products { grid-template-columns: repeat(4,1fr) !important; }
  .ei-products-grid { grid-template-columns: repeat(4,1fr); }
  .ei-footer-main { grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
}
@media (max-width: 1024px) {
  .ei-hero-wrap { grid-template-columns: 190px 1fr; gap: 12px; }
  .ei-csb-item { padding: 8px 12px; font-size: 12px; }
  .ei-mini-banners { grid-template-columns: repeat(4,1fr); }
  .ei-shop-wrap { grid-template-columns: 1fr; }
  .ei-shop-sidebar { display: none; }
  .ei-promo-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .ei-header-main { flex-wrap: wrap; padding: 10px 16px; }
  .ei-search-wrap { order: 3; min-width: 100%; }
  .ei-search-wrap select { display: none; }
  .ei-cat-cards { grid-template-columns: repeat(4,1fr); }
  .woocommerce ul.products { grid-template-columns: repeat(2,1fr) !important; }
  .ei-products-grid { grid-template-columns: repeat(2,1fr); }
  .ei-footer-main { grid-template-columns: 1fr 1fr; gap: 24px; padding: 28px 16px; }
  .ei-footer-bottom { padding: 14px 16px; flex-direction: column; text-align: center; }
  .ei-nav { top: 54px; }
  .ei-mini-banners { grid-template-columns: repeat(2,1fr); }
  .ei-newsletter { padding: 24px 0; }
  .ei-nl-inner { flex-direction: column; }
  .ei-single-product { grid-template-columns: 1fr; }
  .ei-trust-item { font-size: 11px; }
  .ei-announce { padding: 6px 16px; font-size: 11px; }
  .ei-announce-r { display: none; }
  /* Mobile: category sidebar becomes a horizontal scrollable chips bar above the slider */
  .ei-hero-wrap { grid-template-columns: 1fr; gap: 12px; }
  .ei-cat-sidebar { display: flex; overflow-x: auto; -webkit-overflow-scrolling: touch; padding: 8px; gap: 8px; scrollbar-width: none; }
  .ei-cat-sidebar::-webkit-scrollbar { display: none; }
  .ei-csb-hd { display: none; }
  .ei-csb-item { flex: 0 0 auto; border: 1px solid var(--border); border-radius: 999px; padding: 7px 12px; white-space: nowrap; }
  .ei-csb-item:hover { padding-left: 12px; }
  .ei-csb-arr { display: none; }
  .ei-csb-svg { width: 22px; height: 22px; margin-right: 6px; }
  .ei-csb-svg svg { width: 14px; height: 14px; }
}
@media (max-width: 480px) {
  .ei-cat-cards { grid-template-columns: repeat(3,1fr); }
  .woocommerce ul.products { grid-template-columns: repeat(2,1fr) !important; }
  .ei-mini-banners { grid-template-columns: repeat(2,1fr); }
  .ei-footer-main { grid-template-columns: 1fr; }
  .ei-banner-title { font-size: 26px; }
}

/* ── CATEGORY DROPDOWN FIX ── */
.ei-mega-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 240px;
  background: white;
  border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  z-index: 9999;
  border-radius: 0 0 8px 8px;
  max-height: 420px;
  overflow-y: auto;
}
.ei-mega-dropdown.show, .ei-mega-dropdown[style*="display: block"] { display: block !important; }
.ei-nav-all-btn { position: relative; }
.ei-mega-item { display:flex;align-items:center;justify-content:space-between;padding:10px 16px;border-bottom:1px solid #f5f5f5;font-size:13px;color:var(--text);text-decoration:none;transition:all .15s;font-family:'Poppins',sans-serif; }
.ei-mega-item:hover { background:var(--primary-light);color:var(--primary); }
.ei-mega-item-l { display:flex;align-items:center;gap:8px; }

/* ============================================
   v2.0 — TECH ANIMATIONS & POLISH
============================================ */

/* === SCROLL REVEAL === */
.ei-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  /* SAFETY: agar JS na chale/observer miss kare to bhi content 2.4s me dikh jaye */
  animation: eiFadeSafety 0.4s ease 2.4s forwards;
}
.ei-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
  animation: none;
}
@keyframes eiFadeSafety {
  to { opacity: 1; transform: translateY(0); }
}

/* === HERO BANNER ANIMATION === */
@keyframes ei-fade-up {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes ei-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes ei-pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(41, 151, 255, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(41, 151, 255, 0); }
}
@keyframes ei-rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes ei-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes ei-shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes ei-blink-cursor {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* Hero: Banner content slides up on load */
.ei-banner-tag { animation: ei-fade-up 0.6s ease 0.1s both, ei-pulse-glow 2.5s ease infinite 1.5s; }
.ei-banner-title { animation: ei-fade-up 0.7s ease 0.2s both; }
.ei-banner-desc { animation: ei-fade-up 0.7s ease 0.35s both; }
.ei-banner-cta { animation: ei-fade-up 0.7s ease 0.5s both; }

/* Hero: Robot illustration float */
.ei-banner-illustration,
.ei-main-banner img,
.ei-main-banner svg {
  animation: ei-float 4s ease-in-out infinite;
}

/* === BUTTON HOVER POLISH === */
.ei-btn,
.ei-banner-cta a,
button.single_add_to_cart_button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce .button {
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.ei-btn::before,
.ei-banner-cta a::before,
.woocommerce a.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}
.ei-btn:hover::before,
.ei-banner-cta a:hover::before,
.woocommerce a.button:hover::before {
  left: 100%;
}
.ei-btn:hover,
.ei-banner-cta a:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* === PRODUCT CARD HOVER === */
.woocommerce ul.products li.product,
.products li.product {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.woocommerce ul.products li.product:hover,
.products li.product:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.woocommerce ul.products li.product img,
.products li.product img {
  transition: transform 0.4s ease;
}
.woocommerce ul.products li.product:hover img,
.products li.product:hover img {
  transform: scale(1.05);
}

/* === CATEGORY CARDS ANIMATION === */
.ei-cat-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
}
.ei-cat-card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(41, 151, 255, 0.1);
  transition: width 0.5s ease, height 0.5s ease;
  transform: translate(-50%, -50%);
}
.ei-cat-card:hover::after {
  width: 300px;
  height: 300px;
}
.ei-cat-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 32px rgba(0,0,0,0.12);
}

/* === TRUST BADGES ANIMATION === */
.ei-usp-strip,
.ei-trust-badges {
  animation: ei-fade-in 1s ease 0.6s both;
}
.ei-usp-item,
.ei-trust-item {
  transition: transform 0.25s ease, color 0.25s ease;
}
.ei-usp-item:hover,
.ei-trust-item:hover {
  transform: translateY(-2px);
}
.ei-usp-icon,
.ei-trust-icon {
  display: inline-block;
  transition: transform 0.3s ease;
}
.ei-usp-item:hover .ei-usp-icon,
.ei-trust-item:hover .ei-trust-icon {
  transform: scale(1.15) rotate(-8deg);
}

/* === HEADER LOGO HOVER === */
.ei-logo-text,
.ei-header-logo {
  transition: transform 0.25s ease;
}
.ei-logo-text:hover,
.ei-header-logo:hover {
  transform: scale(1.04);
}

/* === SEARCH BAR FOCUS === */
.ei-search-input:focus,
.ei-search-bar input:focus {
  box-shadow: 0 0 0 3px rgba(41, 151, 255, 0.15);
  border-color: var(--blue) !important;
  outline: none;
}

/* === CART ICON BOUNCE WHEN ITEMS ADDED === */
@keyframes ei-cart-bounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}
.ei-cart-count.bounce {
  animation: ei-cart-bounce 0.4s ease;
}

/* === WHATSAPP FAB BREATHING === */
@keyframes ei-wa-pulse {
  0%, 100% { box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7); }
  50% { box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 0 0 14px rgba(37, 211, 102, 0); }
}
.ei-wa-fab {
  animation: ei-wa-pulse 2.4s ease-in-out infinite;
}
.ei-wa-fab:hover {
  transform: scale(1.1);
}

/* === LINKS UNDERLINE ANIMATION === */
.ei-nav a,
.ei-footer a {
  position: relative;
  transition: color 0.2s ease;
}
.ei-nav a::after,
.ei-footer a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.3s ease;
}
.ei-nav a:hover::after,
.ei-footer a:hover::after {
  width: 100%;
}

/* === SHOP PAGE FIXES === */
/* Fix for empty space when sidebar hidden or single column */
.ei-shop-wrap {
  min-height: 600px;
}
.ei-shop-wrap > div:not(.ei-shop-sidebar) {
  min-width: 0; /* Prevents grid blowout */
}
@media (max-width: 900px) {
  .ei-shop-wrap {
    grid-template-columns: 1fr !important;
    padding: 16px !important;
    gap: 16px !important;
  }
  .ei-shop-sidebar {
    display: none !important;
  }
}

/* === PRICE TAG SHIMMER FOR SALE PRODUCTS === */
.woocommerce span.onsale,
.woocommerce ul.products li.product .onsale {
  background: linear-gradient(90deg, var(--accent), #FF6B6B, var(--accent));
  background-size: 200% 100%;
  animation: ei-shimmer 3s linear infinite;
  border: none !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* === LOADING SPINNER === */
.ei-loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(41, 151, 255, 0.2);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: ei-rotate-slow 0.8s linear infinite;
}

/* === TYPING EFFECT FOR HERO === */
.ei-typing::after {
  content: '|';
  display: inline-block;
  margin-left: 2px;
  color: var(--blue);
  animation: ei-blink-cursor 0.8s step-end infinite;
  font-weight: 300;
}

/* === CIRCUIT BACKGROUND PATTERN (Tech Feel) === */
.ei-tech-bg {
  background-image: 
    linear-gradient(rgba(41,151,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41,151,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* === PRICE FILTER ENHANCEMENT === */
.ei-shop-sidebar .price_slider_wrapper .ui-slider-handle:hover {
  transform: scale(1.2);
  cursor: grab;
}

/* === SMOOTH SCROLL === */
html { scroll-behavior: smooth; }

/* === RESPONSIVE FIXES === */
@media (max-width: 768px) {
  .ei-banner-title { font-size: 28px !important; line-height: 1.2 !important; }
  .ei-main-banner { padding: 24px 20px !important; min-height: 200px !important; }
  .ei-cat-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
  .ei-usp-strip { padding: 12px !important; gap: 8px !important; }
  .ei-shop-topbar { flex-direction: column; align-items: flex-start; gap: 8px; }
}
@media (max-width: 480px) {
  .ei-banner-title { font-size: 24px !important; }
  .ei-cat-grid { grid-template-columns: 1fr !important; }
  .ei-banner-cta { flex-direction: column; gap: 8px !important; }
  .ei-banner-cta a { width: 100%; text-align: center; }
}

/* === REDUCE MOTION FOR ACCESSIBILITY === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* === END v2.0 ANIMATIONS === */

/* === Header Scroll Effect === */
.ei-header.scrolled,
header.ei-site-header.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.95);
}

/* === Newsletter Button Success State === */
.ei-nl-form button {
  transition: background 0.3s ease, color 0.3s ease;
}

/* === Empty Cart / No Products Polish === */
.woocommerce-no-products-found,
.cart-empty {
  text-align: center;
  padding: 40px 20px;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  margin: 20px 0;
}

/* ============================================
   v3.0 — 4-BANNER ANIMATED SLIDER
============================================ */
.ei-slider {
  position: relative;
  width: 100%;
  height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: var(--shadow-md);
}

.ei-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.ei-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 48px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s;
  overflow: hidden;
}
.ei-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Slide backgrounds (each with unique blue gradient) */
.ei-slide-1 {
  background: linear-gradient(135deg, #0066FF 0%, #0047B3 50%, #002B6B 100%);
}
.ei-slide-2 {
  background: linear-gradient(135deg, #00B8D9 0%, #0066FF 50%, #0047B3 100%);
}
.ei-slide-3 {
  background: linear-gradient(135deg, #FF4757 0%, #C73E5A 40%, #6B1B7E 100%);
}
.ei-slide-4 {
  background: linear-gradient(135deg, #00D4AA 0%, #0066FF 60%, #0047B3 100%);
}

/* Background pattern (subtle dots) */
.ei-slide-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* Slide content */
.ei-slide-content {
  flex: 1;
  max-width: 60%;
  z-index: 2;
  position: relative;
}

.ei-slide-tag {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.4px;
}
.ei-tag-sale {
  background: rgba(255,184,0,0.95);
  color: #4A2A00;
  border-color: rgba(255,184,0,1);
}
.ei-tag-b2b {
  background: rgba(0,212,170,0.95);
  color: #003D2A;
  border-color: rgba(0,212,170,1);
}

.ei-slide-title {
  font-size: 38px;
  font-weight: 700;
  color: white;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.ei-slide-accent {
  color: #FFB800;
  font-weight: 800;
}
.ei-slide-3 .ei-slide-accent { color: #FFD60A; }
.ei-slide-4 .ei-slide-accent { color: #FFFFFF; }

.ei-slide-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.92);
  line-height: 1.5;
  margin-bottom: 22px;
  max-width: 480px;
}

.ei-slide-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.ei-slide-btn-primary {
  display: inline-block;
  background: white;
  color: var(--primary);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.ei-slide-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  color: var(--primary-dark);
}

.ei-slide-btn-ghost {
  display: inline-block;
  background: transparent;
  color: white;
  padding: 12px 22px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}
.ei-slide-btn-ghost:hover {
  background: rgba(255,255,255,0.18);
  border-color: white;
  transform: translateY(-2px);
}

/* Slide visuals */
.ei-slide-visual {
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 2;
}

/* Banner 1 — Arduino circuit */
.ei-svg-circuit {
  width: 100%;
  height: 100%;
  animation: ei-rotate-slow 20s linear infinite;
}
.ei-slide-1 .ei-svg-circuit circle:nth-child(2) { animation: ei-led-blink 1.5s ease infinite; }
.ei-slide-1 .ei-svg-circuit circle:nth-child(3) { animation: ei-led-blink 1.5s ease infinite 0.4s; }
.ei-slide-1 .ei-svg-circuit circle:nth-child(4) { animation: ei-led-blink 1.5s ease infinite 0.8s; }
.ei-slide-1 .ei-svg-circuit circle:nth-child(5) { animation: ei-led-blink 1.5s ease infinite 1.2s; }
@keyframes ei-led-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Banner 2 — WiFi waves */
.ei-wifi-waves {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ei-wifi-waves .ei-wave {
  position: absolute;
  border: 3px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  animation: ei-wifi-pulse 2s ease-out infinite;
}
.ei-wifi-waves .ei-wave:nth-child(1) { width: 60px; height: 60px; animation-delay: 0s; }
.ei-wifi-waves .ei-wave:nth-child(2) { width: 100px; height: 100px; animation-delay: 0.5s; }
.ei-wifi-waves .ei-wave:nth-child(3) { width: 160px; height: 160px; animation-delay: 1s; }
.ei-wifi-dot {
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(255,255,255,0.8);
  z-index: 2;
}
@keyframes ei-wifi-pulse {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* Banner 3 — Robot icon */
.ei-robot-icon {
  width: 200px;
  height: 200px;
  animation: ei-float 3s ease-in-out infinite;
}
.ei-robot-icon svg { width: 100%; height: 100%; }

/* Banner 4 — Stack boxes */
.ei-stack-icon {
  position: relative;
  width: 180px;
  height: 180px;
}
.ei-stack-box {
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.18);
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 8px;
  animation: ei-stack-float 3s ease-in-out infinite;
}
.ei-stack-1 { top: 0; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.ei-stack-2 { top: 60px; left: 30%; animation-delay: 0.5s; }
.ei-stack-3 { top: 60px; left: 70%; transform: translateX(-50%); animation-delay: 1s; }
@keyframes ei-stack-float {
  0%, 100% { transform: translate(var(--tx, -50%), 0); }
  50% { transform: translate(var(--tx, -50%), -8px); }
}

/* Slider controls */
.ei-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(255,255,255,0.85);
  color: var(--primary);
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.ei-slider-arrow:hover {
  background: white;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.ei-slider-prev { left: 16px; }
.ei-slider-next { right: 16px; }

.ei-slider-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.ei-dot {
  width: 10px;
  height: 10px;
  border: 2px solid rgba(255,255,255,0.6);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.ei-dot:hover { border-color: white; }
.ei-dot.active {
  background: white;
  border-color: white;
  width: 28px;
  border-radius: 5px;
}

/* Mobile responsive slider */
@media (max-width: 768px) {
  .ei-slider { height: 360px; }
  .ei-slide { padding: 24px 20px; flex-direction: column; text-align: center; }
  .ei-slide-content { max-width: 100%; }
  .ei-slide-title { font-size: 24px; }
  .ei-slide-desc { font-size: 13px; }
  .ei-slide-visual { width: 100px; height: 100px; margin-top: 12px; }
  .ei-slider-arrow { width: 36px; height: 36px; font-size: 20px; }
}
@media (max-width: 480px) {
  .ei-slider { height: 380px; }
  .ei-slide-visual { display: none; }
  .ei-slide-content { max-width: 100%; }
}

/* ============================================
   v3.0 BUG FIXES — Clickable Elements
============================================ */

/* Trust bar items as clickable links */
.ei-trust-item {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius);
  padding: 4px 8px;
}
.ei-trust-item:hover {
  background: var(--primary-50);
  transform: translateY(-2px);
  text-decoration: none;
}
.ei-trust-item:hover strong {
  color: var(--primary);
}
.ei-trust-item:hover .ti {
  transform: scale(1.15) rotate(-6deg);
}
.ei-trust-item .ti {
  display: inline-block;
  transition: transform 0.3s ease;
}

/* New Arrivals badge as link */
.ei-nav-badge-link {
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.ei-nav-badge-link:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: var(--shadow-blue);
  color: white;
}

/* Make sure trust bar inner is flex-friendly */
.ei-trust-inner {
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .ei-trust-item { padding: 2px 4px; }
}

/* ============================================
   v3.4 — SVG Badge Icon (FIXED)
============================================ */
.ei-nav-badge-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 5px 12px !important;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  background: var(--primary);
  color: white;
  border-radius: 999px;
  text-decoration: none;
  height: 26px;
  box-sizing: border-box;
}
.ei-badge-icon {
  width: 12px !important;
  height: 12px !important;
  min-width: 12px !important;
  min-height: 12px !important;
  max-width: 12px !important;
  max-height: 12px !important;
  flex-shrink: 0;
  color: #FFB800;
  display: inline-block;
  vertical-align: middle;
  filter: drop-shadow(0 0 3px rgba(255,184,0,0.6));
  animation: ei-flame-flicker 1.5s ease-in-out infinite;
}
@keyframes ei-flame-flicker {
  0%, 100% { transform: scale(1) rotate(-2deg); opacity: 1; }
  25% { transform: scale(1.1) rotate(2deg); opacity: 0.95; }
  50% { transform: scale(0.95) rotate(-1deg); opacity: 1; }
  75% { transform: scale(1.05) rotate(1deg); opacity: 0.92; }
}
.ei-nav-badge-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}
.ei-nav-badge-link:hover .ei-badge-icon {
  color: #FFD60A;
  filter: drop-shadow(0 0 6px rgba(255,184,0,0.9));
}

/* ============================================
   Emoji Rendering Fix (Cross-Platform)
============================================ */
.ti, .ei-cat-icon, .ei-mb-tag::before, .ei-csb-item-l span:first-child {
  font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', 'Twemoji Mozilla', 'EmojiOne Color', 'Android Emoji', sans-serif;
  font-feature-settings: "liga" off;
  -webkit-font-smoothing: antialiased;
}

/* Make all emojis crisp and consistent size */
.ei-trust-item .ti {
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

/* ============================================
   v3.5 — BUY NOW BUTTON STYLING
============================================ */

/* Single product page button group - vertical stack */
.woocommerce div.product form.cart {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  margin-bottom: 16px;
}
.woocommerce div.product form.cart .quantity {
  margin-right: 0;
  align-self: flex-start;
  margin-bottom: 4px;
}

/* Buy Now button (TOP - orange/yellow, most prominent) */
.ei-buy-now-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100% !important;
  background: linear-gradient(135deg, #FFB800 0%, #FF8C00 100%) !important;
  color: white !important;
  border: none !important;
  padding: 14px 24px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  font-family: 'Poppins', sans-serif !important;
  border-radius: var(--radius) !important;
  cursor: pointer;
  transition: var(--transition);
  text-transform: none !important;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 12px rgba(255, 140, 0, 0.25);
  position: relative;
  overflow: hidden;
  order: -1; /* Force on top */
}
.ei-buy-now-btn:hover {
  background: linear-gradient(135deg, #FF8C00 0%, #FFB800 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 140, 0, 0.35);
  color: white !important;
}
.ei-buy-now-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}
.ei-buy-now-btn:hover::before { left: 100%; }

/* Add to Cart button (MIDDLE - blue, secondary action) */
.woocommerce div.product form.cart .single_add_to_cart_button {
  width: 100% !important;
  background: var(--primary) !important;
  color: white !important;
  border: 2px solid var(--primary) !important;
  padding: 12px 24px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  font-family: 'Poppins', sans-serif !important;
  border-radius: var(--radius) !important;
  text-transform: none !important;
  letter-spacing: 0.3px;
  transition: var(--transition);
}
.woocommerce div.product form.cart .single_add_to_cart_button:hover {
  background: var(--primary-dark) !important;
  border-color: var(--primary-dark) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

/* WhatsApp Order button (BOTTOM - green, alternative) */
.ei-wa-order-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100% !important;
  background: white !important;
  color: #25D366 !important;
  border: 2px solid #25D366 !important;
  padding: 11px 24px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  font-family: 'Poppins', sans-serif !important;
  border-radius: var(--radius) !important;
  text-decoration: none !important;
  transition: var(--transition);
  text-align: center;
  cursor: pointer;
}
.ei-wa-order-btn:hover {
  background: #25D366 !important;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(37, 211, 102, 0.3);
}

/* Quantity field — make it look better */
.woocommerce div.product form.cart .quantity input {
  height: 44px;
  width: 80px;
  text-align: center;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 16px;
}
.woocommerce div.product form.cart .quantity input:focus {
  border-color: var(--primary);
  outline: none;
}

/* Mobile: keep buttons full width */
@media (max-width: 768px) {
  .ei-buy-now-btn,
  .woocommerce div.product form.cart .single_add_to_cart_button,
  .ei-wa-order-btn {
    font-size: 14px !important;
    padding: 12px 16px !important;
  }
}

/* ============================================
   v3.6 — RICH PAGES STYLING (About, Contact, Track, etc.)
============================================ */

/* Page Hero Section (used on all pages) */
.ei-page-hero {
  background: linear-gradient(135deg, #0066FF 0%, #0047B3 50%, #0A2540 100%);
  padding: 44px 32px 40px;
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
  color: white;
  position: relative;
  overflow: hidden;
}
.ei-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0,212,170,0.12) 0%, transparent 40%);
  pointer-events: none;
}
.ei-page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  animation: ei-grid-slide 20s linear infinite;
}
@keyframes ei-grid-slide {
  0% { background-position: 0 0; }
  100% { background-position: 40px 40px; }
}
.ei-page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  animation: ei-fade-up 0.8s ease both;
}
.ei-page-tag {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}
.ei-page-hero h1 {
  color: white !important;
  font-size: 42px;
  margin-bottom: 12px;
  line-height: 1.2;
}
.ei-page-hero h1 .grad {
  background: linear-gradient(90deg, #FFB800, #FFD60A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ei-page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.92);
  margin: 0;
}
/* Hero quick-fact badges — fill hero space, surface key info above the fold */
.ei-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 22px;
}
.ei-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
}
.ei-hero-badge svg { flex-shrink: 0; opacity: 0.95; }
@media (max-width: 600px) {
  .ei-hero-badges { gap: 8px; margin-top: 16px; }
  .ei-hero-badge { font-size: 12px; padding: 7px 12px; }
}
/* Quick Navigation — left sidebar layout (info/policy pages) */
.rlh-layout {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px;
  display: grid;
  grid-template-columns: 266px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.rlh-layout-aside { grid-column: 1; grid-row: 1; position: sticky; top: 128px; }
.rlh-layout-main  { grid-column: 2; grid-row: 1; min-width: 0; }
.rlh-qnav-side {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(10,37,64,0.06);
}
.rlh-qnav-side-top {
  background: linear-gradient(135deg, #0A2540, #0047B3);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.rlh-qnav-side-body { padding: 12px 14px 16px; }
.rlh-qnav-head {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 14px 6px 4px;
}
.rlh-qnav-side-body .rlh-qnav-head:first-child { margin-top: 2px; }
.rlh-qnav-side-body a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 8px;
  color: var(--text2);
  font-size: 13.5px;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.rlh-qnav-side-body a svg { flex-shrink: 0; color: var(--primary); opacity: 0.8; }
.rlh-qnav-side-body a:hover { background: #EEF4FF; color: var(--primary); }
.rlh-qnav-side-body a.rlh-qnav-active { background: #EAF1FF; color: var(--primary); font-weight: 700; }
.rlh-qnav-side-body a.rlh-qnav-active svg { opacity: 1; }
@media (max-width: 900px) {
  .rlh-layout { grid-template-columns: 1fr; gap: 16px; padding: 12px; }
  .rlh-layout-aside { grid-column: 1; grid-row: auto; position: static; }
  .rlh-layout-main { grid-column: 1; grid-row: auto; }
}

/* Page sections */
.ei-page-section {
  padding: 40px 24px;
  margin-bottom: 24px;
}
.ei-page-section-alt {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
}
.ei-section-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 32px;
  color: var(--navy);
}
.ei-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

/* Stats grid */
.ei-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ei-stat-card {
  background: white;
  padding: 24px 20px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.ei-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-blue);
  border-color: var(--primary);
}
.ei-stat-num {
  font-size: 38px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.ei-stat-num::after { content: '+'; color: var(--accent); }
.ei-stat-label {
  font-size: 13px;
  color: var(--text2);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Features grid (Why Choose Us) */
.ei-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ei-feature-card {
  background: white;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.ei-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-blue);
  border-color: var(--primary);
}
.ei-feature-icon {
  font-size: 44px;
  margin-bottom: 14px;
  display: inline-block;
  animation: ei-float 3s ease-in-out infinite;
}
.ei-feature-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--navy);
}
.ei-feature-card p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.5;
  margin: 0;
}

/* CTA Section */
.ei-page-cta {
  background: linear-gradient(135deg, #0066FF 0%, #00D4AA 100%);
  padding: 48px 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  color: white;
  margin: 32px 0;
  position: relative;
  overflow: hidden;
}
.ei-page-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.15) 0%, transparent 50%);
}
.ei-page-cta h2 {
  color: white !important;
  font-size: 28px;
  margin-bottom: 8px;
  position: relative;
}
.ei-page-cta p {
  font-size: 15px;
  margin-bottom: 20px;
  position: relative;
  color: rgba(255,255,255,0.9);
}
.ei-cta-btn {
  display: inline-block;
  background: white;
  color: var(--primary) !important;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  font-size: 15px;
}
.ei-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
  color: var(--primary-dark) !important;
}

/* Contact page cards */
.ei-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.ei-contact-card {
  background: white;
  padding: 28px 20px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  display: block;
}
.ei-contact-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow-blue);
}
.ei-contact-icon {
  font-size: 36px;
  margin-bottom: 12px;
}
.ei-contact-card h3 {
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 6px;
}
.ei-contact-card p {
  font-size: 14px;
  color: var(--text2);
  margin-bottom: 12px;
}
.ei-contact-action {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}
.ei-pulse-card {
  position: relative;
}
.ei-pulse-card::before {
  content: '';
  position: absolute;
  top: 20px; right: 20px;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: ei-wa-pulse 2s ease-in-out infinite;
}

/* Contact form */
.ei-contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ei-contact-form input,
.ei-contact-form select,
.ei-contact-form textarea {
  padding: 12px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  transition: var(--transition);
}
.ei-contact-form input:focus,
.ei-contact-form select:focus,
.ei-contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,102,255,0.1);
}
.ei-contact-form button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
}
.ei-contact-form button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

/* Hours card */
.ei-hours-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.ei-hour-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-light);
}
.ei-hour-row:last-child { border-bottom: none; }
.ei-hour-row b { color: var(--navy); }
.ei-hour-row span { color: var(--text2); }

/* Trusted list (bulk page) */
.ei-trusted-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ei-trusted-item {
  background: white;
  padding: 14px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-weight: 500;
  transition: var(--transition);
}
.ei-trusted-item:hover {
  border-color: var(--primary);
  transform: translateX(6px);
}

/* Track Order page */
.ei-track-form-card {
  background: white;
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.ei-track-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.ei-track-form input {
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
}
.ei-track-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,102,255,0.1);
}
.ei-track-form select {
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  background: #fff;
  color: var(--text);
  cursor: pointer;
}
.ei-track-form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,102,255,0.1);
}
.ei-track-form button {
  background: linear-gradient(135deg, #0066FF, #00D4AA);
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}
.ei-track-form button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}
.ei-track-btn-icon {
  display: inline-block;
  animation: ei-search-pulse 2s ease infinite;
}
@keyframes ei-search-pulse {
  0%, 100% { transform: scale(1) rotate(0); }
  50% { transform: scale(1.15) rotate(15deg); }
}
.ei-form-hint {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
}

/* Tracker demo */
.ei-tracker-demo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
  background: white;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.ei-track-step {
  text-align: center;
  flex-shrink: 0;
}
.ei-track-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 10px;
  transition: var(--transition);
}
.ei-track-active .ei-track-circle {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  animation: ei-pulse-glow 2s ease infinite;
}
.ei-track-info b {
  display: block;
  color: var(--navy);
  font-size: 14px;
}
.ei-track-info small {
  color: var(--muted);
  font-size: 12px;
}
.ei-track-line {
  flex: 1;
  height: 3px;
  background: var(--border);
  margin: 0 -2px 28px;
  position: relative;
  min-width: 30px;
}
.ei-track-line-active {
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.ei-help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ei-help-card {
  background: white;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition);
}
.ei-help-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-blue);
}
.ei-help-icon {
  font-size: 32px;
  margin-bottom: 8px;
}
.ei-help-card b {
  color: var(--navy);
  font-size: 15px;
}
.ei-help-card span {
  font-size: 13px;
  color: var(--text2);
  margin-top: 4px;
}

/* Steps grid (Return Policy) */
.ei-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ei-step-card {
  background: white;
  padding: 28px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.ei-step-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-blue);
}
.ei-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.ei-step-card h3 { font-size: 16px; margin-bottom: 8px; }
.ei-step-card p { font-size: 13px; color: var(--text2); line-height: 1.5; margin: 0; }

/* Policy block (eligible/not eligible) */
.ei-policy-block {
  background: white;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.ei-policy-block h2 {
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--navy);
}
.ei-list {
  list-style: none;
  padding: 0;
}
.ei-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--text2);
  font-size: 14px;
  line-height: 1.6;
}
.ei-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--accent);
  font-weight: 700;
}

/* Policy content (Privacy, Terms) */
.ei-policy-content {
  background: white;
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  max-width: 900px;
  margin: 0 auto;
}
.ei-policy-content h2 {
  font-size: 22px;
  color: var(--primary);
  margin: 24px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary-light);
}
.ei-policy-content h2:first-child { margin-top: 0; }
.ei-policy-content p { margin-bottom: 12px; line-height: 1.7; color: var(--text2); }
.ei-policy-content a { color: var(--primary); }

/* Zones grid (Shipping) */
.ei-zones-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ei-zone-card {
  background: white;
  padding: 28px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}
.ei-zone-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow-blue);
}
.ei-zone-icon { font-size: 36px; margin-bottom: 8px; }
.ei-zone-card h3 { font-size: 16px; color: var(--navy); margin-bottom: 6px; }
.ei-zone-time {
  font-size: 22px;
  color: var(--primary);
  font-weight: 800;
  margin: 8px 0;
}
.ei-zone-card small { color: var(--muted); font-size: 12px; line-height: 1.4; }

/* FAQ accordion */
.ei-faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ei-faq-item {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}
.ei-faq-item[open] {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}
.ei-faq-item summary {
  padding: 16px 20px;
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ei-faq-item summary::-webkit-details-marker { display: none; }
.ei-faq-item summary::after {
  content: '+';
  font-size: 24px;
  color: var(--primary);
  transition: transform 0.3s ease;
  font-weight: 300;
}
.ei-faq-item[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}
.ei-faq-item p {
  padding: 0 20px 16px;
  color: var(--text2);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Downloads grid */
.ei-downloads-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ei-download-card {
  background: white;
  padding: 16px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition);
}
.ei-download-card:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}
.ei-dl-icon {
  font-size: 32px;
  flex-shrink: 0;
}
.ei-dl-info {
  flex: 1;
}
.ei-dl-info b { display: block; color: var(--navy); font-size: 14px; }
.ei-dl-info small { color: var(--muted); font-size: 12px; line-height: 1.4; }
.ei-dl-btn {
  background: var(--primary);
  color: white !important;
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  flex-shrink: 0;
  transition: var(--transition);
}
.ei-dl-btn:hover {
  background: var(--primary-dark);
}

/* Mobile responsive for new pages */
@media (max-width: 900px) {
  .ei-grid-2 { grid-template-columns: 1fr; gap: 24px; }
  .ei-features-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .ei-contact-grid { grid-template-columns: 1fr 1fr; }
  .ei-steps-grid { grid-template-columns: 1fr 1fr; }
  .ei-zones-grid { grid-template-columns: 1fr 1fr; }
  .ei-help-grid { grid-template-columns: 1fr; }
  .ei-downloads-grid { grid-template-columns: 1fr; }
  .ei-page-hero h1 { font-size: 28px; }
  .ei-page-hero { padding: 40px 20px; }
  .ei-section-title { font-size: 22px; }
  .ei-tracker-demo { flex-wrap: wrap; gap: 20px; }
  .ei-track-line { display: none; }
}
@media (max-width: 480px) {
  .ei-features-grid,
  .ei-contact-grid,
  .ei-steps-grid,
  .ei-zones-grid { grid-template-columns: 1fr; }
}

/* ============================================
   v3.8 — UNIQUE PAGE ANIMATIONS (Hero Backgrounds)
============================================ */

/* Hero animation background container */
.ei-hero-anim-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

/* === ABOUT US — Circuit Lines === */
.ei-hero-about .ei-circuit-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  height: 1px;
  width: 200px;
  animation: ei-circuit-flow 3s ease-in-out infinite;
}
.ei-hero-about .ei-cl-1 { top: 30%; left: -200px; animation-delay: 0s; }
.ei-hero-about .ei-cl-2 { top: 50%; left: -200px; animation-delay: 1s; width: 300px; }
.ei-hero-about .ei-cl-3 { top: 70%; left: -200px; animation-delay: 2s; width: 250px; }
@keyframes ei-circuit-flow {
  0% { transform: translateX(0); opacity: 0; }
  10% { opacity: 1; }
  100% { transform: translateX(150vw); opacity: 0; }
}
.ei-hero-about .ei-circuit-dot {
  position: absolute;
  width: 8px; height: 8px;
  background: #FFB800;
  border-radius: 50%;
  box-shadow: 0 0 12px #FFB800;
  animation: ei-led-blink 1.5s ease infinite;
}
.ei-hero-about .ei-cd-1 { top: 20%; right: 15%; animation-delay: 0s; }
.ei-hero-about .ei-cd-2 { top: 60%; right: 30%; animation-delay: 0.4s; background: #00D4AA; box-shadow: 0 0 12px #00D4AA; }
.ei-hero-about .ei-cd-3 { top: 80%; right: 20%; animation-delay: 0.8s; }
.ei-hero-about .ei-cd-4 { top: 40%; right: 8%; animation-delay: 1.2s; background: #00D4AA; box-shadow: 0 0 12px #00D4AA; }

/* === CONTACT — Floating Message Bubbles === */
.ei-hero-contact .ei-msg-bubble {
  position: absolute;
  font-size: 36px;
  opacity: 0.4;
  animation: ei-float 4s ease-in-out infinite;
}
.ei-hero-contact .ei-mb-1 { top: 20%; right: 15%; animation-delay: 0s; }
.ei-hero-contact .ei-mb-2 { top: 60%; right: 25%; animation-delay: 1s; }
.ei-hero-contact .ei-mb-3 { top: 40%; right: 8%; animation-delay: 2s; }

/* === BULK — Stack Boxes === */
.ei-hero-bulk .ei-stack-anim {
  position: absolute;
  top: 50%; right: 12%;
  transform: translateY(-50%);
}
.ei-hero-bulk .ei-anim-box {
  width: 50px; height: 50px;
  background: rgba(255,255,255,0.18);
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 6px;
  position: absolute;
  animation: ei-stack-pulse 3s ease-in-out infinite;
}
.ei-hero-bulk .ei-ab-1 { top: 0; left: 0; animation-delay: 0s; }
.ei-hero-bulk .ei-ab-2 { top: 30px; left: 30px; animation-delay: 0.5s; opacity: 0.7; }
.ei-hero-bulk .ei-ab-3 { top: 60px; left: 60px; animation-delay: 1s; opacity: 0.5; }
@keyframes ei-stack-pulse {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.05); }
}

/* === BULK — animated savings graphic (growing bars + boxes + discount badge) === */
.ei-hero-bulk .ei-bulk-graphic {
  position: absolute; top: 50%; right: 9%;
  transform: translateY(-50%);
  width: 168px; height: 150px; pointer-events: none;
}
.ei-hero-bulk .ei-bulk-graphic::after {
  content: ''; position: absolute; left: 4px; bottom: 20px; width: 152px; height: 2px;
  background: rgba(255,255,255,0.45);
}
.ei-hero-bulk .ei-bulk-bar {
  position: absolute; bottom: 22px; width: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.32));
  border-radius: 5px 5px 0 0; transform-origin: bottom;
  animation: ei-bulk-grow 2.6s ease-in-out infinite;
}
.ei-hero-bulk .ebb-1 { left: 8px;   height: 44px; animation-delay: 0s; }
.ei-hero-bulk .ebb-2 { left: 44px;  height: 68px; animation-delay: 0.22s; }
.ei-hero-bulk .ebb-3 { left: 80px;  height: 94px; animation-delay: 0.44s; }
.ei-hero-bulk .ebb-4 { left: 116px; height: 120px; animation-delay: 0.66s; }
@keyframes ei-bulk-grow {
  0%, 100% { transform: scaleY(0.4); opacity: 0.55; }
  55% { transform: scaleY(1); opacity: 1; }
}
.ei-hero-bulk .ei-bulk-box {
  position: absolute; color: rgba(255,255,255,0.92);
  animation: ei-float 3s ease-in-out infinite;
}
.ei-hero-bulk .ebx-1 { top: -4px; left: 2px; animation-delay: 0.3s; }
.ei-hero-bulk .ebx-2 { top: 16px; right: 50px; animation-delay: 1.2s; }
.ei-hero-bulk .ei-bulk-badge {
  position: absolute; top: -12px; right: -6px;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--accent); color: #05261f;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px; line-height: 1;
  box-shadow: 0 6px 18px rgba(0,0,0,0.22);
  animation: ei-badge-pop 2s ease-in-out infinite;
}
.ei-hero-bulk .ei-bulk-badge small { font-size: 8px; letter-spacing: 1.5px; margin-top: 2px; font-weight: 700; }
@keyframes ei-badge-pop {
  0%, 100% { transform: scale(1) rotate(-7deg); }
  50% { transform: scale(1.13) rotate(-7deg); }
}
.ei-trusted-item svg { flex-shrink: 0; color: var(--primary); margin-right: 4px; vertical-align: -3px; }

/* About page — real photos */
.rlh-about-photo { width: 100%; height: auto; border-radius: var(--radius-lg); box-shadow: 0 10px 30px rgba(10,37,64,0.16); display: block; }
.rlh-about-figure { margin: 0; }
.rlh-about-figure figcaption { font-size: 12.5px; color: var(--muted); text-align: center; margin-top: 10px; }

/* === TRACK ORDER — Truck Driving === */
.ei-hero-track .ei-truck-anim {
  position: absolute;
  bottom: 25%;
  left: -50px;
  font-size: 50px;
  animation: ei-truck-drive 8s linear infinite;
  z-index: 2;
  transform: scaleX(1);
  display: inline-block;
}
@keyframes ei-truck-drive {
  0% { left: -50px; }
  100% { left: calc(100% + 50px); }
}
.ei-hero-track .ei-track-road {
  position: absolute;
  bottom: 22%;
  left: 0;
  right: 0;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.5) 0, rgba(255,255,255,0.5) 12px, transparent 12px, transparent 24px);
  animation: ei-road-move 0.5s linear infinite;
}
@keyframes ei-road-move {
  0% { background-position: 0 0; }
  100% { background-position: 24px 0; }
}

/* === RETURN — Rotating Arrow === */
.ei-hero-return .ei-rotate-icon {
  position: absolute;
  top: 50%; right: 12%;
  transform: translateY(-50%);
  font-size: 100px;
  opacity: 0.25;
  animation: ei-rotate-slow 4s linear infinite;
}

/* === PRIVACY — Lock with shine === */
.ei-hero-privacy .ei-lock-icon {
  position: absolute;
  top: 50%; right: 15%;
  transform: translateY(-50%);
  font-size: 120px;
  opacity: 0.3;
  animation: ei-lock-bounce 2s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(255,184,0,0.5));
}
@keyframes ei-lock-bounce {
  0%, 100% { transform: translateY(-50%) scale(1); }
  50% { transform: translateY(-55%) scale(1.05); }
}

/* === PRIVACY — animated protection shield (motion graphic) === */
.ei-hero-privacy .ei-shield-wrap {
  position: absolute;
  top: 50%; right: 10%;
  transform: translateY(-50%);
  width: 160px; height: 160px;
  pointer-events: none;
}
.ei-hero-privacy .ei-shield-icon {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  color: rgba(255,255,255,0.92);
  animation: ei-shield-float 3s ease-in-out infinite;
  filter: drop-shadow(0 0 16px rgba(120,180,255,0.5));
}
.ei-hero-privacy .ei-shield-ring {
  position: absolute; inset: 0; margin: auto;
  width: 118px; height: 118px;
  border: 2px solid rgba(255,255,255,0.45);
  border-radius: 50%;
  animation: ei-shield-pulse 2.8s ease-out infinite;
}
.ei-hero-privacy .ei-shield-ring.r2 { animation-delay: 0.9s; }
.ei-hero-privacy .ei-shield-ring.r3 { animation-delay: 1.8s; }
@keyframes ei-shield-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
@keyframes ei-shield-pulse {
  0% { transform: scale(0.5); opacity: 0.7; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* === TERMS — Balance Scale === */
.ei-hero-terms .ei-balance-icon {
  position: absolute;
  top: 50%; right: 15%;
  transform: translateY(-50%);
  font-size: 120px;
  opacity: 0.3;
  animation: ei-balance-tilt 3s ease-in-out infinite;
}
@keyframes ei-balance-tilt {
  0%, 100% { transform: translateY(-50%) rotate(-5deg); }
  50% { transform: translateY(-50%) rotate(5deg); }
}

/* === TERMS — animated balance scale (motion graphic) === */
.ei-hero-terms .ei-scale-wrap {
  position: absolute;
  top: 50%; right: 10%;
  transform: translateY(-50%);
  width: 150px; height: 150px;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.ei-hero-terms .ei-scale-icon {
  color: rgba(255,255,255,0.9);
  filter: drop-shadow(0 0 16px rgba(120,180,255,0.5));
  transform-origin: 50% 20%;
  animation: ei-scale-tilt 3.2s ease-in-out infinite;
}
.ei-hero-terms .ei-scale-icon svg { display: block; }
@keyframes ei-scale-tilt {
  0%, 100% { transform: rotate(-7deg); }
  50% { transform: rotate(7deg); }
}

/* === SHIPPING — Truck + Floating Boxes === */
.ei-hero-shipping .ei-ship-truck {
  position: absolute;
  bottom: 15%;
  left: -50px;
  font-size: 56px;
  animation: ei-truck-drive 6s linear infinite;
  transform: scaleX(1);
  display: inline-block;
}
.ei-hero-shipping .ei-ship-box {
  position: absolute;
  font-size: 32px;
  animation: ei-float 3s ease-in-out infinite;
  opacity: 0.6;
}
.ei-hero-shipping .ei-sb-1 { top: 25%; right: 15%; animation-delay: 0s; }
.ei-hero-shipping .ei-sb-2 { top: 50%; right: 30%; animation-delay: 1s; }
.ei-hero-shipping .ei-sb-3 { top: 35%; right: 10%; animation-delay: 2s; }

/* === FAQ — Question Mark === */
.ei-hero-faq .ei-q-icon {
  position: absolute;
  top: 50%; right: 12%;
  transform: translateY(-50%);
  font-size: 130px;
  opacity: 0.25;
  animation: ei-q-bounce 2s ease-in-out infinite;
}
@keyframes ei-q-bounce {
  0%, 100% { transform: translateY(-50%) rotate(-10deg) scale(1); }
  50% { transform: translateY(-55%) rotate(10deg) scale(1.1); }
}

/* === FAQ — animated floating question mark (motion graphic) === */
.ei-hero-faq .ei-q-wrap {
  position: absolute;
  top: 50%; right: 11%;
  transform: translateY(-50%);
  width: 150px; height: 150px;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.ei-hero-faq .ei-q-mark {
  color: rgba(255,255,255,0.9);
  filter: drop-shadow(0 0 16px rgba(120,180,255,0.5));
  animation: ei-q-float 3s ease-in-out infinite;
}
.ei-hero-faq .ei-q-mark svg { display: block; }
@keyframes ei-q-float {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-10px) rotate(6deg); }
}

/* === CONTACT — floating communication icons (motion graphic) === */
.ei-hero-contact .ei-cfloat {
  position: absolute;
  color: rgba(255,255,255,0.85);
  filter: drop-shadow(0 0 12px rgba(120,180,255,0.4));
  animation: ei-float 3s ease-in-out infinite;
}
.ei-hero-contact .ei-cfloat svg { display: block; }
.ei-hero-contact .ei-cf-1 { top: 24%; right: 20%; animation-delay: 0s; }
.ei-hero-contact .ei-cf-2 { top: 52%; right: 30%; animation-delay: 0.8s; }
.ei-hero-contact .ei-cf-3 { top: 40%; right: 12%; animation-delay: 1.6s; }

/* Contact page — social links, map, Instagram widget */
.ei-contact-social { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
.ei-contact-social a {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 16px; border: 1px solid var(--border); border-radius: 999px;
  color: var(--text2); text-decoration: none; font-size: 13.5px; font-weight: 600;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.ei-contact-social a svg { color: var(--primary); }
.ei-contact-social a:hover { border-color: var(--primary); color: var(--primary); }
.ei-map-wrap { max-width: 1000px; margin: 0 auto; }
.ei-map-wrap iframe { display: block; width: 100%; border-radius: 16px; }
.ei-ig-widget { max-width: 1040px; margin: 0 auto; }
.ei-ig-widget iframe { max-width: 100%; }
.ei-ig-reels { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; align-items: flex-start; max-width: 1160px; margin: 0 auto; }
.ei-ig-reels .instagram-media { flex: 0 0 auto; margin: 0 !important; }

/* === DOWNLOADS — Falling Arrows === */
.ei-hero-downloads .ei-dl-arrow {
  position: absolute;
  font-size: 36px;
  opacity: 0.5;
  animation: ei-dl-fall 2s ease-in infinite;
}
.ei-hero-downloads .ei-da-1 { top: -50px; right: 30%; animation-delay: 0s; }
.ei-hero-downloads .ei-da-2 { top: -50px; right: 18%; animation-delay: 0.7s; }
.ei-hero-downloads .ei-da-3 { top: -50px; right: 8%; animation-delay: 1.4s; }
@keyframes ei-dl-fall {
  0% { top: -50px; opacity: 0; }
  20% { opacity: 0.6; }
  100% { top: 110%; opacity: 0; }
}

/* ============================================
   PAGE-SPECIFIC NEW SECTIONS
============================================ */

/* Mission/Vision cards (About) */
.ei-mv-card {
  background: white;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
  border-top: 4px solid var(--primary);
}
.ei-mv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-blue);
  border-top-color: var(--accent);
}
.ei-mv-icon {
  font-size: 56px;
  margin-bottom: 14px;
  animation: ei-float 3s ease-in-out infinite;
}
.ei-mv-card h3 { font-size: 22px; margin-bottom: 12px; color: var(--navy); }
.ei-mv-card p { color: var(--text2); font-size: 15px; line-height: 1.6; }

/* Timeline (About) */
.ei-timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
}
.ei-timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
}
.ei-tl-item {
  position: relative;
  padding: 16px 0 16px 30px;
}
.ei-tl-dot {
  position: absolute;
  left: -32px;
  top: 22px;
  width: 16px; height: 16px;
  background: var(--primary);
  border: 4px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--primary);
  animation: ei-pulse-glow 2s ease infinite;
}
.ei-tl-content {
  background: white;
  padding: 16px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.ei-tl-content b { color: var(--primary); font-size: 17px; display: block; margin-bottom: 4px; }
.ei-tl-content p { color: var(--text2); margin: 0; font-size: 14px; }

/* Promise list (Contact) */
.ei-promise-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}
.ei-promise-item {
  background: white;
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 14px;
  transition: var(--transition);
}
.ei-promise-item:hover {
  border-color: var(--accent);
  transform: translateX(4px);
}

/* Discount table (Bulk) */
.ei-discount-table {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  max-width: 800px;
  margin: 0 auto;
}
.ei-disc-row {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
  align-items: center;
  transition: var(--transition);
}
.ei-disc-row:last-child { border-bottom: none; }
.ei-disc-head {
  background: var(--primary);
  color: white;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.ei-disc-row:not(.ei-disc-head):hover {
  background: var(--primary-50);
}
.ei-disc-row b { color: var(--accent); font-size: 16px; }

/* Track-step pending state */
.ei-track-step.ei-track-pending .ei-track-circle {
  background: white;
  border-color: var(--primary);
  animation: ei-pulse-glow 2s ease infinite;
  color: var(--primary);
}
.ei-track-line.ei-track-line-pending {
  background: linear-gradient(90deg, var(--primary) 50%, var(--border) 50%);
  background-size: 200% 100%;
  animation: ei-pending-progress 2s linear infinite;
}
@keyframes ei-pending-progress {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

/* Step icon (Returns) */
.ei-step-icon {
  font-size: 32px;
  margin: 8px 0;
  animation: ei-float 3s ease-in-out infinite;
}

/* Returns timeline horizontal */
.ei-timeline-h {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}
.ei-timeline-h::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 5%;
  right: 5%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}
.ei-th-item {
  background: white;
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
  z-index: 2;
  transition: var(--transition);
}
.ei-th-item:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-blue);
}
.ei-th-day {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
}
.ei-th-item b { display: block; font-size: 15px; margin-bottom: 4px; color: var(--navy); }
.ei-th-item p { font-size: 13px; color: var(--text2); margin: 0; }

/* Policy good/bad blocks */
.ei-policy-good { border-top: 4px solid var(--accent); }
.ei-policy-bad { border-top: 4px solid var(--alert); }
.ei-list-x li::before { content: '✗'; color: var(--alert); }

/* Mobile responsive */
@media (max-width: 900px) {
  .ei-disc-row { grid-template-columns: 1fr 1fr; gap: 8px; font-size: 13px; }
  .ei-disc-row > div:last-child { grid-column: 1 / -1; }
  .ei-timeline-h { grid-template-columns: 1fr 1fr; }
  .ei-timeline-h::before { display: none; }
  .ei-hero-about .ei-circuit-dot,
  .ei-hero-contact .ei-msg-bubble,
  .ei-hero-bulk .ei-stack-anim,
  .ei-hero-return .ei-rotate-icon,
  .ei-hero-privacy .ei-lock-icon,
  .ei-hero-privacy .ei-shield-wrap,
  .ei-hero-terms .ei-balance-icon,
  .ei-hero-terms .ei-scale-wrap,
  .ei-hero-faq .ei-q-icon,
  .ei-hero-faq .ei-q-wrap,
  .ei-hero-bulk .ei-bulk-graphic,
  .ei-hero-downloads .ei-dl-arrow { display: none; }
}
@media (max-width: 480px) {
  .ei-timeline-h { grid-template-columns: 1fr; }
}

/* ============================================
   v3.9 — COMPREHENSIVE MOBILE OPTIMIZATION
============================================ */

/* Better touch targets globally */
@media (max-width: 768px) {
  /* Bigger tap targets */
  a, button, input, select, .ei-btn, .ei-cta-btn {
    min-height: 44px;
  }
  
  /* Top notice bar - mobile friendly */
  .ei-top-strip {
    font-size: 11px !important;
    padding: 6px 8px !important;
    text-align: center;
  }
  .ei-top-strip-inner {
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
  }
  .ei-top-right { gap: 8px !important; }
  .ei-top-right a { font-size: 11px; padding: 2px 6px; }
  
  /* Header */
  .ei-header { padding: 10px 12px !important; }
  .ei-header-inner { gap: 10px !important; }
  .ei-logo { font-size: 18px !important; }
  .ei-logo-tag { font-size: 9px !important; letter-spacing: 0.3px !important; }
  
  /* Search bar - hide categories dropdown on mobile, show only search */
  .ei-search { 
    flex-direction: column; 
    border-radius: var(--radius);
  }
  .ei-search-cat {
    display: none !important;
  }
  .ei-search input {
    border-radius: var(--radius) !important;
    border-right: 2px solid var(--primary) !important;
    height: 40px;
    font-size: 14px;
    padding: 0 12px;
  }
  .ei-search button {
    border-radius: 0 var(--radius) var(--radius) 0 !important;
    height: 40px;
    width: 50px;
  }
  
  /* Account & Cart icons */
  .ei-header-actions { gap: 8px !important; }
  .ei-acct-link { padding: 6px 8px !important; }
  .ei-acct-icon { font-size: 18px !important; }
  .ei-acct-link span { display: none; }
  .ei-cart-btn { padding: 6px 12px !important; gap: 6px !important; }
  .ei-cart-icon { font-size: 18px !important; }
  .ei-cart-info { gap: 0 !important; }
  .ei-cart-count { font-size: 11px !important; }
  .ei-cart-total { font-size: 13px !important; }

  /* Navigation */
  .ei-nav { padding: 0 !important; }
  .ei-nav-inner { padding: 0 12px !important; flex-wrap: wrap; }
  .ei-nav-menu {
    overflow-x: auto;
    flex-wrap: nowrap !important;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 8px 0;
  }
  .ei-nav-menu::-webkit-scrollbar { display: none; }
  .ei-nav-menu > li > a {
    font-size: 13px !important;
    padding: 8px 12px !important;
    white-space: nowrap;
  }
  .ei-cat-btn {
    font-size: 13px !important;
    padding: 8px 12px !important;
    flex-shrink: 0;
  }
  /* Hide New Arrivals on small mobile, show on tablet */
  .ei-nav-badge-link {
    margin-left: 8px !important;
    padding: 4px 10px !important;
    font-size: 10px !important;
    height: 22px !important;
  }
  
  /* Hero slider - bigger on mobile */
  .ei-slider {
    height: auto !important;
    min-height: 380px;
    margin: 12px;
  }
  .ei-slide {
    padding: 24px 18px !important;
    flex-direction: column !important;
    text-align: center;
    justify-content: center;
  }
  .ei-slide-content {
    max-width: 100% !important;
  }
  .ei-slide-tag {
    font-size: 11px !important;
    padding: 4px 10px !important;
    margin-bottom: 10px;
  }
  .ei-slide-title {
    font-size: 22px !important;
    margin-bottom: 10px !important;
    line-height: 1.2;
  }
  .ei-slide-desc {
    font-size: 13px !important;
    margin-bottom: 16px !important;
    line-height: 1.4;
  }
  .ei-slide-btns {
    justify-content: center;
    gap: 8px;
  }
  .ei-slide-btn-primary, .ei-slide-btn-ghost {
    padding: 10px 18px !important;
    font-size: 13px !important;
  }
  .ei-slide-visual {
    width: 80px !important;
    height: 80px !important;
    margin-top: 10px;
  }
  .ei-slider-arrow {
    width: 32px !important;
    height: 32px !important;
    font-size: 18px !important;
  }
  .ei-slider-prev { left: 8px !important; }
  .ei-slider-next { right: 8px !important; }
  .ei-slider-dots {
    bottom: 12px !important;
    gap: 6px !important;
  }
  
  /* Mini banners - 2 cols mobile */
  .ei-mini-banners {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    padding: 0 12px;
  }
  .ei-mini-banner {
    padding: 10px 12px !important;
  }
  .ei-mb-title { font-size: 13px !important; }
  .ei-mb-tag { font-size: 9px !important; }
  .ei-mb-price { font-size: 11px !important; }
  
  /* Trust bar - 2 cols mobile, scrollable */
  .ei-trust-inner {
    grid-template-columns: 1fr 1fr;
    gap: 6px !important;
    padding: 10px !important;
  }
  .ei-trust-item {
    padding: 8px !important;
    font-size: 11px;
  }
  .ei-trust-item .ti {
    font-size: 18px !important;
    width: 28px !important;
    height: 28px !important;
  }
  .ei-trust-item strong {
    font-size: 12px;
    display: block;
  }
  
  /* Section headings */
  .ei-sec-title { font-size: 18px !important; }
  .ei-sec-hd { padding: 0 12px; flex-wrap: wrap; gap: 8px; }
  
  /* Categories grid - 2 cols on mobile */
  .ei-cat-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    padding: 0 12px;
  }
  .ei-cat-card {
    padding: 14px 10px !important;
  }
  .ei-cat-icon {
    font-size: 32px !important;
  }
  .ei-cat-name {
    font-size: 13px !important;
  }
  
  /* Product grid - 2 cols mobile */
  ul.products,
  .ei-prod-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    padding: 0 12px;
  }
  ul.products li.product,
  .ei-prod-card {
    padding: 8px !important;
  }
  ul.products li.product .woocommerce-loop-product__title,
  .ei-prod-title {
    font-size: 13px !important;
    line-height: 1.3 !important;
    min-height: 34px;
  }
  .ei-prod-price, .price {
    font-size: 14px !important;
  }
  
  /* Footer - stack on mobile */
  .ei-footer-inner {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    padding: 24px 16px !important;
  }
  .ei-footer-col h4 {
    font-size: 15px !important;
  }
  .ei-newsletter {
    padding: 24px 16px !important;
  }
  .ei-nl-form {
    flex-direction: column;
    gap: 8px;
  }
  
  /* Floating WhatsApp - smaller on mobile */
  .ei-wa-fab {
    width: 52px !important;
    height: 52px !important;
    bottom: 16px !important;
    right: 16px !important;
    font-size: 24px !important;
  }
  
  /* Page hero - mobile */
  .ei-page-hero {
    padding: 32px 16px !important;
    margin-bottom: 16px;
    border-radius: var(--radius) !important;
  }
  .ei-page-hero h1 {
    font-size: 24px !important;
    line-height: 1.2;
  }
  .ei-page-hero p {
    font-size: 13px !important;
  }
  .ei-page-tag {
    font-size: 11px !important;
    padding: 4px 12px !important;
  }
  
  /* Page sections */
  .ei-page-section {
    padding: 24px 12px !important;
  }
  .ei-section-title {
    font-size: 20px !important;
    margin-bottom: 20px !important;
  }
  
  /* Cards in pages - single col mobile */
  .ei-features-grid,
  .ei-contact-grid,
  .ei-zones-grid,
  .ei-help-grid,
  .ei-steps-grid,
  .ei-stats-grid,
  .ei-downloads-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .ei-feature-card,
  .ei-contact-card,
  .ei-zone-card,
  .ei-step-card {
    padding: 20px 16px !important;
  }
  .ei-feature-icon,
  .ei-contact-icon,
  .ei-zone-icon {
    font-size: 36px !important;
  }
  
  /* Stats - 2 cols mobile */
  .ei-stats-grid {
    grid-template-columns: 1fr 1fr !important;
  }
  .ei-stat-num { font-size: 28px !important; }
  
  /* Mission Vision */
  .ei-mv-card { padding: 20px 16px !important; }
  
  /* Discount table - mobile friendly */
  .ei-discount-table {
    font-size: 13px;
  }
  .ei-disc-row {
    grid-template-columns: 1fr !important;
    gap: 4px !important;
    padding: 12px 14px !important;
    text-align: left;
  }
  .ei-disc-head {
    display: none !important;
  }
  .ei-disc-row > div:first-child {
    font-weight: 600;
    color: var(--navy);
  }
  .ei-disc-row > div:nth-child(2) {
    color: var(--accent);
    font-size: 16px;
  }
  
  /* Track tracker - vertical on mobile */
  .ei-tracker-demo {
    flex-direction: column !important;
    gap: 0 !important;
    padding: 24px 16px !important;
  }
  .ei-track-step {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
  }
  .ei-track-step .ei-track-circle {
    margin: 0 !important;
    flex-shrink: 0;
  }
  .ei-track-line {
    width: 3px !important;
    height: 30px !important;
    margin: 0 0 0 27px !important;
  }
  
  /* Refund timeline horizontal -> vertical */
  .ei-timeline-h {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .ei-timeline-h::before { display: none !important; }
  
  /* Forms - bigger fields for mobile */
  .ei-contact-form input,
  .ei-contact-form select,
  .ei-contact-form textarea,
  .ei-track-form input {
    padding: 14px !important;
    font-size: 16px !important; /* Prevents iOS zoom */
  }
  .ei-contact-form button,
  .ei-track-form button {
    padding: 16px 24px !important;
    font-size: 15px !important;
    width: 100%;
  }
  
  /* FAQ - smaller padding */
  .ei-faq-item summary {
    font-size: 14px !important;
    padding: 14px 16px !important;
  }
  .ei-faq-item p {
    padding: 0 16px 14px !important;
    font-size: 13px !important;
  }
  
  /* Policy content */
  .ei-policy-content {
    padding: 20px 16px !important;
  }
  .ei-policy-content h2 {
    font-size: 18px !important;
  }
  
  /* Single product page - mobile */
  .woocommerce div.product .product_title {
    font-size: 22px !important;
    line-height: 1.3;
  }
  .woocommerce div.product .price,
  .woocommerce div.product p.price {
    font-size: 22px !important;
  }
  .woocommerce div.product div.images,
  .woocommerce div.product div.summary {
    width: 100% !important;
    float: none !important;
    margin: 0 0 20px !important;
  }
  
  /* Buy Now buttons mobile - already stacked, ensure full width */
  .ei-buy-now-btn,
  .woocommerce div.product form.cart .single_add_to_cart_button,
  .ei-wa-order-btn {
    font-size: 14px !important;
    padding: 14px 16px !important;
    width: 100% !important;
  }
  
  /* Cart page mobile */
  .woocommerce table.shop_table {
    font-size: 13px;
  }
  .woocommerce table.shop_table_responsive tr {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    padding: 8px;
  }
  
  /* Checkout page mobile */
  .woocommerce-checkout #customer_details,
  .woocommerce-checkout #order_review_heading,
  .woocommerce-checkout #order_review {
    width: 100% !important;
    float: none !important;
  }
  .woocommerce form .form-row {
    margin-bottom: 12px;
  }
  .woocommerce form .form-row input.input-text,
  .woocommerce form .form-row textarea {
    padding: 12px 14px !important;
    font-size: 16px !important;
    border-radius: var(--radius);
  }
  
  /* Hide some hero animations on small mobile for performance */
  .ei-hero-track .ei-truck-anim {
    font-size: 32px !important;
  }
  .ei-hero-shipping .ei-ship-truck {
    font-size: 36px !important;
  }
  
  /* CTA section */
  .ei-page-cta {
    padding: 32px 20px !important;
  }
  .ei-page-cta h2 {
    font-size: 22px !important;
  }
  .ei-cta-btn {
    padding: 12px 24px !important;
    font-size: 14px !important;
  }
}

/* Small mobile (under 480px) */
@media (max-width: 480px) {
  /* Even smaller adjustments */
  .ei-page-hero h1 {
    font-size: 20px !important;
  }
  .ei-section-title {
    font-size: 17px !important;
  }
  
  /* Stats - 1 col on tiny phones */
  .ei-stats-grid {
    grid-template-columns: 1fr !important;
  }
  
  /* Hide some decorative animations on tiny screens */
  .ei-hero-anim-bg .ei-circuit-line,
  .ei-hero-anim-bg .ei-circuit-dot {
    display: none;
  }
  
  /* Mini banners - 1 col */
  .ei-mini-banners {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================
   v3.9 — CHECKOUT PAGE PREMIUM POLISH
============================================ */

/* Checkout page wrapper */
.woocommerce-checkout .ei-page-wrap {
  background: var(--bg-alt);
}

/* Section headings on checkout */
.woocommerce-checkout h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Checkout form inputs */
.woocommerce-checkout .form-row input,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
  padding: 12px 14px !important;
  border: 2px solid var(--border) !important;
  border-radius: var(--radius) !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 14px !important;
  transition: var(--transition);
}

.woocommerce-checkout .form-row input:focus,
.woocommerce-checkout .form-row select:focus,
.woocommerce-checkout .form-row textarea:focus {
  outline: none !important;
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(0,102,255,0.1) !important;
}

/* Order review table */
.woocommerce-checkout-review-order-table {
  background: white;
  border-radius: var(--radius-lg) !important;
  overflow: hidden;
  border: 1px solid var(--border);
}
.woocommerce-checkout-review-order-table thead {
  background: var(--primary);
  color: white;
}
.woocommerce-checkout-review-order-table thead th {
  padding: 14px !important;
  font-weight: 600;
}
.woocommerce-checkout-review-order-table tbody td,
.woocommerce-checkout-review-order-table tfoot td,
.woocommerce-checkout-review-order-table tfoot th {
  padding: 14px !important;
  border-bottom: 1px solid var(--border-light);
}

/* Payment methods */
#payment {
  background: white;
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid var(--border);
  margin-top: 16px;
}
#payment ul.payment_methods {
  border: none !important;
  padding: 0 !important;
}
#payment ul.payment_methods li {
  background: var(--bg-alt);
  margin-bottom: 8px;
  padding: 14px !important;
  border-radius: var(--radius);
  transition: var(--transition);
  border: 2px solid transparent;
}
#payment ul.payment_methods li:hover {
  background: var(--primary-50);
  border-color: var(--primary);
}
#payment ul.payment_methods li input[type="radio"] {
  margin-right: 8px;
}
#payment ul.payment_methods li label {
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
}

/* Place Order button - premium animated */
#place_order {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%) !important;
  color: white !important;
  padding: 16px 32px !important;
  border-radius: var(--radius) !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  width: 100% !important;
  border: none !important;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  margin-top: 16px;
  box-shadow: 0 4px 16px rgba(0,102,255,0.25);
  text-transform: none !important;
  letter-spacing: 0.3px;
  animation: ei-place-order-pulse 2s ease infinite;
}
#place_order::before {
  content: '🔒 ';
  margin-right: 4px;
}
#place_order:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,102,255,0.35);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%) !important;
}
@keyframes ei-place-order-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(0,102,255,0.25); }
  50% { box-shadow: 0 4px 24px rgba(0,102,255,0.45); }
}

/* Coupon section */
.woocommerce-form-coupon-toggle {
  margin-bottom: 20px;
  padding: 12px 16px;
  background: linear-gradient(135deg, #FFB800 0%, #FF8C00 100%);
  border-radius: var(--radius);
  color: white;
}
.woocommerce-form-coupon-toggle a {
  color: white !important;
  font-weight: 600;
  text-decoration: none;
}
.woocommerce-form-coupon-toggle::before {
  content: '🎟️ ';
}

/* Login form on checkout */
.woocommerce-form-login-toggle {
  margin-bottom: 20px;
  padding: 12px 16px;
  background: var(--primary-50);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
}

/* Trust badges section after checkout form */
.ei-checkout-trust {
  background: white;
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-top: 20px;
  border: 1px solid var(--border);
}
.ei-checkout-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  text-align: center;
}
.ei-ct-item {
  padding: 10px;
  font-size: 12px;
  color: var(--text2);
}
.ei-ct-item .ei-ct-icon {
  font-size: 24px;
  display: block;
  margin-bottom: 4px;
}
.ei-ct-item b {
  display: block;
  color: var(--navy);
  font-size: 12px;
  margin-bottom: 2px;
}

@media (max-width: 768px) {
  .ei-checkout-trust-grid {
    grid-template-columns: 1fr 1fr;
  }
}


/* ============================================
   v3.9 — CHECKOUT HELP BANNER
============================================ */
.ei-checkout-help {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(37,211,102,0.25);
}
.ei-ch-icon {
  font-size: 36px;
  animation: ei-wa-pulse 2s ease infinite;
  flex-shrink: 0;
}
.ei-ch-text {
  flex: 1;
}
.ei-ch-text b {
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
}
.ei-ch-text span {
  font-size: 13px;
  opacity: 0.9;
}
.ei-ch-btn {
  background: white;
  color: #128C7E;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition);
  flex-shrink: 0;
}
.ei-ch-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  color: #0A6F62;
}

@media (max-width: 600px) {
  .ei-checkout-help {
    flex-direction: column;
    text-align: center;
  }
  .ei-ch-text { text-align: center; }
  .ei-ch-btn { width: 100%; padding: 12px; }
}

/* ============================================
   v3.9 — ILLUSTRATION SECTIONS
============================================ */

/* Hero illustration on right side */
.ei-hero-illustration {
  width: 240px;
  height: 240px;
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  opacity: 0.95;
  animation: ei-illust-float 4s ease-in-out infinite;
}
@keyframes ei-illust-float {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-55%) translateX(-5px); }
}
@media (max-width: 768px) {
  .ei-hero-illustration {
    display: none;
  }
}

/* Section illustration */
.ei-section-illustration {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 0 auto 20px;
  display: block;
  animation: ei-fade-up 0.8s ease both;
}


/* ============================================
   v4.0 — CRITICAL MOBILE FIXES
============================================ */

/* PAGE HERO - Fix collapsed hero on mobile */
@media (max-width: 768px) {
  .ei-page-hero {
    padding: 40px 20px !important;
    min-height: 200px !important;
    margin: 12px !important;
    border-radius: var(--radius-lg) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0066FF 0%, #0047B3 50%, #0A2540 100%) !important;
  }
  .ei-page-hero-content {
    text-align: center;
    width: 100%;
  }
  .ei-page-hero h1 {
    font-size: 26px !important;
    line-height: 1.2 !important;
    margin-bottom: 10px !important;
  }
  .ei-page-hero p {
    font-size: 13px !important;
    line-height: 1.5;
    margin: 0 auto;
    max-width: 90%;
  }
  .ei-page-tag {
    display: inline-block !important;
    margin-bottom: 12px !important;
  }
  
  /* Background animations - keep them but small */
  .ei-hero-anim-bg {
    display: block !important;
    overflow: hidden;
  }
  
  /* Hide ONLY decorative positioned animations on mobile, NOT the gradient */
  .ei-hero-track .ei-truck-anim {
    font-size: 28px !important;
    bottom: 15% !important;
  }
  .ei-hero-track .ei-track-road {
    bottom: 13% !important;
    height: 1px !important;
  }
  .ei-hero-shipping .ei-ship-truck {
    font-size: 32px !important;
    bottom: 10% !important;
  }
  .ei-hero-shipping .ei-ship-box {
    font-size: 20px !important;
    opacity: 0.4 !important;
  }
  
  /* Hide ONLY the right-side floating icons that overlap with text */
  .ei-hero-return .ei-rotate-icon,
  .ei-hero-privacy .ei-lock-icon,
  .ei-hero-terms .ei-balance-icon,
  .ei-hero-faq .ei-q-icon,
  .ei-hero-bulk .ei-stack-anim,
  .ei-hero-contact .ei-msg-bubble,
  .ei-hero-about .ei-circuit-dot {
    opacity: 0.15 !important;
    font-size: 50px !important;
    right: 5% !important;
  }
  
  /* But keep the page section padding consistent */
  .ei-page-section {
    padding: 24px 12px !important;
  }
}

/* Even smaller phones */
@media (max-width: 480px) {
  .ei-page-hero {
    min-height: 180px !important;
    padding: 32px 16px !important;
  }
  .ei-page-hero h1 {
    font-size: 22px !important;
  }
}

/* FIX: View All / Read More buttons - keep them blue */
.ei-sec-view-all,
.ei-cat-card .ei-cat-link,
button.ei-view-all,
a.ei-view-all,
.button.alt,
.woocommerce-page button.button.alt {
  background: var(--primary) !important;
  color: white !important;
  border: none !important;
}

/* "View All" link in section headers */
.ei-sec-hd a {
  color: var(--primary) !important;
  font-weight: 600 !important;
  font-size: 13px;
  text-decoration: none;
}
.ei-sec-hd a:hover {
  color: var(--primary-dark) !important;
}


/* ============================================
   v4.0 — INSTAGRAM REELS SECTION
============================================ */
.ei-instagram {
  padding: 40px 24px;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  margin: 24px 0;
}
.ei-ig-header {
  text-align: center;
  margin-bottom: 24px;
}
.ei-ig-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737, #FCAF45);
  color: white;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}
.ei-ig-tag::before {
  content: '📸';
}
.ei-ig-title {
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 8px;
}
.ei-ig-title span {
  background: linear-gradient(90deg, #833AB4, #FD1D1D, #FCAF45);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ei-ig-subtitle {
  font-size: 14px;
  color: var(--text2);
}

.ei-ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.ei-ig-card {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #F77737 100%);
  cursor: pointer;
  transition: var(--transition);
  display: block;
  text-decoration: none;
}
.ei-ig-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 28px rgba(131,58,180,0.35);
}

.ei-ig-card video,
.ei-ig-card iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

.ei-ig-card-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 16px;
  background: linear-gradient(135deg, rgba(131,58,180,0.9), rgba(253,29,29,0.9), rgba(252,175,69,0.9));
}
.ei-ig-card-fallback .ei-ig-icon {
  font-size: 48px;
  margin-bottom: 12px;
  animation: ei-ig-bounce 2s ease infinite;
}
@keyframes ei-ig-bounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}
.ei-ig-card-fallback h3 {
  color: white !important;
  font-size: 14px;
  margin-bottom: 8px;
  font-weight: 600;
}
.ei-ig-card-fallback p {
  font-size: 11px;
  opacity: 0.9;
  margin: 0;
}

.ei-ig-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
  color: white;
  pointer-events: none;
}
.ei-ig-overlay .ei-ig-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #FD1D1D;
  pointer-events: auto;
}
.ei-ig-overlay .ei-ig-views {
  font-size: 11px;
  font-weight: 600;
}

.ei-ig-cta {
  text-align: center;
  margin-top: 24px;
}
.ei-ig-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #F77737 100%);
  color: white;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(131,58,180,0.3);
}
.ei-ig-follow-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(131,58,180,0.5);
  color: white;
}

/* Mobile Instagram */
@media (max-width: 768px) {
  .ei-ig-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .ei-ig-title {
    font-size: 20px;
  }
  .ei-ig-card-fallback h3 {
    font-size: 12px;
  }
  .ei-ig-card-fallback p {
    font-size: 10px;
  }
  .ei-instagram {
    padding: 24px 12px;
  }
}


/* ============================================
   v4.5 — CUSTOM SVG ICONS (Single Color Blue)
============================================ */
.ti-svg {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 36px !important;
  height: 36px !important;
  background: var(--primary-50);
  border-radius: 8px;
  color: var(--primary);
  flex-shrink: 0;
  transition: var(--transition);
}
.ti-svg svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}
.ei-trust-item:hover .ti-svg {
  background: var(--primary);
  color: white;
  transform: scale(1.08);
}

/* All emoji icons → blue circle backgrounds (consistent style) */
.ei-feature-icon,
.ei-contact-icon,
.ei-zone-icon,
.ei-help-icon,
.ei-step-icon,
.ei-mv-icon,
.ei-dl-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary-50), #DEEBFF);
  border-radius: 14px;
  font-size: 28px !important;
  color: var(--primary);
  margin: 0 auto 14px;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0,102,255,0.08);
}
.ei-feature-card:hover .ei-feature-icon,
.ei-contact-card:hover .ei-contact-icon,
.ei-zone-card:hover .ei-zone-icon,
.ei-step-card:hover .ei-step-icon,
.ei-mv-card:hover .ei-mv-icon,
.ei-help-card:hover .ei-help-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  transform: scale(1.05) rotate(-3deg);
  box-shadow: 0 8px 20px rgba(0,102,255,0.25);
}

/* ============================================
   v4.5 — LIVE SEARCH RESULTS
============================================ */
.ei-search-wrap {
  position: relative;
}

.ei-search-results {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
  border: 1px solid var(--border);
  max-height: 480px;
  overflow-y: auto;
  z-index: 200;
  display: none;
  padding: 8px;
}
.ei-search-results.active {
  display: block;
  animation: ei-fade-up 0.2s ease;
}
.ei-sr-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: var(--radius);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--border-light);
}
.ei-sr-item:last-of-type { border-bottom: none; }
.ei-sr-item:hover {
  background: var(--primary-50);
  color: inherit;
}
.ei-sr-item img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: var(--radius);
  flex-shrink: 0;
  background: var(--bg-alt);
}
.ei-sr-info {
  flex: 1;
  min-width: 0;
}
.ei-sr-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ei-sr-price {
  font-size: 14px;
  color: var(--primary);
  font-weight: 700;
}
.ei-sr-arrow {
  color: var(--muted);
  font-size: 16px;
  flex-shrink: 0;
}
.ei-sr-item:hover .ei-sr-arrow { color: var(--primary); }

.ei-sr-loading,
.ei-sr-empty {
  padding: 24px;
  text-align: center;
  color: var(--text2);
  font-size: 14px;
}
.ei-sr-spin {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid var(--primary);
  border-top-color: transparent;
  border-radius: 50%;
  animation: ei-spin 0.6s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}
@keyframes ei-spin {
  to { transform: rotate(360deg); }
}
.ei-sr-more {
  display: block;
  padding: 12px;
  text-align: center;
  background: var(--primary-50);
  color: var(--primary);
  font-weight: 600;
  font-size: 13px;
  border-radius: var(--radius);
  margin-top: 8px;
  text-decoration: none;
  transition: var(--transition);
}
.ei-sr-more:hover {
  background: var(--primary);
  color: white;
}

@media (max-width: 768px) {
  .ei-search-results {
    max-height: 360px;
  }
}

/* ============================================
   v4.5 — RESTORE MOBILE ANIMATIONS (Subtle)
============================================ */
@media (max-width: 768px) {
  /* Bring back hero animations on mobile but smaller/optimized */
  .ei-hero-anim-bg {
    display: block !important;
  }
  
  /* All hero icons: smaller, subtle but visible */
  .ei-hero-track .ei-truck-anim,
  .ei-hero-shipping .ei-ship-truck {
    font-size: 32px !important;
    display: block !important;
    opacity: 0.9 !important;
  }
  .ei-hero-track .ei-track-road {
    display: block !important;
  }
  .ei-hero-shipping .ei-ship-box {
    display: block !important;
    font-size: 18px !important;
  }
  .ei-hero-return .ei-rotate-icon,
  .ei-hero-privacy .ei-lock-icon,
  .ei-hero-terms .ei-balance-icon,
  .ei-hero-faq .ei-q-icon {
    display: block !important;
    font-size: 60px !important;
    opacity: 0.18 !important;
    right: 8% !important;
  }
  .ei-hero-bulk .ei-stack-anim {
    display: block !important;
    transform: scale(0.7) translateY(-50%) !important;
    right: 5% !important;
  }
  .ei-hero-contact .ei-msg-bubble {
    display: block !important;
    font-size: 24px !important;
  }
  .ei-hero-about .ei-circuit-line,
  .ei-hero-about .ei-circuit-dot {
    display: block !important;
  }
  .ei-hero-about .ei-circuit-dot {
    width: 6px !important;
    height: 6px !important;
  }
  .ei-hero-downloads .ei-dl-arrow {
    display: block !important;
    font-size: 24px !important;
  }
}

/* ============================================
   v4.5 — MOBILE HOMEPAGE PREMIUM POLISH
============================================ */
@media (max-width: 768px) {
  /* Trust bar - premium card style */
  .ei-trust {
    padding: 0 12px !important;
    margin: 16px 0 !important;
  }
  .ei-trust-inner {
    background: white !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06) !important;
    padding: 16px !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    border: 1px solid var(--border-light);
  }
  .ei-trust-item {
    padding: 10px !important;
    background: var(--primary-50);
    border-radius: var(--radius);
    transition: var(--transition);
  }
  .ei-trust-item:hover {
    background: var(--primary);
    color: white !important;
  }
  .ei-trust-item:hover strong { color: white !important; }
  .ei-trust-item:hover .ti-svg {
    background: white !important;
    color: var(--primary);
  }
  .ti-svg {
    width: 32px !important;
    height: 32px !important;
  }
  .ti-svg svg {
    width: 18px;
    height: 18px;
  }
  .ei-trust-item strong {
    font-size: 12px !important;
    margin-bottom: 1px;
  }
  .ei-trust-item div {
    font-size: 10px !important;
    line-height: 1.3;
  }
  
  /* Section spacing on mobile */
  .ei-page-wrap > div + div {
    margin-top: 24px;
  }
  
  /* Mini banners polish */
  .ei-mini-banners {
    padding: 0 12px !important;
    gap: 10px !important;
  }
  .ei-mini-banner {
    padding: 14px 12px !important;
    border-radius: var(--radius) !important;
  }
  .ei-mb-tag {
    font-size: 10px !important;
    margin-bottom: 4px;
  }
  .ei-mb-title {
    font-size: 14px !important;
    margin-bottom: 8px;
  }
  .ei-mb-price {
    font-size: 12px !important;
  }
  
  /* Section heading mobile */
  .ei-sec-hd {
    padding: 0 16px !important;
    margin: 24px 0 12px !important;
    align-items: center !important;
  }
  .ei-sec-title {
    font-size: 18px !important;
    color: var(--navy) !important;
  }
  .ei-sec-hd a {
    font-size: 13px;
    font-weight: 600;
  }
  
  /* Categories section premium */
  .ei-cat-card {
    background: white !important;
    border: 1px solid var(--border-light) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04) !important;
    border-radius: var(--radius-lg) !important;
    padding: 16px 10px !important;
    transition: var(--transition);
  }
  .ei-cat-card:hover {
    box-shadow: var(--shadow-blue) !important;
    border-color: var(--primary) !important;
    transform: translateY(-2px);
  }
  
  /* Product cards premium */
  ul.products li.product,
  .ei-prod-card {
    background: white !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04) !important;
    border: 1px solid var(--border-light) !important;
    overflow: hidden;
  }
  ul.products li.product:hover,
  .ei-prod-card:hover {
    box-shadow: var(--shadow-blue) !important;
    border-color: var(--primary) !important;
    transform: translateY(-2px);
  }
  
  /* Newsletter mobile */
  .ei-newsletter {
    margin: 24px 12px !important;
    border-radius: var(--radius-lg) !important;
  }
}

/* ============================================
   v4.5 — Update hero icon sizes globally for SVG
============================================ */
.ei-trust-item .ti.ti-svg {
  font-size: 0 !important; /* SVG only, no fallback text */
}


/* ============================================
   v4.6 — SCROLLING MARQUEE TOP BAR
============================================ */
.ei-announce-marquee {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  margin-right: 12px;
}
.ei-marquee-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: ei-marquee-scroll 40s linear infinite;
  gap: 16px;
}
.ei-marquee-track:hover {
  animation-play-state: paused;
}
.ei-mq-item {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: white;
  flex-shrink: 0;
}
.ei-mq-sep {
  color: var(--accent-yellow, #FFB800);
  font-size: 8px;
  flex-shrink: 0;
}
@keyframes ei-marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Mobile marquee */
@media (max-width: 768px) {
  .ei-announce {
    padding: 8px 0 !important;
    flex-direction: column;
  }
  .ei-announce-marquee {
    margin-right: 0 !important;
    margin-bottom: 0;
    width: 100%;
  }
  .ei-mq-item {
    font-size: 12px;
  }
  .ei-marquee-track {
    animation-duration: 30s;
  }
  .ei-announce-r {
    display: none !important;
  }
}

/* ============================================
   v4.6 — COMPACT MOBILE HEADER (pixelledlights style)
============================================ */
@media (max-width: 768px) {
  /* Header main - horizontal flex layout */
  .ei-header {
    padding: 12px 14px !important;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  }
  .ei-header-main {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    flex-wrap: nowrap !important;
    width: 100%;
  }
  
  /* Logo - compact, on left */
  .ei-logo {
    flex-shrink: 0;
    text-decoration: none;
  }
  .ei-logo-text {
    font-size: 16px !important;
    line-height: 1 !important;
    margin: 0 !important;
  }
  .ei-logo-tag {
    display: none !important; /* Hide tagline on mobile */
  }
  
  /* Search - flexible, takes available space */
  .ei-search-wrap {
    flex: 1 !important;
    margin: 0 !important;
    min-width: 0;
  }
  .ei-search-wrap select {
    display: none !important;
  }
  .ei-search-wrap input {
    width: 100% !important;
    padding: 9px 12px !important;
    font-size: 13px !important;
    height: 38px !important;
    border: 1.5px solid var(--border) !important;
    border-radius: var(--radius) !important;
    border-right: none !important;
  }
  .ei-search-wrap input:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 2px rgba(0,102,255,0.1);
  }
  .ei-search-btn {
    width: 38px !important;
    height: 38px !important;
    padding: 0 !important;
    border-radius: 0 var(--radius) var(--radius) 0 !important;
    flex-shrink: 0;
    margin-left: -1px;
  }
  
  /* Header actions - compact icons only */
  .ei-header-actions {
    flex-shrink: 0;
    gap: 6px !important;
    display: flex !important;
  }
  .ei-haction {
    padding: 6px !important;
    background: var(--primary-50);
    border-radius: var(--radius);
    flex-direction: column;
    gap: 0 !important;
    min-width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .ei-haction span:first-child {
    font-size: 16px !important;
  }
  .ei-haction span:not(:first-child) {
    display: none !important;
  }
  
  /* Cart action compact */
  .ei-cart-action {
    background: var(--primary) !important;
    color: white !important;
    padding: 6px 10px !important;
    border-radius: var(--radius);
    height: 38px;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    flex-shrink: 0;
  }
  .ei-cart-action .ei-icon {
    font-size: 16px !important;
  }
  .ei-cart-info {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start;
    line-height: 1.1;
    gap: 0 !important;
  }
  .ei-cart-qty {
    font-size: 9px !important;
    color: rgba(255,255,255,0.85) !important;
  }
  .ei-cart-amt {
    font-size: 12px !important;
    font-weight: 700 !important;
    color: white !important;
  }
  
  /* Search results - full width on mobile */
  .ei-search-results {
    position: fixed !important;
    left: 8px !important;
    right: 8px !important;
    top: auto !important;
    margin-top: 4px;
  }
}

/* Even smaller phones */
@media (max-width: 380px) {
  .ei-logo-text {
    font-size: 14px !important;
  }
  .ei-search-wrap input {
    font-size: 12px !important;
  }
  .ei-cart-info {
    display: none !important;
  }
  .ei-cart-action {
    padding: 6px 10px !important;
  }
}

/* ============================================
   v4.6 — LIVE SEARCH FIX (was not triggering)
============================================ */
.ei-search-results {
  display: none;
}
.ei-search-results.active {
  display: block !important;
}


/* ============================================
   v4.7 — CATEGORY SVG ICONS (Single Blue Color)
============================================ */

/* Sidebar category icons */
.ei-csb-svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--primary-50);
  border-radius: 6px;
  color: var(--primary);
  flex-shrink: 0;
  margin-right: 8px;
  transition: var(--transition);
}
.ei-csb-svg svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}
.ei-csb-item:hover .ei-csb-svg {
  background: var(--primary);
  color: white;
  transform: scale(1.05);
}

/* Main category cards icons */
.cc-svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary-50), #DEEBFF);
  border-radius: 14px;
  color: var(--primary);
  margin: 0 auto 12px;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0,102,255,0.1);
}
.cc-svg svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  stroke-width: 2;
}
.ei-cat-card:hover .cc-svg {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 8px 20px rgba(0,102,255,0.3);
}

/* Mobile category icons */
@media (max-width: 768px) {
  .cc-svg {
    width: 48px !important;
    height: 48px !important;
  }
  .cc-svg svg {
    width: 26px !important;
    height: 26px !important;
  }
}

/* ============================================
   v4.7 — DESKTOP HEADER FIX (Compact + Live Search)
============================================ */
@media (min-width: 769px) {
  /* Ensure search results show on desktop too */
  .ei-search-results {
    width: 100%;
    min-width: 400px;
  }
  
  /* Header layout - clean horizontal */
  .ei-header-main {
    display: flex !important;
    align-items: center !important;
    gap: 24px !important;
    max-width: 1280px;
    margin: 0 auto;
  }
  .ei-search-wrap {
    flex: 1;
    max-width: 600px;
    position: relative;
  }
}

/* ============================================
   v4.7 — SECTION TITLES Without Emoji 
============================================ */
.ei-sec-title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ei-sec-title-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--primary-50);
  border-radius: 8px;
  color: var(--primary);
}
.ei-sec-title-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
}


/* ============================================
   v4.7 — IMPROVED MOBILE HEADER (Cleaner Layout)
============================================ */
@media (max-width: 768px) {
  /* Header polish */
  .ei-header {
    padding: 10px 12px !important;
    background: white !important;
    box-shadow: 0 1px 0 var(--border) !important;
    border-bottom: 1px solid var(--border-light);
  }
  
  .ei-header-main {
    display: grid !important;
    grid-template-columns: auto 1fr auto !important;
    gap: 8px !important;
    align-items: center !important;
  }
  
  /* Row 1: Logo (left) + Cart icon (right) */
  /* Row 2: Search bar full width */
  .ei-header-main {
    grid-template-areas: 
      "logo . actions"
      "search search search" !important;
    grid-template-columns: auto 1fr auto !important;
    row-gap: 10px !important;
  }
  
  .ei-logo {
    grid-area: logo;
  }
  .ei-search-wrap {
    grid-area: search;
    width: 100% !important;
  }
  .ei-header-actions {
    grid-area: actions;
    display: flex !important;
    gap: 6px !important;
    align-items: center;
  }
  
  /* Logo bigger and visible */
  .ei-logo-text {
    font-size: 17px !important;
    font-weight: 700;
    color: var(--navy);
    line-height: 1 !important;
  }
  .ei-logo-text span {
    color: var(--primary);
  }
  .ei-logo-tag {
    display: none !important;
  }
  
  /* Search bar wider */
  .ei-search-wrap {
    display: flex !important;
    align-items: stretch;
    border: 2px solid var(--border) !important;
    border-radius: var(--radius) !important;
    overflow: hidden;
    background: white;
    height: 42px;
  }
  .ei-search-wrap:focus-within {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(0,102,255,0.1);
  }
  .ei-search-wrap select {
    display: none !important;
  }
  .ei-search-wrap input {
    flex: 1 !important;
    border: none !important;
    padding: 0 14px !important;
    font-size: 14px !important;
    height: 100% !important;
    background: transparent;
    outline: none !important;
    width: 100% !important;
  }
  .ei-search-btn {
    width: 50px !important;
    height: 100% !important;
    background: var(--primary) !important;
    color: white !important;
    border: none !important;
    border-radius: 0 !important;
    flex-shrink: 0;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .ei-search-btn svg {
    stroke: white !important;
  }
  
  /* Header actions compact */
  .ei-header-actions {
    height: 42px;
  }
  .ei-haction {
    height: 42px;
    width: 42px;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--primary-50);
    border-radius: var(--radius);
    flex-direction: row !important;
    gap: 0 !important;
  }
  .ei-haction span:first-child {
    font-size: 18px !important;
    color: var(--primary);
  }
  .ei-haction span:not(:first-child) {
    display: none !important;
  }
  
  /* Cart - bigger more prominent */
  .ei-cart-action {
    background: var(--primary) !important;
    color: white !important;
    padding: 0 12px !important;
    height: 42px !important;
    border-radius: var(--radius) !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    min-width: auto;
  }
  .ei-cart-action .ei-icon {
    font-size: 16px !important;
    color: white !important;
  }
  .ei-cart-info {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start;
    line-height: 1.1;
    gap: 0 !important;
  }
  .ei-cart-qty {
    font-size: 9px !important;
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
  }
  .ei-cart-amt {
    font-size: 11px !important;
    font-weight: 700 !important;
    color: white !important;
  }
  
  /* Search results dropdown - mobile */
  .ei-search-results {
    position: fixed !important;
    left: 12px !important;
    right: 12px !important;
    top: auto !important;
    margin-top: 4px;
    width: auto !important;
    max-height: 60vh !important;
    z-index: 9999;
  }
}

/* Tiny phones */
@media (max-width: 380px) {
  .ei-logo-text {
    font-size: 15px !important;
  }
  .ei-haction, .ei-cart-action {
    height: 38px !important;
  }
  .ei-cart-action {
    padding: 0 10px !important;
  }
  .ei-cart-info {
    display: none !important; /* Show only icon on tiny phones */
  }
}


/* SVG icons in header */
.ei-icon svg {
  display: block;
  stroke: currentColor;
}
.ei-haction .ei-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ei-cart-action .ei-icon svg {
  stroke: white;
}


/* ============================================
   v4.8 — DELIVERY PROMISE BOX (Product Page)
   Highlights pincode COD checker integration
============================================ */
.eiss-pincode-checker {
  margin-top: 16px !important;
  padding: 16px !important;
  background: linear-gradient(135deg, #F0F7FF, #E6F2FF) !important;
  border: 1.5px solid var(--primary-50) !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: 0 4px 12px rgba(0,102,255,0.06);
}

.eiss-pin-label {
  font-family: 'Poppins', sans-serif !important;
  color: var(--navy) !important;
}

.eiss-pin-input-wrap input {
  font-family: 'Poppins', sans-serif !important;
}

.eiss-pin-input-wrap button {
  font-family: 'Poppins', sans-serif !important;
  background: var(--primary) !important;
  border-radius: var(--radius) !important;
}

.eiss-pin-input-wrap button:hover {
  background: var(--primary-dark) !important;
  box-shadow: 0 4px 12px rgba(0,102,255,0.3);
}

.eiss-pin-card {
  font-family: 'Poppins', sans-serif !important;
  border-color: var(--border) !important;
}

/* Delivery estimate row in checkout */
.eiss-delivery-estimate th,
.eiss-delivery-estimate td {
  background: var(--primary-50) !important;
  padding: 14px !important;
  border-radius: var(--radius);
}

.eiss-delivery-estimate th {
  font-weight: 700 !important;
  color: var(--navy) !important;
}

.eiss-delivery-estimate td b {
  font-size: 16px !important;
  color: var(--primary) !important;
}

@media (max-width: 768px) {
  .eiss-pin-input-wrap {
    flex-direction: column;
  }
  .eiss-pin-input-wrap button {
    width: 100%;
  }
}


/* ============================================
   FRONT PAGE: PRODUCT ROWS = SINGLE-LINE SLIDER
   (Hot Selling / New Arrivals / On Sale — ek line, baki slide)
============================================ */
.ei-is-home .woocommerce ul.products {
  display: flex !important;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.ei-is-home .woocommerce ul.products::-webkit-scrollbar { display: none; }
.ei-is-home .woocommerce ul.products li.product {
  flex: 0 0 calc((100% - 48px) / 5) !important;
  min-width: calc((100% - 48px) / 5);
}
@media (max-width: 1200px) {
  .ei-is-home .woocommerce ul.products li.product {
    flex-basis: calc((100% - 36px) / 4) !important;
    min-width: calc((100% - 36px) / 4);
  }
}
@media (max-width: 768px) {
  .ei-is-home .woocommerce ul.products li.product {
    flex-basis: calc((100% - 12px) / 2) !important;
    min-width: calc((100% - 12px) / 2);
  }
}

/* ============================================
   TRUST BAR + SHOP BY CATEGORY: HAMESHA 1 LINE
   (chhoti screen par horizontal scroll, wrap nahi)
============================================ */
.ei-trust-inner {
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.ei-trust-inner::-webkit-scrollbar { display: none; }
.ei-trust-item { flex: 0 0 auto; }

.ei-cat-cards {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.ei-cat-cards::-webkit-scrollbar { display: none; }
.ei-cat-cards .ei-cat-card {
  flex: 1 0 auto;
  min-width: 104px;
}
@media (max-width: 1200px) {
  .ei-cat-cards .ei-cat-card { padding: 12px 6px 10px; }
}

/* ============================================
   MOBILE POLISH (12-Jul-2026)
============================================ */
/* Slider dots: kisi bhi global button style se inflate na ho */
.ei-dot {
  width: 10px !important;
  height: 10px !important;
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  line-height: 0;
  box-sizing: border-box;
}
.ei-dot.active { width: 24px !important; }

@media (max-width: 768px) {
  /* Compact header + chhota logo */
  .ei-header-main { padding: 8px 14px; gap: 10px; }
  .ei-header-main .custom-logo-link img,
  .ei-header-main .custom-logo { max-height: 42px; width: auto; }
  /* Nav: ek line, scrollable, New Arrivals overlap nahi karega */
  .ei-nav-inner {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    align-items: center;
    gap: 6px;
    padding: 0 12px;
  }
  .ei-nav-inner::-webkit-scrollbar { display: none; }
  .ei-nav-menu { flex-wrap: nowrap; }
  .ei-nav-menu li { flex: 0 0 auto; }
  .ei-nav-menu a { white-space: nowrap; }
  .ei-nav-badge, .ei-nav-badge-link { flex: 0 0 auto; white-space: nowrap; margin-left: 8px !important; }
}

/* Brands strip mobile: label upar, list ek line me scroll */
@media (max-width: 768px) {
  .ei-brands-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .ei-brands-list {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    gap: 18px;
    width: 100%;
    scrollbar-width: none;
    padding-bottom: 4px;
  }
  .ei-brands-list::-webkit-scrollbar { display: none; }
  .ei-brand-item { flex: 0 0 auto; white-space: nowrap; font-size: 14px; }
}

/* ============================================
   MOBILE COMPACT (12-Jul-2026): products jaldi dikhe
============================================ */
@media (max-width: 768px) {
  /* Hero banner chhota */
  .ei-hero-wrap { margin: 10px auto !important; padding: 0 12px !important; }
  .ei-slider { min-height: 235px !important; margin: 0 !important; }
  .ei-slide { padding: 16px 14px !important; }
  .ei-slide-tag { margin-bottom: 6px !important; }
  .ei-slide-title { font-size: 18px !important; margin-bottom: 6px !important; }
  .ei-slide-desc { font-size: 12px !important; margin-bottom: 10px !important; }
  .ei-slide-btn-primary, .ei-slide-btn-ghost { padding: 8px 14px !important; font-size: 12px !important; }
  .ei-slide-visual { display: none !important; }
  .ei-slider-dots { bottom: 8px !important; }

  /* Mini banners: 2x2 tall grid ki jagah ek compact scroll line */
  .ei-mini-banners {
    display: flex !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 8px !important;
  }
  .ei-mini-banners::-webkit-scrollbar { display: none; }
  .ei-mini-banner {
    flex: 0 0 46%;
    min-height: 72px !important;
    padding: 10px 12px !important;
  }

  /* Sections ke beech ki doori kam */
  .ei-trust { padding: 6px 0 !important; }
  .ei-sec-hd { margin: 14px 0 10px !important; }
  .ei-page-wrap > div + div { margin-top: 14px !important; }
}

/* Promo banners (Bestseller / New Launch) mobile compact: ek scroll line */
@media (max-width: 768px) {
  .ei-promo-wrap {
    display: flex !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 10px;
    padding: 0 12px 12px !important;
  }
  .ei-promo-wrap::-webkit-scrollbar { display: none; }
  .ei-promo-banner { flex: 0 0 82%; padding: 14px 16px !important; }
  .ei-pb-title { font-size: 16px !important; margin-bottom: 2px !important; }
  .ei-pb-desc { font-size: 11px !important; margin-bottom: 8px !important; }
  .ei-pb-amount { font-size: 20px !important; }
  .ei-promo-banner .ei-btn { font-size: 11px !important; padding: 6px 12px !important; margin-top: 4px !important; }
}

/* ============================================
   RLH NEW FEATURES (12-Jul-2026)
   Sale strip + Budget chips + Video section
============================================ */
.rlh-sale-strip {
  background: linear-gradient(90deg, #ff512f, #dd2476);
  color: #fff;
  text-align: center;
  padding: 7px 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.rlh-sale-timer {
  background: rgba(0,0,0,0.25);
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.rlh-budget-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-bottom: 24px;
}
.rlh-budget-row::-webkit-scrollbar { display: none; }
.rlh-budget-chip {
  flex: 0 0 auto;
  background: #fff;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  padding: 9px 18px;
  border-radius: 999px;
  text-decoration: none;
  transition: all .15s;
}
.rlh-budget-chip:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.rlh-budget-premium { background: linear-gradient(90deg, #f7971e, #ffd200); border-color: transparent; color: #1a1a1a; }

.rlh-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}
.rlh-video-card {
  position: relative;
  padding-top: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}
.rlh-video-card iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

@media (max-width: 768px) {
  .rlh-sale-strip { font-size: 11px; padding: 6px 10px; gap: 8px; }
  .rlh-budget-chip { font-size: 12px; padding: 8px 14px; }
  .rlh-video-grid { display: flex; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .rlh-video-grid::-webkit-scrollbar { display: none; }
  .rlh-video-card { flex: 0 0 78%; padding-top: 0; height: 180px; }
}

/* ============================================
   v4.9 — PIXEL LED FRONT PAGE REDESIGN
   Hero slides: Pixel LED / Wedding Decor /
   Controllers / SMPS — festive gradients + anims
============================================ */

/* Slide gradients — ORIGINAL theme gradients (restored) */
.ei-slide-1 { background: linear-gradient(135deg, #0066FF 0%, #0047B3 50%, #002B6B 100%); }
.ei-slide-2 { background: linear-gradient(135deg, #00B8D9 0%, #0066FF 50%, #0047B3 100%); }
.ei-slide-3 { background: linear-gradient(135deg, #FF4757 0%, #C73E5A 40%, #6B1B7E 100%); }
.ei-slide-4 { background: linear-gradient(135deg, #00D4AA 0%, #0066FF 60%, #0047B3 100%); }

/* --- Slide 1: animated scene — bachche ghar decorate karte hue --- */
.rlh-scene { width: 100%; height: 100%; overflow: visible; }
.rlh-wire { fill: none; stroke: rgba(255,255,255,0.4); stroke-width: 2; }

/* bachcha 1 ka haath — light lagane ki motion */
.rlh-arm {
  animation: rlhArm 2.2s ease-in-out infinite;
  transform-origin: 60px 118px;
  transform-box: view-box;
}
@keyframes rlhArm {
  0%, 100% { transform: rotate(0deg); }
  50%      { transform: rotate(-16deg); }
}

/* bachcha 2 — halka sa bob (excited) */
.rlh-kid2 {
  animation: rlhKidBob 2.6s ease-in-out infinite;
  transform-box: view-box;
}
@keyframes rlhKidBob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-2.5px); }
}

/* haath ki string — jhoolti hui */
.rlh-sway2 {
  animation: rlhSway2 3s ease-in-out infinite;
  transform-origin: 193px 162px;
  transform-box: view-box;
}
@keyframes rlhSway2 {
  0%, 100% { transform: rotate(-2deg); }
  50%      { transform: rotate(2.5deg); }
}

/* windows — garam roshni ka glow */
.rlh-win {
  animation: rlhWinGlow 2.8s ease-in-out infinite;
}
@keyframes rlhWinGlow {
  0%, 100% { opacity: 0.5; }
  50%      { opacity: 1; }
}
.rlh-px { animation: rlhTwinkle 1.8s ease-in-out infinite; }
.rlh-bulb { animation: rlhBulb 2.4s ease-in-out infinite; }
.rlh-px.d1, .rlh-hang i.d1, .rlh-bulb.d1 { animation-delay: 0s; }
.rlh-px.d2, .rlh-hang i.d2, .rlh-bulb.d2 { animation-delay: 0.4s; }
.rlh-px.d3, .rlh-hang i.d3, .rlh-bulb.d3 { animation-delay: 0.8s; }
.rlh-px.d4, .rlh-hang i.d4, .rlh-bulb.d4 { animation-delay: 1.2s; }
.rlh-px.d5, .rlh-hang i.d5, .rlh-bulb.d5 { animation-delay: 1.6s; }
.rlh-px.d6, .rlh-hang i.d6, .rlh-bulb.d6 { animation-delay: 2s; }
@keyframes rlhTwinkle {
  0%, 100% { opacity: 0.25; }
  50%      { opacity: 1; }
}
/* realistic bulbs dim softly, never fully off */
@keyframes rlhBulb {
  0%, 100% { opacity: 0.62; }
  50%      { opacity: 1; }
}

/* --- Floating (gentle 3D hover) for hero SVG objects --- */
.rlh-float { animation: rlhFloat 4.5s ease-in-out infinite; }
@keyframes rlhFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}

/* --- Slide 2: realistic hanging fairy-light strings (glass bulbs, caps, sway) --- */
.rlh-hang-wrap { display: flex; gap: 26px; align-items: flex-start; height: 100%; justify-content: center; padding-top: 8px; }
.rlh-hang { position: relative; display: flex; flex-direction: column; align-items: center; gap: 18px; padding-top: 6px; transform-origin: top center; animation: rlhSway 4s ease-in-out infinite; }
.rlh-h2 { animation-delay: 0.7s; }
.rlh-h3 { animation-delay: 1.4s; }
.rlh-h4 { animation-delay: 2.1s; }
@keyframes rlhSway {
  0%, 100% { transform: rotate(-2.5deg); }
  50%      { transform: rotate(2.5deg); }
}
.rlh-hang::before { content: ''; position: absolute; top: 0; bottom: 6px; left: 50%; width: 2px; background: rgba(255,255,255,0.35); }
.rlh-hang i { position: relative; z-index: 1; width: 13px; height: 13px; border-radius: 50%; animation: rlhBulb 2.4s ease-in-out infinite; }
/* metal cap on each bulb */
.rlh-hang i::before { content: ''; position: absolute; top: -5px; left: 50%; transform: translateX(-50%); width: 7px; height: 5px; border-radius: 2px 2px 0 0; background: linear-gradient(180deg, #A8B2C2, #6E7889); }
/* glass-effect bulbs: hot white core -> colour -> deep edge + layered glow */
.rlh-hang i:nth-child(6n+1) { background: radial-gradient(circle at 32% 28%, #FFFBEA 0%, #FFD700 45%, #A8760A 100%); box-shadow: 0 0 6px 1px rgba(255,215,0,0.9), 0 0 18px 5px rgba(255,215,0,0.4); }
.rlh-hang i:nth-child(6n+2) { background: radial-gradient(circle at 32% 28%, #FFEFFA 0%, #FF6BD6 45%, #B01F84 100%); box-shadow: 0 0 6px 1px rgba(255,107,214,0.9), 0 0 18px 5px rgba(255,107,214,0.4); }
.rlh-hang i:nth-child(6n+3) { background: radial-gradient(circle at 32% 28%, #F3FFEE 0%, #7CFF6B 45%, #2F8F1F 100%); box-shadow: 0 0 6px 1px rgba(124,255,107,0.9), 0 0 18px 5px rgba(124,255,107,0.4); }
.rlh-hang i:nth-child(6n+4) { background: radial-gradient(circle at 32% 28%, #EEF6FF 0%, #4DA6FF 45%, #0E4DA8 100%); box-shadow: 0 0 6px 1px rgba(77,166,255,0.9), 0 0 18px 5px rgba(77,166,255,0.4); }
.rlh-hang i:nth-child(6n+5) { background: radial-gradient(circle at 32% 28%, #FFF6F6 0%, #FF4757 45%, #9E0E1B 100%); box-shadow: 0 0 6px 1px rgba(255,71,87,0.9), 0 0 18px 5px rgba(255,71,87,0.4); }
.rlh-hang i:nth-child(6n)   { background: radial-gradient(circle at 32% 28%, #FFF9E8 0%, #FFB800 45%, #A86F00 100%); box-shadow: 0 0 6px 1px rgba(255,184,0,0.9), 0 0 18px 5px rgba(255,184,0,0.4); }
.rlh-h2 { margin-top: 14px; }
.rlh-h3 { margin-top: 4px; }
.rlh-h4 { margin-top: 22px; }

/* --- Slide 3: controller status LEDs chase + wifi arcs --- */
.rlh-ctrl-svg, .rlh-smps-svg { width: 100%; height: 100%; }
.rlh-chase { animation: rlhChase 1.2s linear infinite; }
.rlh-chase.c1 { animation-delay: 0s; }
.rlh-chase.c2 { animation-delay: 0.4s; }
.rlh-chase.c3 { animation-delay: 0.8s; }
@keyframes rlhChase {
  0%, 100% { opacity: 0.2; }
  33%      { opacity: 1; }
}
.rlh-wifi-arc { animation: rlhTwinkle 2s ease-in-out infinite; }
.rlh-wifi-arc.a2 { animation-delay: 0.5s; }

/* --- Slide 4: SMPS bolt pulse --- */
.rlh-bolt { animation: rlhBoltPulse 1.6s ease-in-out infinite; transform-origin: center; }
@keyframes rlhBoltPulse {
  0%, 100% { opacity: 0.6; }
  50%      { opacity: 1; filter: drop-shadow(0 0 6px #FFB800); }
}

/* Accessibility: no motion if user prefers */
@media (prefers-reduced-motion: reduce) {
  .rlh-px, .rlh-hang, .rlh-hang i, .rlh-chase, .rlh-wifi-arc, .rlh-bolt, .rlh-bulb, .rlh-float,
  .rlh-arm, .rlh-kid2, .rlh-sway2, .rlh-win { animation: none; opacity: 1; }
}

/* ============================================
   v4.9.1 — COMPACT HOME SECTIONS
   Mini banners + category cards chhote =
   products fold ke paas, jaldi dikhein
============================================ */
@media (min-width: 769px) {
  /* Mini banners: 2x2 tall block -> ek slim row of 4 */
  .ei-mini-banners { grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .ei-mini-banner {
    min-height: 0;
    padding: 11px 14px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }
  .ei-mini-banner > div:first-child { min-width: 0; }
  .ei-mb-tag { font-size: 8px; margin-bottom: 2px; letter-spacing: 0.06em; }
  .ei-mb-title { font-size: 13px; margin-bottom: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .ei-mb-price { font-size: 10.5px; white-space: nowrap; flex-shrink: 0; }
}
@media (min-width: 769px) and (max-width: 1100px) {
  .ei-mb-title { font-size: 11.5px; }
  .ei-mini-banner { padding: 10px 10px; }

  /* Category cards: chhote icons, kam padding */
  .ei-cat-cards { gap: 8px; margin-bottom: 14px; }
  .ei-cat-card { padding: 10px 6px 8px; }
  .cc-svg { width: 38px; height: 38px; margin: 0 auto 7px; border-radius: 10px; }
  .cc-svg svg { width: 22px; height: 22px; }
  .ei-cat-card .cc-count { margin-top: 0; }

  /* Section headings + budget chips: tighter spacing */
  .ei-sec-hd { margin-bottom: 12px; padding-bottom: 7px; }
  .rlh-budget-row { margin-bottom: 16px; }

  /* Hero: slider stretches to match sidebar height — no white gap below banners */
  .ei-hero-banners { height: 100%; }
  .ei-slider { flex: 1 1 auto; height: auto; min-height: 300px; margin-bottom: 0; }

  /* Sidebar compact — kam height, hero chhota */
  .ei-csb-hd { padding: 10px 16px; }
  .ei-csb-item { padding: 7px 14px; font-size: 12px; }
}

/* ============================================
   v4.9.2 — CLEAN MINIMAL COLOR PASS
   Rang biranga cards -> white cards, ek blue,
   orange sirf price pe (Flipkart-style)
============================================ */

/* Mini banners: 4 colored gradients -> clean white cards */
.ei-mb-1, .ei-mb-2, .ei-mb-3, .ei-mb-4 {
  background: #FFFFFF;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.ei-mini-banner:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.ei-mb-tag { color: var(--primary); }
.ei-mb-title { color: var(--text); }
.ei-mb-price { color: var(--orange); font-weight: 700; }

/* Promo banners: original theme colors (restored) */
.ei-pb-1 { background: linear-gradient(135deg, #0a0a1a, #1a1a3e); }
.ei-pb-2 { background: linear-gradient(135deg, #1b5e20, #2e7d32); }

/* Budget premium chip: gold gradient -> clean orange outline */
.rlh-budget-premium { background: #FFF6F1; border: 1.5px solid var(--orange); color: var(--orange); }
.rlh-budget-premium:hover { background: var(--orange); color: #fff; }

/* ============================================
   v4.9.3 — RLH SIGNATURE "LIGHT" IDENTITY
   Har page pe LED-store wali unique feel
============================================ */

/* Inner page heroes: clean deep-navy + soft light glow (no dots, professional) */
/* (page hero + .grad — original theme CSS use hota hai, override hata diya) */

/* Simple pages ka card layout (page.php) */
.rlh-page-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.rlh-page-title { font-family: 'Poppins', sans-serif; font-size: 30px; margin-bottom: 18px; color: var(--text); }
.rlh-page-content { line-height: 1.8; color: var(--text2); }

/* Track Order — real result card */
.rlh-track-result { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 24px; max-width: 780px; margin: 0 auto 10px; box-shadow: var(--shadow-md); }
.rlh-track-bad { text-align: center; }
.rlh-tr-icon { font-size: 34px; margin-bottom: 8px; }
.rlh-tr-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.rlh-tr-head h3 { font-size: 20px; color: var(--text); font-family: 'Poppins', sans-serif; }
.rlh-tr-date { font-size: 12px; color: var(--muted); }
.rlh-tr-badge { padding: 6px 14px; border-radius: 999px; font-size: 12.5px; font-weight: 700; white-space: nowrap; }
.rlh-tr-items, .rlh-tr-total { font-size: 13.5px; color: var(--text2); margin-top: 10px; }
.rlh-track-bad .ei-cta-btn { margin-top: 12px; display: inline-block; }

/* ===== v6.2 — FULL TRACK RESULT ===== */
.rlh-track-full { max-width: 860px; }
.rlh-tr-eta {
  background: var(--primary-50); color: var(--primary);
  font-weight: 700; font-size: 14px; text-align: center;
  padding: 10px 14px; border-radius: 10px; margin: 4px 0 18px;
  font-family: 'Poppins', sans-serif;
}
.rlh-track-box {
  display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  background: var(--bg-alt); border: 1px dashed var(--border);
  border-radius: 12px; padding: 14px 16px; margin: 18px 0;
}
.rlh-tb-label { display: block; font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 3px; }
.rlh-tb-num { font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 700; color: var(--text); letter-spacing: 0.5px; }
.rlh-tb-num small { font-weight: 400; color: var(--muted); letter-spacing: 0; }

.rlh-tr-cols { display: grid; grid-template-columns: 1.3fr 1fr; gap: 22px; margin-top: 20px; }
.rlh-tr-cols h4 { font-family: 'Poppins', sans-serif; font-size: 14px; color: var(--text); margin-bottom: 10px; }
.rlh-tri-list { display: flex; flex-direction: column; gap: 10px; }
.rlh-tri { display: flex; align-items: center; gap: 12px; padding-bottom: 10px; border-bottom: 1px solid var(--border-light); }
.rlh-tri:last-child { border-bottom: none; }
.rlh-tri-img img { width: 46px; height: 46px; object-fit: cover; border-radius: 8px; background: var(--bg-alt); display: block; }
.rlh-tri-meta { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.rlh-tri-name { font-size: 12.5px; font-weight: 600; color: var(--text); line-height: 1.35; }
.rlh-tri-qty { font-size: 11.5px; color: var(--muted); }
.rlh-tri-price { font-size: 13px; font-weight: 700; color: var(--text); white-space: nowrap; }

.rlh-tr-block { margin-bottom: 16px; }
.rlh-tr-block p { font-size: 13px; color: var(--text2); line-height: 1.6; }
.rlh-tr-totals { background: var(--bg-alt); border-radius: 10px; padding: 12px 14px; }
.rlh-tr-totals > div { display: flex; justify-content: space-between; font-size: 13px; color: var(--text2); padding: 4px 0; }
.rlh-tr-totals .rlh-tr-grand { border-top: 1px solid var(--border); margin-top: 4px; padding-top: 8px; font-size: 15px; }
.rlh-tr-totals .rlh-tr-grand b { color: var(--primary); font-family: 'Poppins', sans-serif; }

.rlh-tr-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--border-light); }
@media (max-width: 720px) { .rlh-tr-cols { grid-template-columns: 1fr; gap: 16px; } }
@media print { header, footer, nav, .ei-announce, .rlh-sale-strip, .ei-nav, .ei-header, .ei-footer, .ei-newsletter, .ei-wa-fab, .ei-breadcrumb, .ei-track-form-card, .ei-page-hero, .rlh-tr-actions, .ei-page-section-alt { display: none !important; } }

/* Product cards: LED-glow hover */
.woocommerce ul.products li.product { transition: transform 0.25s ease, box-shadow 0.25s ease; }
.woocommerce ul.products li.product:hover { transform: translateY(-4px); box-shadow: 0 10px 26px rgba(0,102,255,0.15); }

/* Section titles: clean solid accent bar (original blue) */
.ei-sec-title { position: relative; padding-left: 14px; }
.ei-sec-title::before {
  content: '';
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 4px; height: 18px; border-radius: 4px;
  background: var(--primary);
}

/* ============================================
   v5.1 — KOSHI-CLEAN PASS
   Comparison table + FAQ + stats + card polish
============================================ */

/* Stats strip (numbers = trust) */
.rlh-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 0 0 22px;
}
.rlh-stat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-align: center;
  padding: 14px 8px;
}
.rlh-stat b { display: block; font-family: 'Poppins', sans-serif; font-size: 20px; color: var(--primary); line-height: 1.2; }
.rlh-stat span { font-size: 11.5px; color: var(--muted); }

/* Controller comparison table */
.rlh-compare-wrap { overflow-x: auto; margin-bottom: 26px; }
.rlh-compare {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-size: 13px;
  min-width: 640px;
}
.rlh-compare th, .rlh-compare td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--border-light); }
.rlh-compare thead th { background: var(--navy); color: #fff; font-family: 'Poppins', sans-serif; font-size: 13px; }
.rlh-compare thead th:first-child { background: var(--navy); }
.rlh-compare tbody tr:last-child td { border-bottom: none; }
.rlh-compare td:first-child { font-weight: 600; color: var(--text); background: var(--bg-alt); width: 150px; }
.rlh-compare td { color: var(--text2); }
.rlh-compare .rlh-cmp-price { font-weight: 700; color: var(--orange); font-size: 14px; }
.rlh-compare .rlh-cmp-best { display: inline-block; background: var(--green-light); color: var(--green); font-size: 10.5px; font-weight: 700; padding: 2px 8px; border-radius: 999px; margin-left: 6px; }
.rlh-compare-cta { text-align: center; margin: -12px 0 26px; }

/* Homepage FAQ accordion */
.rlh-faq { max-width: 860px; margin: 0 auto 26px; }
.rlh-faq details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 8px;
  overflow: hidden;
}
.rlh-faq summary {
  cursor: pointer;
  padding: 14px 18px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  list-style: none;
  position: relative;
  padding-right: 40px;
}
.rlh-faq summary::-webkit-details-marker { display: none; }
.rlh-faq summary::after {
  content: '+';
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  font-size: 20px; color: var(--primary); font-weight: 400;
}
.rlh-faq details[open] summary::after { content: '−'; }
.rlh-faq details[open] summary { border-bottom: 1px solid var(--border-light); }
.rlh-faq .rlh-faq-a { padding: 12px 18px 16px; font-size: 13.5px; color: var(--text2); line-height: 1.7; }

@media (max-width: 768px) {
  .rlh-stats { grid-template-columns: repeat(2, 1fr); }
  .rlh-stat b { font-size: 17px; }
}

/* ============================================
   v5.2 — LIVE SEARCH ANIMATIONS + NAV BADGE FIX
============================================ */

/* New Arrivals badge: nav ki stretch se chipakna band, center me */
.ei-nav-badge { align-self: center; }

/* Dropdown: smooth drop-in */
.ei-search-results.active {
  display: block;
  animation: rlhSearchDrop 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: top center;
}
@keyframes rlhSearchDrop {
  from { opacity: 0; transform: translateY(-8px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Result items: ek-ek karke slide-in (stagger) */
.ei-sr-item { animation: rlhSrIn 0.28s ease both; }
.ei-sr-item:nth-child(1) { animation-delay: 0.02s; }
.ei-sr-item:nth-child(2) { animation-delay: 0.06s; }
.ei-sr-item:nth-child(3) { animation-delay: 0.10s; }
.ei-sr-item:nth-child(4) { animation-delay: 0.14s; }
.ei-sr-item:nth-child(5) { animation-delay: 0.18s; }
.ei-sr-item:nth-child(6) { animation-delay: 0.22s; }
.ei-sr-item:nth-child(7) { animation-delay: 0.26s; }
.ei-sr-item:nth-child(8) { animation-delay: 0.30s; }
@keyframes rlhSrIn {
  from { opacity: 0; transform: translateX(-8px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Item hover: image zoom + arrow slide + blue tint */
.ei-sr-item img { width: 44px; height: 44px; object-fit: cover; border-radius: 8px; flex-shrink: 0; transition: transform 0.2s ease; background: var(--bg-alt); }
.ei-sr-item:hover { background: var(--primary-50); }
.ei-sr-item:hover img { transform: scale(1.1); }
.ei-sr-arrow { color: var(--primary); transition: transform 0.2s ease; margin-left: auto; }
.ei-sr-item:hover .ei-sr-arrow { transform: translateX(4px); }
.ei-sr-title { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.35; }
.ei-sr-price { font-size: 12.5px; color: var(--orange); font-weight: 700; margin-top: 2px; }
.ei-sr-price del { color: var(--muted); font-weight: 400; margin-right: 5px; }
.ei-sr-price ins { text-decoration: none; }

/* "View all" row */
.ei-sr-more {
  display: block; text-align: center; padding: 12px;
  font-size: 13px; font-weight: 600; color: var(--primary);
  text-decoration: none; border-top: 1px solid var(--border-light);
  transition: background 0.15s ease;
}
.ei-sr-more:hover { background: var(--primary-50); }

@media (prefers-reduced-motion: reduce) {
  .ei-search-results.active, .ei-sr-item { animation: none; }
}

/* ============================================
   v5.3 — FULLSCREEN SEARCH OVERLAY (Koshi-style)
============================================ */
#rlhSearchOverlay {
  position: fixed; inset: 0;
  background: #fff;
  z-index: 99999;
  display: none;
  flex-direction: column;
}
#rlhSearchOverlay.open { display: flex; animation: rlhSoIn 0.2s ease; }
@keyframes rlhSoIn { from { opacity: 0; } to { opacity: 1; } }

.rlh-so-bar {
  display: flex; align-items: center; gap: 10px;
  max-width: 1100px; width: calc(100% - 32px);
  margin: 18px auto 0;
  padding: 10px 16px;
  border: 2px solid var(--primary);
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0,102,255,0.12);
  background: #fff;
}
.rlh-so-bar > svg { color: var(--primary); flex-shrink: 0; }
#rlhSoInput {
  flex: 1; min-width: 0;
  border: none; outline: none;
  font-size: 17px; font-family: 'Poppins', sans-serif;
  color: var(--text); background: transparent;
}
#rlhSoInput::placeholder { color: var(--muted); }
.rlh-so-clear, .rlh-so-close {
  background: none; border: none;
  font-size: 15px; color: var(--muted);
  cursor: pointer; padding: 4px 10px; line-height: 1;
}
.rlh-so-clear:hover, .rlh-so-close:hover { color: var(--text); }
.rlh-so-close { border-left: 1px solid var(--border); }

.rlh-so-body {
  flex: 1; overflow-y: auto;
  max-width: 1100px; width: 100%;
  margin: 0 auto;
  padding: 26px 16px 44px;
}
.rlh-so-status {
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.05em;
  color: var(--muted); margin-bottom: 16px;
  font-family: 'Poppins', sans-serif;
}
.rlh-so-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.rlh-so-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  animation: rlhSoCard 0.32s ease both;
}
@keyframes rlhSoCard {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.rlh-so-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 22px rgba(0,102,255,0.15);
  transform: translateY(-3px);
}
.rlh-so-img {
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
  background: var(--bg-alt);
  border-radius: 8px;
  overflow: hidden;
}
.rlh-so-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.rlh-so-title {
  font-size: 13px; font-weight: 600;
  color: var(--text); line-height: 1.4;
  margin-bottom: 8px; min-height: 36px;
}
.rlh-so-title mark { background: var(--primary-light); color: var(--primary); border-radius: 3px; padding: 0 2px; }
.rlh-so-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.rlh-so-sku {
  background: var(--bg-alt);
  border-radius: 6px; padding: 2px 8px;
  font-size: 10.5px; color: var(--muted); font-weight: 600;
}
.rlh-so-price { font-size: 14px; font-weight: 700; color: var(--text); }
.rlh-so-price del { color: var(--muted); font-weight: 400; font-size: 11px; }
.rlh-so-price ins { text-decoration: none; }
.rlh-so-more {
  display: block; text-align: center;
  background: var(--primary-50); color: var(--primary);
  font-weight: 600; font-size: 14px;
  padding: 14px; border-radius: 10px;
  margin-top: 18px; text-decoration: none;
  transition: background 0.15s ease;
}
.rlh-so-more:hover { background: var(--primary-light); }

@media (max-width: 900px) { .rlh-so-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) {
  .rlh-so-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .rlh-so-bar { margin-top: 10px; padding: 8px 12px; }
  #rlhSoInput { font-size: 15px; }
}
@media (prefers-reduced-motion: reduce) {
  #rlhSearchOverlay.open, .rlh-so-card { animation: none; }
}

/* ============================================
   v6.0 — CALCULATOR + BEST SELLER + BADGES + GIFT
============================================ */

/* --- Setup Calculator --- */
.rlh-calc-intro { font-size: 14px; color: var(--text2); margin-bottom: 20px; line-height: 1.7; }
.rlh-calc-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 22px; align-items: start; }
.rlh-calc-inputs { display: flex; flex-direction: column; gap: 14px; }
.rlh-calc-inputs label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 600; color: var(--text); font-family: 'Poppins', sans-serif; }
.rlh-calc-inputs input[type="number"], .rlh-calc-inputs select {
  border: 1.5px solid var(--border); border-radius: 10px;
  padding: 11px 14px; font-size: 15px; font-family: 'Poppins', sans-serif;
  color: var(--text); background: #fff; outline: none; width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.rlh-calc-inputs input:focus, .rlh-calc-inputs select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,102,255,0.12); }
.rlh-calc-gst { flex-direction: row !important; align-items: center; gap: 8px !important; cursor: pointer; }
.rlh-calc-gst input { width: 16px; height: 16px; accent-color: var(--primary); }
.rlh-calc-result {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: 14px; padding: 20px 22px;
}
.rlh-calc-result h3 { font-family: 'Poppins', sans-serif; font-size: 17px; color: var(--text); margin-bottom: 14px; }
.rlh-cr-row { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px dashed var(--border); font-size: 13.5px; color: var(--text2); gap: 12px; }
.rlh-cr-row b { color: var(--text); text-align: right; }
.rlh-cr-total { display: flex; justify-content: space-between; align-items: center; padding: 14px 0 4px; font-size: 15px; color: var(--text2); }
.rlh-cr-total b { font-size: 24px; color: var(--orange); font-family: 'Poppins', sans-serif; }
.rlh-cr-btns { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.rlh-cr-wa {
  flex: 1; min-width: 160px; text-align: center; background: #25D366; color: #fff;
  padding: 12px 16px; border-radius: 10px; font-weight: 600; font-size: 14px;
  text-decoration: none; transition: filter 0.15s ease;
}
.rlh-cr-wa:hover { filter: brightness(0.94); color: #fff; }
.rlh-cr-pdf {
  flex: 1; min-width: 140px; background: #fff; color: var(--primary);
  border: 1.5px solid var(--primary); padding: 12px 16px; border-radius: 10px;
  font-weight: 600; font-size: 14px; cursor: pointer; font-family: 'Poppins', sans-serif;
  transition: background 0.15s ease;
}
.rlh-cr-pdf:hover { background: var(--primary-50); }
.rlh-cr-note { font-size: 11.5px; color: var(--muted); margin-top: 12px; line-height: 1.6; }
@media (max-width: 768px) { .rlh-calc-grid { grid-template-columns: 1fr; } }
@media print {
  header, footer, nav, .ei-announce, .rlh-sale-strip, .ei-nav, .ei-header, .ei-footer, .ei-newsletter, .ei-wa-fab, .rlh-cr-btns, .ei-breadcrumb { display: none !important; }
  .rlh-calc-result { border: 1px solid #999; }
}

/* --- Best Seller of the Month --- */
.rlh-bestseller {
  display: grid; grid-template-columns: 260px 1fr; gap: 24px;
  background: linear-gradient(135deg, #F7F3FF, #FFFFFF);
  border: 1.5px solid var(--primary-light);
  border-radius: var(--radius-lg);
  padding: 22px; margin-bottom: 26px; align-items: center;
}
.rlh-bs-media img { width: 100%; height: auto; border-radius: 12px; background: #fff; }
.rlh-bs-tag {
  display: inline-block; background: var(--primary); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px; margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}
.rlh-bs-info h3 { font-family: 'Poppins', sans-serif; font-size: 21px; line-height: 1.35; margin-bottom: 8px; }
.rlh-bs-info h3 a { color: var(--text); text-decoration: none; }
.rlh-bs-info h3 a:hover { color: var(--primary); }
.rlh-bs-sold { font-size: 13px; color: var(--green); font-weight: 600; margin-bottom: 8px; }
.rlh-bs-price { font-size: 22px; font-weight: 700; color: var(--orange); font-family: 'Poppins', sans-serif; margin-bottom: 14px; }
.rlh-bs-price del { color: var(--muted); font-weight: 400; font-size: 15px; margin-right: 6px; }
.rlh-bs-price ins { text-decoration: none; }
.rlh-bs-btns { display: flex; gap: 10px; flex-wrap: wrap; }
@media (max-width: 768px) {
  .rlh-bestseller { grid-template-columns: 1fr; padding: 16px; }
  .rlh-bs-media { max-width: 220px; margin: 0 auto; }
}

/* --- Product page: stock + trust badges --- */
.rlh-stock-badge {
  display: inline-block; background: var(--green-light); color: var(--green);
  font-size: 12.5px; font-weight: 600; padding: 7px 14px; border-radius: 8px;
  margin: 10px 0; font-family: 'Poppins', sans-serif;
}
.rlh-prod-badges {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  margin: 14px 0; padding: 12px; background: var(--bg-alt);
  border: 1px solid var(--border); border-radius: 10px;
}
.rlh-pb-item { display: flex; flex-direction: column; align-items: center; gap: 5px; text-align: center; font-size: 10.5px; font-weight: 600; color: var(--text2); }
.rlh-pb-item svg { color: var(--primary); }
@media (max-width: 640px) { .rlh-prod-badges { grid-template-columns: repeat(2, 1fr); } }

/* --- Homepage Calculator CTA --- */
.rlh-calc-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: linear-gradient(135deg, #0A2540, #0066FF);
  border-radius: var(--radius-lg); padding: 20px 24px;
  margin-bottom: 18px; text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.rlh-calc-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-blue); }
.rlh-cc-text { display: flex; flex-direction: column; gap: 4px; }
.rlh-cc-text b { color: #fff; font-family: 'Poppins', sans-serif; font-size: 17px; }
.rlh-cc-text span { color: rgba(255,255,255,0.75); font-size: 13px; }
.rlh-cc-btn {
  flex-shrink: 0; background: #fff; color: var(--primary);
  font-weight: 700; font-size: 14px; padding: 12px 20px; border-radius: 10px;
  font-family: 'Poppins', sans-serif;
}
@media (max-width: 640px) { .rlh-calc-cta { flex-direction: column; align-items: flex-start; } }

/* --- Single-color SVG icons (emoji replacement) --- */
.rlh-i { display: inline-block; vertical-align: -2px; flex-shrink: 0; }
.ei-mq-item { display: inline-flex; align-items: center; gap: 5px; }
.ei-slide-tag { display: inline-flex; align-items: center; gap: 5px; }
.ei-fs-btn { display: inline-flex; align-items: center; justify-content: center; }
.ei-wa-fab { display: flex; align-items: center; justify-content: center; }
.ei-ig-views { display: inline-flex; align-items: center; gap: 4px; }
.ei-ig-icon svg { display: block; margin: 0 auto; }
.ei-btn, .ei-btn-navy, .ei-btn-outline, .ei-ig-follow-btn { }
.ei-announce-r a { display: inline-flex; align-items: center; gap: 4px; }
.ei-footer-desc .rlh-i { vertical-align: -2px; margin-right: 2px; }

/* ============================================
   v4.9 — CHECKOUT/CART SVG ICON SIZING (emoji->svg)
============================================ */
.ei-ct-item .ei-ct-icon svg { width: 26px; height: 26px; color: var(--primary); }
.ei-ch-icon svg { width: 34px; height: 34px; color: #fff; }
.ei-buy-now-btn svg { flex-shrink: 0; }
.ei-wa-order-btn svg { flex-shrink: 0; }

/* ============================================
   v4.9 — PROFESSIONAL CART PAGE
============================================ */

/* Hero header with step indicator */
.rlh-cart-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(135deg, #0066FF 0%, #0047B3 55%, #0A2540 100%);
  border-radius: var(--radius-lg);
  padding: 26px 30px;
  margin-bottom: 22px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.rlh-cart-hero::after {
  content: '';
  position: absolute;
  right: -40px; top: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.rlh-cart-title {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 4px;
  color: #fff;
  line-height: 1.15;
}
.rlh-cart-sub {
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}
.rlh-cart-steps {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}
.rlh-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}
.rlh-step-num {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  font-size: 13px;
  font-weight: 700;
}
.rlh-step.is-active { color: #fff; }
.rlh-step.is-active .rlh-step-num {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}
.rlh-step + .rlh-step::before {
  content: '';
  width: 22px; height: 2px;
  background: rgba(255,255,255,0.3);
  margin-right: 8px;
}

/* 2-column grid: items + summary */
.rlh-cart-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
}
.rlh-cart-main { min-width: 0; }

/* Cart items table -> clean card rows */
.woocommerce .rlh-cart-main table.cart {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  margin: 0;
  border-collapse: separate;
  border-spacing: 0;
}
.woocommerce .rlh-cart-main table.cart thead th {
  background: #F5F8FF;
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 14px 12px;
  border: 0;
}
.woocommerce .rlh-cart-main table.cart td {
  padding: 16px 12px;
  border-top: 1px solid var(--border);
  vertical-align: middle;
  background: #fff;
}
.woocommerce .rlh-cart-main table.cart td.product-thumbnail img {
  width: 68px; height: 68px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.woocommerce .rlh-cart-main table.cart td.product-name a {
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}
.woocommerce .rlh-cart-main table.cart td.product-name a:hover { color: var(--primary); }
.woocommerce .rlh-cart-main table.cart td.product-price,
.woocommerce .rlh-cart-main table.cart td.product-subtotal {
  font-weight: 600;
  color: var(--navy);
}
.woocommerce .rlh-cart-main table.cart td.product-subtotal { color: var(--primary); }

/* Remove (x) button */
.woocommerce .rlh-cart-main table.cart td.product-remove a.remove {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #FDECEC;
  color: #E23B3B !important;
  font-size: 18px;
  line-height: 1;
  text-decoration: none;
  transition: var(--transition);
}
.woocommerce .rlh-cart-main table.cart td.product-remove a.remove:hover {
  background: #E23B3B;
  color: #fff !important;
}

/* Quantity stepper */
.woocommerce .rlh-cart-main table.cart td.product-quantity .quantity input.qty {
  width: 68px; height: 40px;
  text-align: center;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
}
.woocommerce .rlh-cart-main table.cart td.product-quantity .quantity input.qty:focus {
  border-color: var(--primary);
  outline: none;
}

/* Actions row: coupon, continue, update */
.woocommerce .rlh-cart-main table.cart td.actions {
  padding: 16px 12px;
  background: #FAFBFF;
  border-top: 1px solid var(--border);
}
.woocommerce .rlh-cart-main table.cart td.actions .coupon {
  display: inline-flex;
  gap: 8px;
  float: left;
}
.woocommerce .rlh-cart-main table.cart td.actions .coupon input#coupon_code {
  height: 42px;
  width: 150px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 0 12px;
  font-size: 14px;
}
.woocommerce .rlh-cart-main table.cart td.actions .coupon input#coupon_code:focus {
  border-color: var(--primary); outline: none;
}
.woocommerce .rlh-cart-main table.cart td.actions button[name="apply_coupon"] {
  height: 42px;
  background: #fff !important;
  color: var(--primary) !important;
  border: 2px solid var(--primary) !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
  padding: 0 18px !important;
  transition: var(--transition);
}
.woocommerce .rlh-cart-main table.cart td.actions button[name="apply_coupon"]:hover {
  background: var(--primary) !important;
  color: #fff !important;
}
.woocommerce .rlh-cart-main table.cart td.actions button[name="update_cart"] {
  height: 42px;
  float: right;
  background: var(--navy) !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
  padding: 0 22px !important;
  transition: var(--transition);
}
.woocommerce .rlh-cart-main table.cart td.actions button[name="update_cart"]:hover {
  background: #0A2540 !important;
  transform: translateY(-1px);
}
.woocommerce .rlh-cart-main table.cart td.actions button[name="update_cart"][disabled] {
  opacity: 0.55;
}
.rlh-continue-shopping {
  display: inline-flex;
  align-items: center;
  height: 42px;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  margin: 0 16px;
}
.rlh-continue-shopping:hover { color: var(--primary-dark); text-decoration: underline; }

/* ---- Sidebar order summary ---- */
.rlh-cart-aside { position: sticky; top: 90px; }
.woocommerce .rlh-cart-aside .cart_totals {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  box-shadow: var(--shadow);
  width: 100%;
  float: none;
}
.woocommerce .rlh-cart-aside .cart_totals h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid #EEF2FA;
}
.woocommerce .rlh-cart-aside .cart_totals table {
  margin: 0;
  border: 0;
}
.woocommerce .rlh-cart-aside .cart_totals table th,
.woocommerce .rlh-cart-aside .cart_totals table td {
  border: 0;
  padding: 9px 0;
  font-size: 14px;
  background: transparent;
}
.woocommerce .rlh-cart-aside .cart_totals table th {
  color: var(--text2);
  font-weight: 500;
  text-align: left;
}
.woocommerce .rlh-cart-aside .cart_totals table td {
  text-align: right;
  color: var(--navy);
  font-weight: 600;
}
.woocommerce .rlh-cart-aside .cart_totals table tr.order-total th,
.woocommerce .rlh-cart-aside .cart_totals table tr.order-total td {
  padding-top: 14px;
  border-top: 2px solid #EEF2FA;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
}
.woocommerce .rlh-cart-aside .cart_totals table tr.order-total td .amount,
.woocommerce .rlh-cart-aside .cart_totals table tr.order-total bdi {
  color: var(--primary);
}
.woocommerce .rlh-cart-aside .wc-proceed-to-checkout {
  padding: 16px 0 4px;
}
.woocommerce .rlh-cart-aside .wc-proceed-to-checkout a.checkout-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  background: linear-gradient(135deg, #FFB800 0%, #FF8C00 100%) !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: var(--radius) !important;
  font-family: 'Poppins', sans-serif;
  font-size: 16px !important;
  font-weight: 700 !important;
  text-transform: none;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 16px rgba(255,140,0,0.28);
  transition: var(--transition);
}
.woocommerce .rlh-cart-aside .wc-proceed-to-checkout a.checkout-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(255,140,0,0.38);
  background: linear-gradient(135deg, #FF8C00 0%, #FFB800 100%) !important;
}

/* Trust list under summary */
.rlh-cart-trust {
  list-style: none;
  margin: 16px 0 0;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.rlh-cart-trust li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: var(--text2);
  padding: 7px 0;
}
.rlh-cart-trust li svg {
  width: 20px; height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

/* Bulk help box */
.rlh-cart-help {
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: var(--radius-lg);
  background: #F5F8FF;
  border: 1px solid #DCE6FA;
}
.rlh-cart-help b { display: block; color: var(--navy); font-size: 14px; margin-bottom: 3px; }
.rlh-cart-help span { display: block; color: var(--text2); font-size: 12.5px; margin-bottom: 8px; }
.rlh-cart-help-link { color: var(--primary); font-weight: 600; font-size: 13px; text-decoration: none; }
.rlh-cart-help-link:hover { text-decoration: underline; }

/* Cross-sells full width */
.rlh-cart-crosssell { margin-top: 30px; clear: both; }
.rlh-cart-crosssell > h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 16px;
}

/* ---- Empty cart ---- */
.rlh-empty-cart {
  text-align: center;
  max-width: 560px;
  margin: 10px auto;
  padding: 44px 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.rlh-empty-icon {
  width: 96px; height: 96px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #F5F8FF;
  color: var(--primary);
}
.rlh-empty-icon svg { width: 46px; height: 46px; }
.rlh-empty-title {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
}
.rlh-empty-text {
  color: var(--text2);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0 auto 22px;
  max-width: 440px;
}
.rlh-empty-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff !important;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: var(--shadow-blue);
  transition: var(--transition);
}
.rlh-empty-btn:hover { background: var(--primary-dark); transform: translateY(-2px); }
.rlh-empty-cats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}
.rlh-empty-cats a {
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}
.rlh-empty-cats a:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: #F5F8FF;
}

/* ---- Cart responsive ---- */
@media (max-width: 980px) {
  .rlh-cart-grid { grid-template-columns: 1fr; }
  .rlh-cart-aside { position: static; }
}
@media (max-width: 768px) {
  .rlh-cart-hero { flex-direction: column; align-items: flex-start; padding: 22px; }
  .rlh-cart-steps { align-self: stretch; justify-content: space-between; }
  .rlh-step + .rlh-step::before { width: 14px; margin-right: 4px; }
  .rlh-step-label { display: none; }
  .rlh-cart-title { font-size: 22px; }

  /* Stack cart rows as cards (WC responsive table) */
  .woocommerce .rlh-cart-main table.cart thead { display: none; }
  .woocommerce .rlh-cart-main table.cart,
  .woocommerce .rlh-cart-main table.cart tbody,
  .woocommerce .rlh-cart-main table.cart tr,
  .woocommerce .rlh-cart-main table.cart td { display: block; width: 100%; }
  .woocommerce .rlh-cart-main table.cart tr.woocommerce-cart-form__cart-item {
    position: relative;
    padding: 12px 12px 12px 92px;
    min-height: 92px;
    border-top: 1px solid var(--border);
  }
  .woocommerce .rlh-cart-main table.cart tr.woocommerce-cart-form__cart-item td {
    border: 0;
    padding: 3px 0;
    text-align: right;
  }
  .woocommerce .rlh-cart-main table.cart td.product-remove {
    position: absolute; top: 10px; right: 8px; width: auto; padding: 0;
  }
  .woocommerce .rlh-cart-main table.cart td.product-thumbnail {
    position: absolute; left: 12px; top: 12px; width: 68px; padding: 0;
  }
  .woocommerce .rlh-cart-main table.cart td.product-name {
    text-align: left; padding-right: 30px;
  }
  .woocommerce .rlh-cart-main table.cart td::before {
    content: attr(data-title);
    float: left;
    font-weight: 600;
    color: var(--text2);
    font-size: 12px;
  }
  .woocommerce .rlh-cart-main table.cart td.product-name::before,
  .woocommerce .rlh-cart-main table.cart td.product-remove::before,
  .woocommerce .rlh-cart-main table.cart td.product-thumbnail::before { content: ''; }
  .woocommerce .rlh-cart-main table.cart td.actions {
    padding: 14px 12px; text-align: center;
  }
  .woocommerce .rlh-cart-main table.cart td.actions .coupon,
  .woocommerce .rlh-cart-main table.cart td.actions button[name="update_cart"] {
    float: none; width: 100%; margin: 6px 0;
  }
  .woocommerce .rlh-cart-main table.cart td.actions .coupon { display: flex; }
  .woocommerce .rlh-cart-main table.cart td.actions .coupon input#coupon_code { flex: 1; width: auto; }
  .rlh-continue-shopping { margin: 6px 0; }
}

/* ============================================
   v5.0 — CART REDESIGN (top bar, notes, summary card)
============================================ */

/* Top bar */
.rlh-cart-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.rlh-cart-topbar-l { display: flex; align-items: center; gap: 12px; }
.rlh-cart-badge {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: var(--primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-blue);
  flex-shrink: 0;
}
.rlh-cart-badge svg { width: 22px; height: 22px; }
.rlh-cart-h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--navy);
  margin: 0;
  line-height: 1.2;
}
.rlh-cart-count { color: var(--text2); font-weight: 500; font-size: 15px; }
.rlh-continue-pill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  background: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition);
}
.rlh-continue-pill:hover { background: var(--primary); color: #fff; }

/* Total column -> dark; unit price under name */
.woocommerce .rlh-cart-main table.cart td.product-subtotal { color: var(--navy); font-weight: 700; }
.rlh-item-unit { color: var(--text2); font-size: 13px; margin-top: 4px; font-weight: 500; }

/* Quantity stepper (server-rendered +/- around the qty input) */
.rlh-qty {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.rlh-qty .quantity {
  margin: 0 !important;
  display: flex;
  align-items: center;
}
.rlh-qbtn {
  width: 38px; height: 42px;
  border: 0;
  background: #F5F8FF;
  color: var(--primary);
  font-size: 19px; font-weight: 700; line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}
.rlh-qbtn:hover { background: var(--primary); color: #fff; }
.rlh-qbtn:disabled { opacity: 0.5; cursor: default; }
.rlh-qbtn:disabled:hover { background: #F5F8FF; color: var(--primary); }
.woocommerce .rlh-cart-main table.cart td.product-quantity .rlh-qty input.qty,
.woocommerce .rlh-cart-main table.cart td.product-quantity .rlh-qty .quantity input.qty {
  width: 48px; height: 42px;
  border: 0;
  border-left: 1.5px solid var(--border);
  border-right: 1.5px solid var(--border);
  border-radius: 0;
  text-align: center;
  font-weight: 600; font-size: 15px;
  background: #fff;
  -moz-appearance: textfield;
  appearance: textfield;
}
.rlh-qty-single input.qty { border-left: 0 !important; border-right: 0 !important; }
.woocommerce .rlh-cart-main table.cart td.product-quantity .rlh-qty input.qty:focus { outline: none; }
.rlh-cart-main input.qty::-webkit-outer-spin-button,
.rlh-cart-main input.qty::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.rlh-js-hidden { display: none !important; }

/* Actions row: coupon toggle + hidden update */
.woocommerce .rlh-cart-main table.cart tr.rlh-cart-actions-row td.actions {
  background: #FAFBFF;
  overflow: hidden;
}
.rlh-coupon-wrap { float: left; }
.rlh-coupon-toggle {
  display: inline-flex; align-items: center; gap: 8px;
  cursor: pointer;
  color: var(--primary);
  font-weight: 600; font-size: 14px;
  list-style: none;
  user-select: none;
}
.rlh-coupon-toggle::-webkit-details-marker { display: none; }
.rlh-coupon-toggle::marker { content: ''; }
.woocommerce .rlh-cart-main table.cart td.actions .rlh-coupon-wrap .coupon {
  display: flex; gap: 8px; float: none;
  margin-top: 12px; max-width: 440px;
}
.woocommerce .rlh-cart-main table.cart td.actions .rlh-coupon-wrap .coupon input#coupon_code {
  flex: 1; width: auto; height: 42px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0 12px; font-size: 14px;
}
.woocommerce .rlh-cart-main table.cart td.actions .rlh-coupon-wrap .coupon input#coupon_code:focus { border-color: var(--primary); outline: none; }
.woocommerce .rlh-cart-main table.cart td.actions .rlh-coupon-wrap .coupon button[name="apply_coupon"] {
  height: 42px;
  background: var(--navy) !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: var(--radius) !important;
  padding: 0 18px !important;
  font-weight: 600 !important;
}
.woocommerce .rlh-cart-main table.cart td.actions button.rlh-update-cart {
  float: right;
  height: 42px;
  background: var(--navy) !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: var(--radius) !important;
  padding: 0 20px !important;
  font-weight: 600 !important;
}
.woocommerce .rlh-cart-main table.cart td.actions button.rlh-update-cart[disabled] { display: none; }

/* Order notes */
.rlh-ordernotes {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  margin-top: 16px;
}
.rlh-ordernotes-label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}
.rlh-ordernotes-input {
  width: 100%;
  min-height: 86px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--navy);
  resize: vertical;
}
.rlh-ordernotes-input:focus { border-color: var(--primary); outline: none; }
.rlh-ordernotes-hint { display: block; margin-top: 8px; font-size: 12px; color: var(--text2); }

/* ---- Order summary card ---- */
.rlh-summary {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.rlh-summary-head {
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #0066FF 0%, #0047B3 100%);
  color: #fff;
  padding: 15px 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 16px;
}
.rlh-summary-head svg { width: 20px; height: 20px; flex-shrink: 0; }
.rlh-summary-body { padding: 18px 20px 20px; }
.rlh-sum-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  color: var(--text2);
  padding: 8px 0;
}
.rlh-sum-row > span:last-child { color: var(--navy); font-weight: 600; text-align: right; }
.rlh-sum-discount > span:last-child { color: #1FA463; }
.rlh-sum-muted > span:last-child { color: var(--text2); font-weight: 500; font-size: 13px; }
.rlh-sum-total {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 8px; padding-top: 14px;
  border-top: 2px solid #EEF2FA;
}
.rlh-sum-total > span:first-child {
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 17px; color: var(--navy);
}
.rlh-sum-total-amt { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 22px; color: var(--primary); }
.rlh-sum-total-amt .amount, .rlh-sum-total-amt bdi { color: var(--primary); }

.rlh-checkout-btn {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  width: 100%;
  height: 54px;
  margin-top: 16px;
  background: linear-gradient(135deg, #111827 0%, #0A2540 100%);
  color: #fff !important;
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(10,37,64,0.28);
  transition: var(--transition);
}
.rlh-checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(10,37,64,0.4);
  background: linear-gradient(135deg, #0A2540 0%, #111827 100%);
  color: #fff !important;
}
.rlh-checkout-btn svg { width: 18px; height: 18px; }

.rlh-pay-pill {
  margin-top: 12px;
  text-align: center;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--primary);
  background: #F0F5FF;
  border: 1px solid #DCE6FA;
  border-radius: 999px;
  padding: 9px 14px;
}
.rlh-summary-trust {
  list-style: none;
  display: flex; justify-content: space-between; gap: 8px;
  margin: 18px 0 0; padding: 16px 4px 0;
  border-top: 1px solid #EEF2FA;
}
.rlh-summary-trust li {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 600; color: var(--text2);
  text-align: center;
}
.rlh-summary-trust li svg { width: 22px; height: 22px; color: var(--primary); }

/* Cart responsive tweaks for v5.0 */
@media (max-width: 768px) {
  .rlh-cart-h1 { font-size: 20px; }
  .rlh-cart-count { display: block; font-size: 13px; }
  .rlh-continue-pill { padding: 9px 14px; font-size: 13px; }
  .woocommerce .rlh-cart-main table.cart td.product-quantity .quantity { }
  .woocommerce .rlh-cart-main table.cart td.actions button.rlh-update-cart { float: none; width: 100%; margin-top: 8px; }
  .rlh-coupon-wrap { float: none; width: 100%; }
  .woocommerce .rlh-cart-main table.cart td.actions .rlh-coupon-wrap .coupon { max-width: 100%; }
}

/* ============================================
   v5.1 — PROFESSIONAL BLOCK CHECKOUT
============================================ */

/* Injected branded header + trust badges above the checkout block */
.rlh-checkout-top { margin: 0 0 26px; }
.rlh-checkout-hero { margin-bottom: 16px; }
.rlh-checkout-top .ei-checkout-trust { margin-top: 0; }

/* Brand the WooCommerce block checkout (safe cosmetic overrides only) */
.woocommerce-checkout .wc-block-checkout,
.wp-block-woocommerce-checkout { font-family: 'Poppins', sans-serif; }

.wc-block-components-checkout-step__title,
.wc-block-components-title,
.wc-block-components-checkout-step__heading-content {
  color: var(--navy) !important;
  font-family: 'Poppins', sans-serif !important;
}
.wc-block-components-checkout-step__description { color: var(--text2) !important; }

/* Step number badges -> brand blue */
.wc-block-components-checkout-step__title-content,
.wc-block-checkout__main .wc-block-components-checkout-step:before { color: var(--primary); }

/* Inputs / selects */
.wc-block-components-text-input input,
.wc-block-components-text-input textarea,
.wc-block-components-address-form input,
.wc-block-components-combobox .components-form-token-field__input-container,
.wc-block-components-select .wc-block-components-select__container,
.wc-block-components-quantity-selector {
  border-radius: var(--radius) !important;
}
.wc-block-components-text-input.is-active input,
.wc-block-components-text-input input:focus {
  box-shadow: 0 0 0 2px rgba(0,102,255,0.35) !important;
  border-color: var(--primary) !important;
}
.wc-block-components-text-input.is-active label { color: var(--primary) !important; }

/* Place Order button -> premium dark, matching the cart checkout button */
.wc-block-components-checkout-place-order-button,
.wp-block-woocommerce-checkout .wc-block-components-button.contained,
.wc-block-components-checkout-place-order-button.contained {
  background: linear-gradient(135deg, #111827 0%, #0A2540 100%) !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: var(--radius) !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  min-height: 54px !important;
  box-shadow: 0 6px 18px rgba(10,37,64,0.25);
  transition: var(--transition);
}
.wc-block-components-checkout-place-order-button *,
.wc-block-components-checkout-place-order-button .wc-block-components-button__text,
.wp-block-woocommerce-checkout .wc-block-components-button.contained .wc-block-components-button__text {
  color: #fff !important;
}
.wc-block-components-checkout-place-order-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.1);
  color: #fff !important;
}

/* Coupon / express-payment / secondary buttons -> brand blue */
.wc-block-components-button:not(.contained) { color: var(--primary) !important; }
.wc-block-components-totals-coupon__button {
  color: var(--primary) !important;
}

/* Order summary sidebar -> clean card */
.wc-block-checkout__sidebar .wc-block-components-order-summary,
.wc-block-checkout__sidebar > * {
  border-radius: var(--radius-lg);
}
.wc-block-components-totals-item__value { color: var(--navy) !important; font-weight: 600; }
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value,
.wc-block-components-totals-footer-item .wc-block-formatted-money-amount {
  color: var(--primary) !important;
  font-weight: 800 !important;
}

/* Selected payment / shipping option accent */
.wc-block-components-radio-control__option--checked-option-highlighted,
.wc-block-components-radio-control-accordion-option--checked-option-highlighted {
  box-shadow: inset 0 0 0 2px var(--primary) !important;
}

@media (max-width: 768px) {
  .rlh-checkout-hero .rlh-cart-title { font-size: 20px; }
}

/* ============================================
   v5.2 — ANIMATED ORDER CONFIRMED (thank-you)
============================================ */

/* Neutralise the default WooCommerce success notice that wraps our block */
.woocommerce-order p.woocommerce-notice--success,
.woocommerce-order .woocommerce-thankyou-order-received {
  background: none !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 0 6px !important;
  color: inherit !important;
}
.woocommerce-order p.woocommerce-notice--success:before { display: none !important; }

.rlh-oc {
  display: block;
  position: relative;
  text-align: center;
  max-width: 560px;
  margin: 6px auto 26px;
  padding: 34px 24px 30px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(10,37,64,0.08);
  overflow: hidden;
  animation: ei-oc-fadeup .5s ease both;
}

/* Success check */
.rlh-oc-check {
  display: flex; align-items: center; justify-content: center;
  width: 92px; height: 92px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #22C55E;
  position: relative;
  animation: ei-oc-pop .55s cubic-bezier(.17,.67,.3,1.4) both;
}
.rlh-oc.is-received .rlh-oc-check { background: #F59E0B; }
.rlh-oc-check::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 3px solid #22C55E; opacity: 0;
  animation: ei-oc-ring 1.5s ease-out .5s infinite;
}
.rlh-oc.is-received .rlh-oc-check::before { border-color: #F59E0B; }
.rlh-oc-check svg { width: 50px; height: 50px; position: relative; z-index: 1; }
.rlh-oc-tick {
  stroke: #fff; stroke-width: 4.5; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 44; stroke-dashoffset: 44;
  animation: ei-oc-tick .45s ease-out .45s forwards;
}

.rlh-oc-title {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 26px; font-weight: 800; line-height: 1.15;
  color: var(--navy);
  margin: 0 0 8px;
  opacity: 0; animation: ei-oc-fadeup .5s ease .35s both;
}
.rlh-oc-sub {
  display: block;
  font-size: 15px; line-height: 1.6; color: var(--text2);
  max-width: 420px; margin: 0 auto 20px;
  opacity: 0; animation: ei-oc-fadeup .5s ease .5s both;
}
.rlh-oc-sub b { color: var(--navy); }

.rlh-oc-actions {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  opacity: 0; animation: ei-oc-fadeup .5s ease .65s both;
}
.rlh-oc-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 22px;
  background: var(--primary); color: #fff !important;
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 14px;
  text-decoration: none;
  transition: var(--transition);
}
.rlh-oc-btn:hover { background: var(--primary-dark); transform: translateY(-2px); }
.rlh-oc-btn-wa { background: #25D366; }
.rlh-oc-btn-wa:hover { background: #1EBE5B; }

/* Confetti burst */
.rlh-oc-burst { position: absolute; top: 54px; left: 50%; width: 0; height: 0; z-index: 0; }
.rlh-oc-burst i {
  position: absolute; top: 0; left: 0;
  width: 9px; height: 9px; border-radius: 2px;
  opacity: 0;
  animation: ei-oc-confetti 1s ease-out .35s forwards;
}
.rlh-oc-burst i:nth-child(1){ background:#0066FF; --tx:-70px; --ty:-46px; }
.rlh-oc-burst i:nth-child(2){ background:#22C55E; --tx:64px;  --ty:-52px; }
.rlh-oc-burst i:nth-child(3){ background:#F59E0B; --tx:-96px; --ty:6px;   }
.rlh-oc-burst i:nth-child(4){ background:#0A2540; --tx:92px;  --ty:2px;   }
.rlh-oc-burst i:nth-child(5){ background:#22C55E; --tx:-44px; --ty:-70px; }
.rlh-oc-burst i:nth-child(6){ background:#0066FF; --tx:48px;  --ty:-74px; }
.rlh-oc-burst i:nth-child(7){ background:#F59E0B; --tx:-18px; --ty:-88px; }
.rlh-oc-burst i:nth-child(8){ background:#0A2540; --tx:20px;  --ty:-84px; }

@keyframes ei-oc-pop { 0%{ transform: scale(0); } 70%{ transform: scale(1.12); } 100%{ transform: scale(1); } }
@keyframes ei-oc-ring { 0%{ transform: scale(1); opacity: .55; } 100%{ transform: scale(1.9); opacity: 0; } }
@keyframes ei-oc-tick { to { stroke-dashoffset: 0; } }
@keyframes ei-oc-fadeup { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes ei-oc-confetti {
  0%   { opacity: 0; transform: translate(0,0) scale(.4) rotate(0deg); }
  25%  { opacity: 1; }
  100% { opacity: 0; transform: translate(var(--tx), var(--ty)) scale(1) rotate(200deg); }
}
@media (prefers-reduced-motion: reduce) {
  .rlh-oc, .rlh-oc *, .rlh-oc-burst i { animation: none !important; opacity: 1 !important; }
  .rlh-oc-tick { stroke-dashoffset: 0 !important; }
}
@media (max-width: 600px) {
  .rlh-oc-title { font-size: 22px; }
  .rlh-oc-actions { flex-direction: column; }
  .rlh-oc-btn { width: 100%; }
}

/* ============================================
   v5.3 — ANIMATED LOGIN / SIGN UP (my-account)
============================================ */

.rlh-auth {
  display: flex; justify-content: center;
  padding: 8px 0 34px;
}
.rlh-auth-card {
  position: relative;
  width: 100%; max-width: 470px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 46px rgba(10,37,64,.10);
  padding: 34px 30px 26px;
  overflow: hidden;
  animation: rlh-auth-in .55s cubic-bezier(.2,.7,.3,1) both;
}
.rlh-auth-card::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--primary), #00D4AA, var(--primary));
  background-size: 200% 100%;
  animation: rlh-auth-bar 3s linear infinite;
}

/* --- header + animated bulb --- */
.rlh-auth-head { text-align: center; margin-bottom: 20px; }
.rlh-auth-logo {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 68px; height: 68px; margin-bottom: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, #0047B3 100%);
  color: #fff;
  animation: rlh-auth-pop .55s cubic-bezier(.17,.67,.3,1.4) both .1s;
}
.rlh-auth-logo svg { width: 32px; height: 32px; position: relative; z-index: 1; }
.rlh-auth-glow {
  position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid var(--primary); opacity: 0;
  animation: rlh-auth-ring 2.2s ease-out infinite .6s;
}
.rlh-auth-title {
  font-family: 'Poppins', sans-serif;
  font-size: 24px; font-weight: 800; color: var(--navy);
  margin: 0 0 6px; line-height: 1.2;
}
.rlh-auth-desc { font-size: 14px; color: var(--text2); margin: 0; line-height: 1.55; }
/* only show the title matching the open tab */
.rlh-auth-title.rlh-t-register { display: none; }
#rlh-tab-register:checked ~ .rlh-auth-head .rlh-t-login { display: none; }
#rlh-tab-register:checked ~ .rlh-auth-head .rlh-t-register { display: block; }

/* --- notices --- */
.rlh-auth-notices { margin: 0 0 16px; }
.rlh-auth-notices ul,
.rlh-auth-notices .woocommerce-error,
.rlh-auth-notices .woocommerce-message,
.rlh-auth-notices .woocommerce-info {
  list-style: none; margin: 0; padding: 12px 14px;
  border-radius: var(--radius); font-size: 13.5px; line-height: 1.5;
  border: 1px solid transparent;
  animation: rlh-auth-shake .45s ease both;
}
.rlh-auth-notices .woocommerce-error { background: #FEF2F2; border-color: #FECACA; color: #B91C1C; }
.rlh-auth-notices .woocommerce-message { background: #F0FDF4; border-color: #BBF7D0; color: #15803D; }
.rlh-auth-notices .woocommerce-info { background: #EFF6FF; border-color: #BFDBFE; color: #1D4ED8; }
.rlh-auth-notices li { list-style: none; }
.rlh-auth-notices a { color: inherit; font-weight: 600; }

/* --- pure-CSS tabs --- */
.rlh-tab-radio { position: absolute; opacity: 0; pointer-events: none; }
.rlh-auth-tabs {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
  background: #F1F5FB; border-radius: 999px;
  padding: 5px; margin-bottom: 22px;
}
.rlh-auth-tab {
  position: relative; z-index: 1;
  text-align: center; padding: 10px 8px;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 14px;
  color: var(--text2); cursor: pointer; border-radius: 999px;
  transition: color .25s ease;
  user-select: none;
}
.rlh-auth-ind {
  position: absolute; z-index: 0; top: 5px; bottom: 5px; left: 5px;
  width: calc(50% - 5px);
  background: var(--primary);
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0,102,255,.32);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
}
#rlh-tab-login:checked ~ .rlh-auth-tabs .rlh-tab-l,
#rlh-tab-register:checked ~ .rlh-auth-tabs .rlh-tab-r { color: #fff; }
#rlh-tab-register:checked ~ .rlh-auth-tabs .rlh-auth-ind { transform: translateX(100%); }

/* --- panels --- */
.rlh-auth-panel { display: none; }
#rlh-tab-login:checked    ~ .rlh-auth-panels .rlh-panel-login,
#rlh-tab-register:checked ~ .rlh-auth-panels .rlh-panel-register {
  display: block;
  animation: rlh-auth-slide .38s cubic-bezier(.2,.7,.3,1) both;
}
/* if registration is off there are no radios — show login by default */
.rlh-auth-card:not(:has(.rlh-tab-radio)) .rlh-panel-login { display: block; }
.rlh-auth-panels > .rlh-panel-login:only-child { display: block; }

/* --- floating-label fields --- */
/* Top-aligned labels — robust, the label never overlaps the typed/autofilled value */
.rlh-field { position: relative; margin-bottom: 15px; }
.rlh-field label {
  display: block;
  font-size: 12.5px; font-weight: 600; color: var(--navy);
  margin: 0 0 6px 2px;
  letter-spacing: .2px;
}
.rlh-field input {
  width: 100%; height: 50px;
  padding: 0 14px;
  border: 1.6px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 400; color: var(--navy);
  transition: border-color .2s ease, box-shadow .2s ease;
  outline: none;
}
.rlh-field input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0,102,255,.12);
}
.rlh-field input::placeholder { color: transparent; }
/* Normalise browser autofill so fields do not look heavy/tinted */
.rlh-field input:-webkit-autofill,
.rlh-field input:-webkit-autofill:hover,
.rlh-field input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--navy);
  -webkit-box-shadow: 0 0 0 40px #fff inset;
  box-shadow: 0 0 0 40px #fff inset;
  font-weight: 400;
  caret-color: var(--navy);
}
.rlh-field-pass input { padding-right: 48px; }
/* eye stays centred on the input (which sits below the label) */
.rlh-eye {
  position: absolute; right: 8px; bottom: 7px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: 0; cursor: pointer;
  color: #94A3B8; border-radius: 8px;
  transition: color .2s ease, background .2s ease;
}
/* (Custom eye button removed — we rely on the browser's own password reveal so
   there is never a duplicate eye. Native reveal icons are left visible.) */

/* ============================================
   v5.4 — COD 30% ADVANCE BOX (thank-you page)
============================================ */
.rlh-cod-adv {
  display: flex; gap: 14px;
  max-width: 620px; margin: 18px auto;
  padding: 18px 20px;
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-left: 5px solid #F59E0B;
  border-radius: var(--radius-lg);
}
.rlh-cod-adv-icon {
  flex-shrink: 0; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: #FEF3C7; color: #B45309;
}
.rlh-cod-adv-icon svg { width: 22px; height: 22px; }
.rlh-cod-adv-body b {
  display: block; font-family: 'Poppins', sans-serif; font-size: 15.5px;
  color: #92400E; margin-bottom: 4px;
}
.rlh-cod-adv-body p { margin: 0 0 12px; font-size: 14px; color: #78350F; line-height: 1.55; }
.rlh-cod-adv-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: #fff !important;
  padding: 11px 20px; border-radius: var(--radius);
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 14px;
  text-decoration: none; transition: var(--transition);
}
.rlh-cod-adv-btn:hover { background: #1EBE5B; transform: translateY(-2px); }
@media (max-width: 520px) {
  .rlh-cod-adv { flex-direction: column; }
  .rlh-cod-adv-btn { width: 100%; justify-content: center; }
}

/* --- row: remember / forgot --- */
.rlh-auth-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; margin: 4px 0 18px; flex-wrap: wrap;
}
.rlh-check { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--text2); cursor: pointer; }
.rlh-check input { width: 17px; height: 17px; accent-color: var(--primary); cursor: pointer; }
.rlh-auth-link { font-size: 13.5px; font-weight: 600; color: var(--primary); text-decoration: none; }
.rlh-auth-link:hover { text-decoration: underline; }

/* --- submit button --- */
.rlh-auth-btn {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  width: 100%; height: 54px;
  background: linear-gradient(135deg, var(--primary) 0%, #0047B3 100%) !important;
  color: #fff !important;
  border: 0 !important; border-radius: var(--radius) !important;
  font-family: 'Poppins', sans-serif !important; font-weight: 700 !important; font-size: 15.5px !important;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,102,255,.26);
  transition: var(--transition);
}
.rlh-auth-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0,102,255,.36); color: #fff !important; }
.rlh-auth-btn svg { width: 18px; height: 18px; transition: transform .25s ease; }
.rlh-auth-btn:hover svg { transform: translateX(4px); }
.rlh-auth-btn::after {
  content: ''; position: absolute; top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
  transition: left .6s ease;
}
.rlh-auth-btn:hover::after { left: 130%; }

.rlh-auth-hint, .rlh-auth-terms {
  font-size: 12.5px; color: var(--text2); line-height: 1.55; margin: 12px 0 0; text-align: center;
}
.rlh-auth-terms a { color: var(--primary); font-weight: 600; text-decoration: none; }
.rlh-auth-terms a:hover { text-decoration: underline; }

/* --- benefits strip --- */
.rlh-auth-benefits {
  list-style: none; display: flex; justify-content: space-between; gap: 8px;
  margin: 22px 0 0; padding: 16px 0 0;
  border-top: 1px solid #EEF2FA;
}
.rlh-auth-benefits li {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 600; color: var(--text2); text-align: center;
}
.rlh-auth-benefits svg { width: 20px; height: 20px; color: var(--primary); }

/* --- keyframes --- */
@keyframes rlh-auth-in   { from { opacity: 0; transform: translateY(18px) scale(.98); } to { opacity: 1; transform: none; } }
@keyframes rlh-auth-pop  { 0% { transform: scale(0); } 70% { transform: scale(1.12); } 100% { transform: scale(1); } }
@keyframes rlh-auth-ring { 0% { transform: scale(1); opacity: .5; } 100% { transform: scale(1.55); opacity: 0; } }
@keyframes rlh-auth-bar  { 0% { background-position: 0% 0; } 100% { background-position: 200% 0; } }
@keyframes rlh-auth-slide{ from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: none; } }
@keyframes rlh-auth-shake{ 0%,100% { transform: translateX(0); } 25% { transform: translateX(-5px); } 75% { transform: translateX(5px); } }

@media (prefers-reduced-motion: reduce) {
  .rlh-auth-card, .rlh-auth-logo, .rlh-auth-glow, .rlh-auth-panel, .rlh-auth-notices ul { animation: none !important; }
  .rlh-auth-card::before { animation: none !important; }
}
@media (max-width: 520px) {
  .rlh-auth-card { padding: 26px 20px 20px; border-radius: var(--radius); }
  .rlh-auth-title { font-size: 21px; }
  .rlh-auth-benefits { gap: 4px; }
  .rlh-auth-benefits li { font-size: 10.5px; }
}

/* Hide the default WooCommerce account columns wrapper if it sneaks in */
.woocommerce-account .rlh-auth + .u-columns { display: none; }

/* --- Auth submit button: guarantee the label shows (beats .woocommerce button.button
   which is more specific + !important, and any stray -webkit-text-fill:transparent) --- */
.woocommerce-account .rlh-auth .rlh-auth-btn {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  width: 100% !important;
  height: 54px !important;
  padding: 0 22px !important;
  background: linear-gradient(135deg, var(--primary) 0%, #0047B3 100%) !important;
  color: #fff !important;
  font-size: 15.5px !important;
  font-weight: 700 !important;
  border-radius: var(--radius) !important;
  text-transform: none !important;
  line-height: 1 !important;
  overflow: hidden;
}
.woocommerce-account .rlh-auth .rlh-auth-btn span {
  display: inline-block !important;
  position: relative;
  z-index: 2;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-size: 15.5px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  opacity: 1 !important;
  visibility: visible !important;
  font-family: 'Poppins', sans-serif !important;
}
.woocommerce-account .rlh-auth .rlh-auth-btn svg {
  position: relative; z-index: 2;
  width: 18px !important; height: 18px !important;
  flex-shrink: 0;
}

/* Benefits strip: keep each label on one line, no awkward wrap */
.rlh-auth-benefits li span { white-space: nowrap; }
@media (max-width: 400px) {
  .rlh-auth-benefits li span { font-size: 10px; }
}

/* --- Force correct stacking so the card contents (incl. the benefits/truck row)
   never lay out sideways, and the benefits sit in a clean 3-column row BELOW the form --- */
.woocommerce-account .rlh-auth {
  display: flex !important;
  justify-content: center !important;
  width: 100% !important;
}
.woocommerce-account .rlh-auth-card {
  display: block !important;
  float: none !important;
  width: 100% !important;
  max-width: 470px !important;
}
.woocommerce-account .rlh-auth-card > * { float: none !important; }
.woocommerce-account .rlh-auth-panels { display: block !important; width: 100% !important; }
.woocommerce-account .rlh-auth-panels .rlh-auth-panel { width: 100% !important; float: none !important; }
.woocommerce-account .rlh-auth-benefits {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  width: 100% !important;
  float: none !important;
  clear: both !important;
  gap: 8px;
  margin-top: 22px;
}
.woocommerce-account .rlh-auth-benefits li { float: none !important; margin: 0 !important; }

/* ============================================
   v5.5 — PAGE-HEADING ICONS (shop + my-account) like the cart badge
============================================ */

/* Shop / product-category / tag archive title -> blue icon badge (matches cart) */
.ei-shop-wrap .page-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  color: var(--navy);
}
.ei-shop-wrap .page-title::before {
  content: '';
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--primary) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='7' height='7'/%3E%3Crect x='14' y='3' width='7' height='7'/%3E%3Crect x='14' y='14' width='7' height='7'/%3E%3Crect x='3' y='14' width='7' height='7'/%3E%3C/svg%3E") no-repeat center;
  background-size: 24px 24px;
  box-shadow: var(--shadow-blue);
}

/* My Account: style the (previously unstyled) navigation + add an icon per item */
.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none; margin: 0 0 18px; padding: 0;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li { margin: 0; border-bottom: 1px solid #F1F5FB; }
.woocommerce-account .woocommerce-MyAccount-navigation ul li:last-child { border-bottom: 0; }
.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  display: flex; align-items: center; gap: 11px;
  padding: 13px 16px;
  color: var(--navy); text-decoration: none;
  font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 14px;
  transition: var(--transition);
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover { background: #F1F5FB; color: var(--primary); }
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
  background: #EEF4FF; color: var(--primary); font-weight: 700;
  box-shadow: inset 3px 0 0 var(--primary);
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a::before {
  content: ''; width: 18px; height: 18px; flex-shrink: 0;
  background-repeat: no-repeat; background-position: center; background-size: contain;
}
.woocommerce-MyAccount-navigation-link--dashboard a::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230066FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/%3E%3Cpolyline points='9 22 9 12 15 12 15 22'/%3E%3C/svg%3E"); }
.woocommerce-MyAccount-navigation-link--orders a::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230066FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z'/%3E%3Cpolyline points='3.27 6.96 12 12.01 20.73 6.96'/%3E%3Cline x1='12' y1='22.08' x2='12' y2='12'/%3E%3C/svg%3E"); }
.woocommerce-MyAccount-navigation-link--downloads a::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230066FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4'/%3E%3Cpolyline points='7 10 12 15 17 10'/%3E%3Cline x1='12' y1='15' x2='12' y2='3'/%3E%3C/svg%3E"); }
.woocommerce-MyAccount-navigation-link--edit-address a::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230066FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E"); }
.woocommerce-MyAccount-navigation-link--edit-account a::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230066FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E"); }
.woocommerce-MyAccount-navigation-link--customer-logout a::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230066FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4'/%3E%3Cpolyline points='16 17 21 12 16 7'/%3E%3Cline x1='21' y1='12' x2='9' y2='12'/%3E%3C/svg%3E"); }

/* My Account content headings get a small accent bar */
.woocommerce-account .woocommerce-MyAccount-content h2,
.woocommerce-account .woocommerce-MyAccount-content h3 {
  font-family: 'Poppins', sans-serif; color: var(--navy);
}

/* ============================================
   v6.1 — HERO PRODUCT-IMAGE BANNER (slide 3)
============================================ */
.ei-slide.ei-slide-prod {
  background: linear-gradient(120deg, #EAF2FF 0%, #D8E9FF 45%, #F5FAFF 100%) !important;
}
.ei-prod-grid {
  background-image:
    linear-gradient(rgba(0,102,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,102,255,.07) 1px, transparent 1px) !important;
  background-size: 26px 26px !important;
  opacity: 1 !important;
  -webkit-mask-image: radial-gradient(120% 120% at 70% 40%, #000 40%, transparent 85%);
          mask-image: radial-gradient(120% 120% at 70% 40%, #000 40%, transparent 85%);
}
.ei-slide-prod .ei-slide-tag.ei-tag-made {
  background: rgba(0,102,255,.12) !important; color: var(--primary) !important; border: 1px solid rgba(0,102,255,.22);
}
.ei-slide-prod .ei-prod-title { color: var(--navy) !important; }
.ei-slide-prod .ei-prod-hl {
  display: inline-block; background: var(--primary); color: #fff !important;
  padding: 0 12px; border-radius: 8px; transform: skewX(-6deg);
  box-shadow: 0 8px 18px rgba(0,102,255,.32);
}
.ei-slide-prod .ei-prod-hl::after { content: ''; } /* keeps inline-block clean */
.ei-slide-prod .ei-prod-desc { color: #33507A !important; }
.ei-slide-prod .ei-slide-btn-ghost {
  color: var(--navy) !important; border-color: rgba(10,37,64,.22) !important; background: rgba(255,255,255,.5) !important;
}
.ei-slide-prod .ei-slide-btn-ghost:hover { background: rgba(10,37,64,.06) !important; }

/* the product visual */
.ei-prod-visual { position: relative; display: flex; align-items: center; justify-content: center; overflow: visible; }
.ei-prod-glow {
  position: absolute; z-index: 0; top: 11%; left: 4%; width: 80%; height: 80%; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,102,255,.4) 0%, rgba(0,212,170,.18) 45%, transparent 72%);
  filter: blur(26px); animation: ei-prod-pulse 4s ease-in-out infinite;
}
.ei-prod-img {
  position: relative; z-index: 1; left: -34px;
  width: 100%; max-width: 500px; height: auto;
  object-fit: contain;
  transform: rotate(-4deg);
  filter: drop-shadow(0 22px 26px rgba(0,45,110,.34));
  animation: ei-prod-float 5s ease-in-out infinite;
}
.ei-prod-chip {
  position: absolute; z-index: 2; right: 6px; bottom: 8px;
  background: #fff; color: var(--navy); font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 13px;
  padding: 8px 15px; border-radius: 999px; box-shadow: 0 12px 26px rgba(0,45,110,.22);
  animation: ei-prod-float 6s ease-in-out infinite reverse;
}
.ei-prod-chip b { color: var(--primary); }
@keyframes ei-prod-float { 0%,100% { transform: rotate(-4deg) translateY(0); } 50% { transform: rotate(-4deg) translateY(-11px); } }
@keyframes ei-prod-pulse { 0%,100% { opacity: .75; transform: scale(1); } 50% { opacity: 1; transform: scale(1.06); } }

@media (max-width: 768px) {
  .ei-prod-img { max-width: 340px; left: -14px; }
  .ei-slide-prod .ei-prod-hl { padding: 0 9px; }
}

/* ============================================
   v6.3 — 20-PORT UHD PRO BANNER (slide 5)
============================================ */
.ei-slide.ei-slide-uhd {
  background: linear-gradient(120deg, #0B1E4D 0%, #14276B 46%, #0A2E6E 100%) !important;
}
.ei-uhd-grid {
  background-image:
    linear-gradient(rgba(120,170,255,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120,170,255,.09) 1px, transparent 1px) !important;
  background-size: 26px 26px !important;
  opacity: 1 !important;
  -webkit-mask-image: radial-gradient(120% 120% at 72% 45%, #000 40%, transparent 85%);
          mask-image: radial-gradient(120% 120% at 72% 45%, #000 40%, transparent 85%);
}
.ei-slide-uhd .ei-slide-tag.ei-tag-pro {
  background: rgba(255,180,60,.16) !important; color: #FFC96B !important; border: 1px solid rgba(255,180,60,.35);
}
.ei-slide-uhd .ei-uhd-title { color: #fff !important; }
.ei-uhd-hl {
  background: linear-gradient(135deg,#FFB347,#FF7A00);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: #FF8A00;
}
.ei-slide-uhd .ei-uhd-desc { color: #BFD2F5 !important; margin-bottom: 8px; }
.ei-uhd-specs { display: flex; flex-wrap: wrap; gap: 7px; margin: 2px 0 14px; }
.ei-uhd-spec {
  font-family: 'Poppins', sans-serif; font-size: 11.5px; font-weight: 600; color: #DCE8FF;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  padding: 4px 10px; border-radius: 999px;
}
.ei-uhd-spec b { color: #7FB2FF; font-weight: 800; }
.ei-slide-uhd .ei-slide-btn-ghost {
  color: #fff !important; border-color: rgba(255,255,255,.3) !important; background: rgba(255,255,255,.06) !important;
}
.ei-slide-uhd .ei-slide-btn-ghost:hover { background: rgba(255,255,255,.14) !important; }

/* the product card */
.ei-uhd-visual { position: relative; display: flex; align-items: center; justify-content: center; overflow: visible; margin-right: 56px; }
.ei-uhd-glow {
  position: absolute; z-index: 0; width: 88%; height: 88%; border-radius: 50%;
  background: radial-gradient(circle, rgba(90,150,255,.5) 0%, rgba(255,140,0,.14) 50%, transparent 72%);
  filter: blur(30px); animation: ei-prod-pulse 4s ease-in-out infinite;
}
.ei-uhd-img {
  position: relative; z-index: 1; display: block;
  width: auto; height: 232px; max-height: 232px;
  transform: rotate(-3deg);
  filter: drop-shadow(0 20px 24px rgba(0,8,35,.5));
  animation: ei-uhd-float 5.5s ease-in-out infinite;
}
.ei-uhd-chip {
  position: absolute; z-index: 2; right: -6px; bottom: 4px;
  background: #FF7A00; color: #fff; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 12.5px;
  padding: 7px 14px; border-radius: 999px; box-shadow: 0 12px 26px rgba(255,90,0,.45);
  animation: ei-uhd-chipfloat 6.5s ease-in-out infinite;
}
.ei-uhd-chip b { font-weight: 800; }
@keyframes ei-uhd-float { 0%,100% { transform: rotate(-3deg) translateY(0); } 50% { transform: rotate(-3deg) translateY(-10px); } }
@keyframes ei-uhd-chipfloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

@media (max-width: 768px) {
  .ei-uhd-img { height: 178px; max-height: 178px; }
  .ei-uhd-specs { gap: 5px; }
  .ei-uhd-spec { font-size: 10px; padding: 3px 8px; }
  .ei-uhd-chip { font-size: 11px; padding: 6px 11px; }
}

/* ============================================
   v6.2 — "ALL PIXEL CONTROLLERS" GROUP BANNER (slide 3)
============================================ */
.ei-slide.ei-slide-allctrl {
  background: linear-gradient(120deg, #3A1D78 0%, #221A6B 48%, #0A1C66 100%) !important;
  display: block !important; padding: 0 !important; overflow: hidden;
}
.ei-allctrl-glow {
  position: absolute; top: -35%; left: 50%; transform: translateX(-50%);
  width: 85%; height: 130%;
  background: radial-gradient(ellipse at center, rgba(150,100,255,.5), transparent 62%);
  pointer-events: none; z-index: 0;
}
.ei-allctrl-head { position: absolute; top: 16px; left: 0; right: 0; z-index: 2; text-align: center; padding: 0 14px; }
.ei-allctrl-title { font-family: 'Poppins', sans-serif; font-weight: 800; color: #fff; margin: 0; line-height: 1.04; font-size: clamp(22px, 3.6vw, 42px); text-shadow: 0 4px 22px rgba(0,0,0,.4); }
.ei-allctrl-title span { color: #8FB6FF; }
.ei-allctrl-sub { font-family: 'Poppins', sans-serif; font-weight: 600; color: rgba(255,255,255,.82); margin: 3px 0 0; font-size: clamp(11px, 1.5vw, 15px); letter-spacing: 1.2px; text-transform: uppercase; }
.ei-allctrl-img {
  position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); z-index: 1;
  width: auto; max-width: 100%; max-height: 80%; height: auto;
  filter: drop-shadow(0 16px 20px rgba(0,0,0,.45));
  animation: ei-allctrl-rise .8s cubic-bezier(.2,.7,.3,1) both;
}
.ei-allctrl-btn {
  position: absolute; right: 22px; bottom: 20px; z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #FF8A00, #FF5A00); color: #fff !important;
  font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 14.5px;
  padding: 11px 20px; border-radius: 999px; text-decoration: none;
  box-shadow: 0 10px 26px rgba(255,90,0,.45);
  transition: transform .25s ease; animation: rlh-buy-pulse 2s ease-in-out infinite;
}
.ei-allctrl-btn:hover { transform: translateY(-3px) scale(1.04); color: #fff !important; }
@keyframes rlh-buy-pulse { 0%,100% { box-shadow: 0 10px 26px rgba(255,90,0,.45); } 50% { box-shadow: 0 12px 36px rgba(255,90,0,.72); } }
@keyframes ei-allctrl-rise { from { opacity: 0; transform: translateX(-50%) translateY(24px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }
@media (max-width: 768px) {
  .ei-allctrl-btn { right: 12px; bottom: 12px; padding: 9px 15px; font-size: 12.5px; }
  .ei-allctrl-img { max-height: 66%; }
  .ei-allctrl-head { top: 10px; }
}

/* ============================================
   READY MADE SETUP — "Shop by Height" tiles
============================================ */
/* On the parent category page, hide the default WooCommerce
   sub-category grid + ordering bar — we show custom tiles. */
.term-ready-made-setup .ei-shop-topbar { display: none !important; }
.term-ready-made-setup ul.products { display: none !important; }
.term-ready-made-setup .woocommerce-no-products-found,
.term-ready-made-setup .woocommerce-info { display: none !important; }

.rlh-ht-section { margin: 4px 0 26px; }
.rlh-ht-head { text-align: center; margin-bottom: 20px; }
.rlh-ht-head h2 {
  font-family: 'Rajdhani','Poppins',sans-serif; font-weight: 700;
  font-size: clamp(20px, 3vw, 30px); color: var(--navy, #0A2540); margin: 0 0 4px;
}
.rlh-ht-head p { font-family: 'Inter',sans-serif; font-size: 13.5px; color: #6b7a90; margin: 0; }

.rlh-ht-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(128px, 1fr));
  gap: 16px 14px;
}
.rlh-ht-card {
  position: relative; display: flex; align-items: center; justify-content: center; gap: 6px;
  aspect-ratio: 1 / 1; border-radius: 16px; text-decoration: none;
  box-shadow: 0 10px 22px rgba(10,20,50,.16); overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}
.rlh-ht-card::after {
  content: ''; position: absolute; inset: 0; border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35), inset 0 -30px 40px rgba(0,0,0,.12);
  pointer-events: none;
}
.rlh-ht-card:hover { transform: translateY(-5px) scale(1.02); box-shadow: 0 18px 32px rgba(10,20,50,.28); }
.rlh-ht-arrow { display: flex; align-items: center; opacity: .95; }
.rlh-ht-num {
  font-family: 'Rajdhani','Poppins',sans-serif; font-weight: 800; color: #fff;
  font-size: 46px; line-height: 1; letter-spacing: -1px; text-shadow: 0 2px 10px rgba(0,0,0,.22);
  display: flex; align-items: flex-start;
}
.rlh-ht-num small { font-size: 15px; font-weight: 700; margin-top: 8px; margin-left: 2px; opacity: .95; }
.rlh-ht-count {
  position: absolute; bottom: 9px; left: 0; right: 0; text-align: center;
  font-family: 'Inter',sans-serif; font-size: 10.5px; font-weight: 600; color: rgba(255,255,255,.9);
  letter-spacing: .3px;
}
.rlh-ht-back {
  display: inline-flex; align-items: center; gap: 6px; margin: 0 0 16px;
  font-family: 'Poppins',sans-serif; font-weight: 600; font-size: 13px;
  color: var(--primary, #0066FF); text-decoration: none;
  background: rgba(0,102,255,.08); border: 1px solid rgba(0,102,255,.18);
  padding: 7px 14px; border-radius: 999px; transition: background .2s ease;
}
.rlh-ht-back:hover { background: rgba(0,102,255,.15); }

@media (max-width: 600px) {
  .rlh-ht-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .rlh-ht-num { font-size: 34px; }
  .rlh-ht-num small { font-size: 12px; margin-top: 5px; }
  .rlh-ht-arrow svg { width: 14px; height: 34px; }
  .rlh-ht-count { font-size: 9px; bottom: 6px; }
}
