/*
Theme Name: Electronic Express
Theme URI: https://electronicexpress.store/
Author: Electronic Express Technical Team
Author URI: https://electronicexpress.store/
Description: High-density, professional automotive diagnostic equipment, tools, and garage supplies ecommerce theme.
Version: 3.0.0
License: GNU General Public License v2 or later
Text Domain: electronic-express
*/

/* ==========================================================================
   ELECTRONIC EXPRESS - INDUSTRIAL AUTOMOTIVE ECOMMERCE DESIGN SYSTEM
   Inspired by Locksmith Keyless Architecture, Density & UX
   ========================================================================== */

:root {
  --ee-primary: #0b4f8a;
  --ee-primary-hover: #083b68;
  --ee-primary-light: #e0f2fe;
  --ee-primary-tint: #f0f9ff;
  --ee-accent: #0284c7;
  --ee-accent-hover: #0369a1;
  --ee-dark: #0f172a;
  --ee-dark-surface: #1e293b;
  --ee-dark-deep: #0b1526;
  --ee-success: #16a34a;
  --ee-success-bg: #dcfce7;
  --ee-danger: #dc2626;
  --ee-warning: #d97706;
  --ee-bg-main: #f8fafc;
  --ee-bg-surface: #ffffff;
  --ee-border: #e2e8f0;
  --ee-border-dark: #cbd5e1;
  --ee-border-focus: #0284c7;
  --ee-text-main: #0f172a;
  --ee-text-muted: #64748b;
  --ee-text-light: #94a3b8;
  --ee-font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --ee-font-mono: 'JetBrains Mono', 'SFMono-Regular', Consolas, monospace;
  --ee-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --ee-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.04);
  --ee-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --ee-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --ee-radius-sm: 4px;
  --ee-radius-md: 8px;
  --ee-radius-lg: 12px;
  --ee-max-width: 1280px;
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

body.ee-storefront-body {
  font-family: var(--ee-font-sans);
  background-color: var(--ee-bg-main);
  color: var(--ee-text-main);
  line-height: 1.5;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.ee-container {
  width: 100%;
  max-width: var(--ee-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Reusable Buttons */
.ee-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--ee-font-sans);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: var(--ee-radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
}

.ee-btn-primary {
  background-color: var(--ee-primary);
  color: #ffffff !important;
  border-color: var(--ee-primary);
}
.ee-btn-primary:hover {
  background-color: var(--ee-primary-hover);
  border-color: var(--ee-primary-hover);
  color: #ffffff !important;
}

.ee-btn-dark {
  background-color: var(--ee-dark);
  color: #ffffff !important;
  border-color: var(--ee-dark);
}
.ee-btn-dark:hover {
  background-color: var(--ee-dark-surface);
  border-color: var(--ee-dark-surface);
  color: #ffffff !important;
}

.ee-btn-accent {
  background-color: var(--ee-accent);
  color: #ffffff !important;
  border-color: var(--ee-accent);
}
.ee-btn-accent:hover {
  background-color: var(--ee-accent-hover);
  border-color: var(--ee-accent-hover);
  color: #ffffff !important;
}

.ee-btn-outline-light {
  background-color: transparent;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.4);
}
.ee-btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  color: #ffffff !important;
}

.ee-btn-outline-dark {
  background-color: transparent;
  color: var(--ee-dark);
  border-color: var(--ee-border-dark);
}
.ee-btn-outline-dark:hover {
  background-color: #f1f5f9;
  border-color: var(--ee-dark);
}

.ee-btn-lg {
  padding: 13px 26px;
  font-size: 15px;
}

.ee-btn-xl {
  padding: 15px 30px;
  font-size: 16px;
}

.ee-btn-block {
  width: 100%;
}

/* ==========================================================================
   1. TOP UTILITY ANNOUNCEMENT BAR
   ========================================================================== */
.ee-top-bar {
  background-color: var(--ee-dark-deep);
  color: #cbd5e1;
  font-size: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ee-top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 36px;
}

.ee-top-left, .ee-top-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ee-top-tag {
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
  padding: 2px 8px;
  border-radius: var(--ee-radius-sm);
  font-weight: 700;
  font-size: 11px;
}

