:root {
  --brand-red: #c70909;
  --brand-red-bright: #eb2626;
  --header-bg: #0f1115;
  --header-surface: #161a20;
  --header-surface-soft: #1e242d;
  --header-border: rgba(255, 255, 255, 0.08);
  --header-border-strong: rgba(255, 255, 255, 0.14);
  --header-text: #f4f5f7;
  --header-text-muted: rgba(244, 245, 247, 0.72);
  --header-shadow: none;
  --panel-shadow: 0 14px 28px rgba(8, 10, 14, 0.1);
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
}

body.offcanvas-is-open {
  overflow: hidden;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.form-honeypot {
  display: none !important;
}

.alert-container {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: min(420px, calc(100vw - 32px));
  z-index: 1300;
}

.site-logo-image {
  display: block;
  width: 100%;
  max-width: 250px;
  height: auto;
}

.header-phone-link {
  color: #fff !important;
  font-weight: 700;
}

.site-header a:focus-visible,
.site-header button:focus-visible,
.offcanvas_menu a:focus-visible,
.offcanvas_menu button:focus-visible,
#top-offer-banner button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.95);
  outline-offset: 3px;
}

#top-offer-banner {
  position: relative;
  z-index: 11;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  padding: 10px 18px;
  color: #fff;
  /* background: linear-gradient(90deg, #8d0000 0%, #d10c0c 46%, #8d0000 100%); */
  background-size: 240% 100%;
  animation: offerPulse 8s linear infinite;
  overflow: hidden;
}

#top-offer-banner.is-hidden {
  opacity: 0;
  transform: translateY(-100%);
  max-height: 0;
  padding: 0;
  pointer-events: none;
}

.offer-slider {
  position: relative;
  flex: 1;
  min-height: 24px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.offer-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease;
}

.offer-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.offer-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.offer-controls button {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.offer-controls button:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}

.site-header {
  position: relative;
  z-index: 1000;
}

