/* ==========================================================================
   ECOLE PARTS - PREMIUM MODERN UI STYLESHEET (ECOLE NAVY BLUE THEME)
   ========================================================================== */

:root {
  /* Ecole Navy Blue Primary Palette */
  --primary: #0f3b67;
  --primary-hover: #092847;
  --primary-light: rgba(15, 59, 103, 0.08);
  --primary-glow: rgba(15, 59, 103, 0.25);
  
  --secondary: #1e293b;
  --secondary-hover: #0f172a;
  
  --accent: #0284c7;
  --accent-light: #e0f2fe;
  
  --dark-900: #070f1e;
  --dark-800: #0d1b30;
  --dark-700: #1e293b;
  --dark-600: #334155;
  
  --gray-100: #f8fafc;
  --gray-200: #f1f5f9;
  --gray-300: #e2e8f0;
  --gray-400: #cbd5e1;
  --gray-500: #94a3b8;
  --gray-600: #64748b;
  --gray-700: #475569;
  
  --white: #ffffff;
  --card-bg: #ffffff;
  
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.14);
  --shadow-primary: 0 8px 25px rgba(15, 59, 103, 0.28);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base & Reset */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--dark-700);
  background-color: var(--gray-100);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark-900);
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary);
}

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

/* ==========================================================================
   TOP BAR & HEADER
   ========================================================================== */
.site-topbar {
  background: var(--dark-900);
  color: var(--gray-400);
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-topbar a {
  color: var(--gray-300);
}

.site-topbar a:hover {
  color: var(--accent-light);
}

.topbar-badge {
  background: rgba(2, 132, 199, 0.2);
  color: #38bdf8;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 11.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.site-header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 1020;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}

.navbar {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.navbar-brand {
  padding: 0 !important;
  margin: 0;
  display: flex;
  align-items: center;
}

.navbar-brand img {
  height: 32px !important;
  max-height: 32px !important;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.navbar-brand:hover img {
  transform: scale(1.02);
}

.nav-link {
  font-weight: 600;
  font-size: 14px;
  color: var(--dark-700) !important;
  padding: 8px 14px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary) !important;
  background: var(--primary-light);
}

.dropdown-menu {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  animation: fadeInDown 0.2s ease-out;
  min-width: 220px;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-item {
  font-weight: 500;
  font-size: 13.5px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  color: var(--dark-700);
  transition: var(--transition);
}

.dropdown-item:hover {
  background: var(--primary-light);
  color: var(--primary);
  transform: translateX(4px);
}

/* ==========================================================================
   OEM MEGA MENU STYLING
   ========================================================================== */
.mega-menu-wide {
  position: absolute !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
}

@media (min-width: 992px) {
  .mega-menu-oem {
    width: 880px !important;
    max-width: 95vw !important;
    max-height: 75vh !important;
    overflow-y: auto !important;
    border-radius: var(--radius-xl) !important;
    padding: 1.25rem !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16) !important;
    scrollbar-width: thin;
  }
  .oem-brand-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    max-height: 420px;
    overflow-y: auto;
    padding-right: 4px;
    scrollbar-width: thin;
  }
}

.mobile-oem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  max-height: 250px;
  overflow-y: auto;
  padding-right: 2px;
}

.oem-brand-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark-800);
  text-decoration: none;
  transition: var(--transition);
  min-height: 34px;
}

.oem-brand-chip:hover, .oem-brand-chip:active {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
}

.oem-brand-chip.featured-chip {
  background: #eff6ff;
  border-color: #93c5fd;
  color: var(--primary);
  font-weight: 700;
}

.header-action-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--dark-800);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 16px;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  cursor: pointer;
}

.header-action-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-primary);
  transform: translateY(-2px);
}

.header-action-btn .cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--primary);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
  box-shadow: 0 2px 6px var(--primary-glow);
}

/* ==========================================================================
   HERO SLIDER ANIMATED PARTICLES & GLOW EFFECT
   ========================================================================== */
