/* ==========================================================================
   Barel Menu - Main Front Stylesheet
   ========================================================================== */
/* ==========================================================================
   Barel Menu - SCSS Variables
   ========================================================================== */
/* ==========================================================================
   Barel Menu - Main Front Stylesheet
   ========================================================================== */
/* ==========================================================================
   Barel Menu - SCSS Mixins
   ========================================================================== */
/* ==========================================================================
   Barel Menu - Main Front Stylesheet
   ========================================================================== */
/* ==========================================================================
   Barel Menu - Global / Base Styles
   ========================================================================== */
/* Fix Theme Header Clipping */
header,
.header-nav,
.header-top,
.header-banner,
.container-parent,
.br-menu-desktop-wrapper,
.br-menu-desktop-nav {
  overflow: visible;
}

/* Main Wrappers */
.br-menu-desktop-wrapper {
  position: relative;
  width: 100%;
  z-index: 999;
  display: block;
}

.br-menu-desktop-nav {
  position: relative;
  width: 100%;
  display: block;
}

/* Common Media & Icons */
.br-icon-svg {
  filter: brightness(0) invert(1);
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.br-image-title {
  max-height: 28px;
  object-fit: contain;
}

/* ==========================================================================
   Barel Menu - Main Front Stylesheet
   ========================================================================== */
/* ==========================================================================
   Barel Menu - Desktop MegaMenu Styling
   ========================================================================== */
/* Level 1 Horizontal List */
.br-lvl1-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
  background-color: #000;
}

.br-lvl1-item {
  position: static;
  display: inline-block;
  list-style: none;
  margin: 0;
  padding: 0;
}
.br-lvl1-item.has-barelmenu:hover > .br-lvl1-link {
  color: #ffffff;
  background-color: #262626;
}
.br-lvl1-item.br-featured > .br-lvl1-link {
  color: #ef4444;
}
.br-lvl1-item .br-chevron-down {
  transform: rotate(90deg);
}
.br-lvl1-item .br-chevron-down svg {
  fill: #ffffff;
}
.br-lvl1-item:hover > .br-barelmenu-panel {
  display: block;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.br-lvl1-item:hover .br-chevron-down {
  transform: rotate(270deg);
}

.br-lvl1-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}
@media (min-width: 1201px) {
  .br-lvl1-link {
    padding: 14px 20px;
  }
}
.br-lvl1-link {
  border-radius: 0;
  background-color: transparent;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.br-lvl1-link:hover {
  color: #ffffff;
  background-color: #262626;
}

.br-chevron-down {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  margin-left: 2px;
  transition: transform 0.2s ease;
  color: #a3a3a3;
}
.br-chevron-down svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ==========================================================================
   MegaMenu Dropdown Panel
   ========================================================================== */
.br-barelmenu-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  box-sizing: border-box;
  background-color: #141414;
  border: 1px solid #262626;
  border-radius: 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 9999;
}

.br-barelmenu-inner {
  display: flex;
  min-height: 380px;
  width: 100%;
}

/* ==========================================================================
   Column 1: Level 2 Items List (Left Sidebar)
   ========================================================================== */
.br-lvl2-column {
  width: 240px;
  min-width: 240px;
  background-color: #0a0a0a;
  border-right: 1px solid #262626;
  border-radius: 0;
  padding: 8px 0;
  box-sizing: border-box;
}

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

.br-lvl2-item {
  position: relative;
  margin: 0;
  list-style: none;
}
.br-lvl2-item:hover > .br-lvl2-link, .br-lvl2-item.active > .br-lvl2-link {
  background-color: #262626;
  color: #ffffff;
  font-weight: 600;
}
.br-lvl2-item.br-featured > .br-lvl2-link {
  color: #ef4444;
}
.br-lvl2-item.active .br-arrow {
  color: #ffffff;
  transform: translateX(3px);
}

.br-lvl2-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 500;
  color: #d4d4d4;
  text-decoration: none;
  border-radius: 0;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.br-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #737373;
  transition: transform 0.15s ease, color 0.15s ease;
}
.br-arrow svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ==========================================================================
   Panels Wrapper & Right Content Area
   ========================================================================== */
.br-lvl2-panels-wrapper {
  flex: 1;
  display: flex;
  position: relative;
  background-color: #141414;
}

.br-lvl2-content-panel {
  display: none;
  width: 100%;
  height: 100%;
  padding: 24px;
  box-sizing: border-box;
  gap: 32px;
  justify-content: flex-start;
}
.br-lvl2-content-panel.active {
  display: flex;
}

