/* ============================================================
   KAWTKYITE — IT & Mobile Store Theme v1.0
   White / Light Professional Theme — OpenCart Compatible
   ============================================================ */

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

:root {
  --primary:        #1565C0;
  --primary-dark:   #0D47A1;
  --primary-light:  #E3F2FD;
  --primary-mid:    #BBDEFB;
  --accent-red:     #E53935;
  --accent-orange:  #E65100;
  --accent-green:   #43A047;
  --bg-body:        #F5F6FA;
  --bg-white:       #FFFFFF;
  --bg-light:       #F8F9FC;
  --border:         #E8ECF0;
  --border-mid:     #D0D8E4;
  --text-dark:      #1A237E;
  --text-body:      #263238;
  --text-muted:     #90A4AE;
  --text-light:     #B0BEC5;
  --nav-bg:         #1565C0;
  --nav-dark:       #0D47A1;
  --topbar-bg:      #1A237E;
  --footer-bg:      #1A237E;
  --shadow-sm:      0 1px 4px rgba(0,0,0,0.07);
  --shadow-md:      0 4px 16px rgba(0,0,0,0.10);
  --shadow-card:    0 2px 8px rgba(21,101,192,0.08);
  --radius:         10px;
  --radius-sm:      6px;
  --radius-lg:      14px;
  --transition:     all 0.18s ease;
  --font-display:   'Barlow Condensed', 'Segoe UI', sans-serif;
  --font-body:      'Nunito', 'Segoe UI', Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { background: var(--bg-body); color: var(--text-body); font-family: var(--font-body); font-size: 14px; line-height: 1.6; }
a { color: var(--text-body); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; }
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: #f0f0f0; }
::-webkit-scrollbar-thumb { background: #BBDEFB; border-radius: 3px; }

/* ============ CONTAINER ============ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

/* ============ TOP BAR ============ */
#topbar {
  background: var(--topbar-bg);
  padding: 7px 0;
  font-size: 12px;
  color: #C5CAE9;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
#topbar .container { display: flex; justify-content: space-between; align-items: center; }
#topbar .tb-left { display: flex; align-items: center; gap: 20px; }
#topbar .tb-left span { display: flex; align-items: center; gap: 5px; }
#topbar .tb-left i { color: #90CAF9; font-size: 13px; }
#topbar .tb-right { display: flex; align-items: center; gap: 4px; }
#topbar a { color: #C5CAE9; padding: 0 6px; }
#topbar a:hover { color: #fff; }
#topbar .tb-promo { color: #FFE082; font-weight: 700; }

/* ============ HEADER ============ */
#header {
  background: var(--bg-white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
#header .container { display: flex; align-items: center; gap: 20px; }

/* Logo */
#logo { display: flex; align-items: center; gap: 0; flex-shrink: 0; }
.logo-emblem {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(21,101,192,0.25);
}
.logo-texts { }
.logo-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 2px;
  line-height: 1;
}
.logo-sub {
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Search */
#search { flex: 1; max-width: 520px; }
.search-form {
  display: flex;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.search-form:focus-within { border-color: var(--primary-dark); box-shadow: 0 0 0 3px rgba(21,101,192,0.12); }
.search-cat {
  background: var(--primary-light);
  border: none;
  border-right: 1px solid #BBDEFB;
  padding: 0 12px;
  color: var(--primary);
  font-size: 12px;
  font-family: var(--font-body);
  outline: none;
  cursor: pointer;
  white-space: nowrap;
}
.search-input {
  flex: 1;
  border: none;
  padding: 10px 16px;
  font-size: 13px;
  font-family: var(--font-body);
  color: var(--text-body);
  background: #fff;
  outline: none;
}
.search-input::placeholder { color: var(--text-light); }
.search-btn {
  background: var(--primary);
  border: none;
  padding: 10px 22px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex; align-items: center; gap: 6px;
  transition: var(--transition);
  white-space: nowrap;
}
.search-btn:hover { background: var(--primary-dark); }

/* Header Actions */
.header-actions { display: flex; gap: 8px; margin-left: auto; }
.hact {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 8px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: #546E7A;
  font-size: 10px;
  font-weight: 600;
  background: #fff;
  position: relative;
  transition: var(--transition);
  text-decoration: none;
}
.hact:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.hact .hicon { font-size: 20px; line-height: 1; }
.hact .hbadge {
  position: absolute; top: 4px; right: 4px;
  background: #F44336; color: #fff;
  font-size: 9px; font-weight: 700;
  border-radius: 50%; width: 15px; height: 15px;
  display: flex; align-items: center; justify-content: center;
}

/* ============ NAVBAR ============ */
#navbar {
  background: var(--nav-bg);
  box-shadow: 0 2px 6px rgba(21,101,192,0.2);
}
#navbar .container { display: flex; align-items: stretch; }
.nav-cat-btn {
  background: var(--nav-dark);
  color: #fff;
  border: none;
  padding: 0 20px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-body);
  display: flex; align-items: center; gap: 10px;
  letter-spacing: 0.5px;
  min-height: 46px;
  min-width: 200px;
  cursor: pointer;
  transition: var(--transition);
}
.nav-cat-btn:hover { background: #0a3d91; }
.nav-menu { display: flex; }
.nav-menu li a {
  display: flex; align-items: center;
  padding: 0 16px;
  height: 46px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  border-bottom: 3px solid transparent;
  letter-spacing: 0.3px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-menu li a:hover,
.nav-menu li a.active {
  color: #fff;
  border-bottom-color: #fff;
  background: rgba(255,255,255,0.08);
}
.nav-menu li.special a { color: #FFE082; }
.nav-menu li.special a:hover { color: #FFD740; border-bottom-color: #FFD740; }

/* Categories dropdown */
.cat-dropdown { position: relative; }
.cat-dropdown-menu {
  position: absolute; top: 100%; left: 0;
  width: 220px;
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-md);
  display: none;
  z-index: 999;
}
.cat-dropdown:hover .cat-dropdown-menu { display: block; }
.cat-dropdown-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--text-body);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.cat-dropdown-menu a:hover { background: var(--primary-light); color: var(--primary); padding-left: 22px; }
.cat-dropdown-menu a:last-child { border-bottom: none; }
.cat-dropdown-menu a img,
.cat-dropdown-menu a .cat-ico { width: 24px; height: 24px; object-fit: contain; font-size: 18px; }
.cat-arr { margin-left: auto; color: var(--text-light); font-size: 13px; }

/* ============ MARQUEE STRIP ============ */
#marquee-strip {
  background: var(--primary-light);
  border-bottom: 1px solid var(--primary-mid);
  padding: 7px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex; gap: 60px;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
  font-size: 12px;
  color: var(--primary);
}
.marquee-track strong { color: var(--primary-dark); font-weight: 700; }
.marquee-track span { display: flex; align-items: center; gap: 5px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ HOME LAYOUT (sidebar + content) ============ */
.home-layout {
  display: flex;
  gap: 0;
  align-items: flex-start;
  padding: 16px 20px;
  max-width: 1280px;
  margin: 0 auto;
}

/* ============ LEFT SIDEBAR (Category menu) ============ */
.home-sidebar {
  width: 220px;
  flex-shrink: 0;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-right: 16px;
  box-shadow: var(--shadow-sm);
}
.sidebar-head {
  background: var(--primary);
  color: #fff;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 700;
  display: flex; align-items: center; gap: 8px;
  letter-spacing: 0.5px;
}
.sidebar-cat {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  border-bottom: 1px solid #F4F6F9;
  font-size: 13px;
  color: var(--text-body);
  transition: var(--transition);
  cursor: pointer;
}
.sidebar-cat:hover { background: var(--primary-light); color: var(--primary); padding-left: 20px; }
.sidebar-cat:hover .cat-arrow { color: var(--primary); }
.sidebar-cat:last-child { border-bottom: none; }
.sidebar-cat .cat-img { width: 28px; height: 28px; object-fit: contain; font-size: 18px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sidebar-cat .cat-label { flex: 1; font-weight: 500; }
.cat-arrow { color: var(--text-light); font-size: 13px; margin-left: auto; }

/* ============ HERO + RIGHT ============ */
.home-main { flex: 1; min-width: 0; }

/* ============ HERO SLIDER ============ */
#hero-slider {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  width: 100%;
  aspect-ratio: 1280 / 555;
  background: var(--primary-light);
  border: 1px solid var(--primary-mid);
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 36px 44px;
  opacity: 0;
  transition: opacity 0.55s ease;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.hero-content { flex: 1; z-index: 2; }
.hero-eyebrow {
  display: inline-block;
  background: var(--primary-mid);
  color: var(--primary-dark);
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px;
  margin-bottom: 12px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.hero-title .hl { color: var(--primary); }
.hero-desc { font-size: 13px; color: #546E7A; margin-bottom: 18px; line-height: 1.6; max-width: 300px; }
.hero-price { margin-bottom: 20px; }
.price-old { font-size: 13px; color: var(--text-light); text-decoration: line-through; margin-right: 6px; }
.price-new { font-size: 28px; font-weight: 800; color: var(--accent-red); font-family: var(--font-display); }
.hero-btns { display: flex; gap: 10px; }
.btn-primary-hero {
  background: var(--primary);
  color: #fff; border: none;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 700;
  transition: var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.btn-primary-hero:hover { background: var(--primary-dark); color: #fff; transform: translateY(-1px); }
.btn-outline-hero {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 600;
  transition: var(--transition);
}
.btn-outline-hero:hover { background: var(--primary-light); }

.hero-image {
  position: absolute;
  right: 44px; bottom: 0;
  font-size: 160px; line-height: 1;
  animation: heroFloat 3.5s ease-in-out infinite;
  filter: drop-shadow(4px 8px 20px rgba(21,101,192,0.15));
}
@keyframes heroFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

.slider-dots {
  position: absolute; bottom: 14px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 7px;
}
.sdot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(21,101,192,0.2);
  cursor: pointer; transition: var(--transition);
}
.sdot.active { background: var(--primary); width: 22px; border-radius: 4px; }
.slider-arrows {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 100%; display: flex; justify-content: space-between;
  padding: 0 12px; z-index: 5;
}
.sarrow {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 15px; color: var(--primary);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.sarrow:hover { background: var(--primary); color: #fff; }

/* ============ PROMO BANNER ============ */
.promo-banner {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #FFCC80;
  background: linear-gradient(120deg, #FFF8E1 0%, #FFF3E0 100%);
  padding: 20px 28px;
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 0;
  cursor: pointer;
  transition: var(--transition);
  height: 120px;
  box-shadow: var(--shadow-sm);
}
.promo-banner:hover { border-color: #FF6F00; box-shadow: 0 4px 16px rgba(230,81,0,0.12); transform: translateY(-2px); }
.promo-icon { font-size: 60px; line-height: 1; flex-shrink: 0; }
.promo-text { }
.promo-tag { font-size: 10px; font-weight: 700; color: #E65100; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 4px; }
.promo-title { font-family: var(--font-display); font-size: 24px; font-weight: 800; color: #BF360C; line-height: 1.1; margin-bottom: 8px; }
.promo-meta { font-size: 11px; color: #E65100; display: flex; align-items: center; gap: 10px; }
.promo-cta {
  background: var(--accent-orange);
  color: #fff; border: none;
  padding: 7px 18px;
  border-radius: var(--radius-sm);
  font-size: 12px; font-weight: 700;
  cursor: pointer; transition: var(--transition);
}
.promo-cta:hover { background: #BF360C; }

/* ============ SECTION ============ */
.section { padding: 24px 20px; max-width: 1280px; margin: 0 auto; }
.section-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
}
.section-title {
  font-size: 16px; font-weight: 800;
  color: var(--text-dark);
  display: flex; align-items: center; gap: 8px;
}
.section-sub { font-size: 11px; color: var(--text-muted); font-weight: 400; margin-left: 4px; }
.section-meta { display: flex; align-items: center; gap: 12px; }
.countdown { display: flex; align-items: center; gap: 4px; font-size: 11px; color: var(--text-muted); }
.cunit {
  background: var(--primary);
  color: #fff;
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 13px; font-weight: 700;
  min-width: 28px; text-align: center;
  font-family: var(--font-display);
}
.btn-shop-more {
  font-size: 12px; font-weight: 700;
  color: var(--accent-red);
  border: 1.5px solid var(--accent-red);
  padding: 5px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-decoration: none;
}
.btn-shop-more:hover { background: var(--accent-red); color: #fff; }

/* ============ PRODUCT GRID ============ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
  gap: 14px;
}
.product-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  cursor: pointer;
}
.product-card:hover {
  border-color: var(--primary);
  box-shadow: 0 6px 24px rgba(21,101,192,0.13);
  transform: translateY(-4px);
}
.product-thumb {
  position: relative;
  background: var(--bg-light);
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.product-thumb img:not(.mp-badge-img):not(.na-badge-img) {
  max-height: 150px; max-width: 88%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.product-card:hover .product-thumb img:not(.mp-badge-img):not(.na-badge-img) { transform: scale(1.06); }
.product-thumb-placeholder { font-size: 60px; line-height: 1; }

.product-badge {
  position: absolute; top: 9px; left: 9px;
  font-size: 9px; font-weight: 700;
  padding: 3px 8px; border-radius: 4px;
  letter-spacing: 0.5px; text-transform: uppercase;
}
.badge-cashback { background: #F44336; color: #fff; }
.badge-new { background: #43A047; color: #fff; }
.badge-sale { background: #FF8F00; color: #fff; }
.badge-hot { background: #E65100; color: #fff; }

.product-actions {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; flex-direction: row; justify-content: center; gap: 6px;
  padding: 8px;
  background: rgba(255,255,255,0.92);
  opacity: 0; transform: translateY(8px);
  transition: var(--transition);
}
.product-card:hover .product-actions { opacity: 1; transform: translateY(0); }
.pact-btn {
  width: 30px; height: 30px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.pact-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

.product-info { padding: 12px; }
.product-name {
  font-size: 12px; font-weight: 600;
  color: var(--text-body);
  margin-bottom: 6px; line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; min-height: 33px;
}
.product-rating { display: flex; align-items: center; gap: 4px; margin-bottom: 5px; }
.stars { color: #FFA000; font-size: 11px; }
.review-count { font-size: 10px; color: var(--text-muted); }
.product-price { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.p-now { font-size: 15px; font-weight: 800; color: var(--accent-red); }
.p-old { font-size: 11px; color: var(--text-light); text-decoration: line-through; }
.btn-add-cart {
  width: 100%;
  background: var(--primary);
  color: #fff; border: none;
  border-radius: var(--radius-sm);
  padding: 8px;
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 5px;
  transition: var(--transition);
  font-family: var(--font-body);
}
.btn-add-cart:hover { background: var(--primary-dark); }

/* ============ BANNER CARDS (3 col) ============ */
.banner-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 0 20px 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.banner-card {
  border-radius: var(--radius);
  padding: 22px 20px;
  border: 1px solid var(--border);
  height: 120px;
  display: flex; align-items: center; gap: 16px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.banner-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.banner-card-blue  { background: linear-gradient(135deg, #E3F2FD, #BBDEFB); border-color: #90CAF9; }
.banner-card-amber { background: linear-gradient(135deg, #FFF8E1, #FFECB3); border-color: #FFD54F; }
.banner-card-green { background: linear-gradient(135deg, #E8F5E9, #C8E6C9); border-color: #A5D6A7; }
.banner-icon { font-size: 44px; line-height: 1; flex-shrink: 0; }
.banner-tag { font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 3px; }
.banner-title { font-family: var(--font-display); font-size: 18px; font-weight: 800; margin-bottom: 8px; line-height: 1.2; }
.banner-btn {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px; color: #fff;
  letter-spacing: 0.5px;
}

/* ============ FEATURES STRIP ============ */
.features-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0 20px 24px;
  max-width: 1240px;
  box-shadow: var(--shadow-sm);
}
.feature-item {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px;
  border-right: 1px solid var(--border);
}
.feature-item:last-child { border-right: none; }
.feat-icon { font-size: 28px; flex-shrink: 0; }
.feat-title { font-size: 13px; font-weight: 700; color: var(--text-body); }
.feat-sub { font-size: 11px; color: var(--text-muted); }

/* ============ FOOTER ============ */
#footer {
  background: var(--footer-bg);
  color: #fff;
  margin-top: 8px;
}
.footer-top { padding: 40px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo-name { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: #fff; letter-spacing: 2px; margin-bottom: 4px; }
.footer-logo-sub { font-size: 9px; color: #7986CB; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 12px; }
.footer-desc { font-size: 12px; color: #9FA8DA; line-height: 1.75; margin-bottom: 16px; }
.footer-socials { display: flex; gap: 7px; }
.footer-soc {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; cursor: pointer;
  transition: var(--transition); color: #9FA8DA;
}
.footer-soc:hover { background: var(--primary); color: #fff; }
.footer-col h4 {
  font-size: 12px; font-weight: 700; color: #fff;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid #283593;
  letter-spacing: 0.5px; text-transform: uppercase;
}
.footer-link {
  font-size: 12px; color: #9FA8DA;
  margin-bottom: 8px; cursor: pointer;
  display: flex; align-items: center; gap: 5px;
  transition: var(--transition);
}
.footer-link:hover { color: #90CAF9; padding-left: 4px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0;
  font-size: 11px; color: #7986CB;
}
.payment-methods { display: flex; gap: 6px; }
.pay-badge {
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 10px; color: #C5CAE9; font-weight: 700;
}

/* ============ PAGE HEADER (breadcrumb) ============ */
.page-header-bar {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  margin-bottom: 4px;
}
.breadcrumb-nav { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-muted); flex-wrap: wrap; }
.breadcrumb-nav a { color: var(--text-muted); }
.breadcrumb-nav a:hover { color: var(--primary); }
.breadcrumb-sep { color: var(--text-light); }
.page-title { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--text-dark); margin-top: 8px; }

/* ============ PRODUCT LISTING PAGE ============ */
.shop-layout { display: grid; grid-template-columns: 230px 1fr; gap: 20px; padding: 20px; max-width: 1280px; margin: 0 auto; }
.filter-widget {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}
.filter-widget h4 {
  font-size: 12px; font-weight: 700; color: var(--text-dark);
  margin-bottom: 12px; padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  text-transform: uppercase; letter-spacing: 0.5px;
}
.filter-option { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; font-size: 13px; color: var(--text-body); cursor: pointer; }
.filter-option input[type="checkbox"] { accent-color: var(--primary); }
.filter-option:hover { color: var(--primary); }
.price-inputs { display: flex; gap: 6px; align-items: center; }
.price-in {
  flex: 1; background: var(--bg-light); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 6px 10px;
  font-size: 12px; color: var(--text-body); outline: none; font-family: var(--font-body);
}
.price-in:focus { border-color: var(--primary); }
.filter-apply {
  width: 100%; background: var(--primary); color: #fff; border: none;
  border-radius: var(--radius-sm); padding: 8px; font-size: 12px; font-weight: 700;
  margin-top: 10px; cursor: pointer; font-family: var(--font-body);
  transition: var(--transition);
}
.filter-apply:hover { background: var(--primary-dark); }

.shop-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px; background: var(--bg-white);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 10px 14px; box-shadow: var(--shadow-sm);
}
.results-info { font-size: 13px; color: var(--text-muted); }
.sort-sel {
  background: var(--bg-light); border: 1px solid var(--border);
  color: var(--text-body); padding: 7px 14px; border-radius: var(--radius-sm);
  font-size: 12px; outline: none; cursor: pointer; font-family: var(--font-body);
}

/* ============ PRODUCT DETAIL ============ */
.product-detail-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; padding: 28px 0; }
.gallery-main-img {
  background: var(--bg-light); border: 1px solid var(--border);
  border-radius: var(--radius-lg); aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; margin-bottom: 12px;
}
.gallery-main-img img { max-width: 80%; max-height: 80%; object-fit: contain; }
.gallery-thumbs { display: flex; gap: 8px; }
.gallery-thumb {
  width: 72px; height: 72px;
  background: var(--bg-light); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; overflow: hidden; transition: var(--transition);
}
.gallery-thumb:hover, .gallery-thumb.active { border-color: var(--primary); }
.gallery-thumb img { max-width: 90%; max-height: 90%; object-fit: contain; }
.detail-brand { font-size: 11px; font-weight: 700; color: var(--primary); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.detail-title { font-size: 22px; font-weight: 800; color: var(--text-dark); line-height: 1.3; margin-bottom: 12px; }
.detail-divider { border: none; border-top: 1px solid var(--border); margin: 14px 0; }
.detail-price-box { margin-bottom: 18px; }
.detail-now { font-family: var(--font-display); font-size: 34px; font-weight: 800; color: var(--accent-red); display: block; margin-bottom: 4px; }
.detail-old { font-size: 15px; color: var(--text-light); text-decoration: line-through; margin-right: 8px; }
.detail-save { font-size: 12px; color: var(--accent-green); background: #E8F5E9; padding: 2px 8px; border-radius: 4px; font-weight: 700; }
.qty-row { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.qty-btn {
  width: 36px; height: 36px;
  background: var(--bg-light); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--text-body); transition: var(--transition);
}
.qty-btn:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.qty-inp {
  width: 60px; height: 36px; text-align: center;
  background: var(--bg-light); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: 14px; font-weight: 700;
  color: var(--text-body); outline: none; font-family: var(--font-body);
}
.detail-action-row { display: flex; gap: 10px; }
.btn-cart-large {
  flex: 1; background: var(--primary); color: #fff; border: none;
  border-radius: var(--radius); padding: 13px;
  font-size: 14px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  cursor: pointer; transition: var(--transition); font-family: var(--font-body);
}
.btn-cart-large:hover { background: var(--primary-dark); }
.btn-wish-large {
  width: 48px; height: 48px; border-radius: var(--radius);
  border: 1.5px solid var(--border); background: #fff;
  font-size: 20px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--text-muted); transition: var(--transition);
}
.btn-wish-large:hover { border-color: #F44336; color: #F44336; }

/* ============ TOAST ============ */
.toast-msg {
  position: fixed; bottom: 24px; right: 24px;
  background: #fff;
  border: 1.5px solid var(--accent-green);
  border-radius: var(--radius);
  padding: 13px 20px;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text-body);
  box-shadow: var(--shadow-md);
  z-index: 9999;
  transform: translateY(100px); opacity: 0;
  transition: all 0.3s ease;
}
.toast-msg.show { transform: translateY(0); opacity: 1; }
.toast-msg .tick { color: var(--accent-green); font-size: 18px; font-weight: 700; }

/* ============ PAGINATION ============ */
.pagination-wrap { display: flex; gap: 6px; justify-content: center; margin-top: 36px; }
.pager-btn {
  min-width: 36px; height: 36px;
  background: var(--bg-white); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600; cursor: pointer;
  color: var(--text-body); padding: 0 8px;
  transition: var(--transition);
}
.pager-btn:hover, .pager-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ============ CART PAGE ============ */
.cart-layout { display: grid; grid-template-columns: 1fr 320px; gap: 20px; padding: 20px; max-width: 1280px; margin: 0 auto; }
.cart-table { width: 100%; border-collapse: collapse; background: var(--bg-white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.cart-table th { padding: 13px 16px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); border-bottom: 1px solid var(--border); text-align: left; background: var(--bg-light); }
.cart-table td { padding: 14px 16px; border-bottom: 1px solid var(--border); font-size: 13px; vertical-align: middle; }
.cart-product-cell { display: flex; align-items: center; gap: 12px; }
.cart-thumb { width: 64px; height: 64px; background: var(--bg-light); border-radius: var(--radius-sm); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; }
.cart-thumb img { max-width: 85%; max-height: 85%; object-fit: contain; }
.order-summary-box {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 22px;
  position: sticky; top: 90px;
  box-shadow: var(--shadow-sm);
}
.order-summary-box h3 { font-size: 15px; font-weight: 800; color: var(--text-dark); margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.summary-line { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 10px; color: var(--text-body); }
.summary-line.total { font-size: 16px; font-weight: 800; color: var(--accent-red); border-top: 1px solid var(--border); padding-top: 12px; margin-top: 6px; }
.btn-checkout {
  width: 100%; background: var(--primary); color: #fff; border: none;
  border-radius: var(--radius); padding: 14px;
  font-size: 15px; font-weight: 800; margin-top: 16px;
  cursor: pointer; transition: var(--transition); font-family: var(--font-body);
}
.btn-checkout:hover { background: var(--primary-dark); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .home-layout { flex-direction: column; }
  .home-sidebar { width: 100%; margin-right: 0; margin-bottom: 16px; }
  .home-sidebar .sidebar-head ~ .sidebar-cat { display: inline-flex; border-bottom: none; border-right: 1px solid #F4F6F9; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .features-strip { grid-template-columns: repeat(2, 1fr); }
  .banner-3col { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .logo-emblem { width: 40px; height: 40px; font-size: 13px; }
  .logo-name { font-size: 17px; }
  .search-cat { display: none; }
  .hero-image { display: none; }
  .hero-title { font-size: 28px; }
  .hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 36px 44px;
  opacity: 0;
  transition: opacity 0.55s ease;
  pointer-events: none;
}
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .shop-layout { grid-template-columns: 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .product-detail-layout { grid-template-columns: 1fr; }
  .banner-3col { grid-template-columns: 1fr; }
  .features-strip { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .hact span:not(.hbadge):not(.hicon) { display: none; }
}



/* Nav Categories Dropdown */
.nav-cat-item { position: relative; }
.nav-cat-item > a { cursor: pointer; }
.nav-cat-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  min-width: 220px;
  z-index: 9999;
  padding: 6px 0;
  list-style: none;
  margin: 0;
}
.nav-cat-item:hover .nav-cat-list { display: block; }
.nav-cat-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: background 0.15s;
}
.nav-cat-list li a:hover {
  background: #F0F4FF;
  color: var(--primary);
}

/* Neon Red Button - New Arrival */
.neon-btn-red {
  display: inline-block;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  background: #E30000;
  border: 2px solid #ff4444;
  border-radius: 6px;
  text-transform: uppercase;
  box-shadow:
    0 0 6px #ff0000,
    0 0 14px #ff0000,
    0 0 28px #ff4444,
    0 0 50px rgba(255,0,0,0.4),
    inset 0 0 10px rgba(255,255,255,0.15);
  text-shadow:
    0 0 6px #fff,
    0 0 12px #fff,
    0 0 22px #ff4444;
  animation: neon-pulse-red 1.8s ease-in-out infinite alternate;
}
@keyframes neon-pulse-red {
  from {
    box-shadow:
      0 0 6px #ff0000,
      0 0 14px #ff0000,
      0 0 28px #ff4444,
      0 0 50px rgba(255,0,0,0.4),
      inset 0 0 10px rgba(255,255,255,0.15);
  }
  to {
    box-shadow:
      0 0 10px #ff0000,
      0 0 24px #ff0000,
      0 0 50px #ff4444,
      0 0 90px rgba(255,0,0,0.6),
      inset 0 0 18px rgba(255,255,255,0.25);
  }
}

/* New Arrival Badge Overlay */
.product-thumb .na-badge-img {
  position: absolute !important;
  top: 4px !important;
  right: 4px !important;
  left: auto !important;
  transform: none !important;
  width: 55px !important;
  max-width: 55px !important;
  max-height: none !important;
  height: auto !important;
  z-index: 10 !important;
  pointer-events: none !important;
  object-fit: contain !important;
}

/* Black & Glass Glow Section Title */
.section-title-glass {
  display: inline;
  font-size: 18px;
  font-weight: 800;
  color: #111111;
  letter-spacing: 1px;
  background: none;
  border: none;
  border-radius: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  text-shadow: none;
  padding: 0;
  animation: none;
}
  to {
    box-shadow:
      0 0 14px rgba(255,255,255,0.3),
      0 0 35px rgba(255,255,255,0.12),
      0 4px 20px rgba(0,0,0,0.5),
      inset 0 1px 0 rgba(255,255,255,0.25);
  }
}

/* Most Popular Badge Overlay */
.product-thumb .mp-badge-img {
  position: absolute !important;
  top: 4px !important;
  right: 4px !important;
  left: auto !important;
  transform: none !important;
  width: 55px !important;
  max-width: 55px !important;
  max-height: none !important;
  height: auto !important;
  z-index: 10 !important;
  pointer-events: none !important;
  object-fit: contain !important;
}

/* ===== HERO SLIDER IMAGE ===== */
.slide-img-link {
  display: block;
  position: absolute;
  inset: 0;
  line-height: 0;
}
.slide-full-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