.ee-top-text a {
  color: #ffffff;
}

.ee-promo-banner {
  color: #e2e8f0;
  font-weight: 600;
}

.ee-top-link {
  color: #94a3b8;
}
.ee-top-link:hover {
  color: #ffffff;
}

.ee-divider {
  color: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   2. MAIN BRAND HEADER & PREDICTIVE SEARCH BAR
   ========================================================================== */
.ee-main-header {
  background-color: var(--ee-bg-surface);
  border-bottom: 1px solid var(--ee-border);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--ee-shadow-sm);
}

.ee-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.ee-mobile-menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--ee-border);
  border-radius: 4px;
  cursor: pointer;
  padding: 8px 10px;
  flex-direction: column;
  gap: 4px;
}
.ee-mobile-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--ee-dark);
}

.ee-logo-area {
  flex-shrink: 0;
}

.ee-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ee-logo-graphic {
  width: 40px;
  height: 40px;
  background: var(--ee-primary);
  border-radius: var(--ee-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 20px;
}

.ee-logo-text-wrap {
  display: flex;
  flex-direction: column;
}

.ee-logo-brand {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--ee-dark);
  line-height: 1.1;
}
.ee-logo-brand strong {
  color: var(--ee-primary);
}

.ee-logo-sub {
  font-size: 11px;
  color: var(--ee-text-muted);
  font-weight: 600;
  letter-spacing: 0.1px;
}

/* High-Density Integrated Search Bar (Keyless Style) */
.ee-search-wrapper {
  flex: 1;
  max-width: 600px;
  position: relative;
}

.ee-search-form {
  width: 100%;
}

.ee-search-input-group {
  display: flex;
  align-items: center;
  border: 2px solid var(--ee-primary);
  border-radius: var(--ee-radius-sm);
  overflow: hidden;
  background: #ffffff;
}

.ee-search-icon {
  padding-left: 12px;
  color: var(--ee-text-muted);
  display: flex;
  align-items: center;
}

.ee-search-input {
  flex: 1;
  border: none;
  padding: 10px 12px;
  font-size: 14px;
  font-family: var(--ee-font-sans);
  outline: none;
}

.ee-search-submit {
  background: var(--ee-primary);
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.15s ease;
}
.ee-search-submit:hover {
  background: var(--ee-primary-hover);
}

/* Predictive Live Search Dropdown */
.ee-search-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid var(--ee-border);
  border-radius: 0 0 var(--ee-radius-md) var(--ee-radius-md);
  box-shadow: var(--ee-shadow-lg);
  display: none;
  z-index: 200;
  margin-top: 2px;
  max-height: 420px;
  overflow-y: auto;
}

/* Header Actions */
.ee-header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.ee-action-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
}

.ee-action-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ee-action-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.ee-action-label {
  font-size: 11px;
  color: var(--ee-text-muted);
  font-weight: 600;
  line-height: 1;
}

.ee-action-val {
  font-size: 13px;
  font-weight: 700;
  color: var(--ee-dark);
  margin-top: 2px;
}

.ee-cart-icon-wrap {
  position: relative;
}

.ee-cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--ee-primary);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   3. PRIMARY NAVIGATION BAR & MEGA MENU
   ========================================================================== */
.ee-main-nav {
  background-color: var(--ee-dark);
  color: #ffffff;
  border-bottom: 2px solid var(--ee-primary);
}

.ee-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
}

.ee-nav-departments {
  position: relative;
}

.ee-dept-btn {
  background: var(--ee-primary);
  color: #ffffff;
  border: none;
  height: 44px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}

.ee-dept-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 280px;
  background: #ffffff;
  border: 1px solid var(--ee-border);
  box-shadow: var(--ee-shadow-lg);
  border-radius: 0 0 var(--ee-radius-sm) var(--ee-radius-sm);
  display: none;
  z-index: 150;
}
.ee-dept-menu.active {
  display: block;
}

.ee-dept-item a {
  display: block;
  padding: 12px 18px;
  color: var(--ee-dark);
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid #f1f5f9;
}
.ee-dept-item a:hover {
  background: #f8fafc;
  color: var(--ee-primary);
}