.hero-slider-section {
  position: relative;
  background: radial-gradient(ellipse at 50% 20%, #0c2340 0%, #071324 55%, #040a14 100%);
  overflow: hidden;
  padding: 40px 0 70px;
}

.hero-particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-grid-mesh {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 38px 38px;
  background-position: center center;
  mask-image: radial-gradient(ellipse at 50% 50%, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 40%, transparent 80%);
  pointer-events: none;
  z-index: 1;
}

.hero-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.65;
  animation: orbFloat 14s ease-in-out infinite alternate;
}

.hero-glow-orb-1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.4) 0%, rgba(14, 165, 233, 0) 70%);
  top: -15%;
  right: 5%;
  animation-duration: 12s;
}

.hero-glow-orb-2 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(243, 112, 33, 0.28) 0%, rgba(243, 112, 33, 0) 70%);
  bottom: -15%;
  left: 5%;
  animation-duration: 16s;
  animation-delay: -4s;
}

.hero-glow-orb-3 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.22) 0%, rgba(56, 189, 248, 0) 70%);
  top: 30%;
  left: 35%;
  animation-duration: 18s;
  animation-delay: -8s;
}

@keyframes orbFloat {
  0% {
    transform: translate(0px, 0px) scale(1);
  }
  50% {
    transform: translate(35px, -30px) scale(1.12);
  }
  100% {
    transform: translate(-30px, 35px) scale(0.95);
  }
}

.hero-swiper {
  width: 100%;
  overflow: hidden !important;
  position: relative;
  z-index: 2;
}

.hero-slide-item {
  padding: 25px 35px;
  width: 100%;
}

@media (min-width: 992px) {
  .hero-slide-item {
    padding: 35px 70px;
  }
}

.hero-slide-content {
  color: var(--white);
  padding: 20px 0;
  z-index: 2;
  position: relative;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #7dd3fc;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}

.hero-title {
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
  font-weight: 750;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 16px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  word-break: break-word;
}

.hero-title span {
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1rem;
  color: var(--gray-400);
  max-width: 520px;
  margin-bottom: 26px;
  line-height: 1.6;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  padding: 10px;
}

.hero-image-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.3) 0%, rgba(2, 132, 199, 0) 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
}

.hero-slide-img {
  position: relative;
  z-index: 1;
  max-height: 320px;
  max-width: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Swiper Controls */
.swiper-btn-custom {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  transition: var(--transition);
  cursor: pointer;
  z-index: 10;
}

.swiper-btn-custom:hover {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: var(--shadow-primary);
  transform: scale(1.06);
}

.hero-swiper-pagination {
  position: relative;
  margin-top: 15px;
  z-index: 5;
}

.hero-swiper-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.35);
  opacity: 1;
  transition: var(--transition);
  margin: 0 4px;
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 6px;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

/* ==========================================================================
   SEARCH BAR SECTION
   ========================================================================== */
.search-hero-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 6px 8px 6px 20px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(226, 232, 240, 0.8);
  display: flex;
  align-items: center;
  max-width: 650px;
  margin: -30px auto 0;
  position: relative;
  z-index: 20;
  transition: var(--transition);
}

.search-hero-box:focus-within {
  border-color: var(--primary);
  box-shadow: 0 15px 35px rgba(15, 59, 103, 0.18);
  transform: translateY(-2px);
}

.search-hero-box input {
  border: none;
  outline: none;
  font-size: 15px;
  color: var(--dark-800);
  background: transparent;
  width: 100%;
  font-weight: 500;
}

.search-hero-box input::placeholder {
  color: var(--gray-500);
}

.search-hero-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-primary);
  white-space: nowrap;
}

.search-hero-btn:hover {
  background: var(--primary-hover);
  transform: scale(1.02);
}

.suggestions-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-300);
  padding: 8px;
  display: none;
  z-index: 1000;
  max-height: 350px;
  overflow-y: auto;
}

.suggestion-row {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 14px;
  color: var(--dark-800);
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 1px solid var(--gray-200);
}

.suggestion-row:last-child {
  border-bottom: none;
}

.suggestion-row:hover {
  background: var(--gray-100);
  color: var(--primary);
  transform: translateX(4px);
}

/* ==========================================================================
   BUTTONS & BADGES
   ========================================================================== */
