/*==============================================
  CLOX BARBERSHOP – Premium Guest Redesign CSS
  Overrides eStore template with a blue/dark
  barbershop premium aesthetic.
================================================*/

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

/* -----------------------------------------------
   2. COLOR SYSTEM OVERRIDE (Blue Premium Palette)
------------------------------------------------ */
:root {
  --default-font: "Figtree", system-ui, -apple-system, "Segoe UI", sans-serif;
  --heading-font: "Poppins", sans-serif;
  --nav-font: "Figtree", "Poppins", sans-serif;

  --background-color: #ffffff;
  --default-color: #2c2c2c;
  --heading-color: #1a1a2e;
  --accent-color: #0d6efd;
  --accent-dark: #0b5ed7;
  --accent-light: #4791ff;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;

  /* Nav overrides */
  --nav-color: #e8e8e8;
  --nav-hover-color: #0d6efd;
  --nav-mobile-background-color: #1a1a2e;
  --nav-dropdown-background-color: #1a1a2e;
  --nav-dropdown-color: #cccccc;
  --nav-dropdown-hover-color: #0d6efd;

  /* Barbershop specific */
  --bs-nav-bg: #0f0f1a;
  --bs-section-dark: #0f0f1a;
  --bs-card-radius: 14px;
  --bs-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.light-background {
  --background-color: #f4f6fa;
  --surface-color: #ffffff;
}

/* -----------------------------------------------
   3. GLOBAL OVERRIDES
------------------------------------------------ */
body {
  font-family: var(--default-font);
  color: var(--default-color);
  background-color: var(--background-color);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  color: var(--heading-color);
}

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

a:hover {
  color: var(--accent-dark);
}

/* -----------------------------------------------
   4. STICKY GLASSMORPHIC NAVBAR (.header)
------------------------------------------------ */
.header {
  background: var(--bs-nav-bg) !important;
  transition: var(--bs-transition);
  z-index: 997;
  width: 100%;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
}

/* Scrolled state */
.header.scrolled {
  background: rgba(15, 15, 26, 0.9) !important;
  backdrop-filter: blur(12px) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.header .main-header {
  padding-top: 0;
  padding-bottom: 0;
}

.header .main-header>.container-fluid.container-xl>.d-flex {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

/* Logo */
.header .main-header .logo {
  gap: 0.5rem;
}

.header .main-header .logo img {
  max-height: 40px !important;
  filter: brightness(1.1);
}

.header .main-header .logo h1.sitename {
  color: #ffffff !important;
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0;
  background: linear-gradient(135deg, #ffffff 30%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Nav buttons */
.header .main-header .header-actions .header-action-btn {
  background: transparent;
  border: none;
  color: #e8e8e8;
  font-size: 1.45rem;
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--bs-transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header .main-header .header-actions .header-action-btn:hover {
  color: var(--accent-color);
  background: rgba(255, 255, 255, 0.05);
}

/* Desktop Inline Navbar items */
.header-inline-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 1.5rem;
}

.header-inline-nav li a {
  color: #e8e8e8 !important;
  font-family: var(--nav-font);
  font-size: 14px;
  font-weight: 600;
  padding: 0.5rem 1rem;
  letter-spacing: 0.3px;
  position: relative;
  text-decoration: none;
}

.header-inline-nav li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--accent-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  border-radius: 2px;
}

.header-inline-nav li a:hover,
.header-inline-nav li a.active {
  color: var(--accent-color) !important;
}

.header-inline-nav li a:hover::after,
.header-inline-nav li a.active::after {
  transform: scaleX(1);
}

.header-inline-nav li a.nav-booking-btn {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
  color: #ffffff !important;
  border-radius: 25px;
  padding: 0.45rem 1.2rem;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(13, 110, 253, 0.35);
  transition: var(--bs-transition);
}

.header-inline-nav li a.nav-booking-btn::after {
  display: none;
}

.header-inline-nav li a.nav-booking-btn:hover {
  background: linear-gradient(135deg, var(--accent-light), var(--accent-color));
  box-shadow: 0 6px 25px rgba(13, 110, 253, 0.55);
  transform: translateY(-2px);
  color: #ffffff !important;
}

/* Account dropdown in dark navbar */
.header .main-header .account-dropdown .dropdown-menu {
  background: #1a1a2e !important;
  border: 1px solid rgba(13, 110, 253, 0.25) !important;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5) !important;
  border-radius: 12px !important;
  margin-top: 0.5rem !important;
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-item {
  color: #cccccc !important;
  font-size: 0.9rem;
  padding: 0.7rem 1.2rem !important;
  font-weight: 500;
  transition: var(--bs-transition);
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-item:hover {
  background: rgba(13, 110, 253, 0.1) !important;
  color: var(--accent-color) !important;
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-item i {
  font-size: 1.1rem;
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-body {
  padding: 0.5rem 0;
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-footer {
  padding: 0.8rem 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  background: rgba(0, 0, 0, 0.15) !important;
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-footer .btn-primary {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-dark)) !important;
  border: none !important;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.5rem;
  border-radius: 8px;
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-footer .btn-outline-primary {
  border: 1.5px solid var(--accent-color) !important;
  color: var(--accent-color) !important;
  background: transparent !important;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.5rem;
  border-radius: 8px;
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-footer .btn-outline-primary:hover {
  background: rgba(13, 110, 253, 0.15) !important;
}

/* -----------------------------------------------
   5. MOBILE NAVIGATION MENU OVERRIDES
------------------------------------------------ */
@media (max-width: 1199px) {
  .navmenu {
    background: #0f0f1a !important;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 10px 0 40px rgba(0, 0, 0, 0.5);
  }

  .navmenu a,
  .navmenu a:focus {
    color: #e0e0e0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  }

  .navmenu .active,
  .navmenu li:hover>a {
    color: var(--accent-color) !important;
  }
}

/* -----------------------------------------------
   6. PREMIUM HERO SECTION OVERRIDE
------------------------------------------------ */
.ecommerce-hero-1.hero {
  background: #0f0f1a !important;
  position: relative;
  overflow: hidden;
  padding-top: 130px;
  padding-bottom: 6rem;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

/* Background grid styling */
.ecommerce-hero-1.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent !important;
  z-index: 1;
}

.ecommerce-hero-1.hero::after {
  display: none !important;
}

.ecommerce-hero-1.hero .container {
  position: relative;
  z-index: 3;
}

.ecommerce-hero-1.hero .promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(13, 110, 253, 0.12);
  border: 1px solid rgba(13, 110, 253, 0.35);
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  color: var(--accent-light);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(13, 110, 253, 0.15);
}

.ecommerce-hero-1.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.ecommerce-hero-1.hero h1 span {
  color: var(--accent-color) !important;
  -webkit-text-fill-color: var(--accent-color) !important;
  background: none !important;
  font-weight: 900;
}

.ecommerce-hero-1.hero p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 2.2rem;
  max-width: 520px;
}

.ecommerce-hero-1.hero .btn-shop {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
  color: #ffffff;
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
  transition: var(--bs-transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.ecommerce-hero-1.hero .btn-shop:hover {
  background: linear-gradient(135deg, var(--accent-light), var(--accent-color));
  box-shadow: 0 12px 35px rgba(13, 110, 253, 0.6);
  transform: translateY(-3px);
  color: #ffffff;
}

.ecommerce-hero-1.hero .btn-collection {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.25);
  padding: 0.82rem 1.8rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  transition: var(--bs-transition);
  text-decoration: none;
}

.ecommerce-hero-1.hero .btn-collection:hover {
  border-color: var(--accent-color);
  color: #ffffff;
  background: var(--accent-color);
  box-shadow: 0 8px 25px rgba(13, 110, 253, 0.45);
}

.ecommerce-hero-1.hero .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.ecommerce-hero-1.hero .hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.ecommerce-hero-1.hero .feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  transition: color 0.3s ease;
}

.ecommerce-hero-1.hero .feature-item:hover {
  color: #ffffff !important;
}

.ecommerce-hero-1.hero .feature-item i {
  color: var(--accent-color);
  font-size: 18px;
  transition: color 0.3s ease;
}

.ecommerce-hero-1.hero .feature-item:hover i {
  color: #ffffff !important;
}

/* Hero floating cards */
.ecommerce-hero-1.hero .floating-product {
  background: rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(13, 110, 253, 0.25) !important;
  border-radius: 16px !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4) !important;
}

.ecommerce-hero-1.hero .floating-product h4 {
  color: #ffffff !important;
  font-weight: 700;
}

.ecommerce-hero-1.hero .floating-product span.price {
  color: var(--accent-light) !important;
  font-weight: 700;
}

.ecommerce-hero-1.hero .discount-badge {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-dark)) !important;
  box-shadow: 0 8px 25px rgba(13, 110, 253, 0.5) !important;
}

.ecommerce-hero-1.hero .discount-badge span.percent {
  color: #ffffff !important;
  font-weight: 800;
}

.ecommerce-hero-1.hero .discount-badge span.text {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* -----------------------------------------------
   7. INFO CARDS SECTION (ABOUT)
------------------------------------------------ */
.info-cards {
  padding: 5rem 0;
  background: var(--background-color);
}

.info-cards .info-card {
  background: var(--surface-color);
  padding: 2.25rem 1.5rem;
  border-radius: var(--bs-card-radius);
  border: 1px solid rgba(13, 110, 253, 0.1);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.03);
  transition: var(--bs-transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.info-cards .info-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--accent-color), var(--accent-dark));
  transform: scaleX(0);
  transition: var(--bs-transition);
}

.info-cards .info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(13, 110, 253, 0.15);
  border-color: rgba(13, 110, 253, 0.25);
}

.info-cards .info-card:hover::before {
  transform: scaleX(1);
}

.info-cards .info-card .icon-box {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.12), rgba(13, 110, 253, 0.05));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  border: 1px solid rgba(13, 110, 253, 0.2);
  transition: var(--bs-transition);
}

.info-cards .info-card:hover .icon-box {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
}

.info-cards .info-card .icon-box i {
  font-size: 28px;
  color: var(--accent-color);
  transition: var(--bs-transition);
}

.info-cards .info-card:hover .icon-box i {
  color: #ffffff;
}

.info-cards .info-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.75rem;
}

