.error{ color: red!important;}
.seo-tag {display: none; }
/* Base Header Adjustments */
.hr-main-header {
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.3s ease-in-out;
  border-bottom: transparent !important;
  background-color: rgba(0, 0, 0, 0.6);
}
.th-admin-edit span {
  color: var(--color-1) !important;
  z-index: 9999;
  position: relative;
}
.main_menu.hr-header-menu .fa.fa-pencil {
  color: var(--color-1) !important;
}
/* The class that JavaScript will add when scrolling */
.hr-main-header.header-scrolled {
    background-color: #111111; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}
/* Fix general dropdown hovers */
.hr-inner-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  min-width: 200px;
  z-index: 1000;
}
.nav-item:hover > .hr-inner-dropdown {
  display: block;
}

/* =========================================================
   NEW MULTI-LEVEL NESTED DROPDOWN (SIDE-BY-SIDE FLYOUT) 
   ========================================================= */

.nested-dropdown-container {
    min-width: 260px;
    top: 100%;
    left: 0;
    margin-top: 0;
    display: none;
}
/* Show parent dropdown on hover */
.nav-item.dropdown:hover > .nested-dropdown-container {
    display: block;
}
.nested-dropdown-container .dropdown-item {
    font-size: 15px;
    transition: all 0.2s ease-in-out;
}
.nested-dropdown-container .dropdown-item:hover {
    background-color: #f8f9fa;
    color: var(--color-1, #000) !important;
    padding-left: 25px !important; /* Slight animation on hover for clean UX */
}

/* Submenu Position Relative so child UL maps to it */
.dropdown-submenu {
    position: relative;
}
/* Nested Flyout Menu Setup */
.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    display: none;
    min-width: 240px;
}
/* Trigger Side-by-side Flyout on Hover */
.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}
/* Clean up borders for the last item */
.nested-dropdown-container li:last-child {
    border-bottom: none !important;
}

/* Mobile Off-Canvas Menu Styling */
.hr-mob-menu-pop {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 100vw;
  height: 100vh;
  background-color: #1a1a1a;
  z-index: 9999;
  overflow-y: auto;
  transition: right 0.3s ease-in-out;
  padding: 30px 20px;
  box-shadow: -5px 0 15px rgba(0,0,0,0.5);
}
.hr-main-header .hr-header-menu .nav .nav-item .nav-link:hover {
  color: var(--color-1) !important;
}
.hr-mob-menu-pop.show-menu {
  right: 0 !important;
  display: block !important;
}

/* Cart Badge Styling */
.cart-count {
  position: absolute;
  top: 0px;
  right: -5px;
  background: var(--color-1);
  color: #fff;
  font-size: 10px;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.hr-main-header .hr-header-menu .nav .nav-item, .hr-main-header .hr-header-menu .nav .nav-item .nav-link {
  font-family: var(--font-03);
  color: #fff;
  font-size: 17px;
  padding: 14px 3px;
}
.user-name-btn {
  padding: 5px;
}
.hr-header-cart i {
  color: #fff;
}
.hr-main-header .hr-brand-link img {
  width: auto;
  object-fit: contain;
  padding-right: 30px;
  max-width: 300px;
}
.main_menu.hr-header-menu .nav {
  column-gap: 5px;
}
.hr-mob-menu .hr-menu-btn{
  color: #fff;
  border: 1px solid #fff;
}
.dropdown-item {
  font-family: var(--font-03);
}
.dropdown-menu span{
  font-size: 12px;
}

@media(max-width:1400px){
  .hr-main-header .hr-header-menu .nav .nav-item, .hr-main-header .hr-header-menu .nav .nav-item .nav-link {
  font-size: 15px;
  padding: 14px 3px;
  }
  .hr-main-header .hr-brand-link img {
    max-height: 50px;
  }
}
@media(max-width:1200px){
  .hr-header-right {
    display: none;
  }
  .hr-mob-menu {
    display: block !important;
  }
}
@media only screen and (min-width: 992px) {
    /* Creates an invisible hover bridge to close the gap between the menu item and the dropdown */
    .nested-dropdown-container::before,
    .hr-inner-dropdown::before {
        content: "";
        position: absolute;
        top: -35px;
        left: 0;
        width: 100%;
        height: 35px;
        background: transparent;
        z-index: 999;
    }
    /* Creates a hover bridge for the side flyout so mouse doesn't fall off */
    .dropdown-submenu::after {
        content: "";
        position: absolute;
        top: 0;
        right: -10px;
        width: 10px;
        height: 100%;
        background: transparent;
    }
}
@media(max-width:576px){
  .hr-main-header .hr-brand-link img {
    max-height: 50px;
  }
}