.btn-primary-custom {
  background: var(--primary);
  color: var(--white) !important;
  font-weight: 600;
  font-size: 14.5px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--shadow-primary);
  border: none;
  transition: var(--transition);
}

.btn-primary-custom:hover {
  background: var(--primary-hover);
  color: var(--white) !important;
  box-shadow: 0 10px 25px rgba(15, 59, 103, 0.4);
  transform: translateY(-2px);
}

.btn-outline-custom {
  background: transparent;
  color: var(--white) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  font-weight: 600;
  font-size: 14.5px;
  padding: 11px 22px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-outline-custom:hover {
  background: var(--white);
  color: var(--dark-900) !important;
  border-color: var(--white);
  transform: translateY(-2px);
}

.badge-brand {
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 700;
  font-size: 11.5px;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   SECTION HEADINGS
   ========================================================================== */
.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 45px;
}

.section-subtitle {
  color: var(--primary);
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.section-subtitle::before, .section-subtitle::after {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--primary);
  display: inline-block;
}

.section-title {
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  font-weight: 800;
  color: var(--dark-900);
  line-height: 1.25;
}

.section-desc {
  color: var(--gray-600);
  font-size: 15px;
  margin-top: 10px;
}

/* ==========================================================================
   BRAND CARDS / BANNERS
   ========================================================================== */
.brand-banner-item {
  display: block;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.brand-banner-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.brand-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.brand-banner-item:hover .brand-banner-img {
  transform: scale(1.04);
}

.brand-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.brand-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.brand-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

/* ==========================================================================
   PRODUCT CARDS
   ========================================================================== */
.modern-product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.modern-product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(15, 59, 103, 0.25);
}

.featured-prev-btn, .featured-next-btn {
  transition: var(--transition);
  color: var(--dark-700);
}

.featured-prev-btn:hover, .featured-next-btn:hover {
  background-color: var(--primary) !important;
  color: var(--white) !important;
  border-color: var(--primary) !important;
  transform: translateY(-2px);
}

.featured-products-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: var(--gray-400);
  opacity: 0.6;
  transition: var(--transition);
}

.featured-products-pagination .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 4px;
  background: var(--primary);
  opacity: 1;
}

.product-img-box {
  position: relative;
  background: var(--gray-100);
  padding: 20px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-img-box img {
  max-height: 170px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.modern-product-card:hover .product-img-box img {
  transform: scale(1.06);
}

.product-card-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateX(8px);
  transition: var(--transition);
  z-index: 5;
}

.modern-product-card:hover .product-card-actions {
  opacity: 1;
  transform: translateX(0);
}

.quick-action-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  color: var(--dark-800);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  border: none;
  font-size: 14px;
  transition: var(--transition);
}

.quick-action-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}

.product-info-box {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category-text {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}

.product-name-heading {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-900);
  line-height: 1.4;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 42px;
}

.product-machine-type {
  font-size: 12.5px;
  color: var(--gray-600);
  margin-bottom: 14px;
}

.product-card-bottom {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.btn-card-cart {
  width: 100%;
  background: var(--gray-100);
  color: var(--dark-800);
  border: 1px solid var(--gray-300);
  font-weight: 600;
  font-size: 13.5px;
  padding: 9px 14px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: var(--transition);
  cursor: pointer;
}

.btn-card-cart:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-primary);
}

/* ==========================================================================
   FEATURES & SERVICES GRID
   ========================================================================== */
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gray-300);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon-wrapper {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 20px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.feature-card:hover .feature-icon-wrapper {
  background: var(--primary);
  transform: scale(1.08);
}

.feature-icon-wrapper img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  transition: var(--transition);
}

.feature-card:hover .feature-icon-wrapper img {
  filter: brightness(0) invert(1);
}

.feature-title {
  font-size: 17.5px;
  font-weight: 700;
  color: var(--dark-900);
  margin-bottom: 6px;
}

.feature-desc {
  font-size: 13.5px;
  color: var(--gray-600);
  margin-bottom: 0;
}

/* ==========================================================================
   PROMO VIDEO / CORPORATE SECTION
   ========================================================================== */
