.zx-header {
    z-index: 99;
    position: sticky;
    top: -1px;
    background-color: white;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 8px 15px -8px;
}

.zx-header .container .innerp {
    display: flex;
    align-items: center;
    min-height: 80px;
    justify-content: space-between;
    padding: 10px 0;
    position: relative;
}
.zx-header .zx-logo img {
    object-fit: contain;
    max-height: 40px;
}

#wishlist,
#cart_items {
    position: relative;
}

.badges-custom {
    position: absolute;
    top: -8px;
    right: -8px;
}

.zx-header .zx-nav {
    max-width: 1000px;
}
.zx-header .zx-nav .zx-navbar {
    display: flex;
    list-style: none;
    list-style-type: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.zx-header .zx-nav .zx-navbar .zx-nav-link {
    color: black;
    padding: 0 20px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 16px;
}

.zx-header .zx-nav .zx-navbar li .zx-in-items {
    width: 100%;
    background: white;
    height: 400px;
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
    border-top: 1px solid rgb(229, 229, 229);
    padding: 30px;
    z-index: 999;
}
.zx-header .zx-nav .zx-navbar .zx-nav-link::after {
    content: "";
    display: block;
    width: 100%;
    height: 10px;
    position: absolute;
    top: 100%;
}

.zx-header .zx-nav .zx-navbar.hoverable .zx-nav-link:hover ~ .zx-in-items {
    opacity: 1;
    visibility: visible;
}
.zx-header .zx-nav .zx-navbar li.hoverable:hover .zx-in-items {
    opacity: 1;
    visibility: visible;
}

.zx-in-category-area {
    max-height: 140px;
    overflow: auto;
}
.zx-in-category-area::-webkit-scrollbar {
    width: 6px;
}

/* Track */
.zx-in-category-area::-webkit-scrollbar-track {
    background: #f3f3f3;
}

/* Handle */
.zx-in-category-area::-webkit-scrollbar-thumb {
    background: var(--hov-primary);
}

.zx-in-category-area .zx-in-last-category {
    list-style: none;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.zx-in-category-area .zx-in-last-category li a {
    margin-bottom: 6px;
    color: #000;
    font-weight: 400;
    font-size: 13px;
    display: block;
}
.zx-in-item-title {
    font-size: 14px;
    font-weight: 600;
    color: black;
    margin-bottom: 6px;
    display: block;
}

.zx-search-area {
    position: relative;
    padding-bottom: 20px;
}

body:not(.page-home) .theme-main-menu > ul > li > a {
    color: black !important;
}

.theme-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.theme-main-menu > ul {
    display: flex;
    align-items: center;
    list-style: none;

    padding: 0;
    margin: 0;
}

.theme-main-menu > ul > li {
    line-height: 85px;
    padding: 0 12px;
}

.theme-main-menu > ul > li > a {
    position: relative;
    color: white !important;
    overflow: hidden;
}

.theme-main-menu > ul > li > a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: -100%;
    width: 100%;
    height: 1px;
    background: var(--header-text-color);
    transition: 0.4s ease;
    opacity: 0;
}

.theme-main-menu > ul > li > a:hover::after {
    color: var(--header-text-color);
    left: 0;
    opacity: 1;
}

.theme-main-menu .theme-megamenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: auto;
    background-color: white;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 30px 15px;
    overflow-y: auto;
    overflow-x: hidden;
    opacity: 0;
}

@media (min-width: 1200px) {
    .theme-main-menu .theme-megamenu {
        visibility: hidden;
    }
}

.theme-main-menu .theme-megamenu.active {
    opacity: 1;
    visibility: visible !important;
}

.theme-main-menu .theme-megamenu ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.theme-main-menu .theme-megamenu ul li {
    line-height: initial;
    margin-bottom: 6px;
}

.theme-main-menu .theme-megamenu ul li > a {
    font-size: 13px;
    color: black;
}

.theme-main-menu .theme-megamenu ul li > a:hover {
    color: var(--primary);
}

.theme-main-menu .theme-megamenu .category-nav-element > a {
    color: #363636;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
    display: block;
}

/* Header Actions */

.theme-header-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.theme-header-actions .header-action {
    font-size: 24px;
    color: var(--header-text-color) !important;
}

.theme-header-actions .header-action + .header-action {
    margin-left: 15px;
}

/* Header Search */

.theme-search-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: white;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.4s ease;
    transform: translateY(-100%);
    z-index: 99999;
}

.theme-search-container.active {
    opacity: 1;
    visibility: visible;
    pointer-events: initial;
    transform: translateY(0);
}