.main_header {
  background:
    radial-gradient(circle at top right, rgba(199, 10, 10, 0.16), transparent 24%),
    linear-gradient(180deg, #13171d 0%, #0f1115 100%);
  color: var(--header-text);
}

.header_top {
  border-bottom: 1px solid var(--header-border);
}

.site-header__top {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-header__support {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--header-text-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header__support i {
  color: var(--brand-red-bright);
  font-size: 15px;
}

.site-header__support a {
  letter-spacing: 0.02em;
}

.header_top_links {
  margin-left: auto;
}

.header_top_links ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header_top_links ul li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  line-height: 1.2;
  color: var(--header-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.header_top_links ul li a,
.header_top_links .nav-link {
  color: #fff;
  font-weight: 600;
}

.header_top_links ul li a:hover,
.header_top_links .nav-link:hover {
  color: #ffb8b8;
}

.site-header__welcome {
  color: rgba(255, 255, 255, 0.78);
  text-transform: none;
  letter-spacing: 0.01em;
}

.social-icons {
  gap: 8px !important;
}

.social-icons a {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: #fff !important;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-icons a:hover {
  background: var(--brand-red);
  border-color: rgba(255, 255, 255, 0.18);
}

.header_middle {
  padding: 16px 0;
}

.site-header__desktop-main {
  display: grid;
  grid-template-columns: minmax(180px, 250px) minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.site-header__brand {
  display: flex;
  align-items: center;
}

.site-header__search-column {
  min-width: 0;
}

.site-header__search-label {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 12px;
}

.site-header__search-label span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-header__search-label strong {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.search_container {
  position: relative;
  min-width: 0;
}

.search_container form {
  display: flex;
  align-items: stretch;
  min-height: 52px;
  background: #fff;
  border: 1px solid rgba(15, 17, 21, 0.12);
  border-radius: 6px;
  overflow: visible;
  box-shadow: var(--header-shadow);
}

.hover_category {
  position: relative;
  /* flex: 0 0 178px; */
  min-width: 0;
  display: flex;
  align-items: center;
  border-right: 1px solid rgba(15, 17, 21, 0.08);
  background: #f7f8fa;
  border-radius: 6px 0 0 6px;
}

.hover_category select {
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  color: #2d333c;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0 42px 0 18px;
  appearance: none;
  outline: 0;
}

.hover_category::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #6d7785;
  border-bottom: 2px solid #6d7785;
  transform: translateY(-60%) rotate(45deg);
  pointer-events: none;
}

.hover_category .nice-select {
  width: 100%;
  height: 100% !important;
  line-height: 54px !important;
  border: 0 !important;
  padding: 0 42px 0 18px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #2d333c !important;
  background: transparent !important;
}

.hover_category .nice-select::after {
  right: 18px;
  width: 8px;
  height: 8px;
  border-bottom-color: #6d7785;
  border-right-color: #6d7785;
}

.hover_category .nice-select .list {
  width: calc(100% + 24px);
  margin-top: 10px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(12, 17, 23, 0.08);
  max-height: 340px;
  overflow-y: auto;
}

.search_box {
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: stretch;
}

.search_box.live-search-box {
  overflow: visible;
}

.search-input-wrap {
  position: relative;
  flex: 1;
  min-width: 0;
}

.search_box input {
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0 18px;
  color: #111827;
  font-size: 14px;
  font-weight: 500;
  background: transparent;
}

.search_box input::placeholder {
  color: #7f8793;
}

.search_box button {
  flex: 0 0 auto;
  min-width: 118px;
  padding: 0 24px;
  border: 0;
  border-radius: 0 6px 6px 0;
  background: var(--brand-red);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.search_box button:hover {
  background: var(--brand-red-bright);
}

.search_container:focus-within form {
  border-color: rgba(199, 10, 10, 0.42);
  box-shadow: none;
}

.search-suggestions {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  z-index: 1250;
  display: none;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 8px;
  box-shadow: var(--panel-shadow);
}

.search-suggestions.is-visible {
  display: block;
}

.search-suggestions-list {
  max-height: 420px;
  overflow-y: auto;
}

.search-suggestion-item,
.search-suggestion-empty,
.search-suggestion-loading,
.search-suggestion-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
}

.search-suggestion-item {
  color: #111827;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition-fast);
}

.search-suggestion-item+.search-suggestion-item {
  border-top: 1px solid rgba(17, 24, 39, 0.06);
}

.search-suggestion-item:hover,
.search-suggestion-item.is-active {
  background: rgba(199, 10, 10, 0.05);
}

.search-suggestion-thumb {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 6px;
  object-fit: cover;
  background: #f5f5f5;
  border: 1px solid rgba(17, 24, 39, 0.06);
}

.search-suggestion-copy {
  flex: 1;
  min-width: 0;
}

.search-suggestion-title {
  display: block;
  margin-bottom: 4px;
  color: #111827;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.search-suggestion-title mark {
  padding: 0 2px;
  color: #b80000;
  background: rgba(199, 10, 10, 0.16);
  border-radius: 2px;
}

.search-suggestion-price {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13px;
}

.search-suggestion-price strong {
  color: var(--brand-red);
}

.search-suggestion-price span {
  color: #8b8b8b;
  text-decoration: line-through;
}

.search-suggestion-empty,
.search-suggestion-loading {
  justify-content: center;
  color: #6b7280;
  font-size: 14px;
}

.search-suggestion-footer {
  justify-content: center;
  background: #fafafa;
  border-top: 1px solid rgba(17, 24, 39, 0.06);
}

.search-suggestion-footer a {
  color: var(--brand-red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.header_configure_area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header_wishlist a,
.mini_cart_wrapper>a {
  position: relative;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border-radius: 6px;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--header-border-strong);
  transition: transform var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

.header_wishlist a:hover,
.mini_cart_wrapper>a:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.header_wishlist a i,
.mini_cart_wrapper>a i {
  font-size: 22px;
  color: #fff;
}

.wishlist_count,
.cart_count {
  min-width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--brand-red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.mini_cart_wrapper>a {
  padding-right: 14px;
}

.cart_price {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.cart_price i {
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.74) !important;
}

.mini_cart_wrapper .mini_cart {
  min-width: min(420px, calc(100vw - 12px));
  max-width: min(420px, calc(100vw - 12px));
  z-index: 99999999999;
  padding: 0;
  background:
    radial-gradient(circle at top right, rgba(199, 10, 10, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6f7f9 100%);
  color: #111827;
  box-shadow: -24px 0 64px rgba(8, 10, 14, 0.22);
  border-left: 1px solid rgba(17, 24, 39, 0.08);
  overflow: hidden;
}

.mini_cart_wrapper .mini_cart_inner {
  height: calc(100vh - 170px);
  padding: 22px 20px 18px;
  overflow-y: auto;
}

.mini_cart_wrapper .cart_close {
  align-items: flex-start;
  padding-bottom: 16px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.mini_cart_wrapper .cart_text h3 {
  margin: 0;
  color: #111827;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.mini_cart_wrapper .cart_text p {
  margin: 6px 0 0;
  color: #6b7280;
  font-size: 13px;
  font-weight: 600;
}

.mini_cart_wrapper .mini_cart_close>a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #111827;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.mini_cart_wrapper .mini_cart_close>a:hover {
  color: #fff;
  background: var(--brand-red);
  border-color: var(--brand-red);
}

.mini_cart_wrapper .mini_cart_items {
  display: grid;
  gap: 14px;
}

.mini_cart_wrapper .cart_item {
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(17, 24, 39, 0.07);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.mini_cart_wrapper .cart_img {
  width: 84px;
  height: 84px;
  flex: 0 0 84px;
  margin-right: 0;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  border: 1px solid rgba(17, 24, 39, 0.06);
}

.mini_cart_wrapper .cart_img a,
.mini_cart_wrapper .cart_img img {
  display: block;
  width: 100%;
  height: 100%;
}

.mini_cart_wrapper .cart_img img {
  object-fit: contain;
  padding: 8px;
}

.mini_cart_wrapper .cart_info {
  width: auto;
  flex: 1;
  min-width: 0;
}

.mini_cart_wrapper .cart_info_title {
  display: -webkit-box;
  margin-bottom: 8px;
  color: #111827;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.45em * 2);
}

.mini_cart_wrapper .cart_info_title:hover {
  color: var(--brand-red);
}

.mini_cart_wrapper .cart_info_meta {
  margin: 0;
  color: #6b7280;
  font-size: 12.5px;
  font-weight: 600;
}

.mini_cart_wrapper .cart_info_meta span {
  display: block;
  margin-top: 6px;
  color: var(--brand-red);
  font-size: 15px;
  font-weight: 800;
}

.mini_cart_wrapper .cart_remove a {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #6b7280;
  background: #f8fafc;
  border: 1px solid rgba(17, 24, 39, 0.08);
  line-height: 1;
}

.mini_cart_wrapper .cart_remove a:hover {
  color: #fff;
  background: var(--brand-red);
  border-color: var(--brand-red);
}

.mini_cart_wrapper .mini_cart_empty_state {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 36px 18px;
  border: 1px dashed rgba(17, 24, 39, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  text-align: center;
}

.mini_cart_wrapper .mini_cart_empty_icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: var(--brand-red);
  background: rgba(199, 10, 10, 0.08);
  font-size: 28px;
}

.mini_cart_wrapper .mini_cart_empty_state h4 {
  margin: 0;
  color: #111827;
  font-size: 19px;
  font-weight: 800;
}

.mini_cart_wrapper .mini_cart_empty_state p {
  margin: 0;
  max-width: 240px;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.6;
}

.mini_cart_wrapper .mini_cart_summary {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #111827;
  color: #fff;
}

.mini_cart_wrapper .mini_cart_summary_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 13px;
  font-weight: 700;
}

.mini_cart_wrapper .mini_cart_summary_row+.mini_cart_summary_row {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mini_cart_wrapper .mini_cart_summary_row strong {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.mini_cart_wrapper .mini_cart_summary_row--highlight strong {
  color: #fff0a8;
}

.mini_cart_wrapper .mini_cart_footer {
  display: grid;
  gap: 12px;
  padding: 18px 20px 22px;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 -12px 28px rgba(15, 23, 42, 0.06);
}

.mini_cart_wrapper .cart_button:first-child {
  margin-bottom: 0;
}

.mini_cart_wrapper .cart_button a {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mini_cart_wrapper .cart_button a:not(.active) {
  color: #111827;
  background: #f4f6f8;
  border-color: rgba(17, 24, 39, 0.08);
}

.mini_cart_wrapper .cart_button a:not(.active):hover {
  color: #fff;
}

.mini_cart_wrapper .cart_button a.active {
  background: linear-gradient(135deg, #c70909 0%, #eb2626 100%);
  border-color: #c70909;
  box-shadow: 0 14px 28px rgba(199, 10, 10, 0.24);
}

@media (max-width: 767px) {
  .mini_cart_wrapper .mini_cart {
    min-width: min(360px, calc(100vw - 8px));
    max-width: min(360px, calc(100vw - 8px));
  }

  .mini_cart_wrapper .mini_cart_inner {
    height: calc(100vh - 162px);
    padding: 18px 16px 16px;
  }

  .mini_cart_wrapper .mini_cart_footer {
    padding: 14px 16px 18px;
  }

  .mini_cart_wrapper .cart_item {
    padding: 12px;
  }

  .mini_cart_wrapper .cart_img {
    width: 72px;
    height: 72px;
    flex-basis: 72px;
  }
}

.site-header__tablet-menu {
  display: none;
}

.canvas_open,
.canvas_close {
  position: static;
}

.canvas_open button,
.canvas_close button {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: transform var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

.canvas_open button {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.canvas_open button:hover {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.12);
}

.canvas_open button i {
  font-size: 28px;
}

.canvas_close button {
  color: #111827;
  background: #fff;
  border-color: rgba(17, 24, 39, 0.08);
}

.canvas_close button:hover {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: #fff;
}

.header_bottom {
  border-top: 1px solid var(--header-border);
  border-bottom: 1px solid rgba(199, 10, 10, 0.4);
  background: rgba(9, 11, 15, 0.88);
  backdrop-filter: none;
}

.site-header__nav {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.categories_menu {
  position: relative;
  flex: 0 0 280px;
}

.categories_title {
  width: 100%;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: #fff;
  background: transparent;
}

.categories_title span {
  flex: 1;
  text-align: left;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.categories_title i:first-child {
  font-size: 14px;
}

.categories_menu_toggle {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  display: block;
  padding: 8px 0;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 8px;
  box-shadow: var(--panel-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  z-index: 1210;
  transition: opacity var(--transition-base), transform var(--transition-base), visibility var(--transition-base);
}

.categories_menu:hover .categories_menu_toggle,
.categories_menu:focus-within .categories_menu_toggle,
.categories_title.active+.categories_menu_toggle,
.categories_menu_toggle.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  display: block !important;
}

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

.categories_menu_toggle>ul>li {
  position: relative;
}

.categories_menu_toggle>ul>li>a {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 18px;
  color: #1f2937;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.categories_menu_toggle>ul>li>a:hover {
  color: var(--brand-red);
  background: rgba(199, 10, 10, 0.05);
}

.categories_menu_toggle .categories_mega_menu {
  position: absolute;
  top: -8px;
  left: calc(100% + 8px);
  min-width: 260px;
  padding: 8px 0;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 8px;
  box-shadow: var(--panel-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: opacity var(--transition-base), transform var(--transition-base), visibility var(--transition-base);
}

.categories_menu_toggle>ul>li:hover>.categories_mega_menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.categories_mega_menu li a {
  display: block;
  padding: 10px 18px;
  color: #374151;
  font-size: 13px;
  font-weight: 500;
}

.categories_mega_menu li a:hover {
  color: var(--brand-red);
  background: rgba(199, 10, 10, 0.05);
}

.main_menu {
  flex: 1;
  min-width: 0;
}

.main_menu nav>ul {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 20px;
}

.main_menu nav>ul>li {
  margin-right: 0;
}

.main_menu nav>ul>li>a {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.main_menu nav>ul>li>a.active,
.main_menu nav>ul>li:hover>a {
  color: #fff;
  box-shadow: inset 0 -2px 0 var(--brand-red);
}

.main_menu nav>ul>li>a i {
  font-size: 12px;
}

.main_menu nav>ul>li ul.sub_menu {
  min-width: 230px;
  margin-top: 10px;
  padding: 8px 0;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 8px;
  box-shadow: var(--panel-shadow);
}

.main_menu nav>ul>li ul.sub_menu li a {
  padding: 11px 20px;
  color: #1f2937;
  font-size: 13px;
  font-weight: 600;
}

.main_menu nav>ul>li ul.sub_menu li a:hover {
  color: var(--brand-red);
  background: rgba(199, 10, 10, 0.05);
}

.sticky-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  padding: 0;
  background: rgba(9, 11, 15, 0.94);
  border-top: 0;
  box-shadow: none;
}

.site-header__mobile {
  display: none;
}

.off_canvars_overlay {
  position: fixed;
  inset: 0;
  z-index: 99999999998;
  background: rgba(8, 11, 15, 0.58);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  /* transition: opacity var(--transition-base), visibility var(--transition-base); */
}

.off_canvars_overlay.active {
  opacity: 1;
  /* visibility: visible; */
  pointer-events: auto;
}

.offcanvas_menu {
  display: none;
}

.offcanvas_menu_wrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1200;
  width: min(360px, calc(100vw - 24px));
  height: 100vh;
  padding: 22px 18px 28px;
  overflow-y: auto;
  background: linear-gradient(180deg, #11151b 0%, #171d25 100%);
  color: #fff;
  box-shadow: 24px 0 60px rgba(0, 0, 0, 0.3);
  transform: translateX(-108%);
  transition: transform 0.35s ease;
}

.offcanvas_menu_wrapper.active {
  transform: translateX(0);
}

.offcanvas_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.offcanvas_logo img {
  display: block;
  width: auto;
  max-width: 170px;
  height: auto;
}

.call_support {
  padding: 14px 16px;
  margin-bottom: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.call_support p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  line-height: 1.5;
}

.call_support p span {
  min-width: 0;
}

.call_support i {
  color: var(--brand-red-bright);
  font-size: 18px;
}

.call_support a {
  color: #fff !important;
}

.offcanvas_quick_links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.offcanvas_quick_links a {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 14px;
  color: #fff;
  /* background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px; */
}

.offcanvas_quick_links a i {
  font-size: 18px;
  flex: 0 0 18px;
  text-align: center;
}

.offcanvas_quick_links a span {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.offcanvas_quick_links a strong {
  color: #fff;
  min-width: 26px;
  height: 26px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 11px;
  font-weight: 800;
}

.offcanvas_account_links {
  margin-bottom: 16px;
}

.offcanvas_account_links ul {
  justify-content: flex-start;
  gap: 12px;
}

.offcanvas_account_links ul li {
  font-size: 11px;
}

.offcanvas_menu_wrapper .search_container {
  margin-bottom: 20px;
}

.offcanvas_menu_wrapper .search_container form {
  flex-direction: column;
  gap: 10px;
  min-height: auto;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.offcanvas_menu_wrapper .hover_category,
.offcanvas_menu_wrapper .search_box {
  width: 100%;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #fff;
}

.offcanvas_menu_wrapper .hover_category {
  border-right: 1px solid rgba(17, 24, 39, 0.08);
}

.offcanvas_menu_wrapper .search_box {
  overflow: visible;
}

.offcanvas_menu_wrapper .search_box button {
  min-width: 92px;
}

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

.offcanvas_main_menu li {
  position: relative;
  margin: 0;
}

.offcanvas_main_menu li a {
  display: block;
  padding: 14px 0;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.offcanvas_main_menu li a:hover {
  color: #ffd4d4;
}

.offcanvas_main_menu li .menu-expand {
  position: absolute;
  top: 7px;
  right: 0;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
}

.offcanvas_main_menu li.menu-open>.menu-expand {
  transform: rotate(180deg);
}

.offcanvas_main_menu .sub-menu {
  padding-left: 14px;
}

.offcanvas_main_menu .sub-menu li a {
  padding: 12px 0;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  text-transform: none;
}

.offcanvas_footer {
  margin-top: 28px;
  padding-top: 20px;
  /* border-top: 1px solid rgba(255, 255, 255, 0.08); */
}

.offcanvas_footer span a {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.offcanvas_footer ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-top: 14px;
}

.offcanvas_footer ul li {
  display: inline-flex;
}

.offcanvas_footer ul li a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mobile-header__cart {
  position: relative;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.mobile-header__cart i {
  font-size: 22px;
}

.mobile-header__cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--brand-red);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  border: 2px solid #11151b;
}

.mobile-bottom-nav {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.mobile-bottom-nav .nav-item {
  position: relative;
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 10px 0 8px;
  color: #667085;
  font-size: 11px;
  font-weight: 700;
}

.mobile-bottom-nav .nav-item i {
  font-size: 20px;
}

.mobile-bottom-nav .nav-item.active,
.mobile-bottom-nav .nav-item:hover {
  color: var(--brand-red);
}

.mobile-bottom-nav .cart-badge {
  position: absolute;
  top: 3px;
  right: 50%;
  transform: translateX(14px);
  min-width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--brand-red);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  border: 2px solid #fff;
}

.ajax-cart-loading {
  opacity: 0.72;
  pointer-events: none;
}

.ajax-cart-toast-stack {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1205;
  display: grid;
  gap: 10px;
  width: min(360px, calc(100vw - 32px));
}

.ajax-cart-toast {
  padding: 14px 16px;
  color: #fff;
  background: #111;
  border-left: 4px solid var(--brand-red);
  border-radius: 12px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
  font-size: 13px;
  line-height: 1.6;
}

.ajax-cart-toast.is-error {
  border-left-color: #dc3545;
}

@keyframes offerPulse {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 240% 50%;
  }
}

@media (max-width: 1399px) {
  .site-header__desktop-main {
    grid-template-columns: minmax(170px, 220px) minmax(0, 1fr) auto;
    gap: 18px;
  }

  .main_menu nav>ul>li>a {
    padding: 0 12px;
    font-size: 12px;
  }
}

@media (max-width: 1199px) {
  .site-header__top {
    gap: 12px;
  }

  .header_top_links ul {
    gap: 12px;
  }

  .site-header__desktop-main {
    grid-template-columns: minmax(170px, 210px) minmax(0, 1fr) auto;
    gap: 16px;
  }

  .site-header__search-label strong {
    font-size: 14px;
  }



  .header_configure_area {
    gap: 10px;
  }

  .header_wishlist a,
  .mini_cart_wrapper>a {
    min-height: 52px;
    padding: 0 14px;
  }

  .cart_price {
    font-size: 12px;
  }



  .header_bottom {
    display: none;
  }

  .offcanvas_menu {
    display: block;
  }
}

@media (max-width: 991px) {

  .header_top,
  .site-header__desktop-main {
    display: none;
  }

  .header_middle {
    padding: 0px !important;
  }

  .site-header__mobile {
    display: block;
  }

  /* Mobile Header Custom Design */
  .site-header__mobile {
    padding: 0;
  }

  .mobile-top-bar {
    background: #a41212;
    color: #fff;
    text-align: center;
    padding: 8px 15px;
    font-size: 12px;
    font-weight: 500;
  }

  .mobile-top-bar i {
    margin-right: 5px;
    font-size: 14px;
    vertical-align: text-bottom;
  }

  .mobile-mid-bar {
    color: #d1d1d1;
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    gap: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 15px;
    font-size: 12px;
  }

  .mobile-utility-call,
  .mobile-auth-link,
  .mobile-auth-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #d1d1d1;
  }

  .mobile-utility-call i,
  .mobile-auth-link i,
  .mobile-auth-button i {
    font-size: 14px;
  }

  .mid-bar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 12px;
  }

  .mobile-auth-form {
    margin: 0;
  }

  .mobile-auth-button {
    padding: 0;
    border: 0;
    background: transparent;
  }

  @media (max-width: 767px) {
    .offer-controls {
      display: none !important;
    }
  }

  .mobile-main-header {
    padding: 15px;
  }

  .mobile-main-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }

  .mobile-main-left {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .btn-menucanvas {
    background: transparent;
    border: none;
    color: #fff;
    padding: 0;
    line-height: 1;
    display: flex;
    align-items: center;
  }

  .btn-menucanvas i {
    font-size: 28px;
  }

  .mobile-main-right {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .mobile-icon-link {
    color: #fff;
    font-size: 26px;
    display: block;
    line-height: 1;
  }

  .mobile-cart-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    line-height: 1;
  }

  .mobile-cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #c70a0a;
    border: 2px solid #111827;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
  }

  .site-header__mobile-search {
    width: 100%;
  }

  .mobile-search-form {
    display: flex;
    width: 100%;
    align-items: stretch;
  }

  .search-input-wrap {
    flex: 1;
    position: relative;
  }

  .mobile-search-input {
    width: 100%;
    height: 48px;
    padding: 0 20px;
    border-radius: 6px 0 0 6px !important;
    border: none !important;
    outline: none;
    font-size: 15px;
    background: #fff;
    color: #333;
  }

  .mobile-search-btn {
    background: #a41212 !important;
    color: #fff;
    border: none;
    height: 48px;
    padding: 0 24px;
    border-radius: 0 6px 6px 0 !important;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .offcanvas_menu {
    display: block;
  }

  body {
    overflow-x: hidden;
  }
}

@media (max-width: 767px) {
  #top-offer-banner {
    align-items: flex-start;
    flex-direction: column;
    padding: 12px 14px;
  }

  .offer-slider {
    width: 100%;
    text-align: left;
    /* min-height: 42px; */
    padding-right: 0;
  }

  .offer-controls {
    justify-content: flex-end;
    width: 100%;
  }

  .site-logo-image {
    max-width: 184px;
  }

  .offcanvas_menu_wrapper {
    width: min(340px, calc(100vw - 16px));
  }



  .mobile-bottom-nav {
    display: flex;
  }

  body {
    padding-bottom: 62px !important;
  }

  .ajax-cart-toast-stack {
    top: auto;
    right: 12px;
    left: 12px;
    bottom: 76px;
    width: auto;
  }
}

@media (max-width: 575px) {
  .header_middle {
    padding: 12px 0 14px;
  }

  .site-logo-image {
    max-width: 158px;
  }

  .canvas_open button,
  .canvas_close button,
  .mobile-header__cart {
    width: 46px;
    height: 46px;
    border-radius: 6px;
  }

  .site-header__mobile-row {
    gap: 10px;
  }

  .site-header__mobile-actions {
    gap: 8px;
  }

  .search_box input {
    padding: 0 14px;
    font-size: 13px;
  }



  .offcanvas_quick_links a {
    min-height: 0;
    padding: 13px 14px;
  }

  .offcanvas_account_links ul {
    gap: 10px;
  }

  .search-suggestion-item,
  .search-suggestion-empty,
  .search-suggestion-loading,
  .search-suggestion-footer {
    gap: 10px;
    padding: 12px;
  }

  .search-suggestion-thumb {
    width: 48px;
    height: 48px;
    border-radius: 6px;
  }
}

/* ── Focus-visible overrides: restore keyboard focus rings suppressed above ── */
.hover_category select:focus-visible {
  outline: 2px solid var(--red, #c80000);
  outline-offset: 2px;
}

.mobile-search-input:focus-visible {
  outline: 2px solid var(--red, #c80000);
  outline-offset: 2px;
}