.corporate-modern-card {
  background: linear-gradient(145deg, #071527 0%, #0d2847 50%, #081627 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 36px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(8, 22, 39, 0.12);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
}

.corporate-modern-card:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 189, 248, 0.35);
  box-shadow: 0 25px 55px rgba(8, 22, 39, 0.2);
}

.corporate-modern-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}

.corp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: #7dd3fc;
  margin-bottom: 20px;
  width: fit-content;
}

.corp-logo-box {
  background: #ffffff;
  padding: 8px 16px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  width: fit-content;
  height: 48px;
}

.corp-logo-box img {
  max-height: 28px;
  width: auto;
  object-fit: contain;
}

.corp-card-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.corp-card-desc {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.corp-card-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: auto;
}

.btn-play-pulse {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white) !important;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 0 0 0 rgba(15, 59, 103, 0.7);
  animation: pulseVideo 1.8s infinite;
  transition: var(--transition);
  flex-shrink: 0;
}

.btn-play-pulse:hover {
  transform: scale(1.08);
  color: var(--white) !important;
}

@keyframes pulseVideo {
  0% {
    box-shadow: 0 0 0 0 rgba(15, 59, 103, 0.7);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(15, 59, 103, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(15, 59, 103, 0);
  }
}

/* ==========================================================================
   OFFCANVAS CART DRAWER
   ========================================================================== */
.cart-drawer {
  width: 380px !important;
  max-width: 90vw !important;
  border-left: 1px solid var(--gray-300);
}

.cart-item-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
}

.cart-item-img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: var(--gray-100);
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cart-item-img img {
  max-height: 100%;
  object-fit: contain;
}

.cart-item-details {
  flex-grow: 1;
}

.cart-item-title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--dark-800);
  margin-bottom: 3px;
  line-height: 1.3;
}

.cart-item-qty {
  font-size: 12.5px;
  color: var(--gray-600);
}

.cart-item-delete {
  background: none;
  border: none;
  color: var(--gray-500);
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
}

.cart-item-delete:hover {
  color: var(--primary);
  transform: scale(1.15);
}

/* ==========================================================================
   WHATSAPP FLOATING BUTTON
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  left: 25px;
  z-index: 1050;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.floating-whatsapp:hover {
  background: #20ba5a;
  color: var(--white);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.55);
}

.floating-whatsapp i {
  font-size: 20px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #070f1e;
  color: var(--gray-400);
  padding-top: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-title {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 3px;
  background: var(--accent);
  border-radius: var(--radius-full);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--gray-400);
  font-size: 13.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(5px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 13.5px;
}

.footer-contact-item i {
  color: var(--accent);
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.social-circle-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-circle-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

.footer-bottom-bar {
  background: #040811;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 13px;
  color: var(--gray-500);
}

/* ==========================================================================
   INNER PAGE HERO / BREADCRUMBS
   ========================================================================== */
.page-hero-banner {
  background: linear-gradient(135deg, #070f1e 0%, #0f233f 100%);
  padding: 48px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero-banner .breadcrumb-item, 
.page-hero-banner .breadcrumb-item a {
  color: var(--gray-400);
  font-size: 13.5px;
}

.page-hero-banner .breadcrumb-item.active {
  color: var(--accent-light);
}

.page-hero-title {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-detail-hero-title {
  font-size: clamp(1.15rem, 2.2vw, 1.5rem) !important;
  font-weight: 700 !important;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4 !important;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .page-hero-banner {
    padding: 24px 0 20px !important;
  }
  .product-detail-hero-title {
    font-size: 1.1rem !important;
    line-height: 1.35 !important;
  }
}

/* ==========================================================================
   SHOP / CATALOG PAGE
   ========================================================================== */
.shop-sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  padding: 22px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}

.filter-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-900);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gray-100);
}

.filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.filter-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  color: var(--dark-700);
  font-size: 13.5px;
  font-weight: 500;
  transition: var(--transition);
}

.filter-list-item:hover, .filter-list-item.active {
  background: var(--primary-light);
  color: var(--primary);
}

.filter-count-badge {
  background: var(--gray-200);
  color: var(--dark-600);
  font-size: 11.5px;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  font-weight: 600;
}