.theme-search-container .theme-search-container-header {
    display: flex;
    justify-content: space-between;

    width: 100%;
    max-width: 90vw;
    margin-left: auto;
    margin-right: auto;
    padding: 40px 15px;
}

.theme-search-container .theme-search-container-title {
    font-size: 42px;
}

.theme-search-container .theme-search-container-close-btn {
    font-size: 32px;
    cursor: pointer;
}

.theme-search-category-list {
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0;
    padding-bottom: 20px;
}

.theme-search-category-list > li {
    margin-right: 30px;
}

.theme-search-category-list > li > a {
    font-size: 16px;
    white-space: nowrap;
    color: black !important;
    opacity: 0.5;
    transition: 0.4s ease;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    padding-bottom: 5px;
}

.theme-search-category-list > li > a:hover {
    opacity: 1;
}

.theme-search-category-list > li > a.active {
    border-bottom-color: var(--primary);
    opacity: 1;
}

.theme-search-input-group {
    display: flex;
    position: relative;
}

.theme-search-input-group input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #333;
    padding: 20px 20px 20px 40px;
    font-size: 18px;
}

.theme-search-input-group .theme-input-icon {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 28px;
    width: 32px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.theme-search-input-group .theme-input-icon i {
    transform: rotate(270deg);
}

body.theme-search-active {
    overflow: hidden;
}

.theme-search-results {
    overflow-x: hidden;
    overflow-y: visible;
}

@media (min-width: 1200px) {
    .theme-main-menu .dropdown-toggle {
        display: none;
    }

    .theme-main-menu .theme-brand {
        display: none;
    }

    .theme-main-menu .close-btn {
        display: none;
    }
}

@media (max-width: 1200px) {
    .theme-header {
        background: white;
        --header-text-color: black;
    }

    .theme-header .theme-brand {
        padding: 10px 0;
        width: 90px;
    }

    .theme-megamenu > .container {
        padding: 0;
    }

    .theme-main-menu.active {
        left: 0;
    }

    .theme-main-menu > ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .theme-main-menu > ul > li {
        line-height: 40px;
        width: 100%;
        border-bottom: 1px solid #eee;
        padding: 0;
        position: relative;
    }

    .theme-main-menu > ul > li.has-megamenu > .dropdown-toggle {
        font-family: "Line Awesome Free";
        font-weight: 900;
        content: "\f107";
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 24px;
        position: absolute;
        top: 0;
        right: 0;
        height: 50px;
        width: 50px;
        z-index: 999;
        transition: 0.4s ease;
    }

    .theme-main-menu > ul > li.has-megamenu > .dropdown-toggle.active {
        transform: rotate(180deg);
    }

    .theme-main-menu > ul > li > a {
        color: black !important;
        display: block;
        font-size: 14px;
        font-weight: 600;
        padding: 5px 0;
    }

    .theme-main-menu .theme-megamenu {
        position: static;
        padding-left: 0;
        padding-right: 0;
        opacity: 1;
        transform: translateY(0);
        display: none;
        height: auto;
        transition: unset;
        background: none;
        box-shadow: unset;
        padding-top: 15px;
        border-top: 1px solid #eee;
    }

    .theme-main-menu .theme-megamenu .category-nav-element > a {
        font-size: 14px;
    }

    .theme-main-menu .theme-megamenu ul {
        padding-left: 15px;
    }

    .theme-main-menu .theme-megamenu ul li {
        padding: 0;
    }

    .theme-main-menu .theme-megamenu ul li a {
        border-bottom: 1px solid #eee;
        display: block;
        width: 100%;
        margin-bottom: 0 !important;
        padding: 15px 0;
    }

    .theme-megamenu .category-nav-element .dropdown-toggle {
        position: absolute;
        top: 0;
        right: 0;
        height: 50px;
        width: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 24px;
        transition: 0.4s ease;
    }

    .theme-megamenu .category-nav-element .dropdown-toggle.active {
        transform: rotate(180deg);
    }

    .theme-main-menu .theme-megamenu .sub-cat-menu {
        display: none;
    }

    /* Brand Logo */

    .theme-main-menu .theme-brand {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        margin-top: 20px;
        margin-left: 20px;
    }

    /* Close Button */
    .theme-main-menu .close-btn {
        position: absolute;
        top: 30px;
        right: 30px;
        font-size: 24px;
    }
}

/* Theme Basket */

.theme-basket {
    position: fixed;
    top: 0;
    right: -100vw;
    width: 100vw;
    max-width: 400px;
    height: 100vh;
    background: white;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    transition: 0.4s ease;
    z-index: 9999;
}

.theme-basket.active {
    right: 0;
}

.theme-basket-header {
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.theme-basket-header .title {
    font-size: 28px;
}

.theme-basket-header .theme-basket-toggle {
    font-size: 24px;
    color: black !important;
}

.theme-basket-body {
    padding: 20px 10px;
    height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
}

.theme-basket-body .no-items-block {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.theme-basket-footer {
    margin-top: auto;
}

.theme-basket-footer .basket-total {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-left: -10px;
    margin-right: -10px;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.theme-basket-footer .basket-total .title {
    font-size: 16px;
    font-weight: 100;
    opacity: 0.7;
}

.theme-basket-footer .basket-total .price {
    font-size: 15px;
    font-weight: 600;
}
/* Theme Hero */

.theme-hero {
    min-height: 100vh;
    background-position: center;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.theme-hero .hero-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    color: white;
    position: relative;
    gap: 20px;
}

.theme-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.5;
}

.theme-hero .hero-content .title {
    font-size: 54px;
    text-align: center;
    max-width: 700px;
}

.theme-hero .hero-content .subtitle {
    font-size: 14px;
}

.theme-hero .hero-content .btn {
    padding: 15px 50px;
    border-radius: 0;
    background-color: white;
    color: black;
    border: none;
    font-weight: 600;
}

.theme-hero .hero-content .btn:hover {
    background-color: black;
    color: white !important;
}

/* Home Featured Products Carousel */

.featured-products-carousel .aiz-card-box {
    margin: 0 20px;
}

.aiz-card-box .product_box_body {
    text-align: center;
}

.aiz-card-box .product_box_body .product-name {
    font-size: 15px;
    font-weight: 600;
}

.aiz-card-box .product_box_body .product-price {
    font-size: 14px;
    font-weight: 600;
    color: black;
}

.aiz-card-box .product_box_body .product-price del {
    color: #666;
}

.aiz-card-box .product-image {
    overflow: hidden;
}

.aiz-card-box .product-image img {
    transition: 0.4s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aiz-card-box .product-image:hover img {
    transform: scale(1.5);
}

.slick-dots {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
    position: relative;
}

.slick-dots li button::before {
    content: "";
    position: relative;
    width: 7px;
    height: 7px;
    border-radius: 100%;
    border: 1px solid black;
    transition: 0.4s ease;
}

.slick-dots li button::after {
    content: "";
    position: relative;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    border: 1px solid black;
    transition: 0.4s ease;
    position: absolute;
    opacity: 0;
}

.slick-dots li.slick-active button::before,
.slick-dots li:hover button::before {
    background: black;
    width: 4px;
    height: 4px;
}

.slick-dots li.slick-active button::after,
.slick-dots li:hover button::after {
    opacity: 1;
}

/* Home Best Selling Products Carousel */

.best-selling-products-carousel {
    margin-left: -15px;
    margin-right: -15px;
}
.best-selling-products-carousel .aiz-card-box {
    margin: 0 15px;
}

/* Two Rows */

#two-rows .left-side {
    background-image: url(https://auriane.jwsuperthemes.com/wp-content/uploads/2022/02/banner-4a.jpg);
    background-position: center center;
    background-size: cover;
    padding: 74px 20px 63px 67px;
}

@media (max-width: 767px) {
    #two-rows .left-side {
        padding-left: 20px;
    }
    .zx-header .zx-logo img {
        object-fit: contain;
        height: 100%;
        max-width: 120px;
    }
    .customslider-wrapped .slick-slide img {
        height: auto;
    }
}

#two-rows .left-side .description {
    font-size: 14px;
}

#two-rows .btn {
    border-radius: 0;
    padding-inline: 30px;
}

#two-rows .right-side {
    background-image: url(https://auriane.jwsuperthemes.com/wp-content/uploads/2022/02/banner-4b.jpg);
    background-position: center center;
    background-size: cover;
    height: 100%;
    padding: 82px 20px 63px 27px;
}

#two-rows .right-side .btn {
    background-color: white;
}

