@charset "UTF-8";
/* Variables: active variables stylesheet selected by the master layout. */

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

/* ===== Livewire Product List Island Loading Bar ===== */
.product-list-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
  gap: 1rem;
  width: 100%;
}
.product-list-loading__bar {
  position: relative;
  width: min(320px, 80%);
  height: 6px;
  border-radius: 999px;
  background: rgba(0, 31, 91, 0.08);
  overflow: hidden;
}
.product-list-loading__bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, #FFD100, transparent);
  /* translate3d + will-change promote the bar to its own compositor layer so
     the animation keeps running smoothly even while the main thread is busy
     parsing the incoming product HTML. */
  will-change: transform;
  transform: translate3d(-100%, 0, 0);
  animation: product-list-loading-slide 0.8s ease-in-out infinite;
}
.product-list-loading__text {
  margin: 0;
  font-size: 0.875rem;
  color: #001F5B;
  opacity: 0.7;
}

.inner.product {
  margin: 0;
}

html.dark .product-list-loading__bar {
  background: rgba(255, 255, 255, 0.1);
}
html.dark .product-list-loading__text {
  color: #cbd5e1;
}
@keyframes product-list-loading-slide {
  0%   { transform: translate3d(-100%, 0, 0); }
  100% { transform: translate3d(250%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .product-list-loading__bar::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Softly fade the freshly-hydrated product list in so the placeholder ->
   products swap feels smooth instead of abrupt. */
.product-list-island {
  animation: product-list-island-in 0.3s ease-out both;
}
@keyframes product-list-island-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .product-list-island {
    animation: none;
  }
}

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

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: #001F5B;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  overflow-x: hidden;
}

body>header,
body>nav,
body>.usp-3,
body>.center.position-ref.full-height,
body>footer {
  flex-shrink: 0;
}

body>.center.position-ref.full-height {
  flex: 1 0 auto;
}

.row {
  margin-left: 22px;
  margin-right: 0px;
}

.category-title {
    margin-left: 22px;
}

.container,
.inner,
ul.shop {
  margin: 0 auto;
}

.center.position-ref.full-height {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 400px);
  background: #ffffff;
}

ul {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  transition: all .3s ease;
  color: #001F5B;
}

a:hover {
  color: #0A2F70;
}

header {
  background: #ffffff;
  position: relative;
  z-index: 1000;
  box-shadow: 0 4px 24px rgba(0, 31, 91, 0.08);
  padding: 0 !important;
  overflow: visible;
}

.top-bar {
  border-bottom: 1px solid rgba(0, 31, 91, 0.08);
  padding: 16px 0;
  background: #ffffff;
}

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

.free-delivery {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
}

.free-delivery .fa-bullhorn {
  font-size: 15px;
  line-height: 1;
  color: #001F5B;
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px var(--mega-glow-near)) drop-shadow(0 0 9px var(--mega-glow-far));
  animation: free-delivery-mega-glow 2.8s ease-in-out infinite;
}

html.dark .free-delivery .fa-bullhorn {
  color: #FFD100;
}

@keyframes free-delivery-mega-glow {
  0%,
  100% {
    filter: drop-shadow(0 0 3px var(--mega-glow-near)) drop-shadow(0 0 7px var(--mega-glow-far));
  }
  50% {
    filter: drop-shadow(0 0 6px var(--mega-glow-near)) drop-shadow(0 0 13px var(--mega-glow-far));
  }
}

@media (prefers-reduced-motion: reduce) {
  .free-delivery .fa-bullhorn {
    animation: none;
  }
}

.free-delivery a {
  color: rgba(0, 31, 91, 0.72);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.4px;
}

.free-delivery a:hover {
  color: #001F5B;
}

.top-bar .pull-right {
  display: flex;
  align-items: center;
  gap: 40px;
}

.top-bar ul {
  display: flex;
  align-items: center;
  gap: 40px;
}

.top-bar ul li {
  list-style: none;
  position: relative;
}

.top-bar ul li a {
  color: rgba(0, 31, 91, 0.75);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  padding-bottom: 10px;
  position: relative;
}

.top-bar ul li a:hover {
  color: #001F5B;
}

.top-bar ul li a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #001F5B, #0A2F70);
  transition: all .3s ease;
}

.top-bar ul li a:hover:after {
  width: 100%;
}

header>.inner {
  padding: 28px 0 30px;
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

header .logo {
  width: 180px;
  min-width: 180px;
  height: 72px;
  background: url(../images/logo.png) center no-repeat;
  background-size: contain;
  display: block;
  transition: .3s ease;
}

header .logo:hover {
  transform: translateY(-2px);
}

header form.search {
  flex: 1;
  max-width: 620px;
  position: relative;
}

header form.search input {
  width: 100%;
  height: 56px;
  border-radius: 12px;
  border: 1px solid rgba(0, 31, 91, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: #001F5B;
  padding: 0 70px 0 22px;
  font-size: 14px;
  outline: none;
  transition: all .3s ease;
  box-sizing: border-box;
  backdrop-filter: blur(10px);
}

header form.search input:focus {
  border-color: rgba(0, 31, 91, 0.5);
  box-shadow:
    0 0 0 4px rgba(0, 31, 91, 0.08),
    0 10px 30px rgba(0, 0, 0, 0.2);
}

header form.search input::placeholder {
  color: rgba(0, 31, 91, 0.45);
  letter-spacing: 0.5px;
}

header form.search button {
  position: absolute;
  right: 7px;
  top: 7px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  background:
    linear-gradient(135deg, #001F5B, #00153D);
  transition: all .3s ease;
}

header form.search button:before {
  content: "\f002";
  font-family: FontAwesome;
  color: #ffffff;
  font-size: 15px;
}

header form.search button:hover {
  transform: translateY(-1px) scale(1.05);
  box-shadow: 0 6px 18px rgba(0, 31, 91, 0.35);
}

header .UA {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  margin-bottom: 0;
}

header .UA.ua-icons > div,
header .UA.ua-icons .ajax-basket {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

header .UA>div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px;
  border-radius: 14px;
  border-left: none;
  transition: all .3s ease;
}

header nav {
  padding-bottom: 0;
}

header .UA>div:hover {
  border-color: rgba(0, 31, 91, 0.18);
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 31, 91, 0.06);
}

header .UA>div i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 209, 0, 0.18), rgba(201, 160, 0, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
}

header .UA>div i svg {
  fill: #001F5B;
}

header .UA>div>div {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
}

header .UA>div>div a {
  color: #001F5B;
  font-style: normal;
  font-weight: 500;
}

header .UA>div>div em a {
  color: #001F5Ba9;
  font-style: normal;
  font-weight: 500;
}

header .UA>div>div strong {
  display: block;
  color: #001F5B;
  font-size: 13px;
  font-weight: 600;
}

header nav {
  margin-top: 0px;
  border-top: 1px solid rgba(0, 31, 91, 0.06);
  border-bottom: none;
  background: #ffffff;
  position: relative;
  overflow: visible;
}

header nav::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg,
      rgba(255, 209, 0, 0) 0%,
      #FFD100 18%,
      #E6B800 50%,
      #C9A000 82%,
      rgba(255, 209, 0, 0) 100%);
  pointer-events: none;
}

/* Main nav default state */
.main-nav {
  margin-top: 0px;
  border-top: 1px solid rgba(0, 31, 91, 0.06);
  border-bottom: none;
  background: #ffffff;
  width: 100%;
  position: relative;
  z-index: 100;
  overflow: visible;
}

.main-nav::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg,
      rgba(255, 209, 0, 0) 0%,
      #FFD100 18%,
      #E6B800 50%,
      #C9A000 82%,
      rgba(255, 209, 0, 0) 100%);
  pointer-events: none;
}

.main-nav>ul {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  z-index: 1;
}

.main-nav>ul>li {
  position: static;
  list-style: none;
  display: flex;
}

.main-nav>ul>li>a {
  display: flex;
  align-items: center;
  width: 17rem;
  padding: 24px 10px;
  height: 100%;
  min-height: 60px;
  color: rgba(0, 31, 91, 0.82);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.main-nav>ul>li>a:hover {
  color: #001F5B;
}

.main-nav>ul>li:after {
  content: "";
  position: absolute;
  left: 28px;
  bottom: 14px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #001F5B, #0A2F70);
  transition: .3s ease;
}

.main-nav>ul>li:hover:after {
  width: calc(100% - 56px);
}

header nav>ul {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

header nav>ul>li {
  list-style: none;
  position: relative;
  display: flex;
}

header nav>ul>li>a {
  display: flex;
  align-items: center;
  width: 17rem;
  padding: 0 10px;
  height: 100%;
  min-height: 60px;
  color: rgba(0, 31, 91, 0.82);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

header nav>ul>li>a:hover {
  color: #001F5B;
}

header nav>ul>li:after {
  content: "";
  position: absolute;
  left: 28px;
  bottom: 14px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #001F5B, #0A2F70);
  transition: .3s ease;
}

header nav>ul>li:hover:after {
  width: calc(100% - 56px);
}

.switcher {
  display: flex;
  align-items: center;
  gap: 10px;
}

.switcher b {
  font-size: 11px;
  color: #001F5B;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.mobile-menu {
  display: none;
  color: #001F5B !important;
  font-size: 24px !important;
  transition: all 0.3s ease;
}

.mobile-menu:hover {
  color: #0A2F70 !important;
  transform: scale(1.1);
}

header a.mobile-menu {
  color: #FFD100 !important;
  border: none;
  width: 30px;
  height: 30px;
  margin-top: 3px;
  margin-right: 10px !important;
  line-height: 15px;
}

.mobile-nav {
  display: none;
}

.mobile-nav .inner {
  display: none;
}

/* Mobile menu open state */
.mobile-nav.open {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 9999;
  overflow-y: auto;
  padding: 20px;
  box-shadow: inset 0 0 120px rgba(0, 31, 91, 0.06);
}

body>.mobile-nav::after {
  display: none;
}

body>.mobile-nav li {
  white-space: nowrap;
}

nav li a,
.mobile-nav li a,
.mobile-nav button.priority-nav-is-visible {
  width: 100%;
}

nav li,
.mobile-nav li,
.mobile-nav button.priority-nav-is-visible {
  border: none;
}

ul.shop .has-children ul,
.mobile-nav .has-children ul {
  display: none !important;
}

.mobile-nav.open .inner {
  display: block;
}

.mobile-nav.open ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-nav.open ul li {
  list-style: none;
}

.mobile-nav.open ul li a {
  color: #001F5B;
  font-size: 16px;
  padding: 15px;
  display: block;
  border-bottom: 1px solid rgba(0, 31, 91, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.85);
  transition: all 0.3s ease;
}

.mobile-nav.open ul li a:hover {
  background: rgba(0, 31, 91, 0.15);
  border-color: rgba(0, 31, 91, 0.3);
  color: #001F5B;
}

/* Main nav mobile open state */
.main-nav.open {
  display: block !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: #ffffff !important;
  z-index: 10000 !important;
  overflow-y: auto;
  padding: 120px 30px 40px;
  margin-top: 0 !important;
  border: none !important;
  box-shadow: inset 0 0 160px rgba(0, 31, 91, 0.08);
}

.main-nav.open::before {
  content: "";
  position: absolute;
  top: -180px;
  left: 50%;
  width: 920px;
  height: 920px;
  transform: translateX(-50%);
  background: radial-gradient(circle,
      rgba(0, 31, 91, 0.22) 0%,
      rgba(0, 31, 91, 0.08) 42%,
      rgba(0, 31, 91, 0) 78%);
  pointer-events: none;
}

.main-nav.open>ul {
  display: flex !important;
  flex-direction: column;
  gap: 16px;
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
}

.main-nav.open>ul>li {
  width: 100%;
  position: static !important;
  margin: 0;
  padding: 0;
}

.main-nav.open>ul>li>a {
  width: 100%;
  padding: 24px 60px 24px 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  text-align: left;
  display: block;
}

.main-nav.open>ul>li>a:hover {
  background: rgba(0, 31, 91, 0.15);
  border-color: rgba(0, 31, 91, 0.4);
  color: #001F5B !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 31, 91, 0.2);
}

.main-nav.open>ul>li.active>a {
  background: rgba(0, 31, 91, 0.2);
  border-color: rgba(0, 31, 91, 0.5);
  color: #001F5B !important;
}

/* Handle dropdowns in mobile view */
.main-nav.open>ul>li>ul {
  position: static !important;
  transform: none !important;
  width: 100% !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  display: none;
  padding: 20px;
  margin-top: 16px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)) !important;
  gap: 16px;
}

.main-nav.open>ul>li.active>ul {
  display: grid !important;
}

.main-nav.open>ul>li:hover>ul {
  display: none !important;
}

.main-nav.open>ul>li>ul>li {
  width: 100%;
  margin: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.main-nav.open>ul>li>ul>li>a {
  padding: 16px 20px;
  color: #001F5B !important;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  background: transparent;
  border-radius: 10px;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.main-nav.open>ul>li>ul>li>a:hover {
  background: rgba(0, 31, 91, 0.15);
  color: #fff !important;
}

/* Subcategory links in mobile - horizontal layout */
.main-nav.open>ul>li>ul>li>ul {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  position: static !important;
  transform: none !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 12px 16px 16px 16px !important;
  margin: 0 !important;
  width: 100% !important;
  gap: 8px;
}

.main-nav.open>ul>li>ul>li>ul>li {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 0 0 auto;
}

.main-nav.open>ul>li>ul>li>ul>li>a {
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 13px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.1px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  white-space: nowrap;
  display: inline-block;
  transition: all 0.3s ease;
}

.main-nav.open>ul>li>ul>li>ul>li>a:hover {
  background: rgba(0, 31, 91, 0.25);
  color: #fff !important;
  border-color: rgba(0, 31, 91, 0.5);
  transform: translateY(-2px);
}

/* Prevent body scroll when menu is open */
body.open {
  overflow: hidden;
}

/* Add backdrop overlay when menu is open */
body.open::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9998;
  backdrop-filter: blur(5px);
}

/* Burger / drawer mode — any viewport that can't fit the full category
   banner switches to the hamburger. Must stay in sync with the 1360px
   switch point used in header.blade.php + custom.js. */
@media(max-width: 1360px) {
  .main-nav {
    display: none;
  }

  .main-nav.open {
    display: block !important;
  }

  /* Hide default desktop nav items */
  .main-nav>ul>li>a {
    width: 100%;
  }

  /* Improve mobile dropdown interaction */
  .main-nav.open>ul>li>ul {
    display: none !important;
  }

  .main-nav.open>ul>li.active>ul {
    display: block !important;
  }

  /* Add indicator for dropdown items */
  .main-nav.open>ul>li>a::after {
    content: '\f107';
    font-family: 'FontAwesome';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
  }

  .main-nav.open>ul>li.active>a::after {
    transform: translateY(-50%) rotate(180deg);
  }

  /* Style other navbar elements for mobile */
  .logo {
    width: 140px;
    height: 56px;
    margin: 0 auto;
  }

  .search-modern {
    order: 2;
    width: 100%;
    margin-top: 15px;
  }

  .header-actions {
    order: 1;
    width: 100%;
    justify-content: flex-end;
    align-items: center;
    margin-top: 0;
    gap: 8px;
    position: relative;
  }

  .switcher.desktop {
    display: none;
  }

  /* Mobile menu button positioning */
  .mobile-menu {
    display: block !important;
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(0, 31, 91, 0.15);
    border: 2px solid rgba(0, 31, 91, 0.5);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .mobile-menu:hover {
    background: rgba(0, 31, 91, 0.3);
    border-color: #001F5B;
    transform: scale(1.1);
  }

  /* Header mobile adjustments */
  .header-top-row {
    flex-direction: column;
    align-items: stretch;
    position: relative;
  }

  .header-modern .inner {
    position: relative;
    padding: 20px;
  }

  /* Search bar mobile styling */
  .search-modern input {
    height: 48px;
    font-size: 14px;
  }

  .search-modern button {
    width: 38px;
    height: 38px;
    top: 5px;
    right: 5px;
  }

  /* User area mobile styling */
  .header-actions>div {
    padding: 6px 10px;
    gap: 6px;
  }

  .header-actions>div i {
    width: 32px;
    height: 32px;
  }

  .header-actions>div>div {
    font-size: 10px;
    white-space: nowrap;
  }

  .header-actions>div>div a {
    display: inline-block;
    margin-right: 6px;
  }

  .header-actions>div>div em {
    display: inline;
    font-style: normal;
  }

  /* Top bar mobile adjustments */
  .top-bar-modern .inner {
    padding: 12px 20px;
    flex-direction: column;
    gap: 12px;
  }

  .top-left,
  .top-right {
    width: 100%;
    justify-content: center;
  }
}

/* Additional mobile specific styles */
@media(max-width: 767px) {
  .header-modern .inner {
    padding: 15px;
  }

  .logo {
    width: 120px;
    height: 48px;
  }

  .main-nav.open {
    padding: 100px 15px 30px;
  }

  .main-nav.open>ul {
    max-width: 100%;
  }

  .main-nav.open>ul>li>a {
    padding: 18px 45px 18px 15px;
    font-size: 15px;
  }

  .mobile-menu-close {
    width: 44px;
    height: 44px;
    top: 15px;
    right: 15px;
    font-size: 20px;
  }

  /* Hide subcategory dropdowns on mobile - only show top-level category links */
  .main-nav.open>ul>li>ul {
    display: none !important;
  }

  /* Remove dropdown arrow indicators */
  .main-nav.open>ul>li>a::after {
    display: none !important;
  }

  .product-img-box #thumbs {
    padding: 10px 0 0 20px;
  }

  .product-img-box #thumbs a {
    border: none;
  }

  .product-img-box {
    border: none;
  }

  .product-img-box img {
    border: none;
    padding: 0;
  }
}

/* Tablet drawer adjustments (burger switch point is 1360px) */
@media(min-width: 768px) and (max-width: 1360px) {
  .main-nav.open {
    padding: 110px 20px 35px;
  }

  .main-nav.open>ul {
    max-width: 100%;
  }

  .mobile-menu-close {
    top: 20px;
    right: 20px;
  }

  /* Ensure horizontal layout for subcategories on tablets */
  .main-nav.open>ul>li>ul {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)) !important;
  }

  .mobile-nav.open {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 9999;
    overflow-y: auto;
    padding: 120px 20px 40px;
    box-shadow: inset 0 0 160px rgba(0, 31, 91, 0.08);
  }

  .mobile-nav.open::before {
    content: "";
    position: absolute;
    top: -180px;
    left: 50%;
    width: 920px;
    height: 920px;
    transform: translateX(-50%);
    background: radial-gradient(circle,
        rgba(0, 31, 91, 0.22) 0%,
        rgba(0, 31, 91, 0.08) 42%,
        rgba(0, 31, 91, 0) 78%);
    pointer-events: none;
  }

  .mobile-nav.open .inner {
    display: block;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
  }

  .mobile-nav.open ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .mobile-nav.open ul li {
    list-style: none;
  }

  .mobile-nav.open ul li a {
    color: #fff;
    font-size: 15px;
    padding: 18px 20px;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    font-weight: 500;
  }

  .mobile-nav.open ul li a:hover {
    background: rgba(0, 31, 91, 0.15);
    border-color: rgba(0, 31, 91, 0.3);
    color: #001F5B;
    transform: translateX(5px);
  }
}

/* Mobile menu close button */
.mobile-menu-close {
  position: fixed;
  top: 25px;
  right: 25px;
  width: 52px;
  height: 52px;
  border: 1px solid #FFD100;
  background: linear-gradient(135deg, rgba(0, 31, 91, 0.2), rgba(0, 31, 91, 0.1));
  border-radius: 50%;
  color: #FFD100;
  font-size: 24px;
  cursor: pointer;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 31, 91, 0.4);
  backdrop-filter: blur(10px);
}

.mobile-menu-close:hover {
  background: linear-gradient(135deg, rgba(0, 31, 91, 0.4), rgba(0, 31, 91, 0.2));
  border-color: #001F5B;
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 25px rgba(0, 31, 91, 0.6);
  color: #0A2F70;
}

.mobile-menu-close:active {
  transform: scale(0.95) rotate(90deg);
}

.dropdown-menu,
ul.shop.dropdown-menu {
  background: #ffffff;
  border: 1px solid rgba(0, 31, 91, 0.1);
  border-radius: 14px;
  overflow: hidden;
  padding: 10px 0;
  box-shadow: 0 20px 48px rgba(0, 31, 91, 0.14);
}

ul.shop.dropdown-menu li {
  width: 100% !important;
}

ul.shop.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  color: rgba(0, 31, 91, 0.75);
  font-size: 13px;
}

ul.shop.dropdown-menu li a:hover {
  background: rgba(0, 31, 91, 0.08);
  color: #001F5B;
}