.ee-nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.ee-nav-links a {
  color: #e2e8f0;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 0;
}
.ee-nav-links a:hover {
  color: #38bdf8;
}

.ee-nav-shop-all {
  color: #38bdf8;
  font-size: 13px;
  font-weight: 700;
}

/* ==========================================================================
   4. TRUST & VALUE BAR
   ========================================================================== */
.ee-trust-bar {
  background: #ffffff;
  border-bottom: 1px solid var(--ee-border);
  padding: 14px 0;
}

.ee-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ee-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ee-trust-icon {
  font-size: 24px;
}

.ee-trust-text {
  display: flex;
  flex-direction: column;
}
.ee-trust-text strong {
  font-size: 13px;
  color: var(--ee-dark);
}
.ee-trust-text span {
  font-size: 12px;
  color: var(--ee-text-muted);
}

/* ==========================================================================
   5. HERO & SHOWCASE SECTION
   ========================================================================== */
.ee-hero-section {
  padding: 24px 0;
}

.ee-hero-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 20px;
}

.ee-hero-banner {
  background: linear-gradient(135deg, var(--ee-dark) 0%, #1e293b 100%);
  color: #ffffff;
  border-radius: var(--ee-radius-md);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ee-hero-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #38bdf8;
  margin-bottom: 10px;
}

.ee-hero-title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
}

.ee-hero-desc {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 540px;
}

.ee-hero-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.ee-hero-perks {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: #94a3b8;
  flex-wrap: wrap;
}

.ee-hero-side-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ee-side-promo {
  background: #ffffff;
  border: 1px solid var(--ee-border);
  border-radius: var(--ee-radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
}
.ee-side-promo:hover {
  box-shadow: var(--ee-shadow-md);
  border-color: var(--ee-border-dark);
}

.ee-side-promo-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--ee-primary);
  margin-bottom: 6px;
}

.ee-side-promo h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ee-dark);
  margin-bottom: 4px;
}

.ee-side-promo p {
  font-size: 12px;
  color: var(--ee-text-muted);
  margin-bottom: 8px;
}

.ee-side-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--ee-dark);
  margin-bottom: 10px;
}

.ee-side-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--ee-primary);
}

/* ==========================================================================
   6. BRAND STRIP & PILLS
   ========================================================================== */
.ee-brand-pill {
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: #0f172a;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.15s ease;
}
.ee-brand-pill:hover {
  background: #0f4c81;
  color: #ffffff;
  border-color: #0f4c81;
}

/* ==========================================================================
   7. VISUAL CATEGORIES (Zero Empty Rectangles)
   ========================================================================== */
.ee-section {
  padding: 32px 0;
}

.ee-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 20px;
}

.ee-section-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--ee-dark);
}

.ee-section-subtitle {
  font-size: 13px;
  color: var(--ee-text-muted);
  margin-top: 2px;
}

.ee-view-all-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--ee-primary);
}

.ee-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.ee-cat-tile {
  background: #ffffff;
  border: 1px solid var(--ee-border);
  border-radius: var(--ee-radius-md);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.2s ease;
}
.ee-cat-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--ee-shadow-md);
  border-color: var(--ee-border-dark);
}

.ee-cat-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.ee-cat-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--ee-dark);
  margin-bottom: 4px;
}

.ee-cat-sub {
  font-size: 12px;
  color: var(--ee-text-muted);
  line-height: 1.4;
}

/* ==========================================================================
   8. PRODUCT GRID & CARDS
   ========================================================================== */
.ee-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.ee-product-card {
  background: #ffffff;
  border: 1px solid var(--ee-border);
  border-radius: var(--ee-radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
}
.ee-product-card:hover {
  box-shadow: var(--ee-shadow-md);
  border-color: var(--ee-border-dark);
}

.ee-card-img-wrap {
  width: 100%;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 12px;
  background: #fafafa;
  border-radius: var(--ee-radius-sm);
}

.ee-card-img {
  max-width: 100%;
  max-height: 180px;
  object-fit: contain;
  transition: transform 0.2s ease;
}
.ee-product-card:hover .ee-card-img {
  transform: scale(1.03);
}

.ee-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ee-card-brand-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
  font-size: 11px;
}