/* ==========================================================================
   Column 2: Level 3 Items (Middle Area)
   ========================================================================== */
.br-lvl3-column {
  min-width: 150px;
  max-width: min-content;
  flex-shrink: 0;
}

.br-lvl3-heading {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 14px 0;
  padding-bottom: 6px;
  border-bottom: 2px solid #2563eb;
  display: inline-block;
}

.br-lvl3-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.br-lvl3-item.br-featured .br-lvl3-link {
  color: #ef4444;
  font-weight: 600;
}

.br-lvl3-link {
  font-size: 14px;
  color: #a3a3a3;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s ease, transform 0.15s ease;
}
.br-lvl3-link:hover {
  color: #ffffff;
  transform: translateX(4px);
}

/* ==========================================================================
   Column 3: Media Column & Banners
   ========================================================================== */
.br-media-column {
  flex: 1;
  min-width: 320px;
  margin-left: 0;
}

.br-lvl2-content-panel .br-media-column:only-child {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
}

/* Banner Block */
.br-banner-block {
  width: 100%;
  overflow: hidden;
  border-radius: 0;
}
.br-banner-block:hover .br-banner-img {
  transform: scale(1.03);
}

.br-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.3s ease;
}

/* ==========================================================================
   Barel Menu - Main Front Stylesheet
   ========================================================================== */
/* ==========================================================================
   Barel Menu - Product Cards & Grids
   ========================================================================== */
/* Products Grid Layouts */
.br-products-block {
  width: 100%;
}

.br-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 27px;
}

.br-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 31px;
  width: 100%;
}