.info-cards .info-card p {
  font-size: 0.88rem;
  color: rgba(44, 44, 44, 0.7);
  line-height: 1.7;
  margin-bottom: 0;
}

/* -----------------------------------------------
   8. CATEGORY CARDS SECTION (BARBERMAN)
------------------------------------------------ */
.category-cards {
  padding: 5rem 0;
  background: #f8fafc;
  position: relative;
}

.category-cards .category-card {
  border-radius: var(--bs-card-radius) !important;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
  background: #fff !important;
  transition: var(--bs-transition) !important;
  border: 1px solid rgba(13, 110, 253, 0.1);
}

.category-cards .category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(13, 110, 253, 0.2) !important;
  border-color: rgba(13, 110, 253, 0.3);
}

.category-cards .category-card .category-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.category-cards .category-card:hover .category-image img {
  transform: scale(1.08);
}

.category-cards .category-card .category-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 15, 26, 0.5) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.category-cards .category-card:hover .category-image::after {
  opacity: 1;
}

.category-cards .category-card .category-title {
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  color: var(--heading-color) !important;
  padding: 1.1rem !important;
  text-align: center !important;
  margin: 0 !important;
}

/* Category Slider navigation buttons override */
.category-cards .swiper-button-next,
.category-cards .swiper-button-prev {
  color: var(--accent-color) !important;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  width: 40px !important;
  height: 40px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.category-cards .swiper-button-next::after,
.category-cards .swiper-button-prev::after {
  font-size: 15px !important;
  font-weight: bold;
}

/* -----------------------------------------------
   9. PRODUCT CARDS & GRID (HAIRSTYLE & SERVICE)
------------------------------------------------ */
.best-sellers {
  padding: 5rem 0;
  background: var(--background-color);
}

.best-sellers .product-card {
  border-radius: var(--bs-card-radius) !important;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07) !important;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--bs-transition) !important;
  background: #fff !important;
}

