/** header-upper **/

.header-upper {
    position: relative;
    background: var(--theme-color);
    padding: 25px 0px;
}

.header-upper .upper-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-upper .search-area {
    position: relative;
    display: flex;
    align-items: center;
    width: 810px;
    background: #fff;
    border-radius: 50px;
}

.header-upper .search-area .category-inner .nice-select {
    padding: 17px 45px 17px 25px;
    font-size: 15px;
    color: var(--title-color);
    text-transform: capitalize;
    border-right: 1px solid #e5e5e5;
}

.header-upper .search-area .category-inner .nice-select:before {
    color: var(--title-color);
    top: 17px;
    right: 24px;
}

.header-upper .search-area .search-box {
    width: 100%;
}

.header-upper .search-area .search-box .form-group {
    position: relative;
    margin: 0px;
}

.header-upper .search-area .search-box .form-group input[type="search"] {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    font-size: 15px;
    color: var(--title-color);
    font-family: var(--text-font);
    padding: 10px 80px 10px 25px;
}

.header-upper .search-area .search-box .form-group button[type="submit"] {
    position: absolute;
    display: inline-block;
    top: 5px;
    right: 5px;
    width: 60px;
    height: 40px;
    line-height: 44px;
    text-align: center;
    font-size: 16px;
    color: #fff;
    background: #ffac00;
    border-radius: 100px;
    cursor: pointer;
    transition: all 500ms ease;
}

.header-upper .search-area .search-box .form-group input:focus + button,
.header-upper .search-area .search-box .form-group button:hover {
    background: var(--theme-color);
}

.header-upper .right-column {
    position: relative;
    display: flex;
    align-items: center;
}

.header-upper .support-box {
    position: relative;
    display: block;
    padding-left: 48px;
}

.header-upper .support-box .icon-box {
    position: absolute;
    left: 0px;
    top: 3px;
    font-size: 35px;
    color: #fff;
}

.header-upper .support-box a {
    position: relative;
    display: inline-block;
    font-size: 24px;
    line-height: 18px;
    color: #fff;
    font-weight: 700;
}

.header-upper .support-box a:hover {
    text-decoration: underline;
}

.header-upper .support-box p {
    color: #fff;
    font-size: 14px;
    line-height: 14px;
}

.main-header .option-list {
    position: relative;
    display: flex;
    align-items: center;
}

.main-header .option-list li {
    margin-right: 20px;
}

.main-header .option-list li:last-child {
    margin: 0px !important;
}

.main-header .option-list li a,
.main-header .option-list li button {
    position: relative;
    display: inline-block;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    transition: all 500ms ease;
}

.main-header .option-list li a:hover,
.main-header .option-list li button:hover {
}

.main-header .option-list li a span {
    position: absolute;
    display: inline-block;
    top: -5px;
    right: -12px;
    width: 19px;
    height: 19px;
    line-height: 19px;
    text-align: center;
    border-radius: 50%;
    font-size: 12px;
    color: #fff;
    font-weight: 700;
}

.main-header .header-lower {
    box-shadow: 0px 4px 4px 0px #0000000d;
}

.main-header .outer-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-header .outer-box .category-box {
    position: relative;
    display: inline-block;
    left: 0px;
    top: 4px;
    width: 300px;
    border: solid;
    border-width: 1px;
    border-color: #e6e6e6;
    border-bottom: none;
    border-radius: 5px 5px 0px 0px;
    padding: 15px 20px;
    cursor: pointer;
}

.main-header .outer-box .category-box .text {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: var(--title-color);
    padding-left: 28px;
}

.main-header .outer-box .category-box .text i {
    position: absolute;
    left: 0px;
    top: 2px;
    font-size: 18px;
    font-weight: 400;
}

.main-header .outer-box .category-box .text:before {
    position: absolute;
    content: "\f107";
    font-family: "Font Awesome 5 Pro";
    top: 0px;
    right: 0px;
    font-size: 16px;
    font-weight: 400;
}

.main-header .outer-box .category-box .category-list {
    position: absolute;
    left: 0px;
    top: 100%;
    width: 100%;
    background: #fff;
    box-shadow: 0px 0px 10px 0px #00000012;
    padding: 15px 10px;
    border-radius: 0px 0px 5px 5px;
    opacity: 0;
    transform-origin: top center;
    transform: scaleY(0);
    visibility: hidden;
    width: 300px;
    transition: all 500ms ease;

    height: 520px;
    overflow-y: scroll;
}

.main-header .outer-box .category-box:hover .category-list {
    opacity: 1;
    transform: scaleY(1);
    visibility: visible;
}

.main-header .outer-box .category-box .category-list > li {
    position: relative;
    display: block;
}

.main-header .outer-box .category-box .category-list > li:before {
    position: absolute;
    content: "";
    background: transparent;
    top: 0px;
    right: -10px;
    width: 10px;
    height: 100%;
}

.main-header .outer-box .category-box .category-list > li > a {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 26px;
    color: var(--title-color);
    padding: 12px 50px;
    padding-left: 20px;
    border-radius: 50px;
    z-index: 1;
    transition: all 500ms ease;
}

.main-header
    .outer-box
    .category-box
    .category-list
    > li.category-dropdown
    > a:before {
    position: absolute;
    content: "\f105";
    font-family: "Font Awesome 5 Pro";
    top: 12px;
    right: 20px;
    font-weight: 400;
}

.main-header .outer-box .category-box .category-list > li > a:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    opacity: 0;
    z-index: -1;
    border-radius: 50px;
    transition: all 500ms ease;
}

.main-header .outer-box .category-box .category-list > li > a:hover:after {
    opacity: 0.2;
}

.main-header .outer-box .category-box .category-list .list-inner {
    position: absolute;
    left: 100%;
    top: 0px;
    width: 990px;
    background: #fff;
    box-shadow: 0px 0px 10px 0px #00000012;
    border-radius: 5px;
    opacity: 0;
    transform-origin: left center;
    transform: scaleX(0);
    visibility: hidden;
    overflow: hidden;
    padding-right: 280px;
    margin-left: 10px;
    transition: all 500ms ease;
}

.main-header
    .outer-box
    .category-box
    .category-list
    .category-dropdown:hover
    .list-inner {
    transform: scaleX(1);
    visibility: visible;
    opacity: 1;
}

.main-header .outer-box .category-box .list-inner .inner-box {
    position: relative;
    padding: 40px 50px;
    max-height: 320px;
    overflow-x: hidden;
    overflow-y: auto;
}

.main-header .outer-box .category-box .list-inner .inner-box p {
    display: block;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    color: var(--title-color);
    margin-bottom: 15px;
}