#home-custom-banner {
    height: 500px;
    overflow: hidden;
    position: relative;
}

#home-custom-banner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Shop by Category Carousel */

@media (max-width: 1000px) {
    #home-custom-banner img {
        object-fit: cover;
    }
    .shop-by-category-carousel {
        overflow: hidden;
    }
}

.shop-by-category-carousel {
    margin: 70px 0;
}

.shop-by-category-carousel .slick-list {
    margin-left: -10px;
    margin-right: -10px;
}

.shop-by-category-carousel .slick-slide {
    margin: 0 10px;
}

.shop-by-category-carousel .slick-slide span {
    font-size: 14px;
    display: block;
    margin-top: 10px;
    color: black;
}
.image-sizer {
    overflow: hidden;
    display: block;
}
.image-sizer img {
    transition: 0.5s;
}
.image-sizer img:hover {
    scale: 1.4;
}
.shop-by-category-carousel .slick-slide img {
    width: 100%;
    display: block;
    object-fit: cover;
    height: 360px;
}
.shop-by-category-carousel .slick-track {
    align-items: center;
    display: flex;
}
.shop-by-category-carousel .slick-slide {
    margin: 0 40px;
}

.shop-by-category-carousel .slick-slide:nth-child(even) img {
    height: 240px;
}