.best-sellers .product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(13, 110, 253, 0.18) !important;
  border-color: rgba(13, 110, 253, 0.2);
}

.best-sellers .product-card .product-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.best-sellers .product-card:hover .product-image img {
  transform: scale(1.08);
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface-color);
  color: var(--accent-color) !important;
  border: 2px solid var(--accent-color);
  padding: 0.75rem 1.8rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(13, 110, 253, 0.1);
  transition: var(--bs-transition);
  text-decoration: none;
}

.view-all-btn:hover {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
  color: #ffffff !important;
  box-shadow: 0 8px 25px rgba(13, 110, 253, 0.35) !important;
  transform: translateY(-2px);
  border-color: transparent;
}

/* Service list filters and grid */
.product-list {
  padding: 5rem 0;
  background: #fdfdfd;
}

.product-list .product-card {
  border-radius: var(--bs-card-radius) !important;
  border: 1px solid rgba(13, 110, 253, 0.08) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06) !important;
  transition: var(--bs-transition) !important;
  background: #ffffff !important;
}

.product-list .product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(13, 110, 253, 0.2) !important;
  border-color: rgba(13, 110, 253, 0.25) !important;
}

.product-list .product-filters ul li {
  background: rgba(13, 110, 253, 0.06) !important;
  color: var(--heading-color) !important;
  border: 1px solid rgba(13, 110, 253, 0.15) !important;
  transition: var(--bs-transition) !important;
  cursor: pointer;
}