.main-header .outer-box .category-box .list-inner .inner-box .single-column {
    position: relative;
    float: left;
    width: 33.333%;
}

.main-header
    .outer-box
    .category-box
    .list-inner
    .inner-box
    .single-column
    ul
    li {
    position: relative;
    display: block;
}

.main-header
    .outer-box
    .category-box
    .list-inner
    .inner-box
    .single-column
    ul
    li
    a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 40px;
    color: var(--title-color);
}

.main-header
    .outer-box
    .category-box
    .list-inner
    .inner-box
    .single-column
    ul
    li
    a:hover {
}

.main-header .outer-box .category-box .list-inner .shop-block {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 280px;
    background: #bfd6ff;
    padding: 30px 15px 40px 30px;
}

.main-header .outer-box .category-box .list-inner .shop-block .title {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    color: var(--title-color);
    margin-bottom: 6px;
}

.main-header .outer-box .category-box .list-inner .shop-block h2 {
    position: relative;
    display: block;
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 6px;
}

.main-header .outer-box .category-box .list-inner .shop-block h2 a {
    position: relative;
    display: inline-block;
    color: var(--title-color);
}

.main-header .outer-box .category-box .list-inner .shop-block h2 a:hover {
}

.main-header .outer-box .category-box .list-inner .shop-block:before {
    position: absolute;
    content: "";
    background-image: url(../../images/shape/shape-1.png);
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background-position: right bottom;
    background-size: cover;
    background-repeat: no-repeat;
}

.main-header .outer-box .category-box .list-inner .shop-block .image {
    position: absolute;
}

.main-header .outer-box .category-box .list-inner .shop-block h4 {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 106px;
    color: #e92530;
    z-index: 1;
}

.main-header .outer-box .category-box .list-inner .shop-block .link {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
    color: var(--title-color);
    background: #fff;
    border-radius: 5px;
    padding: 3.5px 20px;
    z-index: 1;
}

.main-header .outer-box .category-box .list-inner .shop-block .link:hover {
    color: #fff;
}

.main-header .menu-right-content .currency-box .nice-select {
    color: var(--title-color);
}

.main-header .menu-right-content .currency-box .nice-select:before {
    color: var(--title-color);
}

.main-header .menu-right-content {
    position: relative;
    display: flex;
    align-items: center;
}

.main-header .menu-right-content .info-list {
    position: relative;
    display: flex;
    align-items: center;
}

.main-header .menu-right-content .info-list li {
    position: relative;
    display: inline-block;
    margin-right: 20px;
}

.main-header .menu-right-content .info-list li:last-child {
    margin: 0px !important;
}

.main-header .menu-right-content .info-list li a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--title-color);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.main-header .menu-right-content .info-list li a:hover {
    color: #ffac00;
}

.main-header .menu-right-content .info-list li a.shopping-cart {
    padding-right: 12px;
}

.main-header .menu-right-content .info-list li a.shopping-cart span {
    position: absolute;
    display: inline-block;
    width: 19px;
    height: 19px;
    line-height: 19px;
    background: #ffac00;
    text-align: center;
    border-radius: 50%;
    font-size: 12px;
    color: #fff;
    font-weight: 700;
    top: -5px;
    right: 0px;
}

/** main-menu **/

.main-menu {
    float: left;
}

.main-menu .navbar-collapse {
    padding: 0px;
    display: block !important;
}

.main-menu .navigation {
    margin: 0px;
}