header nav>ul>li,
ul.shop .categories>li,
ul.shop>li {
  position: relative;
  border: none !important;
  background: transparent;
  transition: all .25s ease;
}

header nav li>a,
ul.shop li>a {
  color: rgba(0, 31, 91, 0.82) !important;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all .25s ease;
  text-decoration: none !important;
}

header nav>ul>li::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 36px;
  background: rgba(0, 31, 91, 0.1);
}

header nav>ul>li:last-child::after {
  display: none;
}

header nav li:hover>a,
ul.shop li:hover>a {
  color: #001F5B !important;
}

header nav>ul>li>a::before {
  content: "";
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  border-radius: 20px;
  background: linear-gradient(90deg,
      #001F5B,
      #0A2F70);
  transition: all .3s ease;
}

nav li, .mobile-nav li, .mobile-nav button.priority-nav-is-visible {
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}

header nav>ul>li:hover>a::before {
  width: 55%;
}

ul.shop .has-children>ul {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 320px;
  background:
    linear-gradient(135deg,
      rgba(255, 209, 0, 0.98) 0%,
      rgba(255, 209, 0, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 20px;
  margin-top: 18px;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all .28s ease;
  z-index: 9999;
}

ul.shop .has-children:hover>ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

ul.shop .has-children>ul::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg,
      #001F5B,
      transparent);
}

ul.shop .has-children ul li {
  width: 100% !important;
  display: block;
  margin: 0;
  padding: 0;
  background: none !important;
  border: none !important;
}

ul.shop .has-children ul li a {
  display: block !important;
  width: 100%;
  padding: 14px 16px !important;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.72) !important;
  text-align: left !important;
  font-size: 13px !important;
  font-weight: 500;
  letter-spacing: .5px;
  text-transform: none;
  transition: all .22s ease;
  background: transparent !important;
}

ul.shop .has-children ul li a:hover {
  background: rgba(0, 31, 91, 0.12) !important;
  color: #ffffff !important;
  padding-left: 22px !important;
}

ul.shop .has-children ul li.has-children>a::after {
  content: "\203A";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #001F5B;
  font-size: 16px;
}

ul.shop .has-children ul li.has-children>ul {
  left: 100%;
  top: 0;
  margin-left: 16px;
  margin-top: 0;
}

.banner-image {
  display: block !important;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 14px;
  position: relative;
}

.banner-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .5s ease;
  border-radius: 14px;
}

.banner-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0));
}

.banner-image:hover img {
  transform: scale(1.05);
}

ul.shop .column {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

@media screen and (max-width:1130px) {
  ul.shop .has-children>ul {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: none;
  }

  header nav>ul>li::after {
    display: none;
  }

  header nav li>a,
  ul.shop li>a {
    justify-content: flex-start;
    padding: 18px 20px !important;
  }
}

@media screen and (max-width:768px) {
  ul.shop .has-children>ul {
    min-width: 100%;
    padding: 14px;
  }

  ul.shop .has-children ul li a {
    font-size: 14px !important;
  }
}

#partfinder {
  display: none;
  width: 100%;
  background:
    linear-gradient(135deg, rgba(255, 209, 0, 0.98) 0%, rgba(255, 209, 0, 0.98) 100%);
  padding: 42px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
}

#partfinder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,
      transparent,
      #001F5B,
      transparent);
}

#partfinder .inner {
  width: 100%;
  max-width: 1400px;
  margin: auto;

  display: grid;
  grid-template-columns: 360px 1fr;
  grid-template-areas:
    "title form"
    "desc  form";

  column-gap: 40px;
  row-gap: 10px;

  align-items: center;
}

.parts-header {
  grid-area: title;

  display: block;

  font-size: 30px;
  line-height: 1;

  font-weight: 600;
  color: #fff;

  margin: 0;

  position: relative;
}

.parts-header::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -12px;

  width: 90px;
  height: 4px;

  border-radius: 20px;

  background:
    linear-gradient(90deg,
      #001F5B,
      rgba(0, 31, 91, 0));
}

#partfinder p {
  grid-area: desc;

  margin: 0;
  margin-top: 10px;

  color: rgba(255, 255, 255, .72);

  font-size: 12px;
  line-height: 1.5;
}

#partfinder form {
  grid-area: form;

  display: grid;

  grid-template-columns:
    repeat(3, minmax(180px, 1fr)) 180px;

  gap: 18px;

  align-items: center;

  margin: 0;
}

@media(max-width:1200px) {
  #partfinder .inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "desc"
      "form";

    row-gap: 24px;
  }

  #partfinder form {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:768px) {
  #partfinder form {
    grid-template-columns: 1fr;
  }

  .parts-header {
    font-size: 30px;
  }

  #partfinder {
    padding: 28px;
  }
}

#partfinder .select2-container {
  width: 100% !important;
}

#partfinder .select2-container--default .select2-selection--single {
  height: 64px !important;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  transition: all .25s ease;
  box-shadow: none;
}

#partfinder .select2-container--default .select2-selection--single:hover {
  border-color: rgba(0, 31, 91, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

#partfinder .select2-container--default.select2-container--open .select2-selection--single {
  border-color: #001F5B;
  box-shadow: 0 0 0 4px rgba(0, 31, 91, 0.12);
}

#partfinder .select2-selection__rendered {
  color: #ffffff !important;
  line-height: 64px !important;
  padding-left: 22px !important;
  font-size: 15px;
  font-weight: 500;
}

#partfinder .select2-selection__arrow {
  height: 64px !important;
  right: 16px;
}

#partfinder .select2-selection__arrow b {
  border-color: #001F5B transparent transparent transparent !important;
  border-width: 6px 6px 0 6px !important;
}

.select2-dropdown {
  background: #ffffff !important;
  border: 1px solid rgba(0, 31, 91, 0.1) !important;
  border-radius: 14px !important;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 31, 91, 0.14);
}

.select2-results__option {
  padding: 14px 18px !important;
  color: rgba(0, 31, 91, 0.78);
  font-size: 14px;
  transition: all .2s ease;
}

.select2-results__option--highlighted {
  background: rgba(255, 209, 0, 0.15) !important;
  color: #001F5B !important;
}

#partfinder button.btn {
  height: 64px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg,
      #001F5B 0%,
      #0A2F70 100%);
  color: #E6B800;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all .25s ease;
  box-shadow:
    0 10px 30px rgba(0, 31, 91, 0.25);
  width: 100%;
  max-width: none;
  margin-bottom: 15px;
}

#partfinder button.btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 40px rgba(0, 31, 91, 0.35);
}

#partfinder .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: rgba(255, 255, 255, 0.45);
}

@media screen and (max-width: 1200px) {
  #partfinder form {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 768px) {
  #partfinder {
    padding: 28px;
    border-radius: 0;
  }

  .parts-header {
    font-size: 34px;
  }

  #partfinder form {
    grid-template-columns: 1fr;
  }

  #partfinder button.btn {
    margin-top: 5px;
  }
}

@media screen and (max-width: 480px) {
  #partfinder {
    padding: 22px 18px;
  }

  .parts-header {
    font-size: 28px;
  }

  #partfinder p {
    font-size: 14px;
  }

  #partfinder .select2-container--default .select2-selection--single {
    height: 58px !important;
  }

  #partfinder .select2-selection__rendered {
    line-height: 58px !important;
  }

  #partfinder button.btn {
    height: 58px;
  }
}

@media screen and (max-width: 1300px) {
  header>.inner {
    flex-wrap: wrap;
  }

  header form.search {
    order: 3;
    width: 100%;
    max-width: 100%;
  }
}

@media screen and (max-width: 1100px) {
  .mobile-menu {
    display: block !important;
  }

  header nav {
    display: none;
  }

  .top-bar ul {
    display: none;
  }

  header .UA {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  header .UA>div {
    padding: 8px 12px;
    gap: 10px;
  }

  header .UA>div i {
    width: 36px;
    height: 36px;
  }

  header .UA>div>div {
    font-size: 11px;
    white-space: nowrap;
  }

  header .UA>div>div a {
    display: inline-block;
    margin-right: 8px;
  }

  header .UA>div>div em {
    display: inline;
    font-style: normal;
  }
}

@media screen and (max-width: 768px) {
  .top-bar .inner {
    flex-direction: column;
    gap: 15px;
  }

  header>.inner {
    flex-direction: column;
    align-items: stretch;
  }

  header .logo {
    margin: auto;
  }

  header form.search {
    width: 100%;
  }

  header .UA {
    justify-content: center;
    gap: 10px;
  }

  header .UA>div {
    padding: 6px 10px;
    gap: 8px;
  }

  header .UA>div i {
    width: 32px;
    height: 32px;
  }

  header .UA>div>div {
    font-size: 10px;
    white-space: nowrap;
  }

  header .UA>div>div a {
    display: inline-block;
    margin-right: 8px;
  }

  header .UA>div>div em {
    display: inline;
    font-style: normal;
  }

  .switcher {
    display: none;
  }
}

/* =========================================================
   FOOTER
========================================================= */

footer .logo {
  width: 250px;
  height: 90px;
  background: url(../images/logo-footer.png);
  background-size: contain;
  display: inline-block;
  margin-top: 20px;
  background-repeat: no-repeat;
  margin-bottom: 0px;
}

footer .legal li {
  display: inline-block;
  width: 48%;
  vertical-align: top;
}

footer .social img {
  height: 34px;
  width: 45px;
}

#myFooter {
  background: linear-gradient(135deg, #001F5B 0%, #00153D 52%, #000D24 100%);
  color: #FFD100;
  padding-top: 20px;
}

#myFooter .footer-copyright {
  background: linear-gradient(135deg, #00153D 0%, #000D24 100%);

  padding-top: 7px;
  padding-bottom: 1px;
  text-align: center;
}

#myFooter .footer-copyright p {
  margin: 10px;
  color: #FFD100;
}

#myFooter .contact-area .uppercase {
  text-transform: uppercase;
}

#myFooter ul {
  list-style-type: none;
  padding-left: 0;
  line-height: 1.7;
}

#myFooter h5 {
  font-size: 18px;
  color: #FFD100;
  font-weight: bold;
  margin-top: 30px;
}

#myFooter a {
  color: #FFD100;
  text-decoration: none;
}

#myFooter a:hover,
#myFooter a:focus {
  text-decoration: none;
  color: #ffffff;
}

#myFooter .social-networks {
  text-align: center;
  padding-top: 150px;
  padding-bottom: 48px;
}

#myFooter .fa {
  font-size: 16px;
  /* margin-right: 15px; */
  /* margin-left: 20px; */
  background-color: white;
  color: #182c39;
  border-radius: 51%;
  /* padding: 10px; */
  height: 30px;
  width: 30px;
  text-align: center;
  line-height: 30px;
  text-decoration: none;
  transition: color 0.2s;
}

#myFooter .fa-facebook:hover {
  color: #2b55ff;
}

#myFooter .fa-facebook:focus {
  color: #2b55ff;
}

#myFooter .fa-google-plus:hover {
  color: red;
}

#myFooter .fa-google-plus:focus {
  color: red;
}

#myFooter .fa-twitter:hover {
  color: #00aced;
}

#myFooter .fa-twitter:focus {
  color: #00aced;
}

.contact-area .col-md-2 {
  padding: 0px !important;
}

.contact-area .col-md-10 {
  margin-left: -15px;
}

.contact-area .col-md-10 h4 {
  margin-bottom: 0px;
}

footer .social a {
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 20px;
}

footer .social a.nom {
  margin-right: 0px;
}

/* =========================================================
   PRODUCT GRID
========================================================= */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
  border: none;
  margin-bottom: 40px;
}

.products-grid .item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  border-radius: 16px;
  overflow: hidden;
  transition: all .3s ease;
}

.products-grid .item:hover {
  border-color: rgba(0, 31, 91, 0.25);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.products-grid .item>div {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.products-grid .img {
  display: block;
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.products-grid .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .4s ease;
}

.products-grid .item:hover .img img {
  transform: scale(1.05);
}

.products-grid .prod-inner {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.products-grid h3 {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
}

.products-grid h3 a {
  color: #fff;
  text-decoration: none;
  transition: color .2s ease;
}

.products-grid h3 a:hover {
  color: #001F5B;
}

.products-grid .manulogo {
  display: block;
  margin-bottom: 12px;
}

.products-grid .manulogo img {
  max-height: 24px;
  object-fit: contain;
}

.products-grid .prod-initial {
  margin-bottom: 12px;
}

.products-grid .price-area {
  margin-bottom: 8px;
}

.products-grid .price {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

.products-grid .pricespan {
  font-size: 15px;
  font-weight: 600;
  color: #001F5B;
}

.products-grid .mainPrice--styling {
  color: #001F5B;
}

.products-grid .alternativePrice--styling {
  color: rgba(255, 255, 255, 0.7);
}

.products-grid .partnum {
  margin: 0 0 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.products-grid .excerpt {
  margin: 0 0 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  flex: 1;
}

.products-grid .availability {
  margin: 8px 0;
  font-size: 12px;
  font-weight: 500;
}

.products-grid .availability.in-stock span {
  color: #10b981;
}

.products-grid .availability span {
  border-radius: 6px;
  background: rgba(16, 185, 129, 0.1);
}

.products-grid .qty-row {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 4px !important;
  margin: 6px 0 !important;
}

.products-grid .qty {
  width: 50px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
  margin: 0;
  box-sizing: border-box;
}

.products-grid .qty-change {
  width: 32px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #001F5B;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .2s ease;
}

.products-grid .qty-change:hover {
  background: rgba(0, 31, 91, 0.15);
  border-color: rgba(0, 31, 91, 0.3);
}

.products-grid .addtocart {
  width: 100%;
  height: 40px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #001F5B 0%, #00153D 100%);
  color: #FFD100;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s ease;
  margin-top: 6px;
}

.products-grid .addtocart:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 31, 91, 0.3);
}

.products-grid .addtocart i {
  margin-right: 6px;
}

/* ---- PRODUCT GRID - shorter cards ---- */
.products-grid .img {
  height: 180px !important;
}

.products-grid .prod-inner {
  padding: 14px 0px !important;
}

.products-grid h3 {
  font-size: 13px !important;
  margin: 0 0 4px !important;
}

.products-grid .partnum {
  margin: 0 0 6px !important;
  font-size: 11px !important;
}

.products-grid .excerpt {
  margin: 0 0 6px !important;
  font-size: 12px !important;
  line-height: 1.4 !important;
}

.products-grid .manulogo {
  margin-bottom: 6px !important;
}

.products-grid .prod-initial {
  margin-bottom: 6px !important;
  width: auto;
  height:25px;
}

.products-grid .price-area {
  margin-bottom: 4px !important;
}

.products-grid li.item {
  border: none;
  margin: 10px;
  margin-bottom: 0px;
}

.recent-viewed {
    background: #ffffff;
    border: 1px solid rgba(0, 31, 91, 0.08);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 30px;
}
html.dark .recent-viewed { background: #1e293b !important; border-color: #334155 !important; }

.recent-viewed .title-labels h3 {
    color: #001F5B !important;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 20px 0;
    background: none !important;
    border: none !important;
    padding: 0 !important;
}

/* =========================================================
   PRODUCT LIST VIEW
========================================================= */

.products-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.products-list li {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  border-radius: 16px;
  overflow: hidden;
  transition: all .3s ease;
}

.products-list li:hover {
  border-color: rgba(0, 31, 91, 0.25);
  background: rgba(255, 255, 255, 0.04);
}

.products-list li>div {
  display: flex;
}

.products-list .img {
  width: 200px;
  height: 200px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
}

.products-list .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin-top: 10px;
}

.products-list .prod-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.products-list h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.products-list h3 a {
  color: #fff;
  text-decoration: none;
  transition: color .2s ease;
}

.products-list h3 a:hover {
  color: #001F5B;
}

.products-list .partnum {
  margin: 0 0 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.products-list .excerpt {
  margin: 0 0 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.products-list .qty-row {
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  margin: 6px 0 !important;
}

.products-list .qty {
  width: 50px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
  margin: 0;
  box-sizing: border-box;
}

.products-list .qty-change {
  width: 32px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #001F5B;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .2s ease;
}

.products-list .qty-change:hover {
  background: rgba(0, 31, 91, 0.15);
  border-color: rgba(0, 31, 91, 0.3);
}

/* =========================================================
   RESPONSIVE - PRODUCT CARDS
========================================================= */

/* Large tablets / small desktops (992px - 1199px) */
@media(max-width:1199px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
  }

  .products-grid .img {
    height: 170px !important;
  }

  .products-grid .prod-inner {
    padding: 12px 14px !important;
  }

  .products-grid h3 {
    font-size: 13px !important;
  }

  .products-grid .addtocart {
    height: 38px !important;
    font-size: 12px !important;
  }

  .products-grid .qty {
    width: 44px !important;
    height: 34px !important;
    font-size: 13px !important;
  }

  .products-grid .qty-change {
    width: 30px !important;
    height: 34px !important;
  }
}

/* Tablets (768px - 991px) */
@media(max-width:991px) {
  .mobile-menu {
    display: block !important;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .products-grid .img {
    height: 150px !important;
  }

  .products-grid .prod-inner {
    padding: 10px 12px !important;
  }

  .products-grid h3 {
    font-size: 12px !important;
    margin: 0 0 3px !important;
  }

  .products-grid .partnum {
    font-size: 10px !important;
    margin: 0 0 4px !important;
  }

  .products-grid .excerpt {
    font-size: 11px !important;
    margin: 0 0 4px !important;
    line-height: 1.3 !important;
  }

  .products-grid .price {
    font-size: 12px !important;
  }

  .products-grid .pricespan {
    font-size: 13px !important;
  }

  .products-grid .manulogo {
    margin-bottom: 4px !important;
  }

  .products-grid .manulogo img {
    max-height: 20px !important;
  }

  .products-grid .prod-initial {
    margin-bottom: 4px !important;
  }

  .products-grid .price-area {
    margin-bottom: 3px !important;
  }

  .products-grid .availability {
    margin: 4px 0 !important;
    font-size: 11px !important;
  }

  .products-grid .availability span {
    padding: 3px 8px !important;
  }

  .products-grid .qty-row {
    margin: 4px 0 !important;
    gap: 3px !important;
  }

  .products-grid .qty {
    width: 40px !important;
    height: 32px !important;
    font-size: 12px !important;
  }

  .products-grid .qty-change {
    width: 28px !important;
    height: 32px !important;
    font-size: 11px !important;
  }

  .products-grid .addtocart {
    height: 36px !important;
    font-size: 12px !important;
    margin-top: 4px !important;
  }

  /* List view tablet */
  .products-list li>div {
    gap: 16px;
    padding: 16px;
  }

  .products-list .img {
    width: 150px;
    height: 150px;
  }

  .products-list h3 {
    font-size: 14px;
  }

  .products-list .partnum {
    font-size: 12px;
    margin: 0 0 8px;
  }

  .products-list .excerpt {
    font-size: 13px;
    margin: 0 0 10px;
  }

  .products-list .qty {
    width: 44px !important;
    height: 34px !important;
    font-size: 13px !important;
  }

  .products-list .qty-change {
    width: 30px !important;
    height: 34px !important;
  }

  ul.products-grid li button.addtocart {
    font-size: 11px !important;
  }
}

/* Large phones (480px - 767px) */
@media(max-width:767px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .products-grid .img {
    height: 130px !important;
  }

  .products-grid .prod-inner {
    padding: 8px 10px !important;
  }

  .products-grid h3 {
    font-size: 11px !important;
    margin: 0 0 2px !important;
  }

  .products-grid .partnum {
    font-size: 9px !important;
    margin: 0 0 3px !important;
  }

  .products-grid .excerpt {
    font-size: 10px !important;
    margin: 0 0 3px !important;
    line-height: 1.2 !important;
  }

  .products-grid .price {
    font-size: 11px !important;
  }

  .products-grid .pricespan {
    font-size: 12px !important;
  }

  .products-grid .manulogo {
    margin-bottom: 3px !important;
  }

  .products-grid .manulogo img {
    max-height: 18px !important;
  }

  .products-grid .prod-initial {
    margin-bottom: 3px !important;
  }

  .products-grid .price-area {
    margin-bottom: 2px !important;
  }

  .products-grid .availability {
    margin: 3px 0 !important;
    font-size: 10px !important;
  }

  .products-grid .availability span {
    padding: 2px 6px !important;
  }

  .products-grid .qty-row {
    margin: 3px 0 !important;
    gap: 2px !important;
  }

  .products-grid .qty {
    width: 36px !important;
    height: 28px !important;
    font-size: 11px !important;
  }

  .products-grid .qty-change {
    width: 24px !important;
    height: 28px !important;
    font-size: 10px !important;
  }

  .products-grid .addtocart {
    height: 32px !important;
    font-size: 11px !important;
    margin-top: 3px !important;
  }

  /* List view phones */
  .products-list li>div {
    flex-direction: column;
    gap: 12px;
    padding: 12px;
  }

  .products-list .img {
    width: 100%;
    height: 160px;
  }

  .products-list h3 {
    font-size: 13px;
    margin: 0 0 4px;
  }

  .products-list .partnum {
    font-size: 11px;
    margin: 0 0 6px;
  }

  .products-list .excerpt {
    font-size: 12px;
    margin: 0 0 8px;
  }

  .products-list .qty {
    width: 40px !important;
    height: 30px !important;
    font-size: 12px !important;
  }

  .products-list .qty-change {
    width: 26px !important;
    height: 30px !important;
  }

  .products-list .addtocart {
    height: 34px !important;
    font-size: 12px !important;
  }

  ul.products-grid li button.addtocart {
    font-size: 9px !important;
  }
}

/* Small phones (under 480px) */
@media(max-width:479px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .products-grid .img {
    height: 110px !important;
  }

  .products-grid .prod-inner {
    padding: 6px 8px !important;
  }

  .products-grid h3 {
    font-size: 10px !important;
  }

  .products-grid .partnum {
    font-size: 8px !important;
  }

  .products-grid .excerpt {
    font-size: 9px !important;
  }

  .products-grid .price {
    font-size: 10px !important;
  }

  .products-grid .pricespan {
    font-size: 11px !important;
  }

  .products-grid .qty {
    width: 32px !important;
    height: 26px !important;
    font-size: 10px !important;
  }

  .products-grid .qty-change {
    width: 22px !important;
    height: 26px !important;
    font-size: 9px !important;
  }

  .products-grid .addtocart {
    height: 28px !important;
    font-size: 10px !important;
  }
}

/* =========================================================
   FILTERS SIDEBAR - LEFT LAYOUT
========================================================= */

.filters-products-layout {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 24px;
  width: 100%;
}

.filters-products-layout > .sidebar {
  flex: 0 0 260px;
  min-width: 260px;
  max-width: 280px;
  position: sticky;
  top: 20px;
  align-self: flex-start;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}

.filters-products-layout > .floated-content {
  flex: 1 1 auto;
  min-width: 0;
}

/* Product cards inside the left-sidebar layout – smaller & re-centred */
.filters-products-layout .products-grid {
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px;
}

.filters-products-layout .products-grid .item {
  text-align: center;
}

.filters-products-layout .products-grid .item .prod-inner {
  align-items: center;
  justify-content: center;
}

.filters-products-layout .products-grid .item .img {
  margin-left: auto;
  margin-right: auto;
}

.filters-products-layout .products-grid .item button.addtocart,
.filters-products-layout .products-grid .item .cart-button {
  margin-left: auto;
  margin-right: auto;
}

ul.products-grid li button.addtocart {
  margin-top: 10px;
  margin-bottom: 0px;
}

.filters-products-layout .products-grid .img {
  height: 150px !important;
}

.filters-products-layout .products-grid h3 {
  font-size: 10px !important;
  margin: 0 0 4px !important;
  line-height: 1.35 !important;
  text-align: center;
}

.filters-products-layout .products-grid .manulogo {
  margin-bottom: 4px !important;
}

.filters-products-layout .products-grid .manulogo img {
  max-height: 18px !important;
}

.filters-products-layout .products-grid .prod-initial {
  margin-bottom: 4px !important;
  height: 22px;
}

.filters-products-layout .products-grid .price-area {
  margin-bottom: 2px !important;
}

.filters-products-layout .products-grid .price {
  font-size: 10px !important;
}

.filters-products-layout .products-grid .pricespan {
  font-size: 13px !important;
}

.filters-products-layout .products-grid .partnum {
  font-size: 10px !important;
  margin: 20px 0 4px !important;
}

.filters-products-layout .products-grid .excerpt {
  font-size: 11px !important;
  line-height: 1.4 !important;
  margin: 0 0 6px !important;
}

.filters-products-layout .products-grid .availability {
  margin: 4px 0 !important;
  font-size: 11px !important;
}

.filters-products-layout .products-grid .qty-row {
  justify-content: center !important;
  margin: 4px 0 !important;
  gap: 4px !important;
}

.filters-products-layout .products-grid .qty {
  width: 34px !important;
  height: 26px !important;
  font-size: 11px !important;
}

.filters-products-layout .products-grid .qty-change {
  width: 22px !important;
  height: 26px !important;
  font-size: 10px !important;
}

.filters-products-layout .products-grid .cart-button {
  height: 3.2rem;
}

.filters-products-layout .products-grid .cart-button__label {
  font-size: 1.2rem;
}

.filters-products-layout .products-grid .cart-button__cart {
  width: 2.2rem;
  height: 2.2rem;
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .filters-products-layout .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 1280px) {
  .filters-products-layout .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 1600px) {
  .filters-products-layout .products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

aside.filters {
  width: 100%;
}

aside.filters .pane {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(0, 31, 91, 0.18);
  border-radius: 16px;
  overflow: hidden;
}

aside.filters .side-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #001F5B;
  padding: 14px 18px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

aside.filters .side-content dl {
  margin: 0;
}

.sidebar .pane {
  margin-bottom: 20px;
  height: auto;
}

.sidebar ul li,
.sidebar ol li {
  background-color: rgba(255, 255, 255, 0.02);
}

/* =========================================================
   FILTER COLUMNS WRAPPER
========================================================= */

.filter-columns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 18px;
}

/* Each filter is a card in the column layout */
.filter-column {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  align-self: flex-start;
  height: auto;
  min-height: 0;
}

.filter-column .side-subtitle {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.75);
  padding: 8px 12px;
  cursor: pointer;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color .2s ease, background .2s ease;
  user-select: none;
}

.filter-column .side-subtitle:hover {
  color: #001F5B;
  background: rgba(255, 255, 255, 0.03);
}

/* Toggle chevron drawn with borders - no icon font and no unicode characters,
   so it can never break through font loading or character-encoding mismatches
   (the old "minus"/"plus" glyphs used to show as mojibake like "âˆ'").
   Open = chevron pointing up, closed = chevron pointing down.
   Border colour follows `color`, so the light/dark theme colour overrides
   further down this file keep working unchanged. */
.filter-column .side-subtitle::after {
  content: "";
  flex: 0 0 auto;
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  color: rgba(0, 31, 91, 0.75);
  transform: rotate(-135deg); /* chevron up */
  transition: transform .2s ease;
}

.filter-column.closed .side-subtitle::after {
  content: "";
  transform: rotate(45deg); /* chevron down */
}

.filter-column dd {
  margin: 0;
  padding: 6px 12px 8px;
  overflow: visible;
}

.filter-column.closed dd {
  display: none;
}

.filter-column ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border:none!important;
}

.filter-column ol li {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7) !important;
  padding: 2px 0;
  line-height: 1.4;
  border: none !important;
}

.collapsable .padded {
  padding:0px;
}

.sidebar .collapsable ol li, .sidebar .collapsable ul li {
    padding: 0.7rem 1rem;
    margin: 1em 0rem;
}

.filter-column ol li a {
  color: rgba(255, 255, 255, 0.7) !important;
  transition: color .2s ease;
  display: block;
  padding: 2px 0;
}

.filter-column ol li a:hover {
  color: #001F5B !important;
}

.filter-column ol li a:link,
.filter-column ol li a:visited {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Checkbox label styling (clickable area) */
.filter-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 2px 0;
  transition: color .2s ease;
}

.filter-label:hover {
  color: #001F5B;
}

.filter-label input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  min-width: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: all .2s ease;
  margin: 0;
  position: relative;
}

.filter-label input[type="checkbox"]:hover {
  border-color: rgba(0, 31, 91, 0.5);
}

.filter-label input[type="checkbox"]:checked,
.filter-label input[type="checkbox"].checked {
  background: #001F5B;
  border-color: #001F5B;
}

.filter-label input[type="checkbox"]:checked::after,
.filter-label input[type="checkbox"].checked::after {
  content: "\2713";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #FFD100;
  font-size: 10px;
  font-weight: 700;
}

.filter-label span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.3;
}