.shop-by-category-carousel .slick-prev,
.shop-by-category-carousel .slick-next {
    position: absolute;
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
    z-index: 99;
    background: transparent;
    border: none;
    outline: none;
    color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
}

.shop-by-category-carousel .slick-next {
    right: -50px;
    left: unset;
}

.shop-by-category-carousel .slick-prev::before {
    content: "\f104";
    color: black;
    font-family: "Line Awesome Free";
    font-weight: 900;
    font-size: 24px;
    position: absolute;
}

.shop-by-category-carousel .slick-next::before {
    content: "\f105";
    color: black;
    font-family: "Line Awesome Free";
    font-weight: 900;
    font-size: 24px;
    position: absolute;
}

/* Home Blog List */

#blog .blog-item .read-more {
    color: black;
    font-size: 15px;
    position: relative;
    overflow: hidden;
}

#blog .blog-item .read-more::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: black;
    transition: 0.4s ease;
}

#blog .blog-item .read-more:hover::after {
    left: 100%;
}

@media (min-width: 1200px) {
    .theme-header > .container > * {
        flex: 1;
    }
}

.btn {
    border-radius: 0;
}

.title-category {
    color: #363636;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
    line-height: 1;
}

.page-loading-fully {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #262626cf;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-loading-fully .spinnerfinal {
    width: 120px;
    height: 120px;
    border-width: 7px;
    border-color: #f8f8f8;
    border-right-color: transparent;
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}

.spinner-border {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: -0.125em;
    border: 0.185em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: 0.65s linear infinite spinner-border;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.145em;
}

@keyframes spinner-grow {
    0% {
        transform: scale(0);
    }

    50% {
        opacity: 1;
        transform: none;
    }
}

.spinner-grow {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: -0.125em;
    background-color: currentColor;
    border-radius: 50%;
    opacity: 0;
    animation: 0.65s linear infinite spinner-grow;
}

.spinner-grow-sm {
    width: 1rem;
    height: 1rem;
}

@media (prefers-reduced-motion: reduce) {
    .spinner-border,
    .spinner-grow {
        animation-duration: 1.3s;
    }
}

.ui-header-main-class {
    margin: 0px 40px;
}
.ui-header-main-class .category-nav-element {
    width: 250px;
    padding-bottom: 10px;
}
@media (max-width: 1000px) {
    .ui-header-main-class {
        margin: 0px;
    }
    .ui-header-main-class .category-nav-element {
        width: 100%;
    }
}

.t-orange {
    color: #ff8a35 !important;
}
.t-orange:hover {
    color: #ff8a35 !important;
}
.sub-cat-menu {
    height: 90px;
    overflow: auto;
    margin-bottom: 10px;
}

.sub-cat-menu::-webkit-scrollbar {
    width: 6px;
}

/* Track */
.sub-cat-menu::-webkit-scrollbar-track {
    background: #f3f3f3;
}

/* Handle */
.sub-cat-menu::-webkit-scrollbar-thumb {
    background: var(--hov-primary);
}

.ui-header-main-class {
    margin: 0px 40px;
}
.customslider-wrapped .slick-slide {
    max-height: 700px;
    margin: 0 0 50px 0;
}
.customslider-wrapped .slick-slide img {
    max-height: 700px;
    object-position: center;
}

@media (max-width: 767px) {
    .customslider-wrapped .slick-slide {
        margin-bottom: 20px;
    }
}
@media (max-width: 500px) {
    .customslider-wrapped .slick-slide img {
        max-height: 700px;
        object-position: left;
        object-fit: cover;
        height: 200px;
    }
}

.bordered-effect {
    position: relative;
    display: block !important;
    border: solid 4px #fff !important;
}
.bordered-effect::after {
    content: "";
    border: solid 4px white;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: 0.6s;
}
.bordered-effect:hover::after {
    opacity: 1;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
}
.custom-height-features {
    height: 179px;
}
