﻿@charset "UTF-8";
/* ── Mobile button resets ── */
button.mobile-menu-header,
button.back-button {
  background: none;
  border: none;
  padding: 0;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

/* ── Structural ── */
.chillblast-subheader .dropdown-menu {
  translate: 0 12px;
  padding-bottom: 3rem !important;
  padding-top: 2rem !important;
  background: #242424;
}

.chillblast-sticky-header.dropdown-active ~ main {
  opacity: 0.2;
  pointer-events: none;
}

/* ── Section titles ── */
.nav_section_title {
  color: #bbb;
  font-size: 0.9rem;
}

/* ── Category links ── */
.nav_primary_list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

a.nav_primary_link {
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
}
a.nav_primary_link:hover {
  color: #f2cc01;
}

/* ── Popular products (desktop grid) ── */
.nav_popular_list {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

a.nav_popular_item {
  text-align: center;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
}
a.nav_popular_item:hover {
  color: #f2cc01;
}

img.nav_popular_image {
  width: 100%;
}

.nav_popular_price {
  font-size: 0.8rem;
  color: #bbb;
}

/* ── Banners ── */
a.nav_banners_item {
  display: flex;
  flex-direction: column;
  background: #333;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  aspect-ratio: 5/1;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-image: var(--background-image);
  border: 1px solid #444;
  box-sizing: border-box;
}
@media (max-width: 991px) {
  a.nav_banners_item {
    aspect-ratio: 3/1;
  }
}
a.nav_banners_item:hover {
  border: 1px solid #f2cc01;
}

.nav_banners_title {
  font-weight: 600;
  width: 50%;
}

.nav_banners_desc {
  font-size: 0.8rem;
  width: 50%;
}

/* ── Popular products (mobile horizontal strip) ── */
.nav_mobile_popular_list {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 150px !important;
}
.nav_mobile_popular_list::-webkit-scrollbar {
  display: none;
}

.nav_mobile_popular_item {
  flex: 0 0 110px;
  text-align: center;
  font-size: 0.85rem;
  color: #fff;
  text-decoration: none;
}
.nav_mobile_popular_item:hover, .nav_mobile_popular_item:active {
  color: #f2cc01;
}
.nav_mobile_popular_item .nav_popular_image {
  width: 100%;
  display: block;
}

.slide-menu .back-button.row > svg {
  width: auto !important;
}

.nav_popular_image {
  height: 145px;
  object-fit: contain;
}