.filter-list-item:hover .filter-count-badge {
  background: var(--primary);
  color: var(--white);
}

/* ==========================================================================
   PRODUCT DETAIL PAGE TABS & GALLERY
   ========================================================================== */
.nav-pills .nav-link {
  color: var(--dark-700) !important;
  font-weight: 600;
  transition: var(--transition);
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background-color: var(--primary) !important;
  color: #ffffff !important;
  box-shadow: var(--shadow-primary);
}

.nav-pills .nav-link.active i {
  color: #ffffff !important;
}

.product-detail-gallery {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.product-detail-gallery img {
  max-height: 380px;
  object-fit: contain;
}

.product-detail-info-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.spec-table {
  width: 100%;
  margin-top: 16px;
}

.spec-table tr {
  border-bottom: 1px solid var(--gray-200);
}

.spec-table td {
  padding: 10px 6px;
  font-size: 13.5px;
}

.spec-table td:first-child {
  font-weight: 600;
  color: var(--dark-800);
  width: 35%;
}

.qty-stepper {
  display: inline-flex;
  align-items: center;
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.qty-stepper-btn {
  width: 38px;
  height: 40px;
  background: transparent;
  border: none;
  font-size: 15px;
  color: var(--dark-800);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.qty-stepper-btn:hover {
  background: var(--gray-200);
  color: var(--primary);
}

.qty-stepper input {
  width: 46px;
  height: 40px;
  border: none;
  background: transparent;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
}

/* ==========================================================================
   CONTENT CARDS (About, Contact, Policies)
   ========================================================================== */
.content-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  padding: 35px;
  box-shadow: var(--shadow-md);
}

.contact-info-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.contact-info-box:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.contact-icon-bubble {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

/* Form Controls */
.modern-form-control {
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  font-size: 14px;
  color: var(--dark-800);
  transition: var(--transition);
  width: 100%;
}

.modern-form-control:focus {
  background: var(--white);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
  outline: none;
}

/* Pagination */
.modern-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 35px;
  list-style: none;
  padding: 0;
}

.modern-pagination li a, .modern-pagination li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--gray-300);
  color: var(--dark-700);
  font-weight: 600;
  font-size: 13.5px;
  transition: var(--transition);
}

.modern-pagination li a:hover, .modern-pagination li.active span, .modern-pagination li a.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-primary);
}

/* User Panel */
.myaccount-tab-menu a {
  display: block;
  padding: 12px 18px;
  color: var(--dark-800);
  font-weight: 600;
  border-radius: var(--radius-md);
  margin-bottom: 8px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.myaccount-tab-menu a:hover, .myaccount-tab-menu a.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-primary);
}
.myaccount-content {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .hero-slider-section {
    padding: 20px 0 45px;
    text-align: center;
  }
  .hero-slide-item {
    padding: 15px 10px;
  }
  .hero-slide-content {
    padding: 10px 0 15px;
    text-align: center;
  }
  .hero-tag {
    font-size: 11px;
    padding: 3px 10px;
    margin-bottom: 10px;
  }
  .hero-title {
    font-size: 1.4rem;
    line-height: 1.3;
    margin-bottom: 10px;
  }
  .hero-desc {
    font-size: 0.88rem;
    margin: 0 auto 16px;
    line-height: 1.5;
  }
  .btn-primary-custom, .btn-outline-custom {
    padding: 9px 18px;
    font-size: 13px;
  }
  .hero-image-wrapper {
    min-height: auto;
    padding: 10px 0 0;
  }
  .hero-image-glow {
    width: 160px;
    height: 160px;
  }
  .hero-slide-img {
    max-height: 180px;
    max-width: 85%;
    border-radius: 12px;
  }
  .search-hero-box {
    margin-top: -22px;
    padding: 4px 6px 4px 14px;
  }
  .search-hero-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hero-slider-section {
    text-align: center;
    padding: 30px 0 55px;
  }
  .hero-slide-content {
    padding: 15px 0 20px;
  }
  .hero-desc {
    margin: 0 auto 20px;
  }
  .hero-image-wrapper {
    min-height: 240px;
  }
  .search-hero-box {
    margin-top: -20px;
  }
}