/* =========================================================
   SELECTIONS
========================================================= */

.filter-row__selections {
  padding: 10px 18px 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.filter-row__selections .side-subtitle {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
  cursor: auto;
  padding: 0;
  border: none;
}

.filter-row__selections .side-subtitle::after {
  content: none;
}

.Aselected {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.Aselected li {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(0, 31, 91, 0.1);
  border: 1px solid rgba(0, 31, 91, 0.2);
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
}

.selection-key {
  color: #001F5B;
  font-weight: 500;
}

.clearfilter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all .2s ease;
  position: relative;
  margin-left: 2px;
}

.clearfilter::before,
.clearfilter::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 1px;
}

.clearfilter::before {
  transform: rotate(45deg);
}

.clearfilter::after {
  transform: rotate(-45deg);
}

.clearfilter:hover {
  background: rgba(0, 31, 91, 0.3);
}

.clearfilter:hover::before,
.clearfilter:hover::after {
  background: #001F5B;
}

.clearfilters {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  color: #001F5B;
  cursor: pointer;
  margin-top: 6px;
  transition: color .2s ease;
  text-decoration: none;
}

.clearfilters:hover {
  color: #0A2F70;
  text-decoration: underline;
}

/* =========================================================
   BACK LINK
========================================================= */

.filter-row__back {
  padding: 8px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.filter-row__back .side-subtitle {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: color .2s ease;
  border: none;
  padding: 0;
}

.filter-row__back .side-subtitle::after {
  content: none;
}

.filter-row__back .side-subtitle:hover {
  color: #001F5B;
}

/* =========================================================
   PRICE RANGE
========================================================= */

.price--range--area p {
  margin: 0 0 6px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.price--range--area p label {
  font-weight: 400;
  margin: 0;
  font-size: 11px;
}

.price--range--area #amount,
.price--range--area [data-price-range] {
  background: transparent !important;
  color: #001F5B !important;
  font-weight: 600 !important;
  font-size: 12px !important;
  width: auto !important;
  flex: 1;
  min-width: 60px;
}

.price--range--area #slider-range,
.price--range--area [data-product-price-slider] {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin: 4px 0;
}

.ui-slider .ui-slider-range {
  background: #001F5B;
}

.ui-slider .ui-slider-handle {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #001F5B;
  border: 2px solid #ffffff;
  cursor: pointer;
  top: -5px;
  margin-left: -7px;
  transition: transform .15s ease;
}

.ui-slider .ui-slider-handle:hover {
  transform: scale(1.2);
}

/* =========================================================
   RESPONSIVE - stack columns on small screens
========================================================= */

@media(max-width:768px) {
  .filters-products-layout {
    flex-direction: column;
    padding: 16px;
    gap: 16px;
  }

  .filters-products-layout > .sidebar {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
    position: static;
    max-height: none;
    overflow-y: visible;
  }

  .filter-columns {
    flex-direction: column;
    gap: 8px;
    padding: 12px 14px;
  }

  .filter-column {
    max-width: 100%;
    flex: 1 1 auto;
    width: 100%;
  }
}

/* =========================================================
   BASKET / CART OVERRIDES
   Overrides agathos.css light styles for the Beam dark theme
========================================================= */

/* ---- BREADCRUMBS ---- */
.breadcrumbs {
  background: transparent !important;
  padding: 18px 0 8px !important;
  margin: 0 !important;
  border: none !important;
}

.breadcrumbs .inner {
  padding: 0 !important;
}

.breadcrumbs ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: transparent !important;
}

.breadcrumbs ul li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}

.breadcrumbs ul li a {
  color: rgba(0, 31, 91, 0.65) !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 0.3px !important;
  text-decoration: none !important;
  background: transparent !important;
  padding: 4px 0 !important;
  transition: color .2s ease !important;
  text-transform: none !important;
}

.breadcrumbs ul li a:hover {
  color: #001F5B !important;
}

.breadcrumbs ul li span {
  color: rgba(0, 31, 91, 0.35) !important;
  font-size: 11px !important;
  margin: 0 !important;
}

html.dark .breadcrumbs ul li a {
  color: #94a3b8 !important;
}

html.dark .breadcrumbs ul li a:hover {
  color: #FFD100 !important;
}

html.dark .breadcrumbs ul li span {
  color: #64748b !important;
}

.breadcrumbs ul li:before,
.breadcrumbs ul li:after {
  display: none !important;
  content: none !important;
}

/* ---- CART TABLE OVERRIDES ---- */
#shopping-cart-table {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 16px !important;
  color: #fff !important;
  font-family: 'Poppins', sans-serif !important;
  margin-bottom: 24px !important;
}

#shopping-cart-table thead {
  background: rgba(255, 255, 255, 0.03) !important;
}

#shopping-cart-table thead th {
  color: rgba(255, 255, 255, 0.7) !important;
  border-bottom: 2px solid rgba(0, 31, 91, 0.3) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  padding: 18px 16px !important;
  background: transparent !important;
}

#shopping-cart-table thead th span {
  color: rgba(255, 255, 255, 0.7) !important;
}

#shopping-cart-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
  background: transparent !important;
}

#shopping-cart-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03) !important;
}

#shopping-cart-table tbody td {
  padding: 20px 16px !important;
  color: #fff !important;
  font-size: 14px !important;
  background: transparent !important;
  border: none !important;
  vertical-align: top !important;
}

#shopping-cart-table tbody td.basketprice {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500 !important;
  text-align: right !important;
}

#shopping-cart-table tbody td:last-child {
  color: #001F5B !important;
  font-weight: 600 !important;
  text-align: right !important;
}

/* ---- CART SUMMARY OVERRIDES ---- */
.cart-summary {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 16px !important;
  padding: 24px !important;
  color: #fff !important;
}

.cart-summary strong {
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  display: block !important;
  margin-bottom: 20px !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.cart-summary .sum-row {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 12px 0 !important;
  font-size: 14px !important;
  color: rgba(255, 255, 255, 0.8) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
  background: transparent !important;
}

.cart-summary .sum-row span {
  font-weight: 600 !important;
  color: #001F5B !important;
}

.cart-summary .sum-row:last-of-type {
  border-bottom: none !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #001F5B !important;
}

.cart-summary button[type="submit"],
.cart-summary .btn.btn-secondary {
  width: 100% !important;
  height: 50px !important;
  border: none !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg, #001F5B 0%, #00153D 100%) !important;
  color: #FFD100 !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  cursor: pointer !important;
  transition: all .3s ease !important;
  font-family: 'Poppins', sans-serif !important;
  margin-top: 8px !important;
  padding: 0 !important;
  line-height: 50px !important;
  text-shadow: none !important;
  box-shadow: none !important;
}

.cart-summary button[type="submit"]:hover,
.cart-summary .btn.btn-secondary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(0, 31, 91, 0.3) !important;
  background: linear-gradient(135deg, #0A2F70 0%, #001F5B 100%) !important;
  color: #FFD100 !important;
}

/* ---- TABLE CAPTION ---- */
.table-caption {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 12px !important;
  padding: 12px 16px !important;
}

/* ---- ALERT DANGER (stock message) ---- */
.alert.alert-danger {
  background: rgba(239, 68, 68, 0.1) !important;
  border: 1px solid rgba(239, 68, 68, 0.2) !important;
  color: #ef4444 !important;
  border-radius: 10px !important;
  padding: 12px 16px !important;
  font-size: 13px !important;
  margin: 12px 0 !important;
}

/* ---- H1 CART ---- */
h1.cart-h1 {
  color: #fff !important;
  font-size: 24px !important;
  font-weight: 600 !important;
  margin: 0 0 24px !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}

h1.cart-h1 span {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 16px !important;
  font-weight: 400 !important;
}

/* ---- DELIVERY PRE-SELECT TABLE ---- */
.delivery-pre-select {
  background: transparent !important;
  border: none !important;
}

.delivery-pre-select td {
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 13px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
  padding: 8px 6px !important;
  background: transparent !important;
}

.delivery-pre-select td.unavailable {
  color: rgba(255, 255, 255, 0.35) !important;
}

/* ---- RELATED PRODUCTS ---- */
.related--products .title-labels h3 {
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 600 !important;
}

.related--products .item {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 16px !important;
}

/* ---- CLEARFIX ---- */
.clearfix {
  clear: both;
}

/* =========================================================
   MINI BASKET (HOVER DROPDOWN)
   Dark theme for the mini-basket that appears on hover
========================================================= */

/* Mini basket container - positioned relative to the basket icon */
.ajax-basket {
  position: relative;
}

/* Mini basket dropdown - hidden by default, shown on hover */
.mini-basket {
  position: absolute !important;
  top: 100% !important;
  right: 0 !important;
  left: auto !important;
  width: 380px !important;
  max-height: 500px !important;
  overflow-y: auto !important;
  background: linear-gradient(135deg, rgba(255, 209, 0, 0.98) 0%, rgba(255, 209, 0, 0.98) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 16px !important;
  padding: 20px !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45) !important;
  z-index: 99999 !important;
  visibility: hidden !important;
  opacity: 0 !important;
  transform: translateY(12px) !important;
  transition: all 0.28s ease !important;
  color: #fff !important;
  margin-top: 18px !important;
}

.ajax-basket:hover .mini-basket {
  visibility: visible !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Mini basket header - order total */
.m-basketheader {
  padding: 0 0 16px 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  margin-bottom: 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.m-basketheader .baskettotaldescription {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
}

.m-basketheader .baskettotaldescription b {
  color: #fff !important;
  font-weight: 600 !important;
}

.m-basketheader .basketprice {
  text-align: right !important;
}

.m-basketheader .price-area {
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
}

.m-basketheader .pricespan {
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
}

.m-basketheader .pricespan em {
  font-size: 10px !important;
  font-style: normal !important;
  color: rgba(255, 255, 255, 0.5) !important;
}

.m-basketheader .mainPrice--styling {
  color: #001F5B !important;
}

.m-basketheader .alternativePrice--styling {
  color: rgba(255, 255, 255, 0.65) !important;
}

/* Product container */
.prodcontain {
  background: transparent !important;
  max-height: 320px !important;
  overflow-y: auto !important;
}

/* Individual product row */
.mini-basket .row {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  padding: 12px 0 !important;
  margin: 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
  position: relative !important;
}

.mini-basket .row:last-of-type {
  border-bottom: none !important;
}

/* Product image */
.basketimages {
  width: 50px !important;
  min-width: 50px !important;
  flex-shrink: 0 !important;
}

.basketimages>a {
  display: block !important;
  width: 50px !important;
  height: 50px !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.basketimages>a img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

/* Product description */
.basketdescription {
  flex: 1 !important;
  min-width: 0 !important;
  font-size: 12px !important;
  color: rgba(255, 255, 255, 0.85) !important;
  line-height: 1.4 !important;
  width: auto !important;
}

.basketdescription a {
  color: #fff !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.basketdescription a:hover {
  color: #001F5B !important;
}

.basketdescription .freegft {
  margin: 4px 0 0 !important;
  font-size: 11px !important;
}

.basketdescription .freegft span {
  display: inline-block !important;
  padding: 2px 8px !important;
  border-radius: 4px !important;
  background: rgba(16, 185, 129, 0.1) !important;
  color: #10b981 !important;
  font-size: 10px !important;
  font-weight: 500 !important;
}

/* Delete button */
.mini-basket .delete {
  position: absolute !important;
  top: 8px !important;
  right: 0 !important;
  width: 20px !important;
  height: 20px !important;
  border-radius: 50% !important;
  background: rgba(239, 68, 68, 0.15) !important;
  color: #ef4444 !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  text-decoration: none !important;
  line-height: 1 !important;
}

.mini-basket .delete:hover {
  background: rgba(239, 68, 68, 0.3) !important;
  color: #fff !important;
}

/* Quantity */
.basketqty {
  font-size: 11px !important;
  color: rgba(255, 255, 255, 0.55) !important;
  white-space: nowrap !important;
  margin: 0 !important;
  padding-top: 2px !important;
}

/* Price in product row */
.mini-basket .row .basketprice {
  text-align: right !important;
  margin: 0 !important;
  background: transparent !important;
}

.mini-basket-styling {
  position: relative !important;
}

.mini-basket .row .basketprice .pricespan {
  display: block !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 1.3 !important;
}

.mini-basket .row .basketprice .mainPrice--styling {
  color: #001F5B !important;
}

.mini-basket .row .basketprice .alternativePrice--styling {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 11px !important;
}

/* Divider between items */
.mini-basket .divider {
  display: none !important;
}

/* Checkout button */
.mini-basket .btn.btn-secondary {
  display: block !important;
  width: 100% !important;
  height: 44px !important;
  border: none !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg, #001F5B 0%, #00153D 100%) !important;
  color: #FFD100 !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  font-family: 'Poppins', sans-serif !important;
  margin-top: 16px !important;
  padding: 0 !important;
  line-height: 44px !important;
  text-align: center !important;
  text-decoration: none !important;
}

.mini-basket .btn.btn-secondary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(0, 31, 91, 0.3) !important;
  background: linear-gradient(135deg, #0A2F70 0%, #001F5B 100%) !important;
  color: #FFD100 !important;
}

/* Scrollbar styling for mini basket */
.prodcontain::-webkit-scrollbar {
  width: 4px !important;
}

.prodcontain::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02) !important;
  border-radius: 2px !important;
}

.prodcontain::-webkit-scrollbar-thumb {
  background: rgba(0, 31, 91, 0.3) !important;
  border-radius: 2px !important;
}

.prodcontain::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 31, 91, 0.5) !important;
}