.ee-card-brand {
  font-weight: 700;
  color: var(--ee-primary);
  text-transform: uppercase;
}

.ee-card-sku {
  color: var(--ee-text-light);
  font-family: var(--ee-font-mono);
}

.ee-card-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--ee-dark);
  line-height: 1.4;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 36px;
}
.ee-card-title a:hover {
  color: var(--ee-primary);
}

.ee-card-model {
  font-size: 11px;
  color: var(--ee-text-muted);
  margin-bottom: 6px;
}

.ee-card-stock {
  font-size: 11px;
  margin-bottom: 8px;
}
.ee-stock-in {
  color: var(--ee-success);
  font-weight: 600;
}

.ee-card-pricing {
  margin-top: auto;
  margin-bottom: 10px;
}
.ee-card-price-current {
  font-size: 18px;
  font-weight: 800;
  color: var(--ee-dark);
}

.ee-card-footer {
  display: flex;
  gap: 8px;
  align-items: center;
}

.ee-qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--ee-border-dark);
  border-radius: var(--ee-radius-sm);
  overflow: hidden;
  height: 36px;
}
.ee-qty-stepper.ee-qty-lg {
  height: 44px;
}
.ee-qty-btn {
  background: #f1f5f9;
  border: none;
  width: 28px;
  height: 100%;
  cursor: pointer;
  font-weight: 700;
  color: var(--ee-dark);
  font-size: 14px;
}
.ee-qty-btn:hover {
  background: #e2e8f0;
}
.ee-qty-input {
  width: 36px;
  height: 100%;
  border: none;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  -moz-appearance: textfield;
  outline: none;
}
.ee-qty-input::-webkit-outer-spin-button,
.ee-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.ee-card-add-btn {
  flex: 1;
  height: 36px;
  font-size: 13px;
  padding: 0 10px;
}

/* ==========================================================================
   9. SPOTLIGHT SECTIONS
   ========================================================================== */
.ee-spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.ee-spotlight-card {
  background: #ffffff;
  border: 1px solid var(--ee-border);
  border-radius: var(--ee-radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.ee-spotlight-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--ee-primary);
  margin-bottom: 8px;
}

.ee-spotlight-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--ee-dark);
  margin-bottom: 10px;
}

.ee-spotlight-card p {
  font-size: 13px;
  color: var(--ee-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.ee-spotlight-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ee-dark);
  margin-bottom: 20px;
}

/* ==========================================================================
   10. SINGLE PRODUCT PAGE (PDP)
   ========================================================================== */
.ee-breadcrumbs {
  padding: 16px 0;
  font-size: 12px;
  color: var(--ee-text-muted);
}
.ee-breadcrumbs a:hover {
  color: var(--ee-primary);
}
.ee-bc-sep {
  margin: 0 6px;
  color: #cbd5e1;
}
.ee-bc-current {
  color: var(--ee-dark);
  font-weight: 600;
}

.ee-pdp-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 40px;
  background: #ffffff;
  padding: 32px;
  border: 1px solid var(--ee-border);
  border-radius: var(--ee-radius-md);
}

.ee-pdp-main-image-card {
  border: 1px solid var(--ee-border);
  border-radius: var(--ee-radius-sm);
  padding: 24px;
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}

.ee-pdp-img {
  max-width: 100%;
  max-height: 360px;
  object-fit: contain;
}

.ee-pdp-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 16px;
  text-align: center;
  font-size: 11px;
  color: var(--ee-text-muted);
  font-weight: 600;
}

.ee-pdp-trust-item {
  background: #f8fafc;
  border: 1px solid var(--ee-border);
  padding: 8px 4px;
  border-radius: 4px;
}

.ee-pdp-brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.ee-pdp-brand-badge {
  background: var(--ee-primary);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 3px;
  text-transform: uppercase;
}

.ee-pdp-sku-badge, .ee-pdp-mpn-badge {
  font-size: 12px;
  color: var(--ee-text-muted);
}

.ee-pdp-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--ee-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}