.product-list .product-filters ul li:hover {
  background: rgba(13, 110, 253, 0.12) !important;
  color: var(--accent-dark) !important;
  border-color: var(--accent-color) !important;
}

.product-list .product-filters ul li.filter-active {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-dark)) !important;
  color: #ffffff !important;
  border-color: transparent !important;
  box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.product-list .product-filters ul li.filter-active:hover {
  color: #ffffff !important;
}

.product-list .product-info .product-price .current-price {
  color: var(--accent-dark) !important;
  font-weight: 800 !important;
}

/* Overlay booking button inside service card */
.product-list .product-card .btn-cart {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-dark)) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

/* -----------------------------------------------
   10. PAGE TITLE BANNER (BREADCRUMBS)
------------------------------------------------ */
.page-title {
  background: #0f0f1a !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  padding: 1.5rem 0 !important;
  margin-top: 77px !important;
  position: relative;
  overflow: hidden;
}

.page-title::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(13, 110, 253, 0.1) 0%, transparent 70%);
  z-index: 1;
}

.page-title .container {
  position: relative;
  z-index: 2;
}

.page-title h1 {
  color: #ffffff !important;
  font-weight: 800 !important;
  font-size: 1.6rem !important;
  letter-spacing: -0.5px;
  margin: 0;
}

.page-title .breadcrumbs ol li a {
  color: rgba(255, 255, 255, 0.6) !important;
  transition: var(--bs-transition);
}

.page-title .breadcrumbs ol li a:hover {
  color: var(--accent-color) !important;
}

.page-title .breadcrumbs ol li.current {
  color: var(--accent-light) !important;
  font-weight: 600;
}

/* Breadcrumb separator */
.page-title .breadcrumbs ol li+li::before {
  color: rgba(255, 255, 255, 0.4) !important;
}

/* -----------------------------------------------
   11. SERVICE DETAIL PAGE OVERRIDES
------------------------------------------------ */
.product-details {
  padding: 5rem 0;
}

.product-details .product-meta .product-category {
  background: rgba(13, 110, 253, 0.12);
  color: var(--accent-color);
  font-weight: 700;
}

.product-details .product-meta .product-rating i {
  color: #f59e0b;
}

.product-details .product-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--heading-color);
}

.product-details .product-price-container .current-price {
  font-size: 1.8rem;
  font-weight: 800;
}

.product-details .product-actions .btn-primary,
.product-details .add-to-cart-btn {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-dark)) !important;
  border: none !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  padding: 0.8rem 2.5rem !important;
  border-radius: 30px !important;
  box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4) !important;
  font-size: 15px !important;
  transition: var(--bs-transition) !important;
}

.product-details .product-actions .btn-primary:hover,
.product-details .add-to-cart-btn:hover {
  box-shadow: 0 12px 35px rgba(13, 110, 253, 0.55) !important;
  transform: translateY(-3px) !important;
  color: #ffffff !important;
}

.product-details .additional-info .info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.9rem;
  color: rgba(44, 44, 44, 0.75);
}

.product-details .additional-info .info-item i {
  color: var(--accent-color);
  font-size: 18px;
  flex-shrink: 0;
}

.product-details .alert-info {
  background: rgba(13, 110, 253, 0.07) !important;
  border: 1px solid rgba(13, 110, 253, 0.25) !important;
  border-left: 4px solid var(--accent-color) !important;
  color: var(--heading-color) !important;
  border-radius: 10px !important;
}

.product-details .thumbnail-item {
  border: 2px solid transparent;
  transition: var(--bs-transition);
}

.product-details .thumbnail-item.active,
.product-details .thumbnail-item:hover {
  border-color: var(--accent-color);
}

/* -----------------------------------------------
   12. 3-COLUMN PREMIUM FOOTER
------------------------------------------------ */
.footer {
  background: #090910 !important;
  color: #a0a0ab !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
}

.footer .footer-main {
  padding: 5rem 0 3rem;
}

.footer .footer-widget h4 {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer .footer-widget h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--accent-color);
}

.footer .footer-about p {
  line-height: 1.7;
  color: #e2e8f0 !important;
}