/* =========================================================
   ACCOUNT PAGES OVERRIDES
   Dark theme for all accounts/ blade files
========================================================= */

/* ---- PAGE SECTIONS ---- */
.bg {
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}

.bg .inner {
  padding: 0 !important;
}

.bg .inner h3 {
  color: #fff !important;
  font-size: 22px !important;
  font-weight: 600 !important;
  margin: 16px 0 8px !important;
}

.bg .inner h2 {
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  margin: 0 !important;
}

.bg .inner h2 i {
  margin-right: 6px !important;
}

.sec1 {
  background: transparent !important;
  padding: 0 !important;
}

/* ---- LOGIN BODY / CONTAINER ---- */
.login-body {
  background: transparent !important;
  padding: 0 !important;
  margin: 20px 0 !important;
  border: none !important;
}

.container-login {
  background: transparent !important;
  padding: 0 !important;
  max-width: 100% !important;
  border: none !important;
  box-shadow: none !important;
}

/* ---- ACCOUNT LAYOUT - keep sidebar + content side by side ---- */
.container-login section {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 0 !important;
  align-items: flex-start !important;
}

/* ---- TABS (Account content area) ---- */
.tab-content.tabs-login {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 16px !important;
  padding: 24px !important;
  color: #fff !important;
  margin-bottom: 20px !important;
}

.tab-content.tabs-login h4 {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.02) !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  margin: 0 0 16px !important;
  padding-bottom: 12px !important;
  border: none;
}

.tab-content.tabs-login h5 {
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  margin: 0 0 12px !important;
}

.tab-content.tabs-login p {
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 13px !important;
  line-height: 1.6 !important;
  margin: 0 0 10px !important;
}

.tab-content.tabs-login strong {
  color: #001F5B !important;
  font-weight: 600 !important;
}

.ajax-pull {
  min-height: 200px !important;
}

/* ---- PANELS ---- */
.panel.panel-default {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  box-shadow: none !important;
  margin-bottom: 24px !important;
}

.panel-heading {
  background: rgba(255, 255, 255, 0.03) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  padding: 16px 20px !important;
  color: #fff !important;
}

.panel-heading h5 {
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  margin: 0 !important;
}

.panel-body {
  padding: 20px !important;
  background: transparent !important;
}

.panel-body p {
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 13px !important;
  line-height: 1.6 !important;
  margin: 0 0 10px !important;
}

/* ---- FORMS / LABELS / INPUTS ---- */
.form-group {
  margin-bottom: 16px !important;
}

.form-group label,
label.control-label,
.control-label {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  margin-bottom: 6px !important;
  display: block !important;
}

.form-group label em,
.control-label em {
  color: #ef4444 !important;
}

.form-control,
.form-control.input-sm,
input.form-control,
input.form-control.input-sm {
  height: 44px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: rgba(255, 255, 255, 0.03) !important;
  color: #fff !important;
  border-radius: 10px !important;
  padding: 0 16px !important;
  font-size: 14px !important;
  font-family: 'Poppins', sans-serif !important;
  transition: border-color .2s ease !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
}

.pagination>li>a, .pagination>li>span {
  background-color: var(--acc-card) !important;
  border: none !important;
}

.deltext {
    max-width: 300px !important;
}

.usps ul > div {
  min-width: 300px !important;
}

.table-responsive {
  overflow-x: hidden !important;
}

table.dataTable thead .sorting:after {
  content: "" !important;
}

table.dataTable thead .sorting_desc:after {
  content: "" !important;
}

table.dataTable thead .sorting_asc:after {
  content: "" !important;
}

.category-feature .featured-slider li:last-child {
  border: none;
  text-align: center;
}

.form-control:focus,
.form-control.input-sm:focus {
  outline: none !important;
  border-color: rgba(0, 31, 91, 0.5) !important;
  box-shadow: 0 0 0 3px rgba(0, 31, 91, 0.08) !important;
}

.form-control::placeholder,
.form-control.input-sm::placeholder {
  color: rgba(255, 255, 255, 0.45) !important;
}

select.form-control {
  appearance: auto !important;
  -webkit-appearance: auto !important;
}

/* ---- CHECKBOX ---- */
.checkbox {
  margin: 12px 0 !important;
  padding: 0 !important;
}

.checkbox label {
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 13px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  cursor: pointer !important;
  font-weight: 400 !important;
}

.checkbox input[type="checkbox"] {
  appearance: none !important;
  -webkit-appearance: none !important;
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 4px !important;
  background: rgba(255, 255, 255, 0.03) !important;
  cursor: pointer !important;
  transition: all .2s ease !important;
  position: relative !important;
  margin: 0 !important;
}

.checkbox input[type="checkbox"]:hover {
  border-color: rgba(0, 31, 91, 0.5) !important;
}

.checkbox input[type="checkbox"]:checked {
  background: #001F5B !important;
  border-color: #001F5B !important;
}

.checkbox input[type="checkbox"]:checked::after {
  content: "\2713" !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  color: #FFD100 !important;
  font-size: 10px !important;
  font-weight: 700 !important;
}

/* ---- BUTTONS ---- */
.btn.btn-lg.btn-primary,
button.btn.btn-lg.btn-primary,
input[type="submit"].btn.btn-lg.btn-primary {
  width: auto !important;
  min-width: 160px !important;
  height: 48px !important;
  border: none !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg, #001F5B 0%, #00153D 100%) !important;
  color: #FFD100 !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  cursor: pointer !important;
  transition: all .3s ease !important;
  font-family: 'Poppins', sans-serif !important;
  padding: 0 24px !important;
  line-height: 48px !important;
  text-shadow: none !important;
  box-shadow: none !important;
  display: inline-block !important;
  text-align: center !important;
}

.btn.btn-lg.btn-primary:hover,
button.btn.btn-lg.btn-primary:hover,
input[type="submit"].btn.btn-lg.btn-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(0, 31, 91, 0.3) !important;
  background: linear-gradient(135deg, #0A2F70 0%, #001F5B 100%) !important;
  color: #FFD100 !important;
}

.btn.btn-default,
button.btn.btn-default,
.btn.btn-default.register {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
  border-radius: 10px !important;
  padding: 10px 20px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  transition: all .2s ease !important;
  font-family: 'Poppins', sans-serif !important;
  text-transform: none !important;
  letter-spacing: 0.3px !important;
  cursor: pointer !important;
  line-height: 1.4 !important;
  display: inline-block !important;
  text-decoration: none !important;
}

.btn.btn-default:hover,
button.btn.btn-default:hover {
  background: rgba(0, 31, 91, 0.12) !important;
  border-color: rgba(0, 31, 91, 0.3) !important;
  color: #001F5B !important;
}

.btn.btn-cancel {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: rgba(255, 255, 255, 0.7) !important;
  border-radius: 10px !important;
  padding: 10px 20px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  transition: all .2s ease !important;
  font-family: 'Poppins', sans-serif !important;
  display: inline-block !important;
  text-decoration: none !important;
  text-align: center !important;
  cursor: pointer !important;
}

.btn.btn-cancel:hover {
  background: rgba(239, 68, 68, 0.12) !important;
  border-color: rgba(239, 68, 68, 0.3) !important;
  color: #ef4444 !important;
}

/* ---- ALERTS ---- */
.alert.alert-danger {
  background: rgba(239, 68, 68, 0.1) !important;
  border: 1px solid rgba(239, 68, 68, 0.2) !important;
  color: #ef4444 !important;
  border-radius: 10px !important;
  padding: 12px 16px !important;
  font-size: 13px !important;
  margin: 12px 0 !important;
}

.alert.alert-success {
  background: rgba(16, 185, 129, 0.1) !important;
  border: 1px solid rgba(16, 185, 129, 0.2) !important;
  color: #10b981 !important;
  border-radius: 10px !important;
  padding: 12px 16px !important;
  font-size: 13px !important;
  margin: 12px 0 !important;
}

/* ---- GRID (two column layout) ---- */
.grid.two {
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
  margin-bottom: 16px !important;
}

.grid.two label {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
}

.grid.two small {
  display: block !important;
  color: rgba(255, 255, 255, 0.45) !important;
  font-size: 11px !important;
  margin-bottom: 4px !important;
}

.grid.two b {
  color: #ef4444 !important;
}

/* ---- ADDRESS MANAGEMENT ---- */
.manage-addresses {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  margin-bottom: 8px !important;
}

.address-actions {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  flex-wrap: wrap !important;
}

.address-actions a.edit,
.address-actions a.delete {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 12px !important;
  text-decoration: none !important;
  transition: color .2s ease !important;
  display: inline-block !important;
  background: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  cursor: pointer !important;
}

.address-actions a.edit:hover {
  color: #001F5B !important;
}

.address-actions a.delete:hover {
  color: #ef4444 !important;
}

.address-actions a.default-address {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 11px !important;
  text-decoration: none !important;
  transition: color .2s ease !important;
}

.address-actions a.default-address:hover {
  color: #001F5B !important;
}

.label.label-default.address--label {
  display: inline-block !important;
  padding: 2px 8px !important;
  border-radius: 4px !important;
  background: rgba(0, 31, 91, 0.15) !important;
  color: #001F5B !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  border: 1px solid rgba(0, 31, 91, 0.2) !important;
}

.add-new-address {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  color: #001F5B !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  transition: color .2s ease !important;
  padding: 8px 16px !important;
  border-radius: 8px !important;
  background: rgba(0, 31, 91, 0.08) !important;
  border: 1px solid rgba(0, 31, 91, 0.15) !important;
}

.add-new-address:hover {
  background: rgba(0, 31, 91, 0.15) !important;
  color: #0A2F70 !important;
}

/* ---- MODAL ---- */
.modal.modal-danger,
.modal.fade.modal-accnt {
  background: rgba(0, 0, 0, 0.6) !important;
}

.modal-dialog {
  background: transparent !important;
}

.modal-content {
  background: #ffffff !important;
  border: 1px solid rgba(0, 31, 91, 0.1) !important;
  border-radius: 16px !important;
  box-shadow: 0 20px 60px rgba(0, 31, 91, 0.16) !important;
}

.modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  padding: 20px 24px !important;
}

.modal-header .close {
  color: rgba(255, 255, 255, 0.5) !important;
  opacity: 1 !important;
  font-size: 22px !important;
  transition: color .2s ease !important;
}

.modal-header .close:hover {
  color: #fff !important;
}

.modal-title {
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 600 !important;
}

.modal-title.danger {
  color: #ef4444 !important;
}

.modal-body {
  padding: 20px 24px !important;
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 14px !important;
}

.modal-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
  padding: 16px 24px !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.btn.btn-danger {
  background: rgba(239, 68, 68, 0.15) !important;
  border: 1px solid rgba(239, 68, 68, 0.25) !important;
  color: #ef4444 !important;
  border-radius: 10px !important;
  padding: 10px 20px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  transition: all .2s ease !important;
  cursor: pointer !important;
  font-family: 'Poppins', sans-serif !important;
}

.btn.btn-danger:hover {
  background: rgba(239, 68, 68, 0.25) !important;
  border-color: #ef4444 !important;
  color: #fff !important;
}

/* ---- BUTTON GROUP (address type toggle) ---- */
.btn-group {
  display: flex !important;
  gap: 0 !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.btn.btn-default.btn-on-3.btn-sm,
.btn.btn-default.btn-off-3.btn-sm {
  flex: 1 !important;
  padding: 10px 16px !important;
  border: none !important;
  border-radius: 0 !important;
  background: rgba(255, 255, 255, 0.03) !important;
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: all .2s ease !important;
  margin: 0 !important;
  font-family: 'Poppins', sans-serif !important;
}

.btn.btn-default.btn-on-3.btn-sm.active,
.btn.btn-default.btn-off-3.btn-sm.active {
  background: rgba(0, 31, 91, 0.15) !important;
  color: #001F5B !important;
}

.btn.btn-default.btn-on-3.btn-sm:hover,
.btn.btn-default.btn-off-3.btn-sm:hover {
  background: rgba(0, 31, 91, 0.08) !important;
  color: #fff !important;
}

/* ---- DATA TABLES ---- */
.table.table-striped.table-condensed.table-bordered.table-hover.datatable,
.display.table.table-striped.table-condensed.table-bordered.table-hover.datatable {
  width: 100% !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  color: #fff !important;
  margin: 16px 0 !important;
  font-size: 13px !important;
}

.table.table-striped.table-condensed.table-bordered.table-hover.datatable thead,
.display.table.table-striped.table-condensed.table-bordered.table-hover.datatable thead {
  background: rgba(255, 255, 255, 0.03) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.table.table-striped.table-condensed.table-bordered.table-hover.datatable thead th,
.display.table.table-striped.table-condensed.table-bordered.table-hover.datatable thead th {
  padding: 14px 12px !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  color: rgba(255, 255, 255, 0.7) !important;
  border-bottom: 2px solid rgba(0, 31, 91, 0.3) !important;
  background: transparent !important;
  border-right: none !important;
}

.table.table-striped.table-condensed.table-bordered.table-hover.datatable tbody tr,
.display.table.table-striped.table-condensed.table-bordered.table-hover.datatable tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
  background: transparent !important;
}

.table.table-striped.table-condensed.table-bordered.table-hover.datatable tbody tr:hover,
.display.table.table-striped.table-condensed.table-bordered.table-hover.datatable tbody tr:hover {
  background: rgba(255, 255, 255, 0.03) !important;
}

.table.table-striped.table-condensed.table-bordered.table-hover.datatable tbody td,
.display.table.table-striped.table-condensed.table-bordered.table-hover.datatable tbody td {
  padding: 12px !important;
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 13px !important;
  background: transparent !important;
  border: none !important;
  vertical-align: middle !important;
}

.table.table-striped.table-condensed.table-bordered.table-hover.datatable tbody td a,
.display.table.table-striped.table-condensed.table-bordered.table-hover.datatable tbody td a {
  color: #001F5B !important;
  text-decoration: none !important;
  transition: color .2s ease !important;
}

.table.table-striped.table-condensed.table-bordered.table-hover.datatable tbody td a:hover,
.display.table.table-striped.table-condensed.table-bordered.table-hover.datatable tbody td a:hover {
  color: #0A2F70 !important;
  text-decoration: underline !important;
}

/* ---- PRICE ROWS IN TABLES ---- */
.pricesRow span.pricespan {
  font-size: 12px !important;
  font-weight: 500 !important;
}

.pricesRow span.mainPrice {
  color: #001F5B !important;
}

.pricesRow span.alternativePrice {
  color: rgba(255, 255, 255, 0.65) !important;
}

.possiblyHidden {
  display: inline !important;
}

/* ---- NAV TABS (order-history) ---- */
.nav.nav-tabs {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  display: flex !important;
  gap: 0 !important;
  margin-bottom: 20px !important;
}

.nav.nav-tabs .nav-item {
  margin: 0 !important;
  list-style: none !important;
}

.nav.nav-tabs .nav-link {
  display: block !important;
  padding: 12px 20px !important;
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  border: none !important;
  border-bottom: 2px solid transparent !important;
  transition: all .2s ease !important;
  background: transparent !important;
  margin: 0 !important;
  border-radius: 0 !important;
}

.nav.nav-tabs .nav-link:hover {
  color: #001F5B !important;
  border-bottom-color: rgba(0, 31, 91, 0.3) !important;
}

.nav.nav-tabs .nav-link.active {
  color: #001F5B !important;
  border-bottom: 2px solid #001F5B !important;
  background: transparent !important;
}

.tab-content.accounts-tabs {
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
}

.tab-pane.fade {
  background: transparent !important;
}

/* ---- ACCOUNT NAV SIDEBAR ---- */
.tab-content.tabs-login.col-lg-3,
.tab-content.tabs-login.col-lg-2 {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 16px !important;
  padding: 20px !important;
  margin-right: 24px !important;
}

.tab-content.tabs-login.col-lg-9 {
  flex: 1 !important;
  min-width: 900px !important;
}

.tab-content.tabs-login.col-lg-2 {
  min-width: 200px !important;
}

.tab-content.tabs-login.col-lg-3 {
  min-width: 320px !important;
}

.tab-content.tabs-login.col-lg-2 nav {
  margin-bottom: 20px !important;
}

.tab-content.tabs-login.col-lg-2 h4 {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #001F5B !important;
  margin-bottom: 12px !important;
  border-bottom: none !important;
  padding-bottom: 0 !important;
}

.tab-content.tabs-login.col-lg-2 h4 u {
  text-decoration: none !important;
}

.tab-content.tabs-login.col-lg-2 ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.tab-content.tabs-login.col-lg-2 ul li {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  background: transparent !important;
}

.tab-content.tabs-login.col-lg-2 ul li a {
  display: block !important;
  padding: 8px 12px !important;
  border-radius: 8px !important;
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  transition: all .2s ease !important;
}

.tab-content.tabs-login.col-lg-2 ul li a:hover {
  background: rgba(0, 31, 91, 0.08) !important;
  color: #001F5B !important;
  padding-left: 16px !important;
}

/* ---- BUTTONS IN TABLES ---- */
.btn.btn-primary,
.btn.btn-info {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 8px 16px !important;
  border-radius: 8px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: linear-gradient(135deg,
      #001F5B 0%,
      #00153D 100%) !important;
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: all .2s ease !important;
  font-family: 'Poppins', sans-serif !important;
  text-decoration: none !important;
  margin: 0 !important;
  line-height: 1.4 !important;
}

.btn.btn-primary:hover,
.btn.btn-info:hover {
  background: rgba(0, 31, 91, 0.12) !important;
  border-color: rgba(0, 31, 91, 0.3) !important;
  color: #001F5B !important;
}

.fa-sign-in:before {
  margin-right: 10px !important;
}

.fa-send:before,
.fa-paper-plane:before {
  margin-right: 10px !important;
}

/* ---- FORM INLINE (documents) ---- */
.form-inline.doc_display {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 16px !important;
  align-items: flex-end !important;
  margin: 16px 0 !important;
}

.form-group.form-group-sm.block {
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
  margin-bottom: 12px !important;
}

.form-group.form-group-sm.block label {
  font-size: 12px !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.65) !important;
}

.form-control.input-sm.input-docs {
  width: 100% !important;
  min-width: 200px !important;
}

/* ---- NORECORDS ---- */
#norecords {
  padding: 20px !important;
  text-align: center !important;
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 14px !important;
}

#norecords strong {
  color: rgba(255, 255, 255, 0.5) !important;
}

#norecords a {
  color: #001F5B !important;
  text-decoration: none !important;
}

#norecords a:hover {
  color: #0A2F70 !important;
  text-decoration: underline !important;
}

/* ---- BADGE ---- */
.badge {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 3px 10px !important;
  border-radius: 6px !important;
  background: rgba(0, 31, 91, 0.12) !important;
  color: #001F5B !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  text-decoration: none !important;
  transition: all .2s ease !important;
}

.badge:hover {
  background: rgba(0, 31, 91, 0.2) !important;
  color: #0A2F70 !important;
}

/* ---- TEXT RIGHT ---- */
td.text-right {
  text-align: right !important;
}

/* ---- BLUELINK ---- */
a.bluelink {
  color: #001F5B !important;
  text-decoration: none !important;
  transition: color .2s ease !important;
}

a.bluelink:hover {
  color: #0A2F70 !important;
  text-decoration: underline !important;
}

/* ---- STATE PRINT ---- */
a.state_print {
  color: #001F5B !important;
  text-decoration: none !important;
  margin-left: 8px !important;
}

a.state_print:hover {
  color: #0A2F70 !important;
}

/* ---- ACCOUNTS (summary) ---- */
.accounts h3 {
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  margin: 20px 0 12px !important;
}

/* ---- EDIT LINKS (dashboard) ---- */
a.edit {
  color: #001F5B !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  margin-left: 8px !important;
  transition: color .2s ease !important;
}

a.edit:hover {
  color: #0A2F70 !important;
}

/* ---- H1 MAINMENU (register/request-user) ---- */
h1.mainmenu,
h3.mainmenu {
  color: #fff !important;
  font-size: 22px !important;
  font-weight: 600 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding-bottom: 8px !important;
  margin-bottom: 20px !important;
}

/* ---- RECAPTCHA ---- */
.g-recaptcha {
  margin: 16px 0 !important;
}

/* ---- ACCOUNT NAV INCLUDE (account-nav) ---- */
#password-pull ul.nav,
#password-pull ul {
  list-style: none !important;
  margin: 0 0 20px !important;
  padding: 0 !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  padding-bottom: 16px !important;
}