.ee-pdp-pricing-card {
  background: #f8fafc;
  border: 1px solid var(--ee-border);
  border-radius: var(--ee-radius-sm);
  padding: 16px 20px;
  margin-bottom: 20px;
}

.ee-pdp-price-current {
  font-size: 30px;
  font-weight: 800;
  color: var(--ee-dark);
}

.ee-pdp-fulfillment-box {
  margin-bottom: 20px;
  font-size: 13px;
}

.ee-stock-pill-in {
  background: var(--ee-success-bg);
  color: var(--ee-success);
  font-weight: 800;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 4px;
  margin-right: 8px;
}

.ee-pdp-order-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.ee-pdp-qty-group {
  display: flex;
  align-items: center;
}

.ee-pdp-btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.ee-pdp-b2b-banner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  padding: 14px;
  border-radius: var(--ee-radius-sm);
  font-size: 13px;
}

/* PDP Tabs */
.ee-pdp-tabs-container {
  background: #ffffff;
  border: 1px solid var(--ee-border);
  border-radius: var(--ee-radius-md);
  overflow: hidden;
}

.ee-tab-nav {
  display: flex;
  border-bottom: 1px solid var(--ee-border);
  background: #f8fafc;
  overflow-x: auto;
}

.ee-pdp-tab-link {
  padding: 14px 24px;
  background: transparent;
  border: none;
  font-family: var(--ee-font-sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--ee-text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.ee-pdp-tab-link:hover {
  color: var(--ee-dark);
}
.ee-pdp-tab-link.active {
  color: var(--ee-primary);
  background: #ffffff;
  border-bottom-color: var(--ee-primary);
}

.ee-pdp-tab-content {
  padding: 32px;
  display: none;
  font-size: 14px;
  line-height: 1.7;
  color: #334155;
}
.ee-pdp-tab-content.active {
  display: block;
}

.ee-specs-table {
  width: 100%;
  border-collapse: collapse;
}
.ee-specs-table th, .ee-specs-table td {
  padding: 12px 16px;
  border: 1px solid var(--ee-border);
  text-align: left;
  font-size: 13px;
}
.ee-specs-table th {
  background: #f8fafc;
  width: 250px;
  font-weight: 700;
  color: var(--ee-dark);
}

/* ==========================================================================
   11. SHOP & CATEGORY ARCHIVES
   ========================================================================== */
.ee-archive-wrapper {
  padding-bottom: 48px;
}

.ee-archive-header-banner {
  background: #ffffff;
  border: 1px solid var(--ee-border);
  border-radius: var(--ee-radius-md);
  padding: 24px 28px;
  margin-bottom: 24px;
}
.ee-archive-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--ee-dark);
  margin-bottom: 4px;
}
.ee-archive-desc {
  font-size: 13px;
  color: var(--ee-text-muted);
}

.ee-catalog-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  align-items: flex-start;
}

.ee-filter-card {
  background: #ffffff;
  border: 1px solid var(--ee-border);
  border-radius: var(--ee-radius-md);
  padding: 18px;
  margin-bottom: 16px;
}

.ee-filter-heading {
  font-size: 14px;
  font-weight: 800;
  color: var(--ee-dark);
  margin-bottom: 12px;
  border-bottom: 1px solid var(--ee-border);
  padding-bottom: 6px;
}

.ee-filter-list li {
  margin-bottom: 8px;
}
.ee-filter-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--ee-text-main);
  font-weight: 600;
}
.ee-filter-list a:hover {
  color: var(--ee-primary);
}
.ee-filter-list li.active a {
  color: var(--ee-primary);
  font-weight: 800;
}

.ee-toolbar-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--ee-border);
  border-radius: var(--ee-radius-md);
  padding: 12px 18px;
  margin-bottom: 20px;
}

.ee-toolbar-count {
  font-size: 13px;
  color: var(--ee-text-muted);
  font-weight: 600;
}

/* ==========================================================================
   12. SLIDE-OUT CART & MOBILE DRAWER
   ========================================================================== */
.ee-drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(2px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}
.ee-drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.ee-cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 90vw;
  height: 100vh;
  background: #ffffff;
  z-index: 999;
  box-shadow: var(--ee-shadow-lg);
  display: flex;
  flex-direction: column;
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.ee-cart-drawer.active {
  right: 0;
}