.main-menu .navigation > li {
    position: inherit;
    float: left;
    z-index: 2;
    margin: 0px 19px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-menu .navigation > li:last-child {
    margin-right: 0px !important;
}

.main-menu .navigation > li:first-child {
    margin-left: 0px !important;
}

.main-menu .navigation > li > a {
    position: relative;
    display: block;
    text-align: center;
    font-size: 16px;
    line-height: 26px;
    padding-top: 17px;
    padding-bottom: 17px;
    font-weight: 500;
    font-family: var(--text-font);
    opacity: 1;
    color: var(--title-color);
    z-index: 1;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-menu .navigation > li.dropdown > a {
    padding-right: 17px;
}

.main-menu .navigation > li.current > a,
.main-menu .navigation > li:hover > a {
}

.main-menu .navigation > li.dropdown > a:before {
    position: absolute;
    content: "\f107";
    font-family: "Font Awesome 5 Pro";
    top: 17px;
    right: 0px;
    font-weight: 500;
    transition: all 500ms ease;
}

.main-menu .navigation > li > ul,
.main-menu .navigation > li > .megamenu {
    position: absolute;
    left: inherit;
    top: 100%;
    width: 230px;
    margin-top: 15px;
    padding: 15px 30px;
    z-index: 100;
    display: none;
    background: #fff;
    opacity: 0;
    border-bottom: solid;
    border-width: 3px;
    visibility: hidden;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    border-radius: 0px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.main-menu .navigation > li > ul.from-right {
    left: auto;
    right: 0px;
}

.main-menu .navigation > li > ul > li {
    position: relative;
    width: 100%;
}

.main-menu .navigation > li > ul > li > a,
.main-menu .navigation > li > .megamenu li > a {
    position: relative;
    display: block;
    padding: 5px 0px;
    line-height: 24px;
    font-weight: 500;
    font-size: 15px;
    text-transform: capitalize;
    font-family: var(--text-font);
    color: var(--title-color);
    text-align: left;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.main-menu .navigation > li > .megamenu li > a {
    padding-left: 0px;
}

.main-menu .navigation > li > .megamenu h4 {
    display: block;
    font-size: 20px;
    line-height: 30px;
    color: #ffffff;
}

.main-menu .navigation > li > ul > li > a:hover,
.main-menu .navigation > li > .megamenu li > a:hover {
    letter-spacing: 1px;
}

.main-menu .navigation > li > ul > li:last-child > a,
.main-menu .navigation > li > .megamenu li:last-child > a {
    border-bottom: none;
}

.main-menu .navigation > li > ul > li.dropdown > a:after {
    font-family: "Font Awesome 5 Pro";
    content: "\f105";
    position: absolute;
    right: 20px;
    top: 10px;
    display: block;
    line-height: 24px;
    font-size: 16px;
    font-weight: 800;
    text-align: center;
    z-index: 5;
}

.main-menu .navigation > li > ul > li > ul {
    position: absolute;
    left: 100%;
    top: 0%;
    margin-top: 15px;
    background: var(--secondary-color);
    border-top: solid;
    border-width: 2px;
    width: 230px;
    z-index: 100;
    display: none;
    border-radius: 0px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.main-menu .navigation > li > ul > li > ul.from-right {
    left: auto;
    right: 0px;
}

.main-menu .navigation > li > ul > li > ul > li {
    position: relative;
    width: 100%;
}

.main-menu .navigation > li > ul > li > ul > li:last-child {
    border-bottom: none;
}

.main-menu .navigation > li > ul > li > ul > li > a {
    position: relative;
    display: block;
    padding: 10px 25px;
    line-height: 24px;
    font-weight: 500;
    font-size: 15px;
    text-transform: capitalize;
    font-family: var(--text-font);
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.main-menu .navigation > li > ul > li > ul > li:last-child > a {
    border-bottom: none;
}

.main-menu .navigation > li > ul > li > ul > li > a:hover {
    padding-left: 35px;
}

.main-menu .navigation > li > ul > li > ul > li.dropdown > a:after {
    font-family: "Font Awesome 5 Pro";
    content: "\f105";
    position: absolute;
    right: 20px;
    top: 12px;
    display: block;
    line-height: 24px;
    font-size: 16px;
    font-weight: 900;
    z-index: 5;
}

.main-menu .navigation > li.dropdown:hover > ul,
.main-menu .navigation > li.dropdown:hover > .megamenu {
    visibility: visible;
    opacity: 1;
    margin-top: 0px;
    top: 100%;
}

.main-menu .navigation li > ul > li.dropdown:hover > ul {
    visibility: visible;
    opacity: 1;
    top: 0%;
    margin-top: 0px;
}

.main-menu .navigation li.dropdown .dropdown-btn {
    position: absolute;
    right: -32px;
    top: 66px;
    width: 34px;
    height: 30px;
    text-align: center;
    font-size: 18px;
    line-height: 26px;
    color: #3b3b3b;
    cursor: pointer;
    display: none;
    z-index: 5;
    transition: all 500ms ease;
}

.main-menu .navigation li.current.dropdown .dropdown-btn,
.main-menu .navigation li:hover .dropdown-btn {
}

.main-menu .navigation li.dropdown ul li.dropdown .dropdown-btn {
    display: none;
}

.menu-area .mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 40px;
    line-height: 50px;
    cursor: pointer;
    background: var(--theme-color);
    display: none;
}

.mobile-menu .nav-logo img {
    /* max-width: 160px; */
    height: 45px;
}

.menu-area .mobile-nav-toggler .icon-bar {
    position: relative;
    height: 2px;
    width: 30px;
    display: block;
    margin-bottom: 5px;
    background-color: #fff;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.menu-area .mobile-nav-toggler .icon-bar:last-child {
    margin-bottom: 0px;
}

/** megamenu-style **/

.main-menu .navigation > li.dropdown > .megamenu {
    position: absolute;
    width: 100%;
    padding: 30px;
    left: 0px;
}

.main-menu .navigation li.dropdown .megamenu li h4 {
    margin-bottom: 10px;
}

/** mobile-menu **/

.nav-outer .mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 40px;
    line-height: 50px;
    cursor: pointer;
    color: #3786ff;
    display: none;
}

.mobile-menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 300px;
    padding-right: 30px;
    max-width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
    transition: all 900ms ease;
}

.mobile-menu .navbar-collapse {
    display: block !important;
}

.mobile-menu .nav-logo {
    position: relative;
    padding: 50px 25px;
    text-align: left;
    padding-bottom: 100px;
}

.mobile-menu-visible {
    overflow: hidden;
}

.mobile-menu-visible .mobile-menu {
    opacity: 1;
    visibility: visible;
}

.mobile-menu .menu-backdrop {
    position: fixed;
    left: 0%;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: all 900ms ease;
    background-color: #000;
}

.mobile-menu-visible .mobile-menu .menu-backdrop {
    opacity: 0.7;
    visibility: visible;
    right: 100%;
    -webkit-transition: all 0.8s ease-out 0s;
    -o-transition: all 0.8s ease-out 0s;
}

.mobile-menu .menu-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    background: #141417;
    padding: 0px 0px;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    border-radius: 0px;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    transition: all 900ms ease !important;
}

.mobile-menu-visible .mobile-menu .menu-box {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.mobile-menu .close-btn {
    position: absolute;
    right: 25px;
    top: 10px;
    line-height: 30px;
    width: 24px;
    text-align: center;
    font-size: 18px;
    color: #ffffff;
    cursor: pointer;
    z-index: 10;
}

.mobile-menu .navigation {
    position: relative;
    display: block;
    width: 100%;
    float: none;
}

.mobile-menu .navigation li {
    position: relative;
    display: block;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .navigation:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .navigation li > ul > li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .navigation li > a {
    position: relative;
    display: block;
    line-height: 24px;
    padding: 10px 25px;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.mobile-menu .navigation li ul li > a {
    font-size: 16px;
    margin-left: 20px;
    text-transform: capitalize;
}

.mobile-menu .navigation li > a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 0;
    border-left: 5px solid #fff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.mobile-menu .navigation li.current > a:before {
    height: 100%;
}

.mobile-menu .navigation li.dropdown .dropdown-btn {
    position: absolute;
    right: 6px;
    top: 6px;
    width: 32px;
    height: 32px;
    text-align: center;
    font-size: 16px;
    line-height: 32px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    border-radius: 2px;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 5;
}

.mobile-menu .navigation li.dropdown .dropdown-btn.open {
    color: #ffffff;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.mobile-menu .navigation li > ul,
.mobile-menu .navigation li > ul > li > ul,
.mobile-menu .navigation > li.dropdown > .megamenu {
    display: none;
}

.mobile-menu .social-links {
    position: relative;
    padding: 0px 25px;
}

.mobile-menu .social-links li {
    position: relative;
    display: inline-block;
    margin: 0px 10px 10px;
}

.mobile-menu .social-links li a {
    position: relative;
    line-height: 32px;
    font-size: 16px;
    color: #ffffff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.mobile-menu .social-links li a:hover {
}

div#mCSB_1_container {
    top: 0px !important;
}

.mobile-menu .contact-info {
    position: relative;
    padding: 120px 30px 20px 30px;
}

.mobile-menu .contact-info h4 {
    position: relative;
    font-size: 20px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 20px;
}

.mobile-menu .contact-info ul li {
    position: relative;
    display: block;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3px;
}

.mobile-menu .contact-info ul li a {
    color: rgba(255, 255, 255, 0.8);
}

.mobile-menu .contact-info ul li a:hover {
}

.mobile-menu .contact-info ul li:last-child {
    margin-bottom: 0px;
}

/** header-style-two **/

.header-style-two .header-upper {
    background: #fff;
    border-bottom: 1px solid #e2e2e2;
}

.header-style-two .header-upper .search-area {
    background: #f0f0f0;
    border-radius: 5px;
}

.header-style-two
    .header-upper
    .search-area
    .search-box
    .form-group
    button[type="submit"] {
    background: transparent;
    width: 16px;
    height: 16px;
    right: 20px;
    color: var(--title-color);
}

.header-style-two
    .header-upper
    .search-area
    .search-box
    .form-group
    input:focus
    + button,
.header-style-two
    .header-upper
    .search-area
    .search-box
    .form-group
    button:hover {
}

.header-style-two .language-picker__flag.language-picker__label,
.header-style-two .language-picker__button:before,
.header-style-two .nice-select,
.header-style-two .nice-select:before {
    color: var(--title-color);
}

.header-style-two .header-upper .support-box a {
}

.header-style-two .header-upper .support-box .icon-box {
}

.header-style-two .header-upper .support-box p {
    color: var(--title-color);
}

.header-style-two .outer-box .category-box {
    top: 0px;
    border-radius: 5px;
}

.header-style-two .outer-box .category-box .text {
    color: #fff;
}

.header-style-two .main-menu .navigation > li > a {
    padding-top: 22px;
    padding-bottom: 22px;
}

.header-style-two .main-menu .navigation > li.dropdown > a:before {
    top: 22px;
}

.main-header .menu-area {
    position: relative;
    display: flex;
    align-items: center;
}

.main-header .menu-area .text a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    text-transform: uppercase;
}

.main-header .menu-area .text a:hover {
    text-decoration: underline;
}

.header-style-two.main-header
    .menu-right-content
    .info-list
    li
    a.shopping-cart
    span {
}

/** header-style-three **/

.header-style-three {
    position: relative;
}

.header-top {
    position: relative;
    width: 100%;
    padding: 15px 0px;
}

.header-top .top-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 255px;
}

.header-top .logo-box {
    position: absolute;
    left: 0px;
    top: -15px;
    width: 220px;
    height: 180px;
    line-height: 180px;
    background: #fff;
    text-align: center;
    box-shadow: 0px 4px 34px 0px rgba(0, 0, 0, 0.08);
    z-index: 1;
}

.header-top .location-box {
    position: relative;
    padding-left: 27px;
}

.header-top .location-box .icon-box {
    position: absolute;
    left: 0px;
    top: 4px;
    font-size: 20px;
    color: #fff;
}

.header-top .location-box .nice-select {
    font-size: 16px;
    text-transform: capitalize;
}

.header-top .location-box .nice-select .list {
    min-width: 140px;
}

.header-top .search-box {
    position: relative;
    width: 300px;
}

.header-top .search-box .form-group {
    position: relative;
    margin-bottom: 0px;
}

.header-top .search-box .form-group input[type="search"] {
    position: relative;
    display: block;
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 15px;
    color: #fff;
    border-bottom: solid;
    border-width: 1px;
    border-color: rgba(255, 255, 255, 0.5);
    padding-right: 40px;
    transition: all 500ms ease;
}

.header-top .search-box .form-group input:focus {
    border-color: #fff;
}

.header-top .search-box .form-group button[type="submit"] {
    position: absolute;
    top: 6px;
    right: 0px;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    transition: all 500ms ease;
}

.main-header .header-top .menu-right-content .info-list > li > a {
    color: #fff;
}

.header-style-three .header-lower {
    display: none !important;
}

.main-header .menu-right-content .info-list li .mobile-nav-toggler {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
}

.header-style-three
    .header-top
    .menu-right-content
    .info-list
    li
    a.shopping-cart
    span {
    background: #fff;
}

.header-bottom {
    position: relative;
    width: 100%;
    background: #fff;
    box-shadow: 0px 4px 4px 0px #0000000d;
}

.header-bottom .bottom-inner {
    position: relative;
    padding-left: 255px;
}

.header-bottom .bottom-inner .category-box .text {
    position: relative;
    display: inline-block;
    font-size: 20px;
    cursor: pointer;
    color: var(--title-color);
    display: none;
    transition: all 500ms ease;
}

.header-bottom .bottom-inner .category-box .text:hover {
}

.header-bottom .bottom-inner .category-list > li {
    position: relative;
    display: inline-block;
    float: left;
    cursor: pointer;
    padding: 16px 40.9px;
    border-right: 1px solid #efefef;
}

.header-bottom .bottom-inner .category-list > li .name {
    position: relative;
    display: inline-block;
    padding-left: 33px;
}

.header-bottom .bottom-inner .category-list > li .name .icon-box {
    position: absolute;
    left: 0px;
    top: 0px;
}

.header-bottom .bottom-inner .category-list > li .name p {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 500ms ease;
}

.header-bottom .bottom-inner .category-list > li > ul {
    position: absolute;
    left: 0px;
    top: 100%;
    width: 230px;
    margin-top: 15px;
    padding: 15px 30px;
    z-index: 100;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    border-radius: 0px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.header-bottom .bottom-inner .category-list > li:hover > ul {
    visibility: visible;
    opacity: 1;
    margin-top: 0px;
    top: 100%;
}

.header-bottom .bottom-inner .category-list > li > ul > li {
    position: relative;
    display: block;
}

.header-bottom .bottom-inner .category-list > li > ul > li a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 30px;
    color: var(--title-color);
    opacity: 0.5;
}

.header-bottom .bottom-inner .category-list > li > ul > li a:hover {
    opacity: 1;
}

/** header-top-two **/

.header-top-two {
    position: relative;
    padding: 12px 0px;
}

.header-top-two .top-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-top-two .info-list {
    position: relative;
    display: flex;
    align-items: center;
}

.header-top-two .info-list li {
    position: relative;
    display: inline-block;
    padding-left: 22px;
    font-size: 14px;
    line-height: 16px;
    margin-right: 30px;
}

.header-top-two .info-list li:last-child {
    margin-right: 0px;
}

.header-top-two .info-list li i {
    position: absolute;
    left: 0px;
    top: 0px;
    font-size: 16px;
}

.header-top-two .info-list:last-child li {
    padding-left: 26px;
}

.header-top-two .info-list:last-child li i {
    font-size: 20px;
    top: -2px;
}

.header-top-two .info-list li a {
    display: inline-block;
    color: var(--title-color);
}

.header-top-two .info-list li a:hover {
}

.header-top-two .text p {
    font-size: 14px;
    line-height: 16px;
}

.header-top-two .text p span {
    font-weight: 600;
}

.header-style-four .location-box {
    position: relative;
}

.header-style-four .location-box .select-box {
    min-height: 50px;
}

.header-style-four .location-box .nice-select {
    position: relative;
    display: block;
    height: 50px;
    line-height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding-left: 48px;
    padding-right: 35px;
    font-size: 16px;
    text-transform: capitalize;
}

.header-style-four .location-box .nice-select:before {
    right: 20px;
}

.header-style-four .location-box .icon-box {
    position: absolute;
    left: 20px;
    top: 14px;
    font-size: 20px;
    color: #fff;
}

.header-style-four
    .header-upper
    .search-area
    .search-box
    .form-group
    button[type="submit"] {
    width: 44px;
    height: 44px;
    line-height: 48px;
    top: 3px;
    right: 3px;
}

.header-style-four
    .header-upper
    .search-area
    .search-box
    .form-group
    input:focus
    + button,
.header-style-four
    .header-upper
    .search-area
    .search-box
    .form-group
    button:hover {
    background: var(--secondary-color) !important;
}

/** header-style-five **/

.header-style-five {
    position: relative;
}

.header-style-five .header-top-two {
    background: var(--secondary-color);
}

.header-style-five .header-top-two .text p {
    color: #fff;
}

.header-style-five .header-top-two .info-list li,
.header-style-five .header-top-two .info-list li a {
    color: #fff;
}

.header-style-five .header-upper {
    background: #fff;
}

.header-style-five .header-upper .search-area {
    border: 1px solid #e5e5e5;
}

.header-style-five
    .header-upper
    .search-area
    .search-box
    .form-group
    button[type="submit"] {
    width: 40px;
    height: 40px;
    line-height: 44px;
    border-radius: 50%;
}

.header-style-five .header-upper .support-box a {
    color: var(--title-color);
}

.header-style-five .header-upper .support-box p {
    color: rgba(106, 106, 106, 1);
}

.header-style-five .header-lower {
}

.header-style-five .outer-box .category-box {
    top: 0px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
}

.header-style-five .outer-box .category-box .text {
    color: #fff;
}

.header-style-five .menu-area .mobile-nav-toggler {
    background: transparent;
}

.header-style-five .main-menu .navigation > li > a {
    color: #fff;
}

.header-style-five .menu-right-content .info-list > li > a {
    width: 40px;
    height: 40px;
    line-height: 44px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 0px !important;
}

.header-style-five .menu-right-content .info-list li {
    margin-right: 10px;
}

.header-style-five .menu-right-content .info-list li:last-child {
    margin: 0px;
}

.header-style-five .menu-right-content .info-list li a:hover {
    background: #fff;
    border-color: #fff;
}

.header-style-five .menu-right-content .info-list li a.shopping-cart span {
    top: 0px;
    right: -9px;
}

.header-style-five .menu-right-content .currency-box .nice-select,
.header-style-five .menu-right-content .currency-box .nice-select:before {
    color: #fff;
}

/** header-style-six **/

.header-style-six {
    position: relative;
}

.header-style-six .header-top-two .right-column {
    position: relative;
    display: flex;
    align-items: center;
}

.header-style-six .language-picker__flag.language-picker__label,
.header-style-six .language-picker__button:before,
.header-style-six .header-top-two .right-column .nice-select,
.header-style-six .header-top-two .right-column .nice-select:before {
    color: var(--title-color);
}

.header-style-six .header-top-two .right-column .currency-box {
    position: relative;
    padding-left: 25px;
}

.header-style-six .header-top-two .right-column .currency-box .icon-box {
    position: absolute;
    left: 0px;
    top: 4px;
}

.header-style-six .header-top-two {
    border-bottom: 1px solid #e2e2e2;
    padding-top: 6px;
    padding-bottom: 6px;
}

.header-style-six .outer-box .left-column,
.header-style-six .outer-box .right-column {
    position: relative;
    display: flex;
    align-items: center;
}

.header-style-six .outer-box .right-column .search-form {
    position: relative;
    width: 370px;
}

.header-style-six .outer-box .right-column .search-form .form-group {
    position: relative;
    margin-bottom: 0px;
}

.header-style-six
    .outer-box
    .right-column
    .search-form
    .form-group
    input[type="search"] {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    border: solid;
    border-width: 1px;
    border-color: #e5e5e5;
    border-radius: 50px;
    font-size: 15px;
    color: var(--title-color);
    padding: 10px 20px;
    padding-right: 60px;
    transition: all 500ms ease;
}

.header-style-six
    .outer-box
    .right-column
    .search-form
    .form-group
    input:focus {
}

.header-style-six
    .outer-box
    .right-column
    .search-form
    .form-group
    button[type="submit"] {
    position: absolute;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    font-size: 16px;
    color: #fff;
    top: 5px;
    right: 5px;
}

.header-style-six .main-menu .navigation > li > a {
    padding-top: 27px;
    padding-bottom: 27px;
}

.header-style-six .main-menu .navigation > li.dropdown > a:before {
    top: 27px;
}

/** header-style-seven **/

.header-style-seven {
    position: relative;
}

.header-style-seven .header-top-two {
    border-bottom: none;
}

.header-style-seven .header-top-two .info-list li,
.header-style-seven .header-top-two .info-list li a,
.header-style-seven .language-picker__flag.language-picker__label,
.header-style-seven .language-picker__button:before,
.header-style-seven .header-top-two .right-column .nice-select,
.header-style-seven .header-top-two .right-column .nice-select:before {
    color: #fff;
}

.header-style-seven .header-top-two .info-list li a:hover {
    text-decoration: underline;
}

.header-style-seven .outer-box .right-column .search-form {
    width: 300px;
}

.header-style-seven
    .outer-box
    .right-column
    .search-form
    .form-group
    input[type="search"] {
    border-radius: 0px;
    border: none;
    border-bottom: 1px solid #e5e5e5;
    padding-left: 0px;
}

.header-style-seven
    .outer-box
    .right-column
    .search-form
    .form-group
    button[type="submit"] {
    background: transparent;
    color: var(--title-color);
    width: 16px;
    height: 16px;
    line-height: 16px;
    top: 17px;
}

.header-style-seven .header-lower .pattern-layer .pattern-1 {
    position: absolute;
    left: 0px;
    bottom: -33px;
    width: 100%;
    height: 153px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.header-style-seven .header-lower .pattern-layer .pattern-2 {
    position: absolute;
    left: 0px;
    bottom: -33px;
    width: 100%;
    height: 163px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

/** header-style-eight **/

.header-style-eight {
    position: relative;
}

.header-style-eight .header-top-two {
}

.header-style-eight .header-top-two .info-list li,
.header-style-eight .header-top-two .info-list li a {
    color: #fff;
}

.header-style-eight .header-top-two .info-list li a:hover {
    text-decoration: underline;
}

.header-style-eight .header-top-two .text p {
    color: #fff;
}

.header-style-eight .header-top-two .right-column {
    position: relative;
    display: flex;
    align-items: center;
}

.header-style-eight .header-top-two .right-column .currency-box {
    position: relative;
    padding-left: 25px;
}

.header-style-eight .header-top-two .right-column .currency-box .icon-box {
    position: absolute;
    left: 0px;
    top: 4px;
}

.header-style-eight .header-upper {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
}

.header-style-eight
    .header-upper
    .search-area
    .search-box
    .form-group
    input[type="search"] {
    border-radius: 5px;
    border: 1px solid #e5e5e5;
}

.header-style-eight
    .header-upper
    .search-area
    .search-box
    .form-group
    button[type="submit"] {
    background: transparent;
    color: var(--title-color);
}

.header-style-eight .header-upper .support-box .icon-box,
.header-style-eight .header-upper .support-box a {
    color: #f4c850;
}

.header-style-eight .header-upper .support-box p {
    color: var(--title-color);
}

.header-style-eight .outer-box .category-box {
    top: 0px;
    border: none;
    border-radius: 50px;
    width: 250px;
}

.header-style-eight .outer-box .category-box .text {
    color: #fff;
}

.header-style-eight .main-menu .navigation > li > a {
    padding-top: 22px;
    padding-bottom: 22px;
}

.header-style-eight .main-menu .navigation > li.dropdown > a:before {
    top: 22px;
}

/** header-style-nine **/

.header-style-nine {
    position: relative;
}

.header-style-nine .header-upper {
    background: transparent;
}

.header-style-nine .header-upper .search-area {
    width: 300px;
}

.header-style-nine
    .header-upper
    .search-area
    .search-box
    .form-group
    input[type="search"] {
    border-bottom: 1px solid #e5e5e5;
    padding-left: 0px;
    border-radius: 0px;
}

.header-style-nine
    .header-upper
    .search-area
    .search-box
    .form-group
    button[type="submit"] {
    background: transparent;
    color: var(--title-color);
    width: auto;
}

.header-style-nine .header-upper .menu-right-content .info-list li {
    margin-right: 10px;
}

.header-style-nine .header-upper .menu-right-content .info-list li:last-child {
    margin: 0px !important;
}

.header-style-nine .header-upper .menu-right-content .info-list > li > a {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: solid;
    border-width: 1px;
    border-color: rgba(17, 17, 17, 0.1);
    text-align: center;
    padding-right: 0px;
}

.header-style-nine .header-upper .menu-right-content .info-list > li > a:hover {
    color: #fff;
    background: #ffac00;
    border-color: #ffac00;
}

.header-style-nine .header-upper .menu-right-content .info-list > li > a span {
    top: -8px;
    right: -8px;
    background: #efca8a;
    color: var(--title-color);
}

.header-style-nine .outer-box {
    justify-content: center;
}

.header-style-nine .header-lower {
    background: var(--secondary-color);
}

.header-style-nine .main-menu .navigation > li > a {
    color: #fff;
    padding-right: 0px;
}

.header-style-nine .main-menu .navigation > li > a:before {
    display: none;
}

.header-style-nine .main-menu .navigation > li {
    position: relative;
    margin: 0px 70px;
}

.header-style-nine .main-menu .navigation > li:before {
    position: absolute;
    content: "";
    background: #efefef;
    width: 1px;
    height: 20px;
    top: 20px;
    right: -70px;
}

.header-style-nine .main-menu .navigation > li:last-child:before {
    display: none;
}

.header-style-nine .sticky-header {
    background: var(--secondary-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/** header-style-ten **/

.header-style-ten {
    position: relative;
}

.header-style-ten .header-top-two {
    background: #531dc1;
    border-bottom: solid;
    border-width: 1px;
    border-color: rgba(255, 255, 255, 0.1);
}

.header-style-ten .header-top-two .info-list li,
.header-style-ten .header-top-two .info-list li a,
.header-style-ten .header-top-two .text p {
    color: #fff;
}

.header-style-ten .header-top-two .info-list li a:hover {
}

.header-style-ten .header-upper {
    background: #531dc1;
}

/** rtl-css **/

.rtl .language-picker {
    margin-right: 0px;
    margin-left: 40px;
}

.rtl .header-upper .search-area .category-inner .nice-select {
    border-right: none;
    border-left: 1px solid #e5e5e5;
}

.rtl .nice-select .option {
    text-align: right;
}

.rtl .main-header .menu-right-content .currency-box {
    margin-right: 0px;
    margin-left: 40px;
}

.rtl .main-header .menu-right-content .info-list li {
    margin-right: 0px;
    margin-left: 20px;
}

.rtl .cart-menu {
    right: inherit;
    left: 0px;
}

.rtl .main-header .outer-box .category-box .text {
    padding-left: 0px;
    padding-right: 28px;
}

.rtl .main-header .outer-box .category-box {
    left: inherit;
    right: 0px;
}

.rtl .main-header .outer-box .category-box .category-list .list-inner {
    left: inherit;
    right: 100%;
    margin-left: 0px;
    margin-right: 10px;
    transform-origin: right center;
}

.rtl .main-header .outer-box .category-box .category-list > li:before {
    right: inherit;
    left: -10px;
}

.rtl
    .main-header
    .outer-box
    .category-box
    .category-list
    > li.category-dropdown
    > a:before {
    right: inherit;
    left: 15px;
    transform: rotate(180deg);
}

.rtl .main-header .outer-box .category-box .list-inner .shop-block .image {
    right: inherit;
    left: 10px;
}

.rtl .header-style-two .currency-box {
    margin-right: 0px;
    margin-left: 40px;
}

.rtl .main-header .menu-area .text a {
    margin-left: 0px;
    margin-right: 45px;
}

.rtl .header-bottom .bottom-inner .category-list > li {
    float: right;
}

.rtl .header-upper .right-column .currency-box {
    margin-right: 0px;
    margin-left: 40px;
}

.rtl .header-top-two .info-list li {
    margin-right: 0px;
    margin-left: 30px;
}

.rtl .header-top-two .info-list li:last-child {
    margin: 0px;
}

.rtl .header-style-six .outer-box .right-column .search-form {
    margin-right: 0px;
    margin-left: 70px;
}

.rtl .header-style-six .language-picker {
    margin-left: 0px;
}

.rtl .header-style-six .logo-box {
    margin-right: 0px;
    margin-left: 110px;
}

/** responsive-css **/

@media only screen and (max-width: 1349px) {
    .header-upper .search-area {
        width: 500px;
    }

    .header-bottom .bottom-inner .category-list > li {
        padding: 11px 10px;
        width: 16.666%;
    }

    .header-style-six .outer-box .right-column .search-form {
        display: none;
    }
}

@media only screen and (max-width: 1200px) {
    .main-header
        .outer-box
        .category-box
        .list-inner
        .inner-box
        .single-column {
        width: 100%;
    }

    .main-header .outer-box .category-box .category-list .list-inner {
        width: 600px;
    }

    .main-header .outer-box .category-box .text:before {
        display: none;
    }

    .main-header .outer-box .category-box .text span {
        display: none;
    }

    .main-header .outer-box .category-box {
        padding: 0px;
        width: 30px;
        height: 30px;
        line-height: 30px;
        border: 1px solid #e6e6e6;
        top: 0px;
        border-radius: 0px;
        text-align: center;
    }

    .main-header .outer-box .category-box .text i {
        position: relative;
        top: 0px;
        display: inline-block;
    }

    .main-header .outer-box .category-box .text {
        padding: 0px !important;
        line-height: 30px;
    }

    .main-header .header-lower {
        padding: 15px 0px;
    }

    .header-style-four .location-box {
        display: none;
    }

    .header-top-two .top-inner {
        display: block;
        text-align: center;
    }

    .header-top-two .info-list {
        justify-content: center;
    }

    .header-top-two .text {
        margin: 15px 0px;
    }

    .header-style-six .header-top-two .right-column {
        justify-content: center;
    }

    .header-style-eight .header-top-two .right-column {
        justify-content: center;
    }
}

@media only screen and (max-width: 1024px) {
    .main-header .outer-box .category-box {
        display: none;
    }
}
@media only screen and (max-width: 991px) {
    .main-header .outer-box .category-box .category-list .list-inner {
        width: 280px;
        padding-right: 0px;
        overflow-x: hidden;
        overflow-y: auto;
        max-height: 300px;
    }

    .main-header .outer-box .category-box .list-inner .shop-block {
        position: relative;
        width: 100%;
    }

    .language-picker {
        display: none;
    }

    .header-upper .search-area {
        width: 360px;
    }

    .main-header .menu-area .text {
        display: none;
    }

    .header-top .top-inner {
        padding-left: 0px;
    }

    .header-top .logo-box {
        display: none;
    }

    .header-bottom .bottom-inner {
        padding-left: 0px;
    }
}

@media only screen and (max-width: 767px) {
    .header-upper .upper-inner {
        display: block;
        text-align: center;
    }

    .header-upper .search-area {
        margin: 0 auto;
    }

    .header-upper .right-column {
        display: none;
    }

    .main-header .menu-right-content .currency-box {
        display: none;
    }

    .header-upper .upper-inner .logo-box {
        margin-bottom: 15px;
    }

    .header-top .search-box {
        width: 200px;
    }

    .header-bottom .bottom-inner .category-box .text {
        display: block;
    }

    .header-bottom .bottom-inner .category-list {
        display: none;
    }

    .header-style-seven .header-lower .pattern-layer {
        display: none;
    }

    .header-style-nine .menu-right-content {
        justify-content: center;
    }

    .header-style-nine .header-upper .search-area {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 599px) {
    .main-header .outer-box .category-box .category-list .list-inner {
        left: 0px;
        top: 50px;
        z-index: 2;
        transform-origin: top center;
        transform: scaleY(0);
    }

    .main-header
        .outer-box
        .category-box
        .category-list
        .category-dropdown:hover
        .list-inner {
        transform: scaleY(1);
    }

    .rtl .main-header .outer-box .category-box .category-list .list-inner {
        left: 0px;
        right: 0px;
        margin-bottom: 0px;
        transform-origin: top center;
    }

    .header-top .location-box {
        display: none;
    }

    .header-style-six .outer-box .logo-box {
        margin-right: 30px;
    }
}

@media only screen and (max-width: 499px) {
    .main-header .outer-box .category-box .category-list > li > a {
        padding: 12px 20px;
    }

    .header-upper .search-area .search-box .form-group {
        width: 100%;
    }

    .header-upper .search-area .category-inner {
        width: 100%;
    }

    .header-upper .search-area .category-inner .nice-select {
        border: none;
        width: 100%;
    }

    .header-upper .search-area {
        display: block;
        width: 100%;
    }

    .header-upper .search-area .category-inner .nice-select {
        text-align: left;
        border: none !important;
    }

    .rtl .header-upper .search-area .category-inner .nice-select {
        text-align: right;
    }

    .header-upper .search-area {
        border-radius: 10px;
    }

    .header-top .search-box {
        width: 130px;
    }

    .header-top .search-box .form-group input[type="search"] {
        padding-right: 30px;
    }

    .header-top-two .info-list {
        display: block;
    }

    .header-style-six .outer-box .logo-box {
        display: none;
    }
}

.brands-megamenu-container {
    background: #fff;
    z-index: 999;
    max-height: 450px;
    overflow-y: auto;
    overflow-x: hidden;
}

.brand-link-card {
    height: 100%;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.brand-link-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-color: #ff4a4a;
}

.brand-link-card:hover h6 {
    color: #ff4a4a !important;
}

.megamenu.brands-megamenu-container .row {
    --bs-gutter-x: 15px;
}

@media (min-width: 992px) {
    .brands-megamenu-container {
        position: absolute;
        width: 900px;
        left: 50%;
        transform: translateX(-40%);
        padding: 30px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        border-top: 2px solid #ff4a4a;
        border-radius: 0 0 8px 8px;
    }
}

@media (max-width: 991px) {
    .brands-megamenu-container {
        position: relative;
        width: 100%;
        left: 0;
        transform: none;
        padding: 15px;
        border-top: 1px solid #eaeaea;
        max-height: 350px;
    }
}

@media only screen and (max-width: 600px) {
    .megamenu.brands-megamenu-container .row {
        --bs-gutter-x: 10px;
    }
}

@media (min-width: 992px) {
    .categories-megamenu-container {
        left: auto;
        right: 0;
        transform: none;
    }
}

/* =============================================
   UPPER ICON LIST  (icons in header-upper)
   ============================================= */

.upper-icon-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.upper-icon-list li {
    position: relative;
}

.upper-icon-list li a {
    position: relative;
    display: inline-block;
    font-size: 22px;
    color: #fff;
    line-height: 1;
    transition: color 0.3s;
}

.upper-icon-list li a:hover {
    color: #ffac00;
}

/* Cart badge */
.upper-icon-list li a.shopping-cart {
    padding-right: 14px;
}

.upper-icon-list li a.shopping-cart > span {
    position: absolute;
    top: -6px;
    right: 0;
    width: 19px;
    height: 19px;
    line-height: 19px;
    background: #ffac00;
    text-align: center;
    border-radius: 50%;
    font-size: 11px;
    color: #fff;
    font-weight: 700;
}

/* Username text styling */
.upper-icon-list .user-name-text {
    font-size: 15px;
    font-weight: 600;
    vertical-align: middle;
    margin-left: 4px;
}

/* Login button */
.upper-icon-list .header-user-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Desktop: search area flexible width so right-column always fits */
.header-upper .search-area {
    flex: 1 1 auto;
    max-width: 810px;
    min-width: 0;
}

/* =============================================
   MOBILE HAMBURGER
   ============================================= */

.mobile-hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    text-decoration: none !important;
    flex-shrink: 0;
}

.mobile-hamburger-btn .hbg-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Search-row toggle: hidden on desktop */
.upper-search-toggle {
    display: none;
}

/* =============================================
   MOBILE HEADER  (≤ 1200px)
   ============================================= */

@media (max-width: 1200px) {
    /* Hide nav bar and sticky header */
    .main-header .header-lower,
    .sticky-header {
        display: none !important;
    }

    /* ── 2-row layout for header-upper ── */
    .header-upper {
        padding: 10px 0;
    }

    .header-upper .upper-inner {
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    /* Row 1 – Logo: left */
    .header-upper .logo-box {
        flex: 0 0 auto;
        order: 1;
        margin-right: 0;
    }

    .header-upper .logo-box img {
        max-height: 45px;
        width: auto;
    }

    /* Row 1 – Right column: icons, pushed to the right */
    .header-upper .right-column {
        flex: 0 0 auto;
        order: 2;
        margin-left: auto;
    }

    /* Hide phone support */
    .header-upper .support-box {
        display: none;
    }

    /* Row 2 – Search: grows to fill width minus toggle button */
    .header-upper .search-area {
        order: 3;
        flex: 1 1 0;
        width: auto;
        max-width: none;
        min-width: 0;
        margin-top: 10px;
        border-radius: 8px;
    }

    /* Hide category select in search on mobile (saves space) */
    .header-upper .search-area .category-inner {
        display: none;
    }

    /* Row 2 – Hamburger: right end of search row */
    .upper-search-toggle {
        order: 4;
        display: flex;
        align-items: center;
        flex-shrink: 0;
        margin-top: 10px;
        margin-left: 10px;
    }

    /* Smaller icon gap on mobile */
    .upper-icon-list {
        gap: 14px;
    }

    /* Hide username + arrow on mobile — icon only */
    .upper-icon-list .user-name-text,
    .upper-icon-list .user-arrow {
        display: none !important;
    }

    /* Slightly smaller font */
    .upper-icon-list li a {
        font-size: 20px;
    }

    /* User dropdown: position from right */
    .upper-icon-list .user-dropdown-menu {
        top: calc(100% + 8px);
        right: 0;
        left: auto;
    }

    .upper-icon-list .user-dropdown-menu a,
    .upper-icon-list .user-dropdown-menu button {
        color: var(--title-color) !important;
    }
}

@media (max-width: 575px) {
    .header-upper .large-container {
        padding: 0 12px;
    }

    .upper-icon-list {
        gap: 10px;
    }

    .upper-icon-list li a {
        font-size: 18px;
    }
    .header-upper .search-area .search-box .form-group input[type="search"] {
        height: 40px;
    }
    .header-upper .search-area .search-box .form-group button[type="submit"] {
        width: 53px;
        height: 30px;
        line-height: 35px;
    }
}

/* =============================================
   BOTTOM NAVIGATION  (mobile only)
   ============================================= */

.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9990;
    background: #fff;
    border-top: 1px solid #ebebeb;
    box-shadow: 0 -3px 20px rgba(0, 0, 0, 0.09);
    height: 60px;
    align-items: stretch;
}

.mbn-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    color: #9a9a9a;
    gap: 3px;
    padding: 6px 2px 4px;
    position: relative;
    transition: color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.mbn-item:hover,
.mbn-item.mbn-active {
    color: var(--theme-color);
}

.mbn-item.mbn-active::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 3px;
    background: var(--theme-color);
    border-radius: 0 0 3px 3px;
}

.mbn-icon {
    position: relative;
    line-height: 1;
}

.mbn-icon i {
    font-size: 20px;
    display: block;
    transition: transform 0.2s ease;
}

.mbn-item.mbn-active .mbn-icon i {
    transform: translateY(-1px);
}

.mbn-label {
    font-size: 10px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.2px;
}

.mbn-icon--badge {
    position: relative;
}

.mbn-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background: var(--theme-color);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    border-radius: 50%;
    padding: 0 2px;
}
@media (max-width: 1200px) {
    .mobile-bottom-nav {
        display: flex;
    }
    body {
        padding-bottom: 60px;
    }
    .scroll-to-top {
        bottom: 72px !important;
    }
}

@media (min-width: 768px) and (max-width: 1200px) {
    .header-upper .upper-inner {
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }
    .header-upper .upper-search-toggle {
        display: none !important;
    }
    .header-upper .search-area {
        margin: 0;
    }
    .header-upper .mh-2nd-row {
        order: 2;
    }
    .header-upper .right-column {
        order: 3;
        margin: 0 !important;
    }
}

@media (min-width: 1200px) {
    .right-column .upper-icon-list {
        display: none !important;
    }
}
/* =============================================
   HEADER SEARCH MODAL
   ============================================= */

.header-search-modal .modal-content {
    border-radius: 14px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.header-search-modal .modal-header {
    padding: 20px 24px 12px;
    border-bottom: none;
}

.header-search-modal .modal-body {
    padding: 0 24px 24px;
}

.search-modal-group {
    display: flex;
    align-items: center;
    border: 2px solid var(--theme-color);
    border-radius: 50px;
    overflow: hidden;
    background: #fff;
}

.search-modal-select {
    border: none;
    outline: none;
    padding: 13px 16px;
    font-size: 14px;
    color: var(--title-color);
    background: #f5f5f5;
    border-right: 1px solid #e0e0e0;
    min-width: 140px;
    max-width: 160px;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 28px;
}

.search-modal-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 13px 18px;
    font-size: 15px;
    color: var(--title-color);
    background: transparent;
    min-width: 0;
}

.search-modal-btn {
    background: var(--theme-color);
    color: #fff;
    border: none;
    width: 52px;
    height: 52px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    flex-shrink: 0;
}

.search-modal-btn:hover {
    background: #c0392b;
}

@media (max-width: 576px) {
    .search-modal-select {
        display: none;
    }
}