#password-pull ul.nav li,
#password-pull ul li {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  background: transparent !important;
  display: inline-block !important;
}

#password-pull ul.nav li a,
#password-pull ul li a {
  display: block !important;
  padding: 8px 16px !important;
  border-radius: 8px !important;
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  transition: all .2s ease !important;
  background: transparent !important;
  border: 1px solid transparent !important;
}

#password-pull ul.nav li a:hover,
#password-pull ul li a:hover,
#password-pull ul.nav li.active a,
#password-pull ul.nav li a.active {
  background: rgba(0, 31, 91, 0.08) !important;
  color: #001F5B !important;
  border-color: rgba(0, 31, 91, 0.15) !important;
}

/* ---- RESPONSIVE ---- */
@media(max-width:991px) {
  .tab-content.tabs-login.col-lg-2 {
    margin-bottom: 20px !important;
  }

  .table.table-striped.table-condensed.table-bordered.table-hover.datatable {
    font-size: 12px !important;
  }

  .table.table-striped.table-condensed.table-bordered.table-hover.datatable thead th {
    font-size: 10px !important;
    padding: 10px 8px !important;
  }

  .table.table-striped.table-condensed.table-bordered.table-hover.datatable tbody td {
    padding: 8px !important;
    font-size: 12px !important;
  }
}

@media(max-width:767px) {
  .tab-content.tabs-login {
    padding: 16px !important;
  }

  .panel-body {
    padding: 16px !important;
  }

  .form-control,
  .form-control.input-sm {
    height: 40px !important;
    font-size: 13px !important;
  }

  .btn.btn-lg.btn-primary {
    width: 100% !important;
    min-width: auto !important;
  }

  .grid.two {
    gap: 12px !important;
  }

  .form-inline.doc_display {
    flex-direction: column !important;
  }

  .nav.nav-tabs {
    flex-direction: column !important;
  }

  .nav.nav-tabs .nav-link {
    padding: 10px 16px !important;
  }
}

/* ============================================
   Login Gate - Dark Theme Override
   ============================================ */
.login-gate-wrapper {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 15px;
  background: linear-gradient(180deg, #ffffff 0%, #FFFBF0 55%, #FFF3CC 100%);
}

.login-gate-wrapper .login-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 45px;
  box-shadow: 0 15px 40px rgba(0, 31, 91, 0.12);
  border: 1px solid rgba(0, 31, 91, 0.08);
  position: relative;
  overflow: hidden;
}

.login-gate-wrapper .login-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FFD100, #E6B800, #C9A000);
}

.login-gate-wrapper .login-title {
  color: #001F5B;
}

.login-gate-wrapper .login-subtitle {
  color: rgba(0, 31, 91, 0.6);
}

.login-gate-wrapper .login-input {
  color: #001F5B;
  background: #ffffff;
  border: 1px solid rgba(0, 31, 91, 0.15);
}

.login-gate-wrapper .login-input::placeholder {
  color: rgba(0, 31, 91, 0.4);
}

.login-gate-wrapper .login-input:focus {
  border-color: rgba(0, 31, 91, 0.5);
  box-shadow: 0 0 0 4px rgba(0, 31, 91, 0.08);
  background: rgba(255, 255, 255, 0.08);
}

.login-gate-wrapper .input-group-addon {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

.login-gate-wrapper .login-checkbox {
  color: rgba(255, 255, 255, 0.7);
}

.login-gate-wrapper .login-btn {
  background: linear-gradient(135deg, #001F5B, #00153D) !important;
  border: none !important;
  color: #E6B800 !important;
  transition: all .3s ease;
}

.login-gate-wrapper .login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 31, 91, 0.35);
}

.login-gate-wrapper .forgot-password a {
  color: #001F5B;
  transition: all .3s ease;
}

.login-gate-wrapper .forgot-password a:hover {
  color: #0A2F70;
}

.login-gate-wrapper .verification-link a {
  color: #001F5B;
}

.login-gate-wrapper .verification-link a:hover {
  color: #0A2F70;
}

.login-gate-wrapper .alert-danger {
  background: rgba(220, 53, 69, 0.15);
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: #f8a5b0;
}

.login-gate-wrapper .alert-success {
  background: rgba(40, 167, 69, 0.15);
  border: 1px solid rgba(40, 167, 69, 0.3);
  color: #8fd9a0;
}

/* =========================================================
   DEMO THEME: white primary / refined yellow secondary / navy tertiary
========================================================= */

body {
  background: #ffffff !important;
  color: #001F5B !important;
}

.center.position-ref.full-height {
  background: #ffffff !important;
  color: #001F5B;
}

.products-grid .item,
.products-list li {
  background: #ffffff !important;
  border: 1px solid rgba(0, 31, 91, 0.1) !important;
}

.products-grid .item:hover,
.products-list li:hover {
  background: #fffdf0 !important;
  border-color: rgba(255, 209, 0, 0.65) !important;
}

html.dark .products-grid .item:hover,
html.dark .products-list li:hover {
  background: #334155 !important;
  border-color: rgba(255, 209, 0, 0.65) !important;
}

.products-grid h3,
.products-grid h3 a,
.products-list h3,
.products-list h3 a {
  color: #001F5B !important;
}

.products-grid h3 a:hover,
.products-list h3 a:hover {
  color: #0A2F70 !important;
}

.products-grid .price,
.products-grid .alternativePrice--styling,
.products-grid .partnum,
.products-grid .excerpt,
.products-list .partnum,
.products-list .excerpt {
  color: rgba(0, 31, 91, 0.7) !important;
}

.products-grid .pricespan,
.products-grid .mainPrice--styling,
.products-list .pricespan,
.products-list .mainPrice--styling {
  color: #001F5B !important;
}

.products-grid .qty,
.products-list .qty {
  border: 1px solid rgba(0, 31, 91, 0.15) !important;
  background: #ffffff !important;
  color: #001F5B !important;
}

.qty-change i {
  margin-top: 0px !important;
}

.products-grid .qty-change,
.products-list .qty-change {
  border: 1px solid rgba(0, 31, 91, 0.15) !important;
  background: #fffdf0 !important;
  color: #001F5B !important;
}

.products-grid .qty-change:hover,
.products-list .qty-change:hover {
  background: #001F5B !important;
  color: #ffffff !important;
}

aside.filters .side-title {
  color: #001F5B !important;
  border-bottom-color: rgba(0, 31, 91, 0.08) !important;
}

html.dark .sidebar .collapsable ol li, .sidebar .collapsable ul li {
    background: #334155 !important;
}

.filter-column .side-subtitle,
.filter-column .side-subtitle::after,
.filter-column ol li,
.filter-column ol li a,
.filter-column ol li a:link,
.filter-column ol li a:visited,
.filter-label span {
  color: rgba(0, 31, 91, 0.75) !important;
}

.filter-column .side-subtitle:hover,
.filter-column ol li a:hover,
.filter-label:hover {
  color: #001F5B !important;
}

.filter-label input[type="checkbox"] {
  border-color: rgba(0, 31, 91, 0.25) !important;
  background: #ffffff !important;
}

.filter-row__selections {
  border-bottom-color: rgba(0, 31, 91, 0.08) !important;
}

.cart-summary,
.cart-table,
.cart-page,
.checkout,
.account-page,
.cms-page,
.login-gate-wrapper {
  color: #001F5B;
}