.ee-mobile-drawer {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: #ffffff;
  z-index: 999;
  box-shadow: var(--ee-shadow-lg);
  display: flex;
  flex-direction: column;
  transition: left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.ee-mobile-drawer.active {
  left: 0;
}

.ee-drawer-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--ee-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ee-drawer-close {
  background: none;
  border: none;
  font-size: 24px;
  line-height: 1;
  color: var(--ee-text-muted);
  cursor: pointer;
}
.ee-drawer-close:hover {
  color: var(--ee-dark);
}

.ee-drawer-body {
  padding: 20px;
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.ee-drawer-nav-list {
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.ee-mob-nav-item {
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ee-dark);
  border-bottom: 1px solid #f1f5f9;
}
.ee-mob-nav-item:hover {
  background: #f8fafc;
  color: var(--ee-primary);
}
.ee-mob-phone {
  background: #e0f2fe;
  color: #0f4c81;
  font-weight: 700;
}
.ee-mob-divider {
  height: 8px;
  background: #f1f5f9;
}

/* ==========================================================================
   13. FOOTER
   ========================================================================== */
.ee-main-footer {
  background: var(--ee-dark);
  color: #cbd5e1;
  margin-top: 48px;
}

.ee-footer-hotline {
  background: #1e293b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}
.ee-hotline-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.ee-hotline-text h3 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}
.ee-hotline-text p {
  font-size: 13px;
  color: #94a3b8;
}
.ee-hotline-actions {
  display: flex;
  gap: 12px;
}

.ee-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 48px 20px;
}

.ee-footer-logo {
  margin-bottom: 12px;
}
.ee-footer-logo .ee-logo-brand {
  color: #ffffff;
}
.ee-footer-about {
  font-size: 13px;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 16px;
}

.ee-contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
}
.ee-contact-row {
  display: flex;
  gap: 8px;
}
.ee-contact-row a {
  color: #38bdf8;
}

.ee-footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 8px;
}

.ee-footer-links li {
  margin-bottom: 8px;
}
.ee-footer-links a {
  font-size: 13px;
  color: #94a3b8;
}
.ee-footer-links a:hover {
  color: #ffffff;
}

.ee-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  font-size: 12px;
  color: #64748b;
}
.ee-footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.ee-payment-badges {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.ee-pay-badge {
  background: #1e293b;
  color: #e2e8f0;
  padding: 3px 8px;
  border-radius: var(--ee-radius-sm);
  font-size: 11px;
  font-weight: 700;
}
.ee-ssl-badge {
  color: #10b981;
  font-weight: 600;
}

/* ==========================================================================
   14. RESPONSIVE BREAKPOINTS (1440, 1280, 1024, 768, 480, 390, 375px)
   ========================================================================== */
@media (max-width: 1024px) {
  .ee-hide-tablet {
    display: none !important;
  }
  .ee-hero-grid {
    grid-template-columns: 1fr;
  }
  .ee-pdp-layout {
    grid-template-columns: 1fr;
  }
  .ee-catalog-layout {
    grid-template-columns: 1fr;
  }
  .ee-product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .ee-cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ee-spotlight-grid {
    grid-template-columns: 1fr;
  }
  .ee-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ee-mobile-menu-toggle {
    display: flex;
  }
  .ee-nav-links, .ee-nav-departments, .ee-nav-right {
    display: none;
  }
  .ee-main-nav {
    display: none;
  }
  .ee-top-bar {
    display: none;
  }
  .ee-search-wrapper {
    display: none;
  }
  .ee-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .ee-trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .ee-pdp-btn-group {
    flex-direction: column;
  }
  .ee-pdp-btn-group .ee-btn {
    width: 100%;
  }
  .ee-footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .ee-product-grid {
    grid-template-columns: 1fr;
  }
  .ee-cat-grid {
    grid-template-columns: 1fr;
  }
  .ee-trust-grid {
    grid-template-columns: 1fr;
  }
  .ee-card-img-wrap {
    height: 220px;
  }
}