.footer .footer-contact .contact-item span {
  color: #e2e8f0 !important;
  line-height: 1.5;
}

.footer .footer-contact .contact-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

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

.footer .footer-links li {
  margin-bottom: 0.75rem;
}

.footer .footer-links a {
  color: #a0a0ab !important;
  transition: var(--bs-transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.footer .footer-links a:hover {
  color: var(--accent-color) !important;
  transform: translateX(4px);
}

.footer .footer-social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(13, 110, 253, 0.2);
  color: rgba(176, 176, 176, 0.8);
  font-size: 16px;
  transition: var(--bs-transition);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer .footer-social-links a:hover {
  background: var(--accent-color);
  color: #ffffff;
  border-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(13, 110, 253, 0.5) !important;
}

.footer .footer-bottom {
  background: rgba(0, 0, 0, 0.3) !important;
  border-top: 1px solid rgba(13, 110, 253, 0.1) !important;
  padding: 1.5rem 0 !important;
}

.footer .footer-bottom p {
  margin-bottom: 0;
  font-size: 0.85rem;
}

/* -----------------------------------------------
   13. BACK TO TOP BUTTON OVERRIDE
------------------------------------------------ */
#scroll-top {
  background: var(--accent-color) !important;
  color: #ffffff !important;
}

#scroll-top:hover {
  background: var(--accent-dark) !important;
  box-shadow: 0 4px 20px rgba(13, 110, 253, 0.5) !important;
}

/* -----------------------------------------------
   14. SPLIT-SCREEN AUTHENTICATION PAGE LAYOUT
------------------------------------------------ */
.auth-split-page {
  display: flex;
  min-height: 100vh;
  width: 100vw;
  overflow: hidden;
}

/* Left Brand Panel */
.auth-brand-panel {
  flex: 1.1;
  background: #0f0f1a;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.auth-brand-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(13, 110, 253, 0.15) 0%, transparent 60%);
  z-index: 1;
}

.auth-brand-panel .brand-content {
  position: relative;
  z-index: 3;
  max-width: 520px;
  margin: 0 auto;
}

.auth-brand-panel .brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  margin-bottom: 3.5rem;
}

.auth-brand-panel .brand-logo img {
  max-height: 48px;
  filter: brightness(1.15);
}

.auth-brand-panel .brand-logo .brand-name {
  color: #ffffff;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #ffffff 40%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.auth-brand-panel .brand-tagline {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.auth-brand-panel .brand-tagline span {
  background: var(--accent-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.auth-brand-panel .brand-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.auth-brand-panel .brand-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.auth-brand-panel .brand-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.auth-brand-panel .brand-feature i {
  color: var(--accent-color);
  font-size: 1.35rem;
  width: 24px;
}

.auth-brand-panel .brand-decoration {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(13, 110, 253, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
}

/* Right Form Panel */
.auth-form-panel {
  flex: 0.9;
  background: #ffffff;
  padding: 3rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
}

.auth-form-wrapper {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.auth-form-header {
  margin-bottom: 2.5rem;
}

.auth-form-header .back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(44, 44, 44, 0.55);
  font-size: 13px;
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: var(--bs-transition);
}

.auth-form-header .back-link:hover {
  color: var(--accent-color);
  transform: translateX(-4px);
}

.auth-form-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.auth-form-header p {
  color: rgba(44, 44, 44, 0.55);
  font-size: 0.95rem;
  margin: 0;
}

.auth-form-panel .auth-mb {
  margin-bottom: 1rem;
}

.auth-form-panel .form-label {
  font-weight: 700;
  font-size: 0.88rem;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}

.auth-form-panel .form-control,
.auth-form-panel .form-select {
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  padding: 0.7rem 1rem;
  font-size: 0.92rem;
  color: #2c2c2c;
  background: #ffffff;
  transition: var(--bs-transition);
}

.auth-form-panel .form-control:focus,
.auth-form-panel .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.12);
  outline: none;
}

.auth-form-panel .input-group-merge {
  border-radius: 10px;
  overflow: hidden;
}

.auth-form-panel .input-group-merge .form-control {
  border-right: none;
  border-radius: 10px 0 0 10px !important;
}

.auth-form-panel .input-group-merge .input-group-text {
  background: #fff !important;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-left: none;
  border-radius: 0 10px 10px 0 !important;
  color: rgba(44, 44, 44, 0.45);
  cursor: pointer;
  transition: var(--bs-transition);
}

.auth-form-panel .input-group-merge:focus-within .input-group-text {
  border-color: var(--accent-color);
}

.auth-form-panel .btn-submit-auth {
  width: 100%;
  padding: 0.85rem;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 20px rgba(13, 110, 253, 0.35);
  transition: var(--bs-transition);
  cursor: pointer;
}

.auth-form-panel .btn-submit-auth:hover {
  box-shadow: 0 10px 30px rgba(13, 110, 253, 0.55);
  transform: translateY(-2px);
  color: #ffffff;
}

.auth-form-panel .auth-footer-text {
  text-align: center;
  margin-top: 1.5rem;
  color: rgba(44, 44, 44, 0.55);
  font-size: 0.9rem;
}

.auth-form-panel .auth-footer-text a {
  color: var(--accent-dark);
  font-weight: 700;
  text-decoration: none;
  transition: var(--bs-transition);
}

.auth-form-panel .auth-footer-text a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

/* -----------------------------------------------
   15. SPLIT-SCREEN RESPONSIVE LAYOUT
------------------------------------------------ */
@media (max-width: 991px) {
  .auth-split-page {
    flex-direction: column;
  }

  .auth-brand-panel {
    padding: 3rem 1.5rem;
    flex: none;
    min-height: auto;
  }

  .auth-brand-panel .brand-logo {
    margin-bottom: 2rem;
  }

  .auth-brand-panel .brand-tagline {
    font-size: 2.2rem;
  }

  .auth-brand-panel .brand-desc,
  .auth-brand-panel .brand-features {
    display: none;
  }

  .auth-brand-panel .brand-decoration {
    display: none;
  }

  .auth-form-panel {
    padding: 2rem 1.25rem;
  }

  .auth-form-wrapper {
    max-width: 100%;
  }
}

/* -----------------------------------------------
   16. TOAST NOTIFICATION (keep existing but restyle)
------------------------------------------------ */
.toast {
  border-radius: 10px !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15) !important;
}