.cart-summary strong,
.cart-summary .sum-row span,
h1.cart-h1,
h1.cart-h1 span,
h1.mainmenu,
.bg .inner h2 {
  color: #001F5B !important;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="search"],
input[type="tel"],
textarea,
select {
  color: #001F5B !important;
  background: #ffffff !important;
  border-color: rgba(0, 31, 91, 0.2) !important;
}

.btn.btn-primary,
.btn.btn-lg.btn-primary,
.cart-summary .btn.btn-secondary,
.mini-basket .btn.btn-secondary,
button[type="submit"].btn {
  background: linear-gradient(135deg, #001F5B 0%, #00153D 100%) !important;
  color: #ffffff !important;
  border: none !important;
}

.btn.btn-primary:hover,
.btn.btn-lg.btn-primary:hover,
.cart-summary .btn.btn-secondary:hover,
.mini-basket .btn.btn-secondary:hover {
  background: linear-gradient(135deg, #0A2F70 0%, #001F5B 100%) !important;
  color: #ffffff !important;
}

/* Keep navy chrome text light on header / nav / mini-basket */
header,
header a,
header nav li > a,
ul.shop li > a,
.mini-basket,
.mini-basket .row .basketprice,
.top-bar ul li a,
.free-delivery a {
  color: inherit;
}

header nav li > a,
ul.shop li > a {
  color: rgba(0, 31, 91, 0.88) !important;
}

header nav li:hover > a,
ul.shop li:hover > a,
.top-bar ul li a {
  color: #001F5B !important;
}

.top-bar ul li a:hover,
.free-delivery a:hover {
  color: #00153D !important;
}

.mini-basket {
  background: #ffffff !important;
  color: #001F5B !important;
  border: 1px solid rgba(0, 31, 91, 0.12) !important;
  box-shadow: 0 16px 40px rgba(0, 31, 91, 0.14) !important;
}

.mini-basket a,
.mini-basket .row .basketprice {
  color: #001F5B !important;
}

.mini-basket .row .basketprice .mainPrice--styling,
.mini-basket .row .basketprice .pricespan {
  color: #00153D !important;
}
html *:not(.basket-page):not(.basket-page *):not(.checkout-page):not(.checkout-page *):not(.mini-basket):not(.mini-basket *):not(.about-agathos):not(.about-agathos *), html *:not(.basket-page):not(.basket-page *):not(.checkout-page):not(.checkout-page *):not(.mini-basket):not(.mini-basket *):not(.about-agathos):not(.about-agathos *)::before, html *:not(.basket-page):not(.basket-page *):not(.checkout-page):not(.checkout-page *):not(.mini-basket):not(.mini-basket *):not(.about-agathos):not(.about-agathos *)::after { border-color: var(--site-border); }

html.dark body { background: #0f182a !important; color: #cbd5e1 !important; }
html.dark .center.position-ref.full-height { background: #0f182a !important; color: #cbd5e1 !important; }

/* Header logo: swap to the dark variant (public/sites/demo/images/logo-dark.png) */
html.dark header .logo { background-image: url(../images/logo-dark.png) !important; }

/* Flip every text node in the main content area to the light theme,
   except self-contained widgets (cart button, theme toggle, mini basket). */
html.dark .center.position-ref.full-height,
html.dark .center.position-ref.full-height *:not(.basket-page):not(.basket-page *):not(.checkout-page):not(.checkout-page *):not(.cart-button):not(.cart-button *):not(.theme-toggle):not(.theme-toggle *):not(.mini-basket):not(.mini-basket *):not(.auth-shell):not(.auth-shell *):not(.contact-page):not(.contact-page *):not(.about-agathos):not(.about-agathos *):not(.product-list-island .products-grid *):not(.homepage-product-cards .owl-carousel *) { color: inherit !important; }

/* Restore purposeful colours on top of the flip */
html.dark .center.position-ref.full-height a:not(.basket-page a):not(.checkout-page a):not(.mini-basket a):not(.about-agathos a) { color: var(--shop-card-heading); }
html.dark .center.position-ref.full-height a:not(.basket-page a):not(.checkout-page a):not(.mini-basket a):not(.about-agathos a):hover { color: #ffd100 !important; }
html.dark .center.position-ref.full-height .pricespan:not(.mini-basket *),
html.dark .center.position-ref.full-height .mainPrice--styling { color: #ffd100 !important; }
html.dark .center.position-ref.full-height .alternativePrice--styling { color: #94a3b8 !important; }

/* Product list cards (grid + list) */
html.dark .products-grid,
html.dark .products-grid .item,
html.dark .products-listing .item,
html.dark .products-list,
html.dark .products-list li { border-color: #334155 !important; }
html.dark .products-grid .item h3 a,
html.dark .products-listing .item h3 a,
html.dark .products-list .item h3 a { color: #e2e8f0 !important; }
html.dark .products-grid .item h3 a:hover,
html.dark .products-listing .item h3 a:hover,
html.dark .products-list .item h3 a:hover { color: #ffd100 !important; }
html.dark .products-grid .qty,
html.dark .products-list .qty { background: #0f182a !important; color: #e2e8f0 !important; border-color: #334155 !important; }
html.dark .products-grid .qty-change,
html.dark .products-list .qty-change { background: transparent !important; border-color: #334155 !important; color: #cbd5e1 !important; }
html.dark .products-grid .availability span,
html.dark .products-list .availability span { color: #10b981 !important; }

/* Sidebar / filter panes */
html.dark .pane,
html.dark aside.filters .pane,
html.dark .sidebar .pane,
html.dark .panel.panel-default { background: #1e293b !important; border-color: #334155 !important; }
html.dark aside.filters .side-title,
html.dark .sidebar .pane .side-title { color: #e2e8f0 !important; }
html.dark .filter-column .side-subtitle,
html.dark .filter-column .side-subtitle::after,
html.dark .filter-column ol li,
html.dark .filter-column ol li a,
html.dark .filter-column ol li a:link,
html.dark .filter-column ol li a:visited,
html.dark .filter-label span { color: #cbd5e1 !important; }
html.dark .filter-column .side-subtitle:hover,
html.dark .filter-column ol li a:hover,
html.dark .filter-label:hover { color: #ffffff !important; }
html.dark .filter-row__selections .side-subtitle { color: #94a3b8 !important; }
html.dark .price--range--area p { color: #94a3b8 !important; }
html.dark .price--range--area #amount,
html.dark .price--range--area [data-price-range] { color: #ffd100 !important; }
html.dark .Aselected li { color: #cbd5e1 !important; border-color: #475569 !important; }
html.dark .selection-key { color: #ffd100 !important; }

/* Mini basket popover */
html.dark .mini-basket { background: #1e293b !important; border-color: #334155 !important; box-shadow: 0 16px 40px rgba(0,0,0,.5) !important; }
html.dark .mini-basket a,
html.dark .mini-basket .row .basketprice,
html.dark .mini-basket .row .basketprice .mainPrice--styling,
html.dark .mini-basket .row .basketprice .pricespan { color: #cbd5e1 !important; }

/* user area */

.UA.ua-icons {
	display: flex;
	align-items: center;
	gap: 22px;
	margin-left: auto;
}
.UA.ua-icons > div,
.UA.ua-icons .ajax-basket {
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
	padding: 0 !important;
	margin: 0 !important;
}
.UA.ua-icons .ua-icon-btn,
.UA.ua-icons .ajax-basket > a.ua-icon-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	background: transparent;
	border: none;
	text-decoration: none;
	color: #001F5B;
	transition: opacity .2s ease, transform .2s ease;
}
.UA.ua-icons .ua-icon-btn:hover,
.UA.ua-icons .ajax-basket > a.ua-icon-link:hover {
	opacity: 0.72;
	transform: translateY(-1px);
}
.UA.ua-icons .ua-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
}
.UA.ua-icons .ua-icon svg {
	width: 100%;
	height: 100%;
	stroke: #001F5B;
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.UA.ua-icons .ua-badge {
	position: absolute;
	top: -2px;
	right: -6px;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	border-radius: 999px;
	background: #FFD100;
	color: #001F5B;
	font-size: 11px;
	font-weight: 700;
	line-height: 18px;
	text-align: center;
	box-sizing: border-box;
	pointer-events: none;
}
.UA.ua-icons .ajax-basket {
	position: relative;
}
.UA.ua-icons .ajax-basket > div:not(.mini-basket) {
	display: none !important;
}
.UA.ua-icons .ajax-basket > i {
	display: none !important;
}

.UA.ua-icons .lamp-btn {
	position: relative;
	z-index: 10;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: 34px;
	padding: 0 16px;
	margin: 0;
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
	color: #ccc;
	cursor: pointer;
	border: 2px solid #444;
	border-radius: 50px;
	background: #2a2a2a;
	box-shadow: 0 4px 15px rgba(0,0,0,.6);
	transition: all .4s ease;
}
.UA.ua-icons .lamp-btn:hover {
	transform: translateY(-1px);
}

html:not(.dark) .UA.ua-icons .lamp-btn {
	background: #fff;
	color: #333;
	border-color: #f1c40f;
	box-shadow: 0 0 10px rgba(241,196,15,.6), 0 0 60px rgba(241,196,15,.2);
	transform: translateY(-2px);
}

.UA.ua-icons a.mobile-menu {
	display: none !important;
}
@media (min-width: 651px) and (max-width: 1360px) {
	.UA.ua-icons a.mobile-menu {
		display: inline-flex !important;
		align-items: center;
		justify-content: center;
		position: static !important;
		top: auto !important;
		right: auto !important;
		width: 30px;
		height: 30px;
		padding: 0;
		margin: 0;
		background: none;
		border: 1px solid rgba(0,31,91,.18);
		border-radius: 9999px;
		color: #001F5B;
		font-size: 14px;
		line-height: 1;
		text-decoration: none;
		cursor: pointer;
		transition: background .2s ease, border-color .2s ease, transform .2s ease;
	}
	.UA.ua-icons a.mobile-menu:hover {
		background: none;
		border-color: rgba(0,31,91,.3);
		transform: translateY(-1px);
	}
	html.dark .UA.ua-icons a.mobile-menu {
		color: #cbd5e1;
		border-color: #475569;
		background: rgba(255,255,255,.08);
	}
	html.dark .UA.ua-icons a.mobile-menu:hover {
		background: none;
	}
}

@media (min-width: 651px) and (max-width: 1099px) {
	.header-top-row .UA.ua-icons a.mobile-menu {
		position: absolute !important;
		top: -52px !important;
		right: 0 !important;
		left: auto !important;
		bottom: auto !important;
		z-index: 30;
	}
}

@media (min-width: 651px) and (max-width: 767px) {
	.header-top-row .UA.ua-icons a.mobile-menu {
		top: -52px !important;
	}
}

/* Dark mode */
html.dark .UA.ua-icons .ua-icon svg { stroke: #cbd5e1; }
html.dark .UA.ua-icons .ua-icon-btn,
html.dark .UA.ua-icons .ajax-basket > a.ua-icon-link { color: #cbd5e1; }

.UA.ua-icons .vat-label { color: #001F5B; }
html.dark .UA.ua-icons .vat-label { color: #cbd5e1; }

@media (max-width: 991px) {
	.UA.ua-icons {
		gap: 16px;
	}
}

@media (max-width: 1024px) {
	.header-actions .UA.ua-icons i {
		width: auto !important;
		height: auto !important;
		font-size: inherit;
		line-height: 1;
	}
	.UA.ua-icons .lamp-btn {
		height: 32px;
		padding: 0 14px;
	}
	/* Centre the icon row on tablet + phone. */
	.header-actions {
		width: 100%;
		justify-content: center !important;
	}
	.UA.ua-icons {
		width: 100%;
		justify-content: center !important;
		margin-left: 0;
		margin-right: 0;
	}
}

@media (max-width: 767px) {
	.header-actions {
		width: 100%;
		justify-content: center !important;
		right: 3px;
	}
	.UA.ua-icons {
		width: 100%;
		justify-content: center !important;
		margin-left: 0;
		margin-right: 0;
		gap: 10px;
		padding-bottom: 20px;
	}
	.UA.ua-icons .ua-icon-btn,
	.UA.ua-icons .ajax-basket > a.ua-icon-link,
	.UA.ua-icons .mobile-menu {
		width: 32px;
		height: 32px;
	}
	.UA.ua-icons .lamp-btn {
		height: 30px;
		padding: 0 12px;
		font-size: 12px;
	}
	.UA.ua-icons .mobile-menu {
		font-size: 14px;
	}
	.UA.ua-icons .ua-icon {
		width: 19px;
		height: 19px;
	}
	.UA.ua-icons .ua-badge {
		min-width: 16px;
		height: 16px;
		line-height: 16px;
		padding: 0 4px;
		font-size: 9px;
		top: -3px;
		right: -6px;
	}

	.UA.ua-icons .vat-switcher {
		gap: 4px;
	}
	.UA.ua-icons .vat-label {
		font-size: 9px !important;
	}
}

/* home page */

body {
    background: #ffffff !important;
    position: relative;
}
html.dark body { background: #0f182a !important; }

main {
    background: transparent !important;
}
html.dark main { background: transparent !important; }

.bg-side {
    position: absolute;
    bottom: 0;
    width: 400px;
    height: 600px;
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    opacity: 0.6;
    z-index: -100;
}
html.dark .bg-side { opacity: 0.35; }

.bg-side-left {
    left: -10%;
    background-image: url('/sites/demo/images/bg_left.png');
    background-position: left bottom;
}

html.dark .bg-side-left {
    opacity: 0.2;
    left: -10%;
    background-image: url('/sites/demo/images/bg_left-dark.png');
    background-position: left bottom;
}

.bg-side-right {
    right: -10%;
    background-image: url('/sites/demo/images/bg_right.png');
    background-position: right bottom;
}

html.dark .bg-side-right {
    opacity: 0.2;
    right: -10%;
    background-image: url('/sites/demo/images/bg_right-dark.png');
    background-position: right bottom;
}

.inner {
    max-width: 1400px;
    margin: auto;
    padding: 0 40px;
    position: relative;
}

.banner.main-banner {
    background: none !important;
    padding: 0;
    margin-bottom: 40px;
	margin-top:30px !important;
	height:100% !important;
	width:100%;
}

.banner.main-banner .inner {
    padding: 0;
	margin-bottom: -80px;
}

@media (max-width: 767px) {
    .banner.main-banner .inner {
        display: none;
    }
}

@media (max-width: 1100px) {
    .banner.main-banner .inner {
        max-height: 320px
    }
}

.usps {
    background: #ffffff;
    border: 1px solid rgba(0,31,91,0.1);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
}
html.dark .usps {
    background: #1e293b;
    border-color: #334155;
}

.usps ul {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.usps ul > div {
    flex: 1;
    min-width: 350px;
}

.usps li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.usps .dimg {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        rgba(255,209,0,0.2) 0%,
        rgba(230,184,0,0.1) 55%,
        rgba(201,160,0,0.06) 100%
    );
    border-radius: 12px;
    flex-shrink: 0;
}

.usps .dimg i {
    font-size: 20px;
    color: #001F5B;
}

.usps .dimg svg {
    width: 24px;
    height: 24px;
    display: block;
    color: #001F5B;
    stroke: #001F5B;
}
html.dark .usps .dimg i,
html.dark .usps .dimg svg { color: #FFD100; }
html.dark .usps .dimg svg { stroke: #FFD100; }

.usps .deltext h4 {
    color: #001F5B;
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 6px 0;
    letter-spacing: 0.5px;
}
html.dark .usps .deltext h4 { color: #e2e8f0; }

.usps .deltext small {
    color: rgba(0,31,91,0.7);
    font-size: 12px;
    line-height: 1.4;
    display: block;
}
html.dark .usps .deltext small { color: #94a3b8; }

.banners-3 {
    margin-bottom: 100px;
}

.banners-3 .row {
    display: flex;
    gap: 20px;
	margin-left: 300px;
}

.banners-3 .row > div {
    flex: 1;
    min-width: 0;
}

.category-feature {
    background: #ffffff;
    border-radius: 16px;
    margin-bottom: 0px;
}
html.dark .category-feature {
    background: none;
    border-color: #334155;
}

.category-feature h3 {
    color: #001F5B !important;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 15px 0;
    letter-spacing: 0.5px;
    background: none !important;
    border: none !important;
    padding: 0 !important;
}
html.dark .category-feature h3 { color: #e2e8f0 !important; }

.category-feature.lighting h3 {
    color: #001F5B !important;
}
html.dark .category-feature.lighting h3 { color: #e2e8f0 !important; }

.title-labels {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
html.dark .title-labels { border-color: #334155; }

.featured-options {
    display: flex;
    gap: 8px;
}

.featured-options a {
    padding: 8px 16px;
    border-radius: 8px;
    color: rgba(0,31,91,0.7);
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: .3s ease;
    border: 1px solid rgba(0,31,91,0.12);
    background: #fffdf0;
}
html.dark .featured-options a {
    color: #cbd5e1;
    border-color: #475569;
    background: #0f182a;
}

.featured-options a:hover {
    color: #001F5B;
    background: #FFD100;
}
html.dark .featured-options a:hover {
    color: #001F5B;
    background: #FFD100;
}

.category-feature .title-labels .featured-options a.active {
    background: #FFD100;
    border-color: rgba(201,160,0,0.35);
    color: #001F5B !important;
    text-decoration: none !important;
}

.feature-content {
    padding: 0;
}

.featured-products .owl-carousel .owl-item {
    height: auto;
}

.category-feature .featured-slider li .prod-initial .price {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.category-feature .featured-slider li .prod-initial .price .pricespan {
    position: static;
    width: auto;
    padding: 0;
    text-align: inherit;
}
.category-feature .featured-slider li .prod-initial .price .mainPrice {
    order: 0;
}
.category-feature .featured-slider li .prod-initial .price .alternativePrice {
    order: 1;
    font-size: 13px;
}
.category-feature:not(.homepage-product-cards) .featured-slider li .prod-initial .price .alternativePrice::after {
    content: ' excl. VAT';
    position: static;
    display: inline;
    background: none;
    width: auto;
    height: auto;
    margin: 0;
}
.category-feature:not(.homepage-product-cards) .featured-slider li .prod-initial .price .alternativePrice--styling.alternativePrice::after {
    content: ' incl. VAT';
}

.featured-products .owl-carousel .item {
    height: 350px;
    overflow: hidden;
}

.featured-products .owl-carousel .item .img {
    height: 200px;
    overflow: hidden;
}

.featured-products .owl-carousel .item .img img {
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.featured-products .owl-carousel .item .prod-inner {
    height: 150px;
    overflow: hidden;
}

.banner-large {
    background: #ffffff;
    border: 1px solid rgba(0,31,91,0.1);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
}
html.dark .banner-large {
    background: #1e293b;
    border-color: #334155;
}

@media(max-width:1024px) {
    .bg-side {
        width: 300px;
        height: 450px;
        opacity: 0.5;
    }
    .bg-side-left {
        left: -6%;
    }
    .bg-side-right {
        right: -6%;
    }

    .banners-3 {
        display: none;
    }
}

@media(max-width:768px) {
    .inner {
        padding: 0 20px;
    }

    .bg-side {
        width: 220px;
        height: 330px;
        opacity: 0.4;
    }
    .bg-side-left {
        left: -8%;
    }
    .bg-side-right {
        right: -8%;
    }

    .usps,
    .category-feature,
    .banner-large {
        padding: 20px;
        border-radius: 12px;
        margin-top: -40px;
    }

    .usps ul {
        flex-direction: column;
    }

    .usps ul > div {
        min-width: 100%;
    }

    .banners-3 .row {
        flex-direction: column;
		margin: 0;
    }

    .title-labels {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

.featured-products {
    position: relative;
    padding: 0;
}

html.dark .featured-products { padding: 0; }

.featured-products .owl-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    pointer-events: none;
    z-index: 10;
}

.featured-products .owl-nav button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 31, 91, 0.9), rgba(0, 31, 91, 0.7));
    border: 2px solid rgba(0, 31, 91, 0.3);
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 31, 91, 0.3);
    margin: 0;
    position: relative;
}

.featured-products .owl-nav button:hover {
    background: linear-gradient(135deg, #001F5B, #00153D);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 31, 91, 0.5);
}

.featured-products .owl-nav button span {
    display: none;
}

.featured-products .owl-nav button.owl-prev::before {
    content: "‹";
    font-size: 24px;
    line-height: 1;
}

.featured-products .owl-nav button.owl-next::before {
    content: "›";
    font-size: 24px;
    line-height: 1;
}

.featured-products .owl-dots {
    margin-top: 20px;
    text-align: center;
}

.featured-products .owl-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 31, 91, 0.25);
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}
html.dark .featured-products .owl-dots button { background: rgba(255,255,255,0.3); }

.featured-products .owl-dots button.active {
    background: #001F5B;
    width: 12px;
    height: 12px;
}
html.dark .featured-products .owl-dots button.active { background: #FFD100; }

@media(max-width:768px) {
    .category-feature .feature-content .featured-products {
        padding-bottom: 0;
    }

    .category-feature .featured-products .featured-slider .owl-nav {
        position: static;
        display: flex !important;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin: 20px 0 0;
        transform: none;
        gap: 15px;
    }

    .category-feature .featured-slider li .prod-initial {
        float: none;
        width: 100%;
    }

    .category-feature .featured-slider li .prod-initial .price {
        align-items: center;
        text-align: center;
    }

    .featured-products .owl-nav button {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .featured-products .owl-nav button.owl-prev::before {
        font-size: 20px;
    }

    .featured-products .owl-nav button.owl-next::before {
        font-size: 20px;
    }

    .featured-products .owl-dots {
        margin-top: 15px;
    }
}

/* header */

  .demo-top-links ul { display: flex; align-items: center; gap: 1.75rem; margin: 0; padding: 0; list-style: none; }
  .demo-top-links li { margin: 0; padding: 0; list-style: none; }
  .demo-top-links a { color: rgba(0,31,91,.75); text-decoration: none; font-size: 12px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; transition: color .25s; }
  .demo-top-links a:hover { color: #001F5B; }
  .demo-top-links li::before,
  .demo-top-links li::after { display: none !important; content: none !important; }
  html.dark .demo-top-links a { color: rgba(226,232,240,.8); }
  html.dark .demo-top-links a:hover { color: #fff; }

  .demo-main-nav { width: 100%; position: relative; z-index: 100; background: #ffffff; }
  .demo-main-nav::after {
    content: ""; display: block; height: 3px;
    background: linear-gradient(90deg, rgba(255,209,0,0) 0%, #FFD100 18%, #FFD100 50%, rgba(255,209,0,.6) 82%, rgba(255,209,0,0) 100%);
  }
  .demo-main-nav > ul { display: flex; align-items: stretch; justify-content: center; gap: 26px; margin: 0; padding: 0; list-style: none; position: relative; z-index: 1; flex-wrap: wrap; }

  .demo-main-nav > ul > li { position: static; display: flex; flex: 0 0 auto; }
  .demo-main-nav > ul > li > a { width: 17rem; display: flex; align-items: center; padding: 0 10px; height: 100%; min-height: 60px; color: rgba(0, 31, 91, 0.82); font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; }
  .demo-main-nav > ul > li > ul {
    position: absolute; left: 50%; top: 100%; transform: translateX(-50%);
    width: 900px; max-width: 90vw; background: #ffffff;
    border: 1px solid rgba(0,31,91,.1); border-radius: 16px;
    padding: 10px 14px; box-sizing: border-box; z-index: 99999;
    box-shadow: 0 20px 48px rgba(0,31,91,.14); display: none;
    grid-template-columns: repeat(4, 1fr); gap: 18px;
  }
  /* Override global .inner width for dropdown */
  .demo-main-nav > ul > li > ul .inner {
    width: auto;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }
  .demo-main-nav > ul > li:hover > ul,
  .demo-main-nav > ul > li > ul:hover { display: grid !important; }
  .demo-main-nav > ul > li > ul > li { list-style: none; min-width: 0; }
  .demo-main-nav > ul > li > ul > li > a {
    display: block; width: 100%; color: #001F5B !important;
    font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .8px;
    padding-bottom: 8px; margin-bottom: 8px; border-bottom: 1px solid rgba(0,31,91,.12);
  }
  .demo-main-nav > ul > li > ul > li > ul {
    position: static !important; opacity: 1 !important; visibility: visible !important;
    transform: none !important; background: transparent !important; border: none !important;
    box-shadow: none !important; padding: 0 !important; margin: 0 !important;
    width: 100% !important; min-width: 100% !important; display: flex !important;
    flex-direction: column !important; gap: 2px;
  }
  .demo-main-nav > ul > li > ul > li > ul > li > a {
    display: block; width: 100%; border-radius: 8px; color: rgba(0,31,91,.75) !important;
    font-size: 13px; font-weight: 400; text-transform: none; letter-spacing: .2px; line-height: 1.35;
    padding: 6px 12px; transition: background .2s, color .2s;
  }
  .demo-main-nav > ul > li:hover > ul > li > ul > li > a:hover {
    background: linear-gradient(90deg, rgba(255,209,0,.12) 0%, rgba(230,184,0,.08) 100%); color: #001F5B !important; padding-left: 14px !important;
  }
  .demo-main-nav ul li,
  .demo-main-nav ul li::before,
  .demo-main-nav ul li::after { border: none !important; background-image: none !important; box-shadow: none !important; content: none !important; }
  html.dark .demo-main-nav { background: #1e293b; }
  html.dark .demo-main-nav::after { background: linear-gradient(90deg, rgba(255,209,0,0) 0%, #e5b800 18%, #e5b800 50%, rgba(255,209,0,.6) 82%, rgba(255,209,0,0) 100%); }
  html.dark .demo-main-nav > ul > li > ul { background: #1e293b; border-color: #334155; box-shadow: 0 20px 48px rgba(0,0,0,.5); }

  /* Category + category-dropdown links — yellow in dark mode */
  html.dark .demo-main-nav > ul > li > a,
  html.dark header nav > ul > li > a,
  html.dark header nav li > a,
  html.dark ul.shop li > a { color: #FFD100 !important; }
  html.dark .demo-main-nav > ul > li > a:hover,
  html.dark header nav li:hover > a,
  html.dark .demo-main-nav > ul > li > ul > li > a { color: #FFD100 !important; border-bottom-color: #334155; }
  html.dark .demo-main-nav > ul > li > ul > li > ul > li > a { color: #ffd100 !important; }
  html.dark .demo-main-nav > ul > li > ul > li > ul > li > a:hover,
  html.dark .demo-main-nav > ul > li:hover > ul > li > ul > li > a:hover { color: #FFD100 !important; }

  /* Hover underlines — yellow in dark mode */
  html.dark .demo-main-nav > ul > li:after,
  html.dark .demo-main-nav > ul > li > a::before,
  html.dark header nav > ul > li:after,
  html.dark header nav > ul > li > a::before { background: linear-gradient(90deg, #FFD100, #e5b800) !important; }
    html.dark .demo-top-links a:after { background: linear-gradient(90deg, #FFD100, #e5b800) !important; }

  @media (max-width: 1800px) {
    .demo-main-nav > ul > li > ul { max-width: 96vw; }
  }
  @media (max-width: 1600px) {
    .demo-main-nav > ul > li > ul { max-width: 95vw; }
  }
  @media (max-width: 1440px) {
    .demo-main-nav > ul > li > ul { max-width: 94vw; }
  }
  @media (max-width: 1366px) {
    .demo-main-nav > ul > li > ul { max-width: 92vw; }
  }
  @media (max-width: 1280px) {
    .demo-main-nav > ul > li > ul { max-width: 95vw; }
  }

  /* Fix menu width for large screens (over 1682px) - maintain same appearance as 1100-1682px range */
  @media (min-width: 1682px) {
    .demo-main-nav > ul { flex-wrap: nowrap; justify-content: center; }
    .demo-main-nav > ul > li { flex: 0 0 auto; width: auto; }
    .demo-main-nav > ul > li > a { width: 17rem; flex: 0 0 auto; }
  }

  /* DataTables pagination styles */
  .dataTables_paginate {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-top: 20px;
    padding: 10px 0;
  }
  .dataTables_paginate .paginate_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    margin: 0 2px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid rgba(0, 31, 91, 0.12);
    color: #001F5B;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
  }
  .dataTables_paginate .paginate_button:hover {
    background: rgba(0, 31, 91, 0.08);
    border-color: rgba(0, 31, 91, 0.24);
    color: #001F5B;
  }
  .dataTables_paginate .paginate_button.current {
    background: #001F5B;
    border-color: #001F5B;
    color: #ffffff;
  }
  .dataTables_paginate .paginate_button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
  }
  .dataTables_paginate .paginate_button.previous,
  .dataTables_paginate .paginate_button.next {
    padding: 0 16px;
    font-weight: 600;
  }
    .dataTables_info {
    text-align: center;
    margin-bottom: 10px;
    color: rgba(0, 31, 91, 0.7);
    font-size: 14px;
  }

        /* Livewire / Laravel pagination styles (product-list island) */
  .pagination nav[role="navigation"],
  .pagination > nav {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    width: 100% !important;
    padding: 0;
    margin: 20px 0;
  }
  .pagination ul.pagination {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .pagination button[type="button"],
  .pagination ul.pagination > li > button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 36px !important;
    height: 36px !important;
    padding: 0 10px !important;
    margin: 0 2px !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    border: 1px solid rgba(0, 31, 91, 0.12) !important;
    color: #001F5B !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    line-height: 1 !important;
  }
  .pagination button[type="button"]:hover,
  .pagination ul.pagination > li > button:hover {
    background: rgba(0, 31, 91, 0.08) !important;
    border-color: rgba(0, 31, 91, 0.24) !important;
    color: #001F5B !important;
  }
  .pagination button[type="button"][aria-current="page"],
  .pagination span > span[aria-current="page"],
  .pagination ul.pagination > li.active > span {
    background: #001F5B !important;
    border-color: #001F5B !important;
    color: #ffffff !important;
  }

  .demo-rocker { position: relative; display: inline-block; width: 36px; height: 16px; flex-shrink: 0; }
  .demo-rocker input { opacity: 0; width: 0; height: 0; }
  .demo-rocker .slider {
    position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0;
    background: #e2e8f0; border-radius: 28px; transition: .3s;
  }
  .demo-rocker .slider:before {
    content: ""; position: absolute; height: 14px; width: 14px; left: 3px; bottom: 1px;
    background: #001F5B; border-radius: 50%; transition: .3s;
  }
  .demo-rocker input:not(:checked) + .slider { background: linear-gradient(135deg, #FFD100 0%, #d1c179 100%); }
  .demo-rocker input:not(:checked) + .slider:before { transform: translateX(16px); }
  html.dark .demo-rocker .slider:before { background: #fff; }
  .demo-rocker .switch-left,
  .demo-rocker .switch-right {
    position: absolute; top: 5px; font-size: 0px; font-weight: 500;
    color: rgba(0,31,91,.75); pointer-events: none;
  }
  .demo-rocker .switch-left { left: 9px; }
  .demo-rocker .switch-right { right: 9px; }
  html.dark .demo-rocker .switch-left,
  html.dark .demo-rocker .switch-right { color: rgba(226,232,240,.75); }

  @media (max-width: 1360px) {
    .demo-main-nav { display: none; }
    .demo-main-nav.open { display: block !important; }
  }

  @media (max-width: 768px) {
    /* Smaller free-delivery text on phones so it fits without wrapping */
    .demo-top-bar .free-delivery a { font-size: 9px; letter-spacing: .4px; }
    .demo-top-bar .free-delivery .fa-bullhorn { font-size: 12px; }
    /* Demo-top-menu submenu becomes a stacked list on small screens */
    .demo-main-nav > ul > li > ul { position: relative !important; left: auto !important; top: auto !important; transform: none !important; width: 100%; margin-top: 14px; grid-template-columns: 1fr; padding: 20px; }
  }

  @media (max-width: 650px) {
    .demo-top-bar .demo-top-links { display: none !important; }
    .UA.ua-icons a.mobile-menu { display: none !important; }
  }

  .demo-top-bar a.mobile-menu { display: none !important; }
  @media (max-width: 650px) {
    .demo-top-bar a.mobile-menu {
      display: inline-flex !important;
      align-items: center;
      justify-content: center;
      position: static !important;
      top: auto !important;
      right: auto !important;
      width: 32px;
      height: 32px;
      padding: 0;
      margin: 0;
      background: none;
      border: 1px solid rgba(0,31,91,.18);
      border-radius: 9999px;
      color: #001F5B;
      font-size: 14px;
      line-height: 1;
      text-decoration: none;
      cursor: pointer;
      transition: background .2s ease, border-color .2s ease;
    }
    .demo-top-bar a.mobile-menu:hover {
      background: none;
      border-color: rgba(0,31,91,.3);
    }
    html.dark .demo-top-bar a.mobile-menu {
      color: #cbd5e1;
      border-color: #475569;
      background: none;
    }
    html.dark .demo-top-bar a.mobile-menu:hover {
      background: none;
    }
  }

  .main-nav.open > ul { gap: 12px; }
  .main-nav.open > ul > li > a {
    color: #001F5B !important;
    background: rgba(0, 31, 91, 0.04);
    border-color: rgba(0, 31, 91, 0.1);
  }
  .main-nav.open > ul > li > a:hover,
  .main-nav.open > ul > li.active > a {
    color: #001F5B !important;
    background: rgba(0, 31, 91, 0.12);
    border-color: rgba(0, 31, 91, 0.24);
  }
  .main-nav.open > ul > li > ul {
    background: rgba(0, 31, 91, 0.04);
    border-color: rgba(0, 31, 91, 0.1);
  }
  .main-nav.open > ul > li > ul > li > a {
    color: #001F5B !important;
    background: transparent;
    border-bottom-color: rgba(0, 31, 91, 0.1);
  }
  .main-nav.open > ul > li > ul > li > ul > li > a {
    color: rgba(0, 31, 91, 0.75) !important;
    background: rgba(0, 31, 91, 0.04);
    border-color: rgba(0, 31, 91, 0.14);
  }

  html.dark .main-nav.open { background: #0f182a !important; }
  html.dark .main-nav.open > ul > li > a {
    color: #FFD100 !important;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.14);
  }
  html.dark .main-nav.open > ul > li > a:hover,
  html.dark .main-nav.open > ul > li.active > a {
    color: #FFD100 !important;
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.26);
  }
  html.dark .main-nav.open > ul > li > ul {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.14);
  }
  html.dark .main-nav.open > ul > li > ul > li > a {
    color: #ffd100 !important;
    background: transparent;
    border-bottom-color: rgba(255, 255, 255, 0.14);
  }
  html.dark .main-nav.open > ul > li > ul > li > ul > li > a {
    color: rgba(226, 232, 240, 0.85) !important;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.14);
  }

  .demo-main-nav li.has-children > a > .caret { display: none; }
  @media (max-width: 1360px) {
    /* The themed main-nav is the fullscreen menu on phones and tablets. */
    .mobile-nav.open {
      display: none !important;
    }
    body.open::before {
      display: none !important;
    }
    .main-nav.open.demo-main-nav > ul > li > a {
      padding: 18px 45px 18px 15px;
      font-size: 15px;
      border-radius: 12px;
    }
    .main-nav.open.demo-main-nav > ul > li {
      display: block !important;
    }
    .main-nav.open.demo-main-nav li > a {
      width: 100% !important;
      height: auto;
      box-sizing: border-box;
      justify-content: flex-start !important;
      text-align: left !important;
      padding-right: 44px !important;
    }
    .main-nav.open li.has-children > ul {
      display: none !important;
      position: static !important;
      transform: none !important;
      width: auto !important;
      max-width: none !important;
      left: auto !important;
      right: auto !important;
      top: auto !important;
      box-shadow: none !important;
    }

    .main-nav.open li.has-children.active > ul {
      display: block !important;
      margin: 0 !important;
      padding: 2px 0 2px 22px !important;
      background: transparent !important;
      border: none !important;
      border-radius: 0 !important;
      gap: 0 !important;
      grid-template-columns: none !important;
    }

    .main-nav.open li.has-children.active > ul > li {
      width: 100%;
      margin: 0 0 4px 0 !important;
      padding: 0 !important;
      background: transparent !important;
      border: none !important;
      border-radius: 8px;
      overflow: hidden;
    }
    .main-nav.open li.has-children.active > ul > li:last-child {
      margin-bottom: 0 !important;
    }
    .main-nav.open li.has-children.active > ul > li > a {
      display: block !important;
      width: 100% !important;
      padding: 11px 32px 11px 12px !important;
      font-size: 13.5px !important;
      font-weight: 500 !important;
      text-transform: none !important;
      letter-spacing: 0.2px !important;
      line-height: 1.35 !important;
      color: rgba(0, 31, 91, 0.88) !important;
      background: rgba(0, 31, 91, 0.04) !important;
      border: none !important;
      border-radius: 8px !important;
      text-align: left;
      white-space: normal !important;
      transition: background 0.2s ease, color 0.2s ease;
    }
    html.dark .main-nav.open li.has-children.active > ul > li > a {
      color: #FFD100 !important;
      background: rgba(255, 255, 255, 0.06) !important;
    }
    .main-nav.open li.has-children.active > ul > li > a:hover {
      background: rgba(0, 31, 91, 0.1) !important;
      color: #001F5B !important;
    }
    html.dark .main-nav.open li.has-children.active > ul > li > a:hover {
      background: rgba(255, 255, 255, 0.12) !important;
      color: #FFD100 !important;
    }

    /* Chevron on every expandable category, at any depth */
    .main-nav.open li.has-children > a {
      position: relative !important;
    }
    .main-nav.open li.has-children > a::after {
      content: none !important;
      display: none !important;
    }
    .main-nav.open li.has-children > a > .caret {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      right: 8px;
      top: 50%;
      transform: translateY(-50%);
      width: 32px;
      height: 32px;
      border: none;
      margin: 0;
      cursor: pointer;
    }
    .main-nav.open li.has-children > a > .caret::after {
      content: '\f107' !important;
      font-family: 'FontAwesome' !important;
      display: block !important;
      transition: transform 0.3s ease;
      color: inherit;
    }
    .main-nav.open li.has-children.active > a > .caret::after {
      transform: rotate(180deg);
    }

    .main-nav.open.demo-main-nav > ul > li:not(.active):hover > ul,
    .main-nav.open.demo-main-nav > ul > li:not(.active) > ul:hover {
      display: none !important;
      position: static !important;
      transform: none !important;
      width: 100% !important;
      grid-template-columns: none !important;
    }
    .main-nav.open.demo-main-nav > ul > li.active > ul {
      display: block !important;
    }

    .main-nav.open.demo-main-nav li.active > ul li {
      display: block !important;
      float: none !important;
      clear: both !important;
      width: auto !important;
      min-width: 0 !important;
      max-width: 100% !important;
      position: static !important;
      left: auto !important;
      right: auto !important;
    }
    .main-nav.open.demo-main-nav li.active > ul li > a {
      display: block !important;
      float: none !important;
      max-width: 100% !important;
    }

    /* Image-column wrappers emitted by the categories partial */
    .main-nav.open.demo-main-nav li.active .column {
      display: block !important;
      width: 100% !important;
      margin: 0 !important;
      padding: 0 !important;
    }

    .main-nav.open.demo-main-nav::after,
    .main-nav.open.demo-main-nav::before,
    .main-nav.open::after,
    .main-nav.open::before {
      display: none !important;
      content: none !important;
    }
  }

  .search-modern button {
    background: #ffffff;
    color: #001F5B;
    box-shadow: 0 1px 3px rgba(0, 31, 91, 0.15);
  }
  .search-modern button i,
  .search-modern button .fa-search {
    color: #001F5B !important;
  }

  @media (max-width: 1360px) {
    .search-modern input {
      height: 44px;
      font-size: 13px;
      padding-right: 54px;
    }
    .search-modern button {
      width: 36px;
      height: 34px;
      top: 20px;
      right: 5px;
    }
  }

  @media (min-width: 768px) and (max-width: 1099px) {
    .header-top-row {
      flex-direction: column !important;
      align-items: stretch !important;
      position: relative;
    }
    .header-top-row > .logo {
      align-self: center !important;
      width: 160px !important;
      min-width: 160px !important;
      max-width: 160px !important;
      height: 60px !important;
      margin: 0 auto !important;
    }
    .header-actions {
      order: 1 !important;
      width: 100% !important;
      justify-content: center !important;
      margin: 0 !important;
    }
    .UA.ua-icons {
      width: 100% !important;
      justify-content: center !important;
      margin-left: 0 !important;
      margin-right: 0 !important;
    }
    .header-top-row .search-modern {
      order: 2 !important;
      position: static !important;
      left: auto !important;
      top: auto !important;
      transform: none !important;
      width: 100% !important;
      max-width: 560px !important;
      min-width: 0 !important;
      margin: 16px auto 0 !important;
      flex: 0 1 auto !important;
    }
  }

  @media (min-width: 1100px) and (max-width: 1250px) {
    .header-top-row {
      position: relative;
    }
    .header-top-row > .logo {
      flex: 0 0 auto;
      width: 140px !important;
      min-width: 140px !important;
      max-width: 140px !important;
      height: 56px !important;
      margin: 0 !important;
    }
    .header-top-row .search-modern {
      position: static !important;
      left: auto !important;
      top: auto !important;
      transform: none !important;
      order: 0 !important;
      width: auto !important;
      flex: 1 1 auto;
      max-width: 400px;
      min-width: 200px;
      margin: 0 !important;
    }

    .header-actions {
      order: 0 !important;
      width: auto !important;
      margin: 0 !important;
      flex: 0 0 auto;
      justify-content: flex-end !important;
      gap: 12px !important;
    }
    .header-actions .UA.ua-icons {
      gap: 14px !important;
    }
  }

  @media (min-width: 1251px) and (max-width: 1360px) {
    .header-top-row {
      position: relative;
    }
    .header-top-row > .logo {
      flex: 0 0 auto;
      width: 150px !important;
      min-width: 150px !important;
      max-width: 150px !important;
      height: 56px !important;
      margin: 0 !important;
    }
    .header-top-row .search-modern {
      position: absolute !important;
      left: 50% !important;
      top: 50% !important;
      transform: translate(-50%, -50%) !important;
      width: min(680px, calc(100% - 760px)) !important;
      min-width: 240px;
      order: 0 !important;
      margin: 0 !important;
    }
    .header-actions {
      order: 0 !important;
      width: auto !important;
      margin: 0 !important;
      flex: 0 0 auto;
      justify-content: flex-end !important;
    }
  }

  @media (max-width: 767px) {
    .search-modern {
      width: 100%;
      margin-top: 0;
    }
    .search-modern input {
      height: 40px;
      font-size: 13px;
      padding-right: 48px;
    }
    .search-modern button {
      width: 32px;
      height: 32px;
      top: 4px;
      right: 4px;
      transform: translateY(0);
    }
  }

  @media (min-width: 1361px) {
    .demo-mobile-only-nav { display: none !important; }
  }
  @media (max-width: 1360px) {
    .demo-collapsible-trigger,
    .demo-collapsible-nav { display: none !important; }
  }

  .demo-collapsible-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 12px;
    cursor: pointer;
    background: rgba(0,31,91,0.04);
    border: 1px solid rgba(0,31,91,0.1);
    color: #001F5B;
    font-size: 18px;
    transition: background .2s, color .2s, border-color .2s;
  }
  .demo-collapsible-trigger:hover {
    background: rgba(0,31,91,0.1);
    border-color: rgba(0,31,91,0.28);
    color: #001F5B;
  }
  html.dark .demo-collapsible-trigger {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.14);
    color: #FFD100;
  }
  html.dark .demo-collapsible-trigger:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.28);
    color: #FFD100;
  }

  /* Body state — lock page scroll while the drawer is open. No overlay/blur.*/
  body.demo-collapsible-open { overflow: hidden; }

  /* Off-canvas drawer */
  .demo-collapsible-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: min(380px, 90vw);
    height: 100%;
background: rgba(255, 255, 255, 0.48);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(7.1px);
-webkit-backdrop-filter: blur(7.1px);
    z-index: 10001;
    overflow-y: auto;
    padding: 22px 18px 40px;
    box-shadow: 12px 0 40px rgba(0,31,91,0.18);
    transform: translateX(-105%);
    transition: transform .35s ease, visibility .35s;
    visibility: hidden;
  }
  .demo-collapsible-nav.open {
    transform: translateX(0);
    visibility: visible;
  }
  html.dark .demo-collapsible-nav { 
background: rgba(15, 24, 42, 0.52);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(7.1px);
-webkit-backdrop-filter: blur(7.1px); }

  /* Drawer header (title + close) */
  .demo-collapsible-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom:  16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0,31,91,0.1);
  }
  html.dark .demo-collapsible-head { border-bottom-color: rgba(255,255,255,0.14); }
  .demo-collapsible-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #001F5B;
  }
  html.dark .demo-collapsible-title { color: #FFD100; }
  .demo-collapsible-close {
    width: 36px;
    height:  36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0,31,91,0.06) !important;
    border: none;
    color: #001F5B;
    font-size: 15px;
    cursor: pointer;
    transition: background .2s, color .2s;
  }
  .demo-collapsible-close:hover { background: rgba(0,31,91,0.14); color: #001F5B; }
  html.dark .demo-collapsible-close { background: rgba(255,255,255,0.1); color: #fff; }
  html.dark .demo-collapsible-close:hover { background: rgba(255,255,255,0.18); color: #fff; }

  .demo-collapsible-nav::after {
    content: none !important;
    display: none !important;
  }
  .demo-collapsible-nav {
    border-top: none !important;
    border-bottom: none !important;
  }

  .demo-collapsible-nav .inner { display: block; max-width: none; width: 100%; }
  .demo-collapsible-nav > .inner > ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin:  0;
    padding:  0;
  }
  .demo-collapsible-nav li {
    list-style: none;
    margin:  0;
    padding:  0;
  }
  .demo-collapsible-nav li a {
    display: block;
    justify-content: flex-start !important;
    width: 100% !important;
    box-sizing: border-box;
    position: relative;
    color: #001F5B;
    font-size: 14.5px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: left !important;
    padding: 13px 38px 13px 13px;
    border-radius: 10px;
    border: 1px solid rgba(0,31,91,0.08);
    background: rgba(0,31,91,0.03);
    transition: background .2s, color .2s, border-color .2s;
  }
  .demo-collapsible-nav li a:hover {
    background: rgba(0,31,91,0.08);
    border-color: rgba(0,31,91,0.22);
    color: #001F5B;
  }

  .demo-collapsible-nav li.has-children > ul {
    display: none !important;
    position: static !important;
    transform: none !important;
    left: auto !important;
    top: auto !important;
    width: auto !important;
    max-width: none !important;
    box-shadow: none !important;
    margin: 4px 0 6px;
    padding: 2px 0 2px 18px;
    border-left: 1px solid rgba(0,31,91,0.14);
  }
  .demo-collapsible-nav li.has-children.active > ul {
    display: block !important;
    position: static !important;
    margin: 0 !important;
    padding: 2px 0 2px 22px !important;
    background: transparent !important;
    border-left-color: rgba(0,31,91,0.14) !important;
  }

  .demo-collapsible-nav li.has-children.active > ul li,
  .demo-collapsible-nav li.has-children.active > ul .column {
    display: block !important;
    float: none !important;
    clear: both !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
    position: static !important;
    left: auto !important;
    top: auto !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .demo-collapsible-nav li.has-children.active > ul li > a {
    display: block !important;
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .demo-collapsible-nav li.has-children > ul li a {
    font-size: 13px;
    font-weight:  500;
    text-transform: none;
    letter-spacing: 0.2px;
    color: rgba(0,31,91,0.78);
    background: transparent;
    border: none;
    border-radius:  8px;
  }
  .demo-collapsible-nav li.has-children > ul li a:hover {
    background: rgba(0,31,91,0.08);
    color: #001F5B;
  }

  .demo-collapsible-nav li.has-children > a::after {
    content: "\f107";
    font-family: "FontAwesome";
    display: block;
    position: absolute;
    right: 13px;
    top:  50%;
    transform: translateY(-50%);
    transition: transform .3s ease;
    color: inherit;
  }
  .demo-collapsible-nav li.has-children.active > a::after {
    transform: translateY(-50%) rotate(180deg);
  }

  .demo-collapsible-nav li.has-children > a::after { content: none !important; display: none !important; }
  .demo-collapsible-nav li.has-children > a > .caret {
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    font-family: "FontAwesome";
    font-size: 13px;
    line-height: 1;
    color: inherit;
    pointer-events: auto;
    cursor: pointer;
    border: none;
  }
  .demo-collapsible-nav li.has-children > a > .caret::after {
    content: "\f107";
  }
  .demo-collapsible-nav li.has-children.active > a > .caret::after {
    transform: rotate(180deg);
  }

    .demo-collapsible-nav li.active .column,
  .demo-collapsible-nav li.active .column li {
    display: block !important;
    width: auto !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .demo-collapsible-nav a.banner-image,
  .demo-main-nav.open a.banner-image { display: none !important; }

  html.dark .demo-collapsible-nav li a {
    color: #FFD100;
    border-color: rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
  }
  html.dark .demo-collapsible-nav li a:hover {
    background: rgba(255,255,255,0.12);
    color: #FFD100;
  }
  html.dark .demo-collapsible-nav li.has-children > ul { border-left-color: rgba(255,255,255,0.16); }
  html.dark .demo-collapsible-nav li.has-children > ul li a { color: rgba(226,232,240,0.85); }
  html.dark .demo-collapsible-nav li.has-children > ul li a:hover { color: #ffd100; }

  /* promo cards */

  .promo-cards-section {
    padding: 30px 0;
    margin-top: 10px;
  }

  .promo-cards-section .inner {
    max-width: 1575px;
    width: 92%;
    margin: 0 auto;
  }

  .promo-cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .promo-card {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    min-height: 90px;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(0, 31, 91, 0.10);
    box-shadow: 0 2px 10px rgba(0, 31, 91, 0.06);
  }

  html.dark .promo-card {
    border-color: #334155;
    box-shadow: none;
  }

  .promo-card-trade {
    background: linear-gradient(135deg, #fff 0%, #fff 100%);
  }

  html.dark .promo-card-trade {
    background: linear-gradient(135deg, #0f182a 0%, #1e293b 100%);
  }

  .promo-card-deals {
    background: #fff;
  }

  html.dark .promo-card-deals {
    background: linear-gradient(135deg, #0f182a 0%, #1e293b 100%);
  }

  .promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    z-index: 1;
  }

  html.dark .promo-card::before {
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.7) 70%, rgba(15, 23, 42, 0.4) 100%);
  }

  .promo-card-content {
    position: relative;
    z-index: 2;
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 16px;
    height: 100%;
  }

  .promo-card .promo-icon-glow {
    font-size: 30px;
    line-height: 1;
    color: #FFD100;
    flex-shrink: 0;

    filter: drop-shadow(0 0 6px var(--mega-glow-near)) drop-shadow(0 0 14px var(--mega-glow-far));
    animation: promo-glow-pulse 2.8s ease-in-out infinite;
  }

  @keyframes promo-glow-pulse {
    0%, 100% {
      filter: drop-shadow(0 0 4px var(--mega-glow-near)) drop-shadow(0 0 10px var(--mega-glow-far));
    }
    50% {
      filter: drop-shadow(0 0 8px var(--mega-glow-near)) drop-shadow(0 0 20px var(--mega-glow-far));
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .promo-card .promo-icon-glow {
      animation: none;
    }
  }

  .promo-text {
    flex: 1;
  }

  .promo-text h3 {
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 6px 0;
    color: #001F5B;
  }

  html.dark .promo-text h3 {
    color: #f1f5f9;
  }

  .promo-text p {
    font-size: 13px;
    font-weight: 400;
    margin: 0;
    color: rgba(0, 31, 91, 0.72);
    line-height: 1.4;
  }

  html.dark .promo-text p {
    color: rgba(226, 232, 240, 0.9);
  }

  .promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #001F5B 0%, #00153D 100%);
    color: #FFD100;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
  }

  html.dark .promo-btn {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  }

  .promo-btn:hover {
    background: linear-gradient(135deg, #0A2F70 0%, #001F5B 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 31, 91, 0.25);
  }

  html.dark .promo-btn:hover {
    background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }

  .promo-btn i {
    font-size: 12px;
  }

  @media (max-width: 768px) {
    .promo-cards-section {
      padding: 20px 0;
      margin-top: 20px;
    }

    .promo-cards-container {
      grid-template-columns: 1fr;
      gap: 12px;
    }

    .promo-card {
      min-height: auto;
    }

    .promo-card-content {
      padding: 18px 20px;
      flex-direction: column;
      text-align: center;
      gap: 12px;
    }

    .promo-card .promo-icon-glow {
      font-size: 24px;
    }

    .promo-text h3 {
      font-size: 16px;
    }

    .promo-text p {
      font-size: 12px;
    }

    .promo-btn {
      width: 100%;
      justify-content: center;
      padding: 10px 16px;
    }
  }

  /* brands */

  .brands-section {
    background: #ffffff;
    padding: 20px 0;
    margin-top: 0px;
  }

  html.dark .brands-section {
    background: #0f172a;
  }

  .brands-section .inner {
    max-width: 1575px;
    width: 92%;
    margin: 0 auto;
  }

  .brands-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 30px 0;
    letter-spacing: 0.5px;
    color: #001F5B;
  }

  html.dark .brands-title {
    color: #cbd5e1;
  }

  .brands-container {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .brand-item {
    background: #ffffff;
    border: 1px solid rgba(0, 31, 91, 0.1);
    border-radius: 8px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 70px;
    transition: all 0.3s ease;
  }

  html.dark .brand-item {
    background: #1e293b;
    border-color: rgba(255, 255, 255, 0.1);
  }

  .brand-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 31, 91, 0.15);
  }

  html.dark .brand-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }

  .brand-item img {
    max-width: 100%;
    max-height: 32px;
    object-fit: contain;
  }

  .more-brands-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-left: auto;
    color: #001F5B;
  }

  html.dark .more-brands-link {
    color: #cbd5e1;
  }

  .more-brands-link:hover {
    background: rgba(0, 31, 91, 0.08);
    color: #0A2F70;
  }

  html.dark .more-brands-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #FFD100;
  }

  .more-brands-link svg {
    width: 20px;
    height: 20px;
  }

  @media (max-width: 768px) {
    .brands-section {
      padding: 30px 0;
    }

    .brands-title {
      font-size: 20px;
      margin-bottom: 20px;
    }

    .brands-container {
      gap: 12px;
    }

    .brand-item {
      min-width: 90px;
      padding: 12px 16px;
      height: 60px;
    }

    .brand-item img {
      max-height: 24px;
    }

    .more-brands-link {
      margin-left: 0;
      width: 100%;
      justify-content: center;
    }
  }

  .brands-slider{
  width: 1650px!important;
}
div.brands-slider { overflow: hidden; }
div.brands-slider figure span {
	display: table-cell;
	vertical-align: middle;

	text-align: center;
}

div.brands-slider figure span img {
	max-height: 50px;
	max-width: 100%;
}

div.brands-slider figure div {
	display: table;
	float: left;
	padding: 40px;
	margin-right: 16px;
	margin-left: 10px;
	border-radius: 7px;
	-webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
	-moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
	box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
	height: 130px;
	width: 249px;
}

div.brands-slider figure div:last-child {
	margin-right: 0px;
}

div.brands-slider figure {
position: relative;
width: 500%;
margin: 0;
left: 0;
text-align: left;
font-size: 0;
animation: 5s slidy infinite linear;
}

#brands-slider {
height: 240px;
margin-bottom: 0;
margin-top: 80px;
background: #F0F0F0;
}
/* .brands-slider-bg{
  background: #F0F0F0;
  height: 250px;
  display: flex;
  align-items: center;
} */
.brands-slider-bg .inner{
  border-top: 5px solid #112D4E;
  border-bottom: 5px solid #112D4E;
}
.brands-breadcrumb{
  display: flex;
  /* margin-top: 50px; */
}
.brands-breadcrumb div{
  height: 30px;
  padding: 3px 3px;
}
.our-brands{
  background-color: #273580;
  color: #fff;
  padding-left: 40px!important;
  padding-right: 40px!important;
}

.brands-slider .owl-nav button {
  width: 30px;
  height: 130px;
  line-height: 27px;
  text-align: center;
  background: none!important;
  font-size: 60px!important;
  color: #1d304b!important;
  border: none;
}
.brands-slider .owl-nav button.owl-next {
  float: right;
}

.brands-slider .owl-item {
  text-align: center;
  display: inline-block;
  /* width: 185px!important; */
}

.brands-slider .owl-dots {
  display: none;
  /* width: 185px!important; */
}
.brands-slider-bg span img {
    text-align: center;
    max-width: 100%;
    max-height: 90px;
    vertical-align: middle;
}

.brands-slider {
  background: #fff;
  padding: 20px 20px;
  /* margin-top: 20px; */
  position: relative;
}
.brands-slider .owl-nav{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 100%;
}
.brands-slider-bg .tablet{
  display: none;
}

.brands-slider-bg .mobile{
  display: none!important;
}

/* Styling for screens smaller than 700px */
@media (max-width: 600px) {
  .brands-slider-bg .mobile{
    display: block!important;
  }
  .brands-slider-bg div.tablet{
    display: none!important;
  }

  .brands-slider-bg div.desktop{
    display: none!important;
  }
  .contact-area div {
  	margin-bottom: 0px;
  }
  /* .brands-slider ~ .brands-slider {
    display: none!important;
  } */
}

@media (max-width: 1650px) {
  .brands-slider {
    width: auto!important;
  }
}
@media (max-width: 1250px){
  .brands-slider-bg .tablet{
    display: block!important;
  }
  .brands-slider-bg .desktop{
    display: none!important;
  }
}
.brands-slider-bg span img {
text-align: center;
max-width: 100%;
max-height: 90px;
vertical-align: middle;
padding:15px;
}

.sortBy button::before {
  padding-right: 0px;
  top: 6px;
}

.owl-item{
  max-width:250px;
  margin: 10px;
  border-radius: 10px;
}

/* Owl's calculated widths and gutters must match the rendered track exactly. */
body .feature-content .featured-slider .owl-carousel.featured-responsive {
  display: block;
  width: 100%;
}
.featured-products .featured-responsive .owl-item {
  max-width: none;
  margin: 0;
  box-sizing: border-box;
}
.featured-products .featured-responsive .item {
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}
.featured-products .featured-responsive.featured--centered .owl-stage {
  /* Owl includes a trailing gutter in its stage width. Balance it for short rows. */
  left: 10px;
}

.btn.btn-primary.addtocart {
    margin: 1rem 0rem 2rem 3rem !important;
}

.featured-products .owl-carousel .owl-nav button {
  background: linear-gradient(145deg, #ffffff, #edf2f7) !important;
  border-color: #cbd5e1;
  color: var(--shop-carousel-arrow) !important;
  box-shadow: 0 3px 10px rgba(0, 31, 91, 0.12);
}
.featured-products .owl-carousel .owl-nav button::before {
  color: var(--shop-carousel-arrow);
}
.featured-products .owl-carousel .owl-nav button:hover:not(.disabled) {
  background: linear-gradient(145deg, #fff7cc, #ffe680) !important;
  border-color: #d5ad22;
  box-shadow: 0 4px 14px rgba(0, 31, 91, 0.18);
}
.featured-products .owl-carousel .owl-nav button:focus-visible {
  outline: 2px solid #b88d00;
  outline-offset: 3px;
}
html.dark .featured-products .owl-carousel .owl-nav button {
  background: linear-gradient(145deg, #1e2b3b, #111c2b) !important;
  border-color: #475569;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
}
html.dark .featured-products .owl-carousel .owl-nav button:hover:not(.disabled) {
  background: linear-gradient(145deg, #334155, #1e293b) !important;
  border-color: #ffd100;
}
html.dark .featured-products .owl-carousel .owl-nav button:focus-visible {
  outline-color: #ffd100;
}
.featured-products .owl-carousel .owl-nav button.disabled {
  opacity: 0.4;
  cursor: default;
  transform: none;
}

/* Owl still owns widths and translation; flex only stretches the slides vertically. */
.homepage-product-cards,
.homepage-product-cards .feature-content,
.homepage-product-cards .featured-products,
.homepage-product-cards .featured-slider {
  min-width: 0;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}
.homepage-product-cards .featured-products .owl-stage { display: flex; }
.homepage-product-cards .featured-products .owl-stage::after { display: none; }
.homepage-product-cards .featured-products .owl-item {
  display: flex;
  height: auto !important;
}
.homepage-product-cards .featured-products .owl-carousel li.item {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
  padding: 16px;
  box-sizing: border-box;
  border: 1px solid #dbe1e9;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}
.homepage-product-cards .featured-products .owl-carousel .item > div {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  min-width: 0;
  height: auto;
}
.homepage-product-cards .featured-products .owl-carousel .item .prod-inner {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: auto;
  overflow: visible;
}
.homepage-product-cards .featured-products .owl-carousel .item .img {
  display: block;
  width: 100%;
  height: 150px !important;
  flex-shrink: 0;
  margin: 0 0 12px;
  border-radius: 8px;
  overflow: hidden;
}
.homepage-product-cards .featured-products .owl-carousel .item .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.homepage-product-cards .featured-products .owl-carousel .prod-initial { border: 0; }
.homepage-product-cards .featured-products .owl-carousel .product-details h3 {
  font-family: inherit;
}
.homepage-product-cards .featured-products .owl-carousel .product-details h3 a {
  color: #001f5b !important;
}
html.dark .homepage-product-cards .featured-products .owl-carousel .product-details h3 a {
  color: #e2e8f0 !important;
}
.homepage-product-cards .featured-products .owl-carousel .product-details h3 a:hover {
  color: #b88d00 !important;
}
.homepage-product-cards .featured-products .owl-carousel .prod-initial .price {
  display: flex;
  letter-spacing: normal;
}
.homepage-product-cards .featured-products .owl-carousel .qty-row { display: flex; }
.homepage-product-cards .featured-products .owl-carousel .qty-change {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.homepage-product-cards .featured-products .owl-carousel .qty { text-align: center; }

/* Balanced cards: shared by the Livewire grid and homepage featured carousel.
   Important declarations override legacy compact-grid and dark-theme rules. */
:is(.product-list-island .products-grid, .homepage-product-cards .featured-products .owl-carousel) .item {
  /* Legacy equalise() writes viewport-dependent pixel heights on resize.
     Let CSS Grid stretch each card within its current row instead. */
  height: auto !important;
  min-height: 0;
}
:is(.product-list-island .products-grid, .homepage-product-cards .featured-products .owl-carousel) .item .prod-inner {
  align-items: stretch;
  justify-content: flex-start;
  gap: 12px;
  min-width: 0;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
  padding: 12px !important;
  text-align: left;
  color: var(--shop-card-text) !important;
}
:is(.product-list-island .products-grid, .homepage-product-cards .featured-products .owl-carousel) .product-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
:is(.product-list-island .products-grid, .homepage-product-cards .featured-products .owl-carousel) .product-details h3 {
  height: auto !important;
  margin: 0 !important;
  font-size: 14px !important;
  font-weight: 600;
  line-height: 1.4 !important;
  text-align: center;
  overflow-wrap: anywhere;
}
:is(.product-list-island .products-grid, .homepage-product-cards .featured-products .owl-carousel) .manulogo {
  align-self: flex-start;
  margin: 0 !important;
}
:is(.product-list-island .products-grid, .homepage-product-cards .featured-products .owl-carousel) .manulogo img {
  width: auto;
  height: 20px;
  max-height: 20px !important;
  max-width: 100%;
  object-fit: contain;
}
:is(.product-list-island .products-grid, .homepage-product-cards .featured-products .owl-carousel) .partnum {
  margin: 0 !important;
  font-size: 12px !important;
  font-weight: 400;
  line-height: 1.4;
  color: var(--shop-card-muted) !important;
  text-transform: none;
  letter-spacing: normal;
  overflow-wrap: anywhere;
  text-align: center;
}
:is(.product-list-island .products-grid, .homepage-product-cards .featured-products .owl-carousel) .excerpt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  flex: none;
  margin: 0 !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
  color: var(--shop-card-muted) !important;
  overflow-wrap: anywhere;
}
:is(.product-list-island .products-grid, .homepage-product-cards .featured-products .owl-carousel) .product-purchase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--shop-card-border);
  min-width: 0;
  text-align: center;
}
:is(.product-list-island .products-grid, .homepage-product-cards .featured-products .owl-carousel) .prod-initial,
:is(.product-list-island .products-grid, .homepage-product-cards .featured-products .owl-carousel) .price-area {
  height: auto !important;
  min-height: 0;
  margin: 0 !important;
  width: 100%;
}
:is(.product-list-island .products-grid, .homepage-product-cards .featured-products .owl-carousel) .prod-initial > div,
:is(.product-list-island .products-grid, .homepage-product-cards .featured-products .owl-carousel) .price-area {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
}
:is(.product-list-island .products-grid, .homepage-product-cards .featured-products .owl-carousel) .price-area > .price {
  width: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
}
:is(.product-list-island .products-grid, .homepage-product-cards .featured-products .owl-carousel) .price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin: 0;
  font-size: 15px !important;
  line-height: 1.4;
  text-transform: none;
  color: var(--shop-card-text) !important;
}
:is(.product-list-island .products-grid, .homepage-product-cards .featured-products .owl-carousel) .price.flex {
  width: 100%;
  flex-direction: row;
  justify-content: center !important;
}
:is(.product-list-island .products-grid, .homepage-product-cards .featured-products .owl-carousel) .price.flex svg {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
}
:is(.product-list-island .products-grid, .homepage-product-cards .featured-products .owl-carousel) .pricespan {
  position: static !important;
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  width: auto !important;
  max-width: 100%;
  padding: 0 !important;
  opacity: 1;
  white-space: normal;
  overflow-wrap: anywhere;
  line-height: 1.35;
}
:is(.product-list-island .products-grid, .homepage-product-cards .featured-products .owl-carousel) .pricespan.mainPrice,
:is(.product-list-island .products-grid, .homepage-product-cards .featured-products .owl-carousel) .product-price-exempt .pricespan {
  order: 0;
  font-size: 20px !important;
  font-weight: 600;
  color: var(--shop-card-text) !important;
}
:is(.product-list-island .products-grid, .homepage-product-cards .featured-products .owl-carousel) .pricespan.alternativePrice {
  order: 1;
  font-size: 12px !important;
  font-weight: 400;
  color: var(--shop-card-muted) !important;
}
:is(.product-list-island .products-grid, .homepage-product-cards .featured-products .owl-carousel) .product-price-exempt .pricespan {
  font-size: 20px !important;
  font-weight: 600;
  color: var(--shop-card-text) !important;
}
:is(.product-list-island .products-grid, .homepage-product-cards .featured-products .owl-carousel) .pricespan::after {
  content: none;
}
:is(.product-list-island .products-grid, .homepage-product-cards .featured-products .owl-carousel) .pricespan.alternativePrice::after {
  content: '';
  position: static;
  flex: 0 0 30px;
  align-self: center;
  width: 30px;
  height: 14px;
  margin: 0;
  background: url('../../../css/images/ex-vat.png') center / contain no-repeat;
}
:is(.product-list-island .products-grid, .homepage-product-cards .featured-products .owl-carousel) .alternativePrice--styling.alternativePrice::after {
  background-image: url('../../../css/images/inc-vat.png');
}
:is(.product-list-island .products-grid, .homepage-product-cards .featured-products .owl-carousel) .product-price-exempt .pricespan::after {
  content: none;
}
:is(.product-list-island .products-grid, .homepage-product-cards .featured-products .owl-carousel) .availability {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  float: none;
  margin: 0 !important;
  font-size: 12px !important;
  line-height: 1.5;
  color: var(--shop-stock-in-text);
}
:is(.product-list-island .products-grid, .homepage-product-cards .featured-products .owl-carousel) .item .availability.is-available,
:is(.product-list-island .products-grid, .homepage-product-cards .featured-products .owl-carousel) .item .availability.is-available span {
  color: var(--shop-stock-in-text) !important;
}
:is(.product-list-island .products-grid, .homepage-product-cards .featured-products .owl-carousel) .item .availability.is-lead-time,
:is(.product-list-island .products-grid, .homepage-product-cards .featured-products .owl-carousel) .item .availability.is-lead-time span {
  color: var(--shop-stock-order-text) !important;
}
:is(.product-list-island .products-grid, .homepage-product-cards .featured-products .owl-carousel) .item .availability.is-unavailable,
:is(.product-list-island .products-grid, .homepage-product-cards .featured-products .owl-carousel) .item .availability.is-unavailable span {
  color: var(--shop-stock-unavailable-text) !important;
}
:is(.product-list-island .products-grid, .homepage-product-cards .featured-products .owl-carousel) .availability::before {
  content: '';
  flex: 0 0 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}
:is(.product-list-island .products-grid, .homepage-product-cards .featured-products .owl-carousel) .item .availability span {
  padding: 0 !important;
  background: none !important;
  color: inherit !important;
  font-size: inherit !important;
}
:is(.product-list-island .products-grid, .homepage-product-cards .featured-products .owl-carousel) .qty-row {
  align-self: center;
  justify-content: center !important;
  gap: 0 !important;
  margin: 0 !important;
  border: 1px solid var(--shop-card-border);
  border-radius: 8px;
  background: var(--shop-card-control-bg);
}
:is(.product-list-island .products-grid, .homepage-product-cards .featured-products .owl-carousel) .qty-row .qty,
:is(.product-list-island .products-grid, .homepage-product-cards .featured-products .owl-carousel) .qty-row .qty-change {
  box-sizing: border-box;
  height: 40px !important;
  min-height: 40px;
  margin: 0;
  padding: 0;
  border: 0 !important;
  border-radius: 7px;
  background: transparent !important;
  color: var(--shop-card-text) !important;
  font-size: 14px !important;
  line-height: normal;
}
:is(.product-list-island .products-grid, .homepage-product-cards .featured-products .owl-carousel) .qty-row .qty { width: 52px !important; }
:is(.product-list-island .products-grid, .homepage-product-cards .featured-products .owl-carousel) .qty-row .qty-change { width: 40px !important; }
:is(.product-list-island .products-grid, .homepage-product-cards .featured-products .owl-carousel) .qty-change:hover { box-shadow: inset 0 0 0 1px var(--shop-card-border); }
:is(.product-list-island .products-grid, .homepage-product-cards .featured-products .owl-carousel) .item .cart-button {
  width: 100% !important;
  min-height: 40px;
  height: 40px;
  margin: 0 !important;
}
:is(.product-list-island .products-grid, .homepage-product-cards .featured-products .owl-carousel) .cart-button__label { font-size: 14px; }
/* Centre the icon and label as one group at every card/button width.
   Keep the vertical transforms used by the add-to-cart animation. */
:is(.product-list-island, .homepage-product-cards) button.addtocart:not(.cart-button--prominent) .cart-button__stage {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
}
:is(.product-list-island, .homepage-product-cards) button.addtocart:not(.cart-button--prominent) :is(.cart-button__label, .cart-button__cart) {
  position: relative;
  top: 50%;
  left: auto !important;
  flex: 0 0 auto;
  transform: translateY(-50%);
}
:is(.product-list-island, .homepage-product-cards) button.addtocart:not(.cart-button--prominent) .cart-button__cart { order: -1; }
:is(.product-list-island .products-grid, .homepage-product-cards .featured-products .owl-carousel) :is(a, button, input):focus-visible {
  outline: 2px solid #b88d00;
  outline-offset: 3px;
}
html.dark :is(.product-list-island .products-grid, .homepage-product-cards .featured-products .owl-carousel) :is(a, button, input):focus-visible {
  outline-color: #ffd100;
}
html.dark :is(.product-list-island .products-grid, .homepage-product-cards .featured-products .owl-carousel) .item {
  background: #18243a !important;
}
html.dark .center.position-ref.full-height :is(.product-list-island .products-grid, .homepage-product-cards .featured-products .owl-carousel) .pricespan.mainPrice {
  color: var(--shop-card-text) !important;
}
html.dark .center.position-ref.full-height :is(.product-list-island .products-grid, .homepage-product-cards .featured-products .owl-carousel) .pricespan.alternativePrice {
  color: var(--shop-card-muted) !important;
}
html.dark .center.position-ref.full-height :is(.product-list-island .products-grid, .homepage-product-cards .featured-products .owl-carousel) .product-price-exempt .pricespan {
  color: var(--shop-card-text) !important;
}

/* Desktop mega menu repair, scoped to the non-collapsible demo navigation. */
.demo-main-nav.demo-non-collapsible-nav > ul > li > ul {
  width: 80vw;
  max-width: calc(100vw - 32px);
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 18px 22px;
  padding: 22px 26px;
  height: auto;
  min-height: 0;
  box-sizing: border-box;
}
.demo-main-nav.demo-non-collapsible-nav > ul > li > ul > .column { display: contents; }
.demo-main-nav.demo-non-collapsible-nav a.banner-image,
.demo-main-nav.demo-non-collapsible-nav img { display: none !important; }
.demo-main-nav.demo-non-collapsible-nav > ul > li > ul > li {
  box-sizing: border-box;
  display: block;
  width: auto !important;
  min-width: 0;
  max-width: 100%;
  align-self: start;
}
.demo-main-nav.demo-non-collapsible-nav > ul > li > ul ul {
  position: static !important;
  inset: auto !important;
  display: block !important;
  float: none !important;
  transform: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  box-sizing: border-box;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100%;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
.demo-main-nav.demo-non-collapsible-nav > ul > li > ul li {
  position: static !important;
  display: block !important;
  float: none !important;
  box-sizing: border-box;
  width: auto !important;
  min-width: 0 !important;
  max-width: 100%;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}
.demo-main-nav.demo-non-collapsible-nav > ul > li > ul li > a {
  position: static !important;
  display: block !important;
  box-sizing: border-box;
  width: 100% !important;
  max-width: 100%;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 7px 10px !important;
  white-space: normal;
  overflow-wrap: anywhere;
  line-height: 1.4;
}
.demo-main-nav.demo-non-collapsible-nav > ul > li > ul li.has-children > a::after,
.demo-main-nav.demo-non-collapsible-nav > ul > li > ul li > a::before { content: none !important; display: none !important; }
.demo-main-nav.demo-non-collapsible-nav > ul > li > ul li.has-children > a {
  margin: 0 0 7px !important;
  padding: 7px 10px 9px !important;
  border-bottom: 1px solid #FFD100 !important;
}
.demo-main-nav.demo-non-collapsible-nav > ul > li > ul li.has-children > ul {
  margin-top: 0 !important;
  margin-left: 8px !important;
  padding-left: 8px !important;
  border-left: 0 !important;
}
.demo-main-nav.demo-non-collapsible-nav > ul > li > ul li.has-children > ul > li > a {
  padding: 5px 8px !important;
  color: #FFD100 !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  letter-spacing: .2px !important;
  text-transform: none !important;
}
html.dark .demo-main-nav.demo-non-collapsible-nav > ul > li > ul li.has-children > a {
  border-bottom-color: #FFD100 !important;
}
html.dark .demo-main-nav.demo-non-collapsible-nav > ul > li > ul li.has-children > ul {
  border-left: 0 !important;
}
html.dark .demo-main-nav.demo-non-collapsible-nav > ul > li > ul li.has-children > ul > li > a {
  color: #FFD100 !important;
}
html.dark .demo-main-nav.demo-non-collapsible-nav > ul > li > ul { background: #1e293b; }