/* Force Sharp Corners & Dark Background with Light Text on Akira Product Cards inside Megamenu */
.br-barelmenu-panel .product-type-8,
.br-barelmenu-panel .product-type-8 *,
.br-barelmenu-panel .item-inner,
.br-barelmenu-panel .js-product-miniature,
.br-barelmenu-panel .wrapper-imgs,
.br-barelmenu-panel img {
  border-radius: 0;
}
.br-barelmenu-panel .product-type-8 {
  background-color: #181818;
  color: #ffffff;
}
.br-barelmenu-panel .product-type-8 .item-inner,
.br-barelmenu-panel .product-type-8 .js-product-miniature,
.br-barelmenu-panel .product-type-8 .element-bottom,
.br-barelmenu-panel .product-type-8 .product-description {
  background-color: #181818;
  color: #ffffff;
}
.br-barelmenu-panel .product-type-8 .wrapper-imgs {
  max-width: 370px;
  max-height: 370px;
  margin: 0 auto;
  overflow: hidden;
  background-color: #ffffff;
}
.br-barelmenu-panel .product-type-8 .wrapper-imgs img {
  max-width: 370px;
  max-height: 370px;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.br-barelmenu-panel .product-type-8 .product_name a,
.br-barelmenu-panel .product-type-8 .product-title a,
.br-barelmenu-panel .product-type-8 span,
.br-barelmenu-panel .product-type-8 div,
.br-barelmenu-panel .product-type-8 a {
  color: #ffffff;
}
.br-barelmenu-panel .product-type-8 .js-review-avgs,
.br-barelmenu-panel .product-type-8 .ax-product-cats {
  display: none;
}
.br-barelmenu-panel .product-type-8 .price {
  color: #fd7e14;
}
.br-barelmenu-panel .product-type-8 .item-inner .variant-links-list::before,
.br-barelmenu-panel .product-type-8 .item-inner::before {
  background: #141414;
  background-color: #141414;
}
.br-barelmenu-panel {
  /* Limit product cover images in desktop megamenu to 370x370 px */
}
.br-barelmenu-panel .br-menu-product-cover,
.br-barelmenu-panel .thumbnail-container,
.br-barelmenu-panel .product-cover {
  max-width: 370px;
  max-height: 370px;
  margin: 0 auto;
  overflow: hidden;
}
.br-barelmenu-panel .br-menu-product-cover img,
.br-barelmenu-panel .thumbnail-container img,
.br-barelmenu-panel .product-cover img {
  max-width: 370px;
  max-height: 370px;
  object-fit: contain;
}
.br-barelmenu-panel {
  /* Hide Out-of-Stock Badges in MegaMenu Tiles */
}
.br-barelmenu-panel .type-out_of_stock,
.br-barelmenu-panel .out-of-stock,
.br-barelmenu-panel .product-flags .out_of_stock,
.br-barelmenu-panel .product-flags .type-out_of_stock {
  display: none !important;
}

/* Ensure only 1 main cover image per product in megamenu */
.br-barelmenu-panel .wrapper-imgs picture:nth-of-type(n+2),
.br-barelmenu-panel .wrapper-imgs img:nth-of-type(n+2) {
  display: none !important;
}

/* ==========================================================================
   Barel Menu - Main Front Stylesheet
   ========================================================================== */
/* ==========================================================================
   Barel Menu - Fullscreen Mobile Navigation & Dark Desktop Styling
   ========================================================================== */
.br-menu-mobile-wrapper {
  position: relative;
  display: inline-block;
}
.br-menu-mobile-wrapper .br-menu-mobile-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background-color: #000;
  color: #ffffff;
  border: none;
  border-radius: 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.br-menu-mobile-wrapper .br-menu-mobile-toggle:hover {
  background-color: #262626;
  color: #ffffff;
  border-color: rgb(63.5, 63.5, 63.5);
}
.br-menu-mobile-wrapper .br-hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
  height: 14px;
}
.br-menu-mobile-wrapper .br-hamburger-icon .br-hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.br-menu-mobile-wrapper .br-menu-mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  overflow: hidden;
}
.br-menu-mobile-wrapper.is-open .br-menu-mobile-drawer {
  transform: translateY(0);
}
.br-menu-mobile-wrapper .br-menu-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background-color: #141414;
  border-bottom: 1px solid #262626;
}
.br-menu-mobile-wrapper .br-menu-mobile-header .br-menu-mobile-close {
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s ease, transform 0.15s ease;
}
.br-menu-mobile-wrapper .br-menu-mobile-header .br-menu-mobile-close:hover {
  color: #ef4444;
  transform: scale(1.1);
}
.br-menu-mobile-wrapper .br-menu-mobile-header .br-menu-mobile-close svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.br-menu-mobile-wrapper .br-menu-mobile-header .br-menu-mobile-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.br-menu-mobile-wrapper .br-menu-mobile-header .br-menu-mobile-actions .br-mobile-action-btn {
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  text-decoration: none;
  transition: color 0.15s ease, transform 0.15s ease;
}
.br-menu-mobile-wrapper .br-menu-mobile-header .br-menu-mobile-actions .br-mobile-action-btn:hover {
  color: #ef4444;
  transform: scale(1.1);
}
.br-menu-mobile-wrapper .br-menu-mobile-header .br-menu-mobile-actions .br-mobile-action-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.br-menu-mobile-wrapper .br-menu-mobile-body {
  flex: 1;
  overflow-y: auto;
  padding: 12px 0 36px 0;
  -webkit-overflow-scrolling: touch;
  background-color: #000;
}
.br-menu-mobile-wrapper .br-menu-mobile-top-featured-box {
  padding: 12px 20px 8px 20px;
}
.br-menu-mobile-wrapper .br-menu-mobile-top-featured-box .br-mobile-top-featured-item {
  color: #ef4444;
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  text-decoration: none;
  display: block;
  transition: color 0.15s ease;
}
.br-menu-mobile-wrapper .br-menu-mobile-top-featured-box .br-mobile-top-featured-item:hover {
  color: rgb(245.0295566502, 138.4704433498, 138.4704433498);
}
.br-menu-mobile-wrapper .br-menu-mobile-card {
  padding: 12px 20px 16px 20px;
  background-color: #141414;
  border-top: 1px solid #262626;
  border-bottom: 1px solid #262626;
}
.br-menu-mobile-wrapper .br-menu-mobile-title-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.br-menu-mobile-wrapper .br-mobile-title-icon {
  filter: brightness(0) invert(1);
  width: 22px;
  height: 22px;
  max-width: 22px;
  max-height: 22px;
  object-fit: contain;
  vertical-align: middle;
  flex-shrink: 0;
}
.br-menu-mobile-wrapper .br-menu-mobile-accordion-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.br-menu-mobile-wrapper .br-menu-mobile-accordion-item {
  margin: 0;
}
.br-menu-mobile-wrapper .br-menu-mobile-accordion-item .br-menu-mobile-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.br-menu-mobile-wrapper .br-menu-mobile-accordion-item .br-menu-mobile-accordion-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  line-height: 1.25;
  transition: color 0.15s ease;
}
.br-menu-mobile-wrapper .br-menu-mobile-accordion-item .br-menu-mobile-accordion-title:hover {
  color: #ef4444;
}
.br-menu-mobile-wrapper .br-menu-mobile-accordion-item .br-menu-mobile-accordion-toggle {
  background: none;
  border: none;
  color: #737373;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, color 0.2s ease;
}
.br-menu-mobile-wrapper .br-menu-mobile-accordion-item .br-menu-mobile-accordion-toggle:hover {
  color: #ffffff;
}
.br-menu-mobile-wrapper .br-menu-mobile-accordion-item .br-menu-mobile-accordion-toggle svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.br-menu-mobile-wrapper .br-menu-mobile-accordion-item .br-menu-mobile-sublist {
  display: none;
  list-style: none;
  margin: 4px 0 14px 0;
  padding-left: 14px;
  border-left: 2px solid #2563eb;
}
.br-menu-mobile-wrapper .br-menu-mobile-accordion-item.is-expanded > .br-menu-mobile-accordion-header .br-menu-mobile-accordion-toggle {
  transform: rotate(180deg);
  color: #ffffff;
}
.br-menu-mobile-wrapper .br-menu-mobile-accordion-item.is-expanded > .br-menu-mobile-sublist {
  display: block;
}
.br-menu-mobile-wrapper .br-menu-mobile-subitem {
  padding: 8px 0;
}
.br-menu-mobile-wrapper .br-menu-mobile-subitem .br-menu-mobile-subitem-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.br-menu-mobile-wrapper .br-menu-mobile-subitem .br-menu-mobile-sublink {
  font-size: 16px;
  font-weight: 600;
  color: #d4d4d4;
  text-decoration: none;
  transition: color 0.15s ease;
}
.br-menu-mobile-wrapper .br-menu-mobile-subitem .br-menu-mobile-sublink:hover {
  color: #ffffff;
}
.br-menu-mobile-wrapper .br-menu-mobile-subitem .br-menu-mobile-sublist-lvl3 {
  display: none;
  list-style: none;
  margin: 6px 0 8px 0;
  padding-left: 12px;
}
.br-menu-mobile-wrapper .br-menu-mobile-subitem .br-menu-mobile-sublist-lvl3 .br-menu-mobile-sublink-lvl3 {
  font-size: 14px;
  color: #a3a3a3;
  text-decoration: none;
  transition: color 0.15s ease;
}
.br-menu-mobile-wrapper .br-menu-mobile-subitem .br-menu-mobile-sublist-lvl3 .br-menu-mobile-sublink-lvl3:hover {
  color: #ffffff;
}
.br-menu-mobile-wrapper .br-menu-mobile-subitem.is-expanded > .br-menu-mobile-sublist-lvl3 {
  display: block;
}
.br-menu-mobile-wrapper .br-menu-mobile-divider {
  height: 1px;
  background-color: #262626;
  margin: 18px 0;
}
.br-menu-mobile-wrapper .br-menu-mobile-plain-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.br-menu-mobile-wrapper .br-menu-mobile-plain-item {
  padding: 10px 0;
}
.br-menu-mobile-wrapper .br-menu-mobile-plain-item .br-menu-mobile-plain-link {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  display: block;
  transition: color 0.15s ease;
}
.br-menu-mobile-wrapper .br-menu-mobile-plain-item .br-menu-mobile-plain-link:hover {
  color: #ef4444;
}
.br-menu-mobile-wrapper .br-menu-mobile-pills-container {
  padding: 20px 20px 24px 20px;
}
.br-menu-mobile-wrapper .br-menu-mobile-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 8px;
  align-items: center;
}
.br-menu-mobile-wrapper .br-mobile-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #181818;
  border: 1px solid #262626;
  padding: 10px 18px;
  border-radius: 9999px;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.br-menu-mobile-wrapper .br-mobile-pill-btn:hover {
  background-color: #262626;
  border-color: rgb(63.5, 63.5, 63.5);
  color: #ffffff;
  transform: translateY(-1px);
}
.br-menu-mobile-wrapper .br-mobile-pill-btn .br-pill-icon-svg {
  filter: brightness(0) invert(1);
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.br-menu-mobile-wrapper .br-mobile-pill-btn .br-pill-title {
  line-height: 1;
}

body.br-mobile-menu-active {
  overflow: hidden !important;
}