/* -----------------------------------------------
   17. RESPONSIVE GENERAL
------------------------------------------------ */
@media (max-width: 991px) {
  main.main {
    padding-top: 72px;
  }

  .ecommerce-hero-1.hero {
    padding-top: 72px;
    min-height: auto;
    padding-bottom: 4rem;
  }

  .ecommerce-hero-1.hero .image-col {
    order: -1;
    margin-bottom: 1rem;
  }

  .ecommerce-hero-1.hero .hero-image img.main-product {
    max-height: 400px !important;
  }
}

@media (max-width: 575px) {
  .ecommerce-hero-1.hero h1 {
    font-size: 1.9rem;
  }

  .ecommerce-hero-1.hero .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .info-cards .info-card {
    padding: 1.5rem 1rem;
  }
}

/* -----------------------------------------------
   18. PRELOADER OVERRIDE
------------------------------------------------ */
#preloader {
  background: #0f0f1a;
}

/* -----------------------------------------------
   19. SELECT2 OVERRIDE for auth pages
------------------------------------------------ */
.auth-form-panel .select2-container--default .select2-selection--single {
  border: 1.5px solid rgba(0, 0, 0, 0.12) !important;
  border-radius: 10px !important;
  height: 48px !important;
  padding: 0.7rem 1rem !important;
  display: flex !important;
  align-items: center !important;
  font-size: 0.92rem;
  background: #fff !important;
  position: relative !important;
}

.auth-form-panel .select2-container--default .select2-selection--single:focus,
.auth-form-panel .select2-container--default.select2-container--focus .select2-selection--single {
  border-color: var(--accent-color) !important;
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.12) !important;
  outline: none !important;
}

.auth-form-panel .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: normal !important;
  color: #2c2c2c !important;
  padding-left: 0 !important;
  padding-right: 20px !important;
}

.auth-form-panel .select2-container--default .select2-selection--single .select2-selection__arrow {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  right: 12px !important;
  height: 20px !important;
  width: 20px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.auth-form-panel .select2-container {
  width: 100% !important;
  display: block !important;
}

.auth-form-panel .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #2c2c2c transparent transparent transparent !important;
  border-style: solid !important;
  border-width: 5px 4px 0 !important;
  height: 0 !important;
  width: 0 !important;
  display: inline-block !important;
}

.auth-form-panel .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #2c2c2c transparent !important;
  border-width: 0 4px 5px !important;
}

/* Hide original select when Select2 is initialized */
.auth-form-panel select.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}
