/*-----------------------------------------------------------------------------------
Template Name: Kartify - 
Template URI: https://themes.pixelstrap.com/kartify/
Description: This is E-commerce website
Author: Pixelstrap
Author URI: https://themeforest.net/user/pixelstrap
-----------------------------------------------------------------------------------

1. Base Files
	1.1 Reset CSS
	1.2 Typography CSS

2. Components Files
	2.1 Accordion CSS
	2.2 Brand CSS
	2.3 Breadcrumb CSS
	2.4 Buttons CSS
	2.5 Dropdown CSS
	2.6 Form CSS 
	2.7 Layzload CSS
	2.8 Light Gallery CSS
	2.9 Modal CSS
	2.10 Nav-tabs CSS
	2.11 Offcanvas CSS
	2.12 Pagination CSS
	2.13 Rating CSS
	2.14 Ratio CSS
	2.15 Sidebar Category CSS
	2.16 Slider CSS
	2.17 Table CSS
	2.18 Title CSS

3. Layout Files
    3.1 Banner CSS
    3.2 Category CSS
    3.3 Cookie Bar CSS
    3.4 Footer CSS
    3.5 Header CSS
    3.6 Hone CSS
    3.7 Mobile Menu CSS
    3.8 Nav CSS
    3.9 Newsletter CSS
    3.10 Product CSS
    3.11 Service CSS

4. Pages Files
    4.1 Blog Page CSS
    4.2 Checkout CSS
    4.3 Inner Page CSS
    4.4 Portfolio CSS
    4.5 Product Page CSS
    4.6 Shop Page CSS
    4.7 Vendor Page CSS

5. Templates Files
    5.1 Dark CSS

6. Utils Files
    6.1 Mixin Files
        6.1.1 Animation CSS
        6.1.2 Common CSS
    6.2 Variables CSS */
/* Util Files */
/**=====================
    6.2 Variables CSS
==========================**/
/*common variables*/

/* Shared Button Style */
.pc-builder-btn,
.offer-btn {
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    margin: 5px;

    /* Smooth UI */
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* 🔵 PC Builder - Blue Animated Gradient */
.pc-builder-btn {
    background: linear-gradient(270deg, #0a5496, #00c6ff, #0a5496);
    background-size: 200% 200%;
    animation: gradientMove 4s ease infinite;
}

/* 🟢 Offer Button - Green/Blue Animated Gradient */
.offer-btn {
    background: linear-gradient(270deg, #00b09b, #96c93d, #00c6ff);
    background-size: 200% 200%;
    animation: gradientMove 4s ease infinite;
}

/* Hover Effects */
.pc-builder-btn:hover,
.offer-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Shine Effect */
.pc-builder-btn::before,
.offer-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: 0.5s;
}

.pc-builder-btn:hover::before,
.offer-btn:hover::before {
    left: 100%;
}

/* Gradient Animation */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
/* breadcrumb */
.breadcrumb-section {
    position: relative;
}

.breadcrumb-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5); /* dark overlay */
}

.breadcrumb-contain {
    position: relative;
    z-index: 2;
}
/* extra css */
.navbar-nav .dropdown-menu.mega-menu-chunked {
    width: 520px;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 0 0 10px 10px;
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 6px 24px;
}

.navbar-nav .dropdown:hover > .dropdown-menu.mega-menu-chunked,
.navbar-nav .dropdown-menu.mega-menu-chunked.show {
    display: grid;
}

.mega-menu-chunked .mega-col,
.mega-menu-chunked .mega-sub-list li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mega-menu-chunked .mega-sub-list {
    margin: 0;
    padding: 0;
}

:root {
    --size: 20px;
    --Color: rgba(var(--title-color), 1);
    --white: 255, 255, 255;
    --rating: 255, 153, 0;
    --black: 0, 0, 0;
    --light-blue: 33, 157, 171;
    --light-gray: 245, 246, 249;
    --border-color: 236, 236, 236;
    --danger-color: 255, 79, 79;
    --gradient-color: linear-gradient(
        274.63deg,
        rgba(var(--primary-color2), 1) 13.1%,
        rgba(var(--primary-color), 1) 174.18%
    );
    /* Demo 1 */
    --base-gray: 242, 243, 248;
    --primary-color: 0, 64, 128;
    --primary-color2: 0, 64, 128;
    --theme-green: 70, 147, 71;
    --title-color: 32, 35, 38;
    --bs-heading-color: 32, 35, 38;
    --content-color: 94, 98, 120;
    --theme-blue: 32, 44, 60;
    --theme-blue-dark: 19, 25, 33;
    --theme-blue2: 34, 66, 163;
    --dark-blue: 35, 47, 62;
    /* Box shadow */
    --shadow-2:
        0px 0px 10px rgba(var(--title-color), 0.1),
        0px 10px 10px rgba(82, 77, 141, 0.04),
        0px 8.69547px 6.95638px rgba(82, 77, 141, 0.06),
        0px 4.6181px 3.69448px rgba(82, 77, 141, 0.0484671),
        0px 1.9217px 1.53736px rgba(82, 77, 141, 0.0337375);
}
:root .dark {
    --base-gray: 26, 35, 46;
    --light-gray: 26, 35, 46;
    --theme-blue: 32, 44, 59;
    --white: 32, 44, 59;
    --title-color: 255, 255, 255;
    --content-color: 194, 194, 194;
    --black: 255, 255, 255;
    --border-color: 55, 70, 88;
    --bs-heading-color: rgba(var(--title-color), 1);
}

/* for demo 2 */
.demo-2 {
    --primary-color: 254, 229, 1;
    --primary-color2: 251, 57, 57;
    --primary-color3: 39, 119, 252;
}
.demo-2.dark {
    --base-gray: 21, 21, 21;
    --light-gray: 21, 21, 21;
    --white: 32, 35, 38;
    --border-color: 51, 53, 56;
}

.demo-3 {
    --primary-color: 255, 186, 10;
    --primary-color2: 255, 57, 57;
    --primary-color3: 7, 84, 79;
    --base-gray: 218, 238, 235;
}
.demo-3.dark {
    --base-gray: 3, 42, 39;
    --white: 2, 32, 30;
    --content-color: 255, 255, 255;
    --border-color: 21, 53, 55;
}

.demo-4 {
    --base-gray: 242, 243, 248;
    --primary-color3: 0, 64, 128;
}
.demo-4.dark {
    --light-gray: 15, 22, 44;
    --base-gray: 24, 35, 65;
    --white: 24, 35, 65;
    --border-color: 60, 66, 92;
}

.demo-5 {
    --primary-color3: 45, 40, 120;
    --primary-color4: 37, 32, 105;
    --theme-yellow: 255, 186, 10;
}
.demo-5.dark {
    --base-gray: 28, 26, 59;
    --white: 36, 33, 75;
}

.demo-6 {
    --primary-color: 28, 163, 209;
    --primary-color2: 255, 111, 150;
    --theme-pink: 255, 111, 150;
    --theme-blue: 28, 163, 209;
}
.demo-6.dark {
    --border-color: 57, 61, 69;
    --white: 32, 35, 38;
}

.text-yellow-color {
    color: rgba(var(--theme-yellow), 1) !important;
}

.title-bg-color {
    background-color: rgba(var(--title-color), 1) !important;
}

.template-text-content {
    color: rgba(var(--content-color), 1) !important;
}

.theme-bg-color {
    background-color: rgba(var(--primary-color), 1) !important;
}

.theme-bg-color2 {
    background-color: rgba(var(--primary-color2), 1) !important;
}

.theme-bg-color3 {
    background-color: rgba(var(--primary-color3), 1) !important;
}

.theme-color {
    color: rgba(var(--primary-color), 1) !important;
}

.theme-color2 {
    color: rgba(var(--primary-color2), 1) !important;
}

.theme-color3 {
    color: rgba(var(--primary-color3), 1) !important;
}

.theme-color4 {
    color: rgba(var(--primary-color4), 1) !important;
}

.theme-color {
    fill: rgba(var(--primary-color2), 1) !important;
}

/* Shadow List */
/* Font Family List */
/* Breakpoints */
/* Mixin Files */
/**=====================
    6.1.2 Common Mixins CSS
==========================**/
/** ======= Font Awesome Font Family And Weight Start ======= **/
/** ======= Font Awesome Font Family And Weight End ======= **/
/** ======= Breakpoint Start  ======= **/
/** ======= Breakpoint End ======= **/
/** ======= position css starts ======= **/
/** ======= position css ends ======= **/
/** ======= display flex css starts ======= **/
/** ======= display flex css ends ======= **/
/** ======= one, two, three line start ======= **/
/** ======= one, two, three line end ======= **/
/** ======= Gap Flex Css Start ======= **/
/** ======= Gap Flex Css End ======= **/
/** ======= align css starts ======= **/
/** ======= align css ends ======= **/
/** ======= Image Full Height And Width Start ======= **/
.seller-box .seller-head .seller-img img,
.seller-details-section .seller-top-box .profile-image .band-image img,
.seller-details-section-2
    .seller-main-box
    .seller-top-box
    .seller-main-box
    .profile-image
    .band-image
    img,
.shop-section .seller-box .seller-bottom .product-list li img,
.product-section .product-left-box .product-original-box .slider-image img,
.product-right-box .product-left-box .product-original-box .slider-image img,
.product-section .product-left-box .product-thumbnail-box .sidebar-image img,
.product-right-box .product-left-box .product-thumbnail-box .sidebar-image img,
.product-section
    .right-sidebar-box
    .side-product-detail
    .side-product-box
    .product-image
    img,
.product-right-box
    .right-sidebar-box
    .side-product-detail
    .side-product-box
    .product-image
    img,
.product-frequently-section
    .frequently-box
    .frequently-image
    > li
    .image-box
    img,
.cart-section .cart-table2 .cart-box .cart-image a img,
.user-dashboard-section
    .dashboard-left-sidebar
    .profile-box
    .profile-contain
    .profile-image
    img,
.user-dashboard-section
    .dashboard-right-sidebar
    .profile-contain
    .profile-image
    img,
.tracking-section .order-tracking-table tr td .tracking-order-box a img,
.product-box .product-image img,
.product-box-2 .product-image img,
.product-box-4 .product-image a img,
.product-box-5 .product-image img,
.latest-product-box a img,
.latest-product-list li a .product-image img,
.vertical-product-box .product-image img,
.vertical-sm-product .product-image img,
.vertical-sm-product-box .product-image img,
.hot-deal-product-box
    .product-slider-box
    .swiper-thumbnail
    .swiper-wrapper
    .swiper-slide
    .thumbnail-image
    img,
.hot-deal-product-box
    .product-slider-box
    .swiper-thumbnail1
    .swiper-wrapper
    .swiper-slide
    .thumbnail-image
    img,
.hot-deal-product-box .product-slider-box .swiper-main .main-image-box img,
.hot-deal-product-box .product-slider-box .swiper-main1 .main-image-box img,
.product-white-box .product-image img,
.deal-day-box
    .deal-thumbnail-slider
    .swiper-wrapper
    .swiper-slide
    .thumbnail-image-box
    img,
.deal-day-box .deal-main-slider .swiper-slide .thumbnail-image-box img,
.discover-product-box .product-image img,
.product-kid-box .product-image-box .image-box img,
.header-style-1 .main-header .left-header .header-logo img,
.header-style-1 .main-dark-header .left-header .header-logo img,
.header-style-2 .main-header .left-header .header-logo img,
.result-box .last-seen-search-box .search-list-box li a img,
.footer-section-2 .sub-footer .sub-footer-logo img,
.category-box-3 .category-image img,
.category-sm-box .category-image img,
.arrivals-box .new-arrivals-box .arrivals-image img,
.order-table tbody tr td .checkout-product-box .product-image img,
.collection-box .collection-image img,
.product-box-list .vertical-product-box .product-image img,
.notify-modal .modal-content .items-box .items-img img,
.ask-question-modal .modal-content .items-box .items-img img,
.ask-question-modal .modal-body .question-image-box .product-image img,
.brand-slider2 .brand-image-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.shop-section .banner-main-box .banner-image img,
.product-section
    .right-box-contain
    .product-package
    .select-package.image-package
    .form-check
    .form-check-label
    span
    img,
.product-right-box
    .right-box-contain
    .product-package
    .select-package.image-package
    .form-check
    .form-check-label
    span
    img,
.page-error-section .page-error-box .page-error-image img,
.team-section .team-box .team-image img,
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-profile
    .profile-box
    .profile-image
    img,
.coming-soon-section .coming-soon-image img,
.blog-section .blog-box.blog-list-box .blog-image img,
.small-product-box .product-image a img,
.product-title-box img,
.recent-product-section .recent-product-box img,
.product-kid-box.product-s-box .product-image-box .image-box img,
.product-category .product-image a img,
.shopping-section .banner-box .shipping-img,
.product-consider-box .real-image-box .swiper-slide .product-thumbnail-box img,
.review-people .review-list li .people-box .people-image img,
.newsletter-modal .newsletter-box .newsletter-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-card
    .payment-card-detail
    .card-details::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

/** ======= Image Full Height And Width ends ======= **/
/** ======= Image Ratio starts ======= **/
/** ======= Image Ratio ends  ======= **/
/**=====================
   6.1.1 Animation CSS
==========================**/
/* Custom CSS for animation */
.fade-out {
    animation: fadeOutAnimation 1s ease;
}

.fade-in {
    animation: fadeInAnimation 1s ease;
}

@keyframes fadeOutAnimation {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
@keyframes fadeInAnimation {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes move {
    0% {
        top: 0px;
    }
    10% {
        top: 0px;
    }
    25% {
        top: -18px;
    }
    27% {
        top: -20px;
    }
    70% {
        top: -20px;
    }
}
@keyframes blink {
    from {
        opacity: 1;
    }
    to {
        opacity: 0.1;
    }
}
@keyframes plane-animation {
    0% {
        transform: translateY(-10px);
    }
    50% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
    100% {
        opacity: 1;
        transform: none;
    }
}
@keyframes zoomIn {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}
@keyframes shine {
    100% {
        left: 125%;
    }
}
@keyframes shaking {
    0% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(5px);
    }
    50% {
        transform: translateX(-5px);
    }
    75% {
        transform: translateX(5px);
    }
    100% {
        transform: translateX(0);
    }
}
@keyframes progressBarAnimation {
    from {
        width: 100%;
    }
    to {
        width: 0;
    }
}
@keyframes grow {
    0%,
    100% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1);
        opacity: 1;
    }
}
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(360deg);
    }
}
@keyframes shake {
    0% {
        transform: translate(3px, 0);
    }
    50% {
        transform: translate(-3px, 0);
    }
    100% {
        transform: translate(0, 0);
    }
}
/* Base Files */
/*-----------------------------------------------------------------------------------
Template Name: Kartify - 
Template URI: https://themes.pixelstrap.com/kartify/
Description: This is E-commerce website
Author: Pixelstrap
Author URI: https://themeforest.net/user/pixelstrap
-----------------------------------------------------------------------------------

1. Base Files
	1.1 Reset CSS
	1.2 Typography CSS

2. Components Files
	2.1 Accordion CSS
	2.2 Brand CSS
	2.3 Breadcrumb CSS
	2.4 Buttons CSS
	2.5 Dropdown CSS
	2.6 Form CSS 
	2.7 Layzload CSS
	2.8 Light Gallery CSS
	2.9 Modal CSS
	2.10 Nav-tabs CSS
	2.11 Offcanvas CSS
	2.12 Pagination CSS
	2.13 Rating CSS
	2.14 Ratio CSS
	2.15 Sidebar Category CSS
	2.16 Slider CSS
	2.17 Table CSS
	2.18 Title CSS

3. Layout Files
    3.1 Banner CSS
    3.2 Category CSS
    3.3 Cookie Bar CSS
    3.4 Footer CSS
    3.5 Header CSS
    3.6 Hone CSS
    3.7 Mobile Menu CSS
    3.8 Nav CSS
    3.9 Newsletter CSS
    3.10 Product CSS
    3.11 Service CSS

4. Pages Files
    4.1 Blog Page CSS
    4.2 Checkout CSS
    4.3 Inner Page CSS
    4.4 Portfolio CSS
    4.5 Product Page CSS
    4.6 Shop Page CSS
    4.7 Vendor Page CSS

5. Templates Files
    5.1 Dark CSS

6. Utils Files
    6.1 Mixin Files
        6.1.1 Animation CSS
        6.1.2 Common CSS
    6.2 Variables CSS */
/* Util Files */
/* Mixin Files */
/**=====================
    1.1 Reset CSS
==========================**/
.custom-container {
    padding-inline: calc(15px + 145 * (100vw - 320px) / 1600);
}

.theme-color-2 {
    color: rgba(var(--primary-color2), 1) !important;
}

.danger-text {
    color: rgba(var(--primary-color2), 1) !important;
}

.content-color {
    color: rgba(var(--content-color), 1) !important;
}

.theme-color {
    color: rgba(var(--primary-color), 1) !important;
}

.gray-bg-color {
    background-color: rgba(var(--light-gray), 1);
}
.gray-bg-color:hover {
    background-color: rgba(var(--light-gray), 1);
}

.danger-bg-color {
    background-color: rgba(var(--primary-color2), 1);
    color: rgba(var(--white), 1);
}

.success-bg-color {
    background-color: rgba(var(--theme-green), 1);
}
.success-bg-color:hover {
    background-color: rgba(var(--theme-green), 0.8);
}

.bg-transparent {
    background-color: transparent;
}

.transparent-bg {
    background-color: transparent !important;
}

.mt-20 {
    margin-top: 20px;
}

.section-t-space-2 {
    padding-top: calc(15px + 15 * (100vw - 320px) / 1600);
}

.section-t-space {
    padding-top: calc(15px + 25 * (100vw - 320px) / 1600);
}

.section-b-space {
    padding-bottom: calc(15px + 25 * (100vw - 320px) / 1600);
}

.section-block-space {
    padding-block: calc(15px + 25 * (100vw - 320px) / 1600);
}

.light-bg-color {
    padding: calc(13px + 12 * (100vw - 320px) / 1600);
    background-color: rgba(var(--white), 1);
    height: 100%;
    position: relative;
}
.light-bg-color.light-sm-box {
    padding: calc(15px + 5 * (100vw - 320px) / 1600);
    height: auto;
    border-radius: 5px;
}

.light-bg-color-2 {
    padding: calc(17px + 10 * (100vw - 320px) / 1600)
        calc(8px + 7 * (100vw - 320px) / 1600);
    background-color: rgba(var(--base-gray), 0.3);
    height: 100%;
}
body.dark .light-bg-color-2 {
    background-color: rgba(var(--base-gray), 1);
}

.light-bg-color-3 {
    padding: calc(17px + 10 * (100vw - 320px) / 1600)
        calc(8px + 7 * (100vw - 320px) / 1600);
    height: 100%;
    position: relative;
}
.light-bg-color-3::before {
    top: 0;
    left: 0;
    background-color: rgba(var(--base-gray), 0.3);
    content: "";
    position: absolute;
    width: 100%;
    height: 70%;
}
body.dark .light-bg-color-3::before {
    background-color: rgba(var(--base-gray), 1);
}

.title-color {
    color: rgba(var(--title-color), 1) !important;
}

.category-left-sidebar {
    position: sticky;
    top: 110px;
}

[class^="ri-"],
[class*=" ri-"] {
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
}

@media (min-width: 1400px) {
    .col-xxl-3-1 {
        width: 25.65%;
    }
}
@media (min-width: 1200px) {
    .col-xxl-3-1 {
        width: 30%;
    }
}

@media (min-width: 1400px) {
    .custom-row .custom-xxl-2 {
        width: 17.6%;
    }
}
@media (min-width: 1400px) {
    .custom-row .custom-xxl-7 {
        width: 58.4%;
    }
}
@media (min-width: 1400px) {
    .custom-row .custom-xxl-3 {
        width: 24%;
    }
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 1400px) {
    .tracking-row .col-8 {
        width: 66.7%;
    }
    .tracking-row .col-4 {
        width: 33.3%;
    }
}

@media (min-width: 1400px) {
    .custom-row2 .custom-col-xxl-3 {
        flex: 0 0 auto;
        width: 17.75%;
    }
}
@media (min-width: 1400px) {
    .custom-row2 .custom-col-xxl-9 {
        flex: 0 0 auto;
        width: 82.25%;
    }
}
@media (min-width: 1400px) {
    .custom-row2 .custom-col-xxl-6 {
        flex: 0 0 auto;
        width: 64.5%;
    }
}

@media (min-width: 1400px) {
    .custom-row3 .custom-col-xxl-3 {
        width: 21.2%;
    }
}
@media (min-width: 1400px) {
    .custom-row3 .custom-col-xxl-6 {
        width: 57.6%;
    }
}
@media (min-width: 1400px) {
    .custom-row3 .custom-col-xxl-9 {
        width: 78.8%;
    }
}

@media (min-width: 1199.98px) {
    .custom-row8 .custom-col-xl-3 {
        width: 21.2%;
    }
}
@media (min-width: 1199.98px) {
    .custom-row8 .custom-col-xl-6 {
        width: 57.6%;
    }
}
@media (min-width: 1199.98px) {
    .custom-row8 .custom-col-xl-9 {
        width: 78.8%;
    }
}

.base-bg-color {
    background-color: rgba(var(--base-gray), 1) !important;
}

.mb-14 {
    margin-bottom: 14px;
}

.pt-20 {
    padding-top: 20px;
}

@media (min-width: 1400px) {
    .col-xxl-8-1 {
        width: 74.35%;
    }
}
@media (min-width: 1200px) {
    .col-xxl-8-1 {
        width: 70%;
    }
}

.hover-effect {
    position: relative;
    overflow: hidden;
}
.hover-effect::after {
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    background: linear-gradient(
        -90deg,
        rgba(var(--white), 0) 0%,
        rgba(var(--white), 0.035) 50%,
        rgba(var(--white), 0) 100%
    );
    transform: skewX(-25deg);
    border-radius: 0;
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
}
.hover-effect:hover::after {
    animation: shine 1s;
}

.p-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-overlay {
    background-color: #202326;
    position: fixed;
    z-index: 20;
    top: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    width: 100vw;
    height: 100vh;
}
.bg-overlay.show {
    visibility: visible;
    opacity: 0.5;
}

@media (min-width: 1400px) {
    .col-xxl-7-1 {
        width: 14.286%;
        flex: 0 0 14.285%;
    }
}

@media (min-width: 1400px) {
    .custom-row4 .custom-col-xxl-4 {
        width: 34.2%;
    }
}
@media (min-width: 1400px) {
    .custom-row4 .custom-col-xxl-8 {
        width: 65.8%;
    }
}

@media (min-width: 1400px) {
    .custom-row5 .custom-col-xxl-7 {
        width: 62.5%;
    }
}
@media (min-width: 1400px) {
    .custom-row5 .custom-col-xxl-3 {
        width: 37.5%;
    }
}

@media (min-width: 1400px) {
    .custom-row6 .custom-col-xxl-5 {
        width: 37.6%;
    }
}
@media (min-width: 1400px) {
    .custom-row6 .custom-col-xxl-2 {
        width: 24.8%;
    }
}

@media (min-width: 1400px) {
    .custom-row7 .custom-col-xxl-2 {
        width: 17.8%;
    }
}
@media (min-width: 1400px) {
    .custom-row7 .custom-col-xxl-10 {
        width: 82.2%;
    }
}

[class^="status-"] {
    padding: 8px calc(9px + 2 * (100vw - 320px) / 1600) 6px;
    border-radius: 4px;
    font-size: calc(13px + 1 * (100vw - 320px) / 1600);
}

.status-success {
    color: #1c9550;
    background-color: rgba(28, 149, 80, 0.15);
}

.status-cancel {
    color: #ff5f60;
    background-color: rgba(255, 95, 96, 0.15);
}

.status-process {
    color: #ff800d;
    background-color: rgba(255, 128, 13, 0.15);
}

.custom-width {
    width: 50%;
}
@media (max-width: 1399.98px) {
    .custom-width {
        width: 65%;
    }
}
@media (max-width: 575.98px) {
    .custom-width {
        width: 100%;
    }
}

.alert-box {
    display: none;
    position: fixed;
    top: calc(15px + 5 * (100vw - 320px) / 1600);
    right: calc(15px + 5 * (100vw - 380px) / 1540);
    width: 305px;
    background-color: #f9f9f9;
    box-shadow: 4px 4px 7px 6px rgba(var(--title-color), 0.06);
    border: 2px solid transparent;
    z-index: 9;
    border-radius: calc(8px + 2 * (100vw - 320px) / 1600);
    overflow: hidden;
}
@media (max-width: 380.98px) {
    .alert-box {
        width: calc(100% - 30px);
        right: 0;
        margin-inline: 15px;
    }
}
body.dark .alert-box {
    background-color: rgba(var(--base-gray), 1);
}
.alert-box .alert-message {
    padding: 14px calc(15px + 5 * (100vw - 320px) / 1600);
}
.alert-box .button-group {
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(var(--border-color), 1);
}
body.dark .alert-box .button-group {
    background-color: rgba(var(--white), 1);
}
.alert-box .button-group .btn {
    font-size: 15px;
    width: 100%;
    text-transform: capitalize;
    padding: 14px 10px;
    line-height: 1;
    border-radius: 0;
}
.alert-box .button-group .btn + .btn {
    border-left: 1px solid rgba(var(--border-color), 1);
}
[dir="rtl"] .alert-box .button-group .btn + .btn {
    border-left: unset;
    border-right: 1px solid rgba(var(--border-color), 1);
}
.alert-box .button-group .btn.add-cart-btn {
    color: rgba(var(--title-color), 1);
}
.alert-box h4 {
    font-size: calc(16px + 2 * (100vw - 320px) / 1600);
    margin-bottom: 8px;
}
.alert-box .alert-image {
    display: flex;
    align-items: center;
    gap: 12px;
}
.alert-box .alert-image img {
    object-fit: cover;
    filter: none;
    width: calc(48px + 10 * (100vw - 320px) / 1600);
    height: calc(48px + 10 * (100vw - 320px) / 1600);
}
.alert-box .alert-image h5 {
    width: calc(100% - (48px + 10 * (100vw - 320px) / 1600) - 12px);
}
.alert-box .alert-progressbar {
    display: none;
    margin-top: 10px;
    background-color: rgba(var(--theme-green), 1);
    width: 100%;
    height: 5px;
}
.alert-box .alert-progressbar .progress-bar {
    width: 100%;
    background-color: rgba(var(--theme-green), 1);
}
.alert-box.added {
    border-color: rgba(var(--theme-green), 0.8);
}
.alert-box.added h4 {
    color: rgba(var(--theme-green), 1);
}
.alert-box.added .button-group .btn.remove-wishlist {
    background-color: rgba(var(--danger-color), 0.1);
    color: rgba(var(--danger-color), 1);
}
.alert-box.removed {
    border-color: rgba(var(--danger-color), 0.8);
}
.alert-box.removed h4 {
    color: rgba(var(--danger-color), 1);
}
.alert-box.removed .button-group .btn.remove-wishlist {
    background-color: rgba(var(--theme-green), 0.1);
    color: rgba(var(--theme-green), 1);
}

/* Selection */
::selection,
::-moz-selection {
    background-color: rgba(var(--theme-blue), 1);
    color: rgba(var(--white), 1);
}

/* Common colors */
.badge-primary-color {
    background-color: rgba(var(--primary-color), 0.11);
    color: rgba(var(--primary-color), 1);
}

.txt-primary-color {
    color: rgba(var(--primary-color), 1) !important;
}

.badge-primary-color2 {
    background-color: rgba(var(--primary-color2), 0.11);
    color: rgba(var(--primary-color2), 1);
}

.txt-primary-color2 {
    color: rgba(var(--primary-color2), 1) !important;
}

.badge-theme-green {
    background-color: rgba(var(--theme-green), 0.11);
    color: rgba(var(--theme-green), 1);
}

.txt-theme-green {
    color: rgba(var(--theme-green), 1) !important;
}

.badge-title-color {
    background-color: rgba(var(--title-color), 0.11);
    color: rgba(var(--title-color), 1);
}

.txt-title-color {
    color: rgba(var(--title-color), 1) !important;
}

.badge-content-color {
    background-color: rgba(var(--content-color), 0.11);
    color: rgba(var(--content-color), 1);
}

.txt-content-color {
    color: rgba(var(--content-color), 1) !important;
}

.badge-theme-blue {
    background-color: rgba(var(--theme-blue), 0.11);
    color: rgba(var(--theme-blue), 1);
}

.txt-theme-blue {
    color: rgba(var(--theme-blue), 1) !important;
}

.badge-theme-blue2 {
    background-color: rgba(var(--theme-blue2), 0.11);
    color: rgba(var(--theme-blue2), 1);
}

.txt-theme-blue2 {
    color: rgba(var(--theme-blue2), 1) !important;
}

.badge-danger-color {
    background-color: rgba(var(--danger-color), 0.11);
    color: rgba(var(--danger-color), 1);
}

.txt-danger-color {
    color: rgba(var(--danger-color), 1) !important;
}

.badge-rating {
    background-color: rgba(var(--rating), 0.11);
    color: rgba(var(--rating), 1);
}

.txt-rating {
    color: rgba(var(--rating), 1) !important;
}

.badge-light-blue {
    background-color: rgba(var(--light-blue), 0.11);
    color: rgba(var(--light-blue), 1);
}

.txt-light-blue {
    color: rgba(var(--light-blue), 1) !important;
}

.badge-light-gray {
    background-color: rgba(var(--light-gray), 0.11);
    color: rgba(var(--light-gray), 1);
}

.txt-light-gray {
    color: rgba(var(--light-gray), 1) !important;
}

.badge-gradient-color {
    background-color: rgba(var(--gradient-color), 0.11);
    color: rgba(var(--gradient-color), 1);
}

.txt-gradient-color {
    color: rgba(var(--gradient-color), 1) !important;
}

.badge-base-gray {
    background-color: rgba(var(--base-gray), 0.11);
    color: rgba(var(--base-gray), 1);
}

.txt-base-gray {
    color: rgba(var(--base-gray), 1) !important;
}

.badge-bs-heading-color {
    background-color: rgba(var(--bs-heading-color), 0.11);
    color: rgba(var(--bs-heading-color), 1);
}

.txt-bs-heading-color {
    color: rgba(var(--bs-heading-color), 1) !important;
}

.badge-theme-blue {
    background-color: rgba(var(--theme-blue), 0.11);
    color: rgba(var(--theme-blue), 1);
}

.txt-theme-blue {
    color: rgba(var(--theme-blue), 1) !important;
}

.badge-theme-blue-dark {
    background-color: rgba(var(--theme-blue-dark), 0.11);
    color: rgba(var(--theme-blue-dark), 1);
}

.txt-theme-blue-dark {
    color: rgba(var(--theme-blue-dark), 1) !important;
}

/* Sweetalert2 css */
.swal2-toast.swal2-popup {
    font-family: "BR Hendrix";
}
.swal2-toast.swal2-popup .swal2-icon {
    margin: 0;
}
.swal2-toast.swal2-popup
    div:where(.swal2-icon).swal2-success
    .swal2-success-ring {
    border: 3px solid rgba(var(--theme-green), 0.5);
}
.swal2-toast.swal2-popup
    div:where(.swal2-icon).swal2-success
    [class^="swal2-success-line"] {
    background-color: rgba(var(--theme-green), 0.5);
}
.swal2-toast.swal2-popup h2:where(.swal2-title) {
    line-height: 1.5;
}
.swal2-toast.swal2-popup .swal2-success [class^="swal2-success-line"] {
    height: 3px;
}

.bg-white {
    background-color: rgba(var(--white), 1) !important;
}

.lang-switch {
    position: fixed;
    right: 0;
    display: flex;
    writing-mode: vertical-lr;
    gap: calc(6px + 4 * (100vw - 320px) / 1600);
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
}
.lang-switch button {
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    border: none;
    border-radius: 4px;
    padding: calc(12px + 6 * (100vw - 320px) / 1600)
        calc(8px + 6 * (100vw - 320px) / 1600);
    background-color: rgba(var(--primary-color), 1);
    color: #fff;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    letter-spacing: 0.3px;
}

@media (min-width: 1400px) {
    .custom-menu-row .col-2 {
        width: 14.8%;
    }
    .custom-menu-row .col-8 {
        width: 70.4%;
    }
}

.border-right-color {
    border-right: 1px dashed rgba(var(--border-color), 1);
}
[dir="rtl"] .border-right-color {
    border-right: unset;
    border-left: 1px dashed rgba(var(--border-color), 1);
}
@media (max-width: 1199.98px) {
    .border-right-color {
        border: none;
    }
    [dir="rtl"] .border-right-color {
        border: none;
    }
}

/* Tap To Top Scss */
.tap-top-button {
    position: fixed;
    z-index: 1;
    bottom: -50px;
    right: calc(13px + 11 * (100vw - 320px) / 1600);
    transition: all 0.15s ease-in-out;
    opacity: 0;
    visibility: hidden;
}
[dir="rtl"] .tap-top-button {
    right: unset;
    left: calc(13px + 11 * (100vw - 320px) / 1600);
}
.tap-top-button.show {
    opacity: 1;
    visibility: visible;
    bottom: calc(13px + 11 * (100vw - 320px) / 1600);
}
@media (max-width: 575.98px) {
    .tap-top-button.show {
        bottom: calc(76px + 4 * (100vw - 320px) / 256);
    }
}
.tap-top-button .btn {
    padding: 0;
    background-color: rgba(var(--theme-blue), 1);
    border-radius: calc(3px + 2 * (100vw - 320px) / 1600);
    width: calc(36px + 6 * (100vw - 320px) / 1600);
    height: calc(36px + 6 * (100vw - 320px) / 1600);
}
body.demo-6.dark .tap-top-button .btn {
    background-color: #303438;
}
.tap-top-button .btn:hover {
    background-color: rgba(var(--theme-blue), 1);
}
.tap-top-button .btn:hover .iconsax {
    --Color: rgba(var(--white), 0.95);
}
body.dark .tap-top-button .btn:hover .iconsax {
    --Color: rgba(255, 255, 255, 0.95);
}
.tap-top-button .btn .iconsax {
    --Color: #fff;
    --size: 21px;
    transition: all 0.15s ease-in-out;
}

/* Recent Order Scss */
.recently-product-box {
    z-index: 6;
    position: fixed;
    bottom: 5px;
    opacity: 0;
    visibility: hidden;
    left: calc(15px + 5 * (100vw - 384px) / 1536);
    width: 350px;
    background-color: rgba(var(--white), 1);
    padding: 8px;
    display: flex;
    align-items: center;
    border-radius: 7px;
    gap: calc(8px + 4 * (100vw - 320px) / 1600);
    box-shadow: 0px 4px 10px rgba(var(--black), 0.1);
    transition: all 0.5s ease-in-out;
}
[dir="rtl"] .recently-product-box {
    left: unset;
    right: calc(15px + 5 * (100vw - 384px) / 1536);
}
@media (max-width: 575.98px) {
    .recently-product-box {
        bottom: 60px;
    }
}
@media (max-width: 385px) {
    .recently-product-box {
        width: calc(100% - 26px);
        left: 0;
        margin-inline: 13px;
    }
    [dir="rtl"] .recently-product-box {
        left: unset;
        right: 0;
    }
}
.recently-product-box.active {
    bottom: 20px;
    opacity: 1;
    visibility: visible;
}
@media (max-width: 575.98px) {
    .recently-product-box.active {
        bottom: calc(80px + 5 * (100vw - 320px) / 256);
    }
}
.recently-product-box img {
    background-color: rgba(var(--base-gray), 1);
    padding: 8px 10px;
    border-radius: calc(4px + 2 * (100vw - 320px) / 1600);
    object-fit: contain;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(76px + 19 * (100vw - 320px) / 1600);
    height: calc(76px + 19 * (100vw - 320px) / 1600);
}
body.demo-6.dark .recently-product-box img {
    background-color: #303438;
}
.recently-product-box .recent-close {
    padding: 0;
    position: absolute;
    line-height: 1;
    top: 6px;
    right: 6px;
}
[dir="rtl"] .recently-product-box .recent-close {
    right: unset;
    left: 6px;
}
.recently-product-box .recent-close .iconsax {
    transform: rotate(45deg);
    --Color: rgba(var(--title-color), 1);
}
.recently-product-box .recent-content {
    width: calc(
        100% - (76px + 19 * (100vw - 320px) / 1600) -
            (8px + 4 * (100vw - 320px) / 1600) -
            (16px + 8 * (100vw - 320px) / 1600)
    );
}
.recently-product-box .recent-content a {
    color: rgba(var(--title-color), 1);
    font-weight: 500;
    word-break: break-all;
    font-size: calc(15px + 2 * (100vw - 320px) / 1600);
    margin-bottom: 4px;
    transition: all 0.2s ease-in-out;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
.recently-product-box .recent-content .price {
    font-weight: 500;
    color: rgba(var(--theme-green), 1);
    display: flex;
    align-items: center;
    gap: calc(3px + 2 * (100vw - 320px) / 1600);
    margin-block: calc(4px + 2 * (100vw - 320px) / 1600) 0;
    line-height: 1;
}
.recently-product-box .recent-content .price del {
    color: rgba(var(--content-color), 0.8);
}
.recently-product-box .recent-content h4 {
    color: rgba(var(--content-color), 0.6);
    font-weight: 400;
    margin-top: calc(16px + 4 * (100vw - 320px) / 1600);
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    background: #e6e7e9;
    flex-direction: column;
    z-index: 1056;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.preloader .progress-container {
    background: rgba(var(--white), 0.1);
    margin-bottom: calc(10px + 10 * (100vw - 320px) / 1600);
    position: relative;
    z-index: 2;
    border-radius: 10px;
    overflow: hidden;
    width: 300px;
    height: 2px;
}
.preloader .progress-bar {
    position: absolute;
    left: 0;
    top: 0;
    background: var(--color-foreground);
    width: 0;
    height: 100%;
}
.preloader .percentage {
    position: absolute;
    font-family: "BR Hendrix";
    font-weight: 700;
    font-size: calc(180px + 220 * (100vw - 320px) / 1600);
    line-height: 1;
    color: var(--color-foreground);
    margin-top: 10px;
    opacity: 0.1;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.preloader .percentage::after {
    content: "%";
    font-size: 30px;
    margin-left: 2px;
    font-weight: 400;
}
.preloader .text-container {
    position: relative;
    overflow: hidden;
    margin: 0;
    width: 19rem;
    height: calc(34px + 14 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
    justify-content: center;
}
.preloader .loading-text {
    font-family: "BR Hendrix";
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-foreground);
    font-size: calc(16px + 4 * (100vw - 320px) / 1600);
    text-transform: uppercase;
    position: absolute;
    width: 100%;
    text-align: center;
    letter-spacing: 2px;
    gap: 12px;
    font-weight: 500;
}
[dir="rtl"] .preloader .loading-text {
    direction: ltr;
}
.preloader .loading-text.initial {
    transform: translateY(0);
    gap: 4px;
}
.preloader .loading-text.complete {
    transform: translateY(100%);
}
.preloader .loading-text span > div + div {
    margin-left: 4px;
}
.preloader .preloader-item {
    opacity: 1;
    transform: translateY(0);
}

.demo-2 .lang-switch button {
    color: #202326;
}
.demo-2 .quick-view-modal .modal-custom-size .btn-close {
    color: #202326;
}
.demo-2
    .quick-view-modal
    .modal-custom-size
    .right-box-contain
    .qty-stock-box
    .qty-box
    .qty-btn:hover {
    color: #202326;
}

/*-----------------------------------------------------------------------------------
Template Name: Kartify - 
Template URI: https://themes.pixelstrap.com/kartify/
Description: This is E-commerce website
Author: Pixelstrap
Author URI: https://themeforest.net/user/pixelstrap
-----------------------------------------------------------------------------------

1. Base Files
	1.1 Reset CSS
	1.2 Typography CSS

2. Components Files
	2.1 Accordion CSS
	2.2 Brand CSS
	2.3 Breadcrumb CSS
	2.4 Buttons CSS
	2.5 Dropdown CSS
	2.6 Form CSS 
	2.7 Layzload CSS
	2.8 Light Gallery CSS
	2.9 Modal CSS
	2.10 Nav-tabs CSS
	2.11 Offcanvas CSS
	2.12 Pagination CSS
	2.13 Rating CSS
	2.14 Ratio CSS
	2.15 Sidebar Category CSS
	2.16 Slider CSS
	2.17 Table CSS
	2.18 Title CSS

3. Layout Files
    3.1 Banner CSS
    3.2 Category CSS
    3.3 Cookie Bar CSS
    3.4 Footer CSS
    3.5 Header CSS
    3.6 Hone CSS
    3.7 Mobile Menu CSS
    3.8 Nav CSS
    3.9 Newsletter CSS
    3.10 Product CSS
    3.11 Service CSS

4. Pages Files
    4.1 Blog Page CSS
    4.2 Checkout CSS
    4.3 Inner Page CSS
    4.4 Portfolio CSS
    4.5 Product Page CSS
    4.6 Shop Page CSS
    4.7 Vendor Page CSS

5. Templates Files
    5.1 Dark CSS

6. Utils Files
    6.1 Mixin Files
        6.1.1 Animation CSS
        6.1.2 Common CSS
    6.2 Variables CSS */
/* Util Files */
/**=====================
    1.2 Typography CSS
==========================**/
body {
    font-family: "BR Hendrix";
    position: relative;
    font-size: 14px;
    font-weight: 500;
    color: rgba(var(--title-color), 1);
    margin: 0;
    background-color: rgba(var(--white), 1);
    transition: all 0.25s ease-in-out;
    padding: 0 !important;
}
body:has(header .middle-header.show) {
    overflow: hidden;
}
body:has(header .middle-header.show) .header-style-1,
body:has(header .middle-header.show) .header-style-2 {
    z-index: 10;
}
body:has(
        header .navbar-expand-xl .offcanvas.show,
        > header .navbar-expand-xl .offcanvas.hiding,
        > header .navbar-expand-xl .offcanvas.showing
    )
    .header-style-1,
body:has(
        header .navbar-expand-xl .offcanvas.show,
        > header .navbar-expand-xl .offcanvas.hiding,
        > header .navbar-expand-xl .offcanvas.showing
    )
    .header-style-2 {
    z-index: 10;
}
body:has(
        > .category-fixed-box.offcanvas.show,
        > .category-fixed-box.offcanvas.hiding,
        > .category-fixed-box.offcanvas.showing
    )
    .header-style-1,
body:has(
        > .category-fixed-box.offcanvas.show,
        > .category-fixed-box.offcanvas.hiding,
        > .category-fixed-box.offcanvas.showing
    )
    .header-style-2 {
    z-index: unset;
}
body:has(
        > .category-fixed-box.offcanvas.show,
        > .category-fixed-box.offcanvas.hiding,
        > .category-fixed-box.offcanvas.showing
    )
    .lang-switch {
    z-index: 7;
}
body:has(
        .category-full-box.offcanvas.show,
        .category-full-box.offcanvas.hiding,
        .category-full-box.offcanvas.showing
    )
    .header-style-1,
body:has(
        .category-full-box.offcanvas.show,
        .category-full-box.offcanvas.hiding,
        .category-full-box.offcanvas.showing
    )
    .header-style-2 {
    z-index: unset;
}

ol,
ul {
    margin-bottom: 0;
    padding-inline: 0;
}

li {
    display: inline-block;
}

a {
    color: rgba(var(--primary-color), 1);
    text-decoration: none;
}

p {
    margin-bottom: 0;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(var(--border-color), 1);
    box-shadow: none;
}

h1,
.h1 {
    font-size: calc(36px + 20 * (100vw - 320px) / 1600);
    font-weight: 600;
    margin-bottom: 0;
}

h2,
.h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 0;
}

h3,
.h3 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 0;
}

h4,
.h4 {
    font-size: calc(18px + 2 * (100vw - 320px) / 1600);
    font-weight: 500;
    margin-bottom: 0;
}

h5,
.h5 {
    font-weight: 500;
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    margin-bottom: 0;
}

h6,
.h6 {
    font-size: calc(13px + 1 * (100vw - 320px) / 1600);
    margin-bottom: 0;
    font-weight: 500;
}

p,
.paragraphs {
    font-size: calc(13px + 1 * (100vw - 320px) / 1600);
    font-weight: 400;
    line-height: 1.5;
}

/* Components Files */
/* Mixin Files */
/**=====================
    2.1 Accordion CSS
==========================**/
.custom-accordion {
    display: grid;
    gap: 13px;
}
.custom-accordion .accordion-item {
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(var(--content-color), 0.1);
}
.custom-accordion .accordion-item .accordion-header .accordion-button {
    background-color: rgba(var(--white), 1);
    box-shadow: unset;
    padding: 20px 24px;
    z-index: 0;
    font-size: 20px;
    color: rgba(var(--title-color), 1);
    font-weight: 500;
    border-radius: 8px;
}
.custom-accordion .accordion-item .accordion-header .accordion-button::after {
    content: "\ea4e";
    background: unset;
    color: rgba(var(--title-color), 0.8);
    font-family: remixicon;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    width: auto;
    height: unset;
}
.custom-accordion .accordion-item .accordion-body {
    padding: 0 24px 20px;
}

.delivery-accordion {
    margin-top: 12px;
}
.delivery-accordion > .accordion-item {
    border: unset;
    background-color: unset;
}
.delivery-accordion > .accordion-item > .accordion-header .accordion-button {
    padding: 0;
    text-decoration: underline;
    background-color: transparent;
    color: rgba(var(--title-color), 1);
    box-shadow: unset;
    align-items: center;
    justify-content: space-between;
}
.delivery-accordion
    > .accordion-item
    > .accordion-header
    .accordion-button::after {
    content: unset;
}
.delivery-accordion
    > .accordion-item
    > .accordion-header
    .accordion-button:not(.collapsed)
    i {
    transform: rotate(-180deg);
}
.delivery-accordion > .accordion-item > .accordion-header .accordion-button i {
    transition: transform 0.2s ease-in-out;
}
.delivery-accordion > .accordion-item > .accordion-collapse > .accordion-body {
    padding: 9px 0 0;
}
.delivery-accordion
    > .accordion-item
    > .accordion-collapse
    > .accordion-body
    .delivery-accordion-box {
    margin-top: 7px;
}
.delivery-accordion
    > .accordion-item
    > .accordion-collapse
    > .accordion-body
    .delivery-accordion-box
    .accordion-item {
    border-radius: 0;
    border: unset;
}
.delivery-accordion
    > .accordion-item
    > .accordion-collapse
    > .accordion-body
    .delivery-accordion-box
    .accordion-item
    .accordion-button {
    background-color: rgba(var(--base-gray), 1);
    color: rgba(var(--content-color), 1);
    border-radius: 0;
    z-index: 0;
    box-shadow: unset;
    justify-content: space-between;
}
.delivery-accordion
    > .accordion-item
    > .accordion-collapse
    > .accordion-body
    .delivery-accordion-box
    .accordion-item
    .accordion-button::after {
    content: unset;
}
.delivery-accordion
    > .accordion-item
    > .accordion-collapse
    > .accordion-body
    .delivery-accordion-box
    .accordion-item
    .accordion-button:not(.collapsed)
    i {
    transform: rotate(-180deg);
}
.delivery-accordion
    > .accordion-item
    > .accordion-collapse
    > .accordion-body
    .delivery-accordion-box
    .accordion-item
    .accordion-button
    i {
    transition: transform 0.2s ease-in-out;
}
.delivery-accordion
    > .accordion-item
    > .accordion-collapse
    > .accordion-body
    .delivery-accordion-box
    .accordion-item
    .accordion-body {
    padding: 10px 20px 15px;
    border: 1px solid rgba(var(--content-color), 0.1);
    border-top: 0;
}
.delivery-accordion
    > .accordion-item
    > .accordion-collapse
    > .accordion-body
    .delivery-accordion-box
    .accordion-item
    .accordion-body
    textarea.form-control {
    padding: 13px;
    border: unset;
    font-size: calc(15px + 2 * (100vw - 320px) / 1600);
    border-radius: 0px;
    background-color: rgba(var(--base-gray), 1);
    color: rgba(var(--content-color), 1);
}

.checkout-payment-accordion .accordion-item {
    background-color: rgba(var(--base-gray), 1);
    color: rgba(var(--title-color), 1);
    border: 1px solid rgba(var(--border-color), 1);
    border-radius: calc(6px + 3 * (100vw - 320px) / 1600);
    position: relative;
    overflow: hidden;
}
body.dark .checkout-payment-accordion .accordion-item {
    background-color: rgba(19, 25, 33, 0.45);
}
.checkout-payment-accordion
    .accordion-item:has(
        .accordion-header .form-check .form-check-input:checked
    )::before {
    top: 0;
    left: 0;
    border-left: 3px solid rgba(var(--primary-color), 1);
    content: "";
    position: absolute;
    width: 3px;
    height: 100%;
}
[dir="rtl"]
    .checkout-payment-accordion
    .accordion-item:has(
        .accordion-header .form-check .form-check-input:checked
    )::before {
    left: unset;
    right: 0;
}
.checkout-payment-accordion
    .accordion-item:has(.accordion-header .form-check .form-check-input:checked)
    .accordion-header
    .form-check
    .form-check-label
    .circle::before {
    border-color: rgba(var(--primary-color), 1);
}
.checkout-payment-accordion
    .accordion-item:has(.accordion-header .form-check .form-check-input:checked)
    .accordion-header
    .form-check
    .form-check-label
    .circle::after {
    transform: translate(-50%, -50%) scale(1);
}
.checkout-payment-accordion .accordion-item + .accordion-item {
    margin-top: 11px;
}
.checkout-payment-accordion .accordion-item .accordion-header {
    padding: 0;
    position: relative;
    cursor: pointer;
}
.checkout-payment-accordion .accordion-item .accordion-header .form-check {
    padding: calc(14px + 10 * (100vw - 320px) / 1600);
    min-height: unset;
    display: flex;
    align-items: center;
    gap: 12px;
    float: unset;
    margin: 0;
    position: relative;
}
.checkout-payment-accordion
    .accordion-item
    .accordion-header
    .form-check
    .form-check-input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    float: unset;
    margin: 0;
    width: 100%;
    height: 100%;
}
.checkout-payment-accordion
    .accordion-item
    .accordion-header
    .form-check
    .form-check-label {
    display: flex;
    line-height: 1;
    align-items: center;
    gap: calc(10px + 2 * (100vw - 320px) / 1600);
    font-size: calc(15px + 1 * (100vw - 320px) / 1600);
    color: rgba(var(--content-color), 1);
    font-weight: 400;
    width: 100%;
    cursor: pointer;
}
.checkout-payment-accordion
    .accordion-item
    .accordion-header
    .form-check
    .form-check-label
    .circle {
    float: unset;
    margin: 0;
    border: none;
    position: relative;
    background-image: none;
    background-color: transparent;
    box-shadow: none;
    filter: none;
    background-color: rgba(var(--white), 1);
    border-radius: 100%;
    margin-top: calc(-1.5px + -2.5 * (100vw - 320px) / 1600);
    width: calc(16px + 2 * (100vw - 320px) / 1600);
    height: calc(16px + 2 * (100vw - 320px) / 1600);
}
.checkout-payment-accordion
    .accordion-item
    .accordion-header
    .form-check
    .form-check-label
    .circle::before {
    border-radius: 100%;
    border: 1px solid rgba(var(--border-color), 1);
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(16px + 2 * (100vw - 320px) / 1600);
    height: calc(16px + 2 * (100vw - 320px) / 1600);
}
.checkout-payment-accordion
    .accordion-item
    .accordion-header
    .form-check
    .form-check-label
    .circle::after {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    border-radius: 100%;
    background-color: rgba(var(--primary-color), 1);
    transition: all 0.2s ease-in-out;
    content: "";
    position: absolute;
    width: calc(10px + 1 * (100vw - 320px) / 1600);
    height: calc(10px + 1 * (100vw - 320px) / 1600);
}
.checkout-payment-accordion
    .accordion-item
    .accordion-header
    .form-check
    .form-check-label
    .circle:checked::before {
    border-color: rgba(var(--primary-color), 1);
}
.checkout-payment-accordion
    .accordion-item
    .accordion-header
    .form-check
    .form-check-label
    .circle:checked::after {
    transform: translate(-50%, -50%) scale(1);
}
.checkout-payment-accordion
    .accordion-item
    .accordion-header
    .form-check
    .form-check-label
    .circle:checked
    ~ .form-check-label {
    color: rgba(var(--title-color), 1);
}
.checkout-payment-accordion
    .accordion-item
    .accordion-header
    .form-check
    .form-check-label
    a {
    text-decoration: underline;
    color: rgba(var(--title-color), 1);
}
.checkout-payment-accordion .accordion-item .accordion-body {
    padding: 0 calc(14px + 10 * (100vw - 320px) / 1600)
        calc(14px + 10 * (100vw - 320px) / 1600);
}
.checkout-payment-accordion .accordion-item .accordion-body p {
    color: rgba(var(--content-color), 0.9);
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
}
.checkout-payment-accordion .accordion-item .accordion-body p i {
    color: rgba(var(--title-color), 1);
    font-size: 21px;
    line-height: 1;
}
.checkout-payment-accordion .accordion-item .accordion-body p span {
    text-decoration: underline;
    color: rgba(var(--title-color), 1);
}

/* Mixin Files */
/**=====================
    2.2 Brand CSS
==========================**/
.brand-section .brand-box {
    background-color: rgba(var(--white), 1);
    padding: calc(12px + 6 * (100vw - 320px) / 1600)
        calc(17px + 19 * (100vw - 320px) / 1600);
    box-shadow: -2.47954px 3.71931px 12.3977px rgba(14, 109, 91, 0.06);
    border-radius: calc(6px + 4 * (100vw - 320px) / 1600);
    text-align: center;
    border: 1px solid transparent;
    transition: 0.3s ease-in-out;
    display: block;
}
.brand-section .brand-box:hover {
    border-color: rgba(var(--border-color), 1);
    box-shadow: 0 0 10px rgba(54, 97, 79, 0.1);
}
.brand-section .brand-box img {
    object-fit: contain;
    width: 100%;
    height: 50px;
}

.brand-slider2 {
    z-index: 0;
}
.brand-slider2 .brand-image-box {
    width: 100%;
    height: 80px;
}
.brand-slider2 .brand-image-box img {
    object-position: center;
}

/* Mixin Files */
/**=====================
    2.3 breadcrumb scss
==========================**/
.breadcrumb-section {
    background-color: rgba(var(--white), 1);
}
body.dark .breadcrumb-section {
    background-color: rgba(var(--white), 0.7);
}
.breadcrumb-section .breadcrumb-contain {
    padding: calc(14px + 6 * (100vw - 320px) / 1600) 0;
    text-align: center;
    color: rgba(var(--black), 1);
    display: flex;
    align-items: center;
}
@media (max-width: 480px) {
    .breadcrumb-section .breadcrumb-contain {
        display: block;
    }
}
.breadcrumb-section .breadcrumb-contain h2 {
    font-weight: 500;
    font-size: calc(18px + 6 * (100vw - 320px) / 1600);
    margin-bottom: 0;
}
@media (max-width: 480px) {
    .breadcrumb-section .breadcrumb-contain h2 {
        text-align: center;
        margin-bottom: 8px;
    }
}
.breadcrumb-section .breadcrumb-contain .search-box-breadcrumb {
    position: relative;
    width: 70%;
    margin: 0 auto;
}
@media (max-width: 575.98px) {
    .breadcrumb-section .breadcrumb-contain .search-box-breadcrumb {
        width: 90%;
    }
}
@media (max-width: 360.98px) {
    .breadcrumb-section .breadcrumb-contain .search-box-breadcrumb {
        width: 100%;
    }
}
.breadcrumb-section .breadcrumb-contain .search-box-breadcrumb input {
    width: 100%;
    border: none;
    border-radius: 6px;
    font-size: 15px;
}
.breadcrumb-section .breadcrumb-contain .search-box-breadcrumb i {
    position: absolute;
    right: calc(14px + 6 * (100vw - 320px) / 1600);
    color: rgba(var(--content-color), 1);
    font-size: calc(15px + 3 * (100vw - 320px) / 1600);
    top: 50%;
    transform: translateY(-50%);
}
.breadcrumb-section .breadcrumb-contain nav {
    margin-left: auto;
}
[dir="rtl"] .breadcrumb-section .breadcrumb-contain nav {
    margin-left: unset;
    margin-right: auto;
}
.breadcrumb-section .breadcrumb-contain nav .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
}
.breadcrumb-section .breadcrumb-contain nav .breadcrumb .breadcrumb-item {
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
}
.breadcrumb-section .breadcrumb-contain nav .breadcrumb .breadcrumb-item i {
    font-size: 17px;
    line-height: 1;
}
.breadcrumb-section
    .breadcrumb-contain
    nav
    .breadcrumb
    .breadcrumb-item.active {
    color: rgba(var(--content-color), 1);
    margin-top: 2px;
}
.breadcrumb-section
    .breadcrumb-contain
    nav
    .breadcrumb
    .breadcrumb-item
    + .breadcrumb-item {
    position: relative;
    display: flex;
}
.breadcrumb-section
    .breadcrumb-contain
    nav
    .breadcrumb
    .breadcrumb-item
    + .breadcrumb-item
    a {
    color: rgba(var(--title-color), 1);
}
.breadcrumb-section
    .breadcrumb-contain
    nav
    .breadcrumb
    .breadcrumb-item
    + .breadcrumb-item::before {
    content: "/";
    color: rgba(var(--title-color), 0.3);
}
.breadcrumb-section .breadcrumb-contain .order-number-contain {
    display: flex;
    align-items: center;
}
.breadcrumb-section .breadcrumb-contain .order-number-contain li {
    position: relative;
}
.breadcrumb-section .breadcrumb-contain .order-number-contain li + li {
    margin-left: 20px;
    padding-left: 20px;
}
.breadcrumb-section .breadcrumb-contain .order-number-contain li + li::before {
    top: calc(50% - 2px);
    transform: translateY(-50%);
    left: 0;
    border-radius: 100%;
    background-color: rgba(var(--content-color), 1);
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
}
.breadcrumb-section .breadcrumb-contain .order-number-contain li h3 {
    font-size: 28px;
    font-weight: 600;
}
.breadcrumb-section .breadcrumb-contain .order-number-contain li h5 {
    font-size: 18px;
    font-weight: 400;
    color: rgba(var(--content-color), 1);
}

.faq-breadcrumb {
    background-color: #f8f8f8;
    position: relative;
    overflow: hidden;
}
.faq-breadcrumb .breadcrumb-contain {
    padding: calc(26px + 34 * (100vw - 320px) / 1600) 0;
    text-align: center;
    color: rgba(var(--title-color), 1);
    display: block;
}
.faq-breadcrumb .breadcrumb-contain h2 {
    font-size: calc(22px + 26 * (100vw - 320px) / 1600);
    font-weight: 700;
    margin-top: -6px;
    text-transform: uppercase;
}
.faq-breadcrumb .breadcrumb-contain p {
    margin: calc(11px + 5 * (100vw - 320px) / 1600) auto 0;
    color: rgba(var(--content-color), 1);
    width: 50%;
    line-height: 1.7;
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
}
@media (max-width: 1660px) {
    .faq-breadcrumb .breadcrumb-contain p {
        width: 60%;
    }
}
@media (max-width: 1366px) {
    .faq-breadcrumb .breadcrumb-contain p {
        width: 70%;
    }
}
@media (max-width: 991.98px) {
    .faq-breadcrumb .breadcrumb-contain p {
        width: 90%;
    }
}
@media (max-width: 767.98px) {
    .faq-breadcrumb .breadcrumb-contain p {
        width: 100%;
    }
}
.faq-breadcrumb .breadcrumb-contain p span {
    display: inline;
}
.faq-breadcrumb .breadcrumb-contain .faq-form-tag {
    position: relative;
    margin: calc(18px + 17 * (100vw - 320px) / 1600) auto 0;
    width: 50%;
}
@media (max-width: 1660px) {
    .faq-breadcrumb .breadcrumb-contain .faq-form-tag {
        width: 60%;
    }
}
@media (max-width: 1366px) {
    .faq-breadcrumb .breadcrumb-contain .faq-form-tag {
        width: 70%;
    }
}
@media (max-width: 991.98px) {
    .faq-breadcrumb .breadcrumb-contain .faq-form-tag {
        width: 90%;
    }
}
@media (max-width: 767.98px) {
    .faq-breadcrumb .breadcrumb-contain .faq-form-tag {
        width: 100%;
    }
}
.faq-breadcrumb .breadcrumb-contain .faq-form-tag .input-group {
    background-color: rgba(var(--white), 1);
}
.faq-breadcrumb .breadcrumb-contain .faq-form-tag .input-group i {
    display: flex;
    align-items: center;
    padding: 0 calc(12px + 8 * (100vw - 320px) / 1600);
    color: rgba(var(--primary-color), 1);
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
}
.faq-breadcrumb .breadcrumb-contain .faq-form-tag .input-group .form-control {
    padding-left: 0;
    border: none;
}
.faq-breadcrumb
    .breadcrumb-contain
    .faq-form-tag
    .input-group
    .form-control:focus {
    background-color: transparent;
}
.faq-breadcrumb
    .breadcrumb-contain
    .faq-form-tag
    .input-group
    .faq-dropdown-menu
    li {
    display: block;
}
.faq-breadcrumb
    .breadcrumb-contain
    .faq-form-tag
    .input-group
    .faq-dropdown-button {
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    font-weight: 600;
    color: rgba(var(--primary-color), 1);
    z-index: 0;
}
.faq-breadcrumb
    .breadcrumb-contain
    .faq-form-tag
    .input-group
    .faq-dropdown-button::after {
    content: unset;
}
.faq-breadcrumb
    .breadcrumb-contain
    .faq-form-tag
    .input-group
    .faq-dropdown-button
    i {
    position: relative;
    padding: 0;
    margin-left: 5px;
    font-size: calc(13px + 1 * (100vw - 320px) / 1600);
}

/* Mixin Files */
/**=====================
    2.4 Button CSS
==========================**/
.btn {
    color: rgba(var(--title-color), 1);
    padding: calc(10px + 3 * (100vw - 320px) / 1600)
        calc(18px + 5 * (100vw - 320px) / 1600)
        calc(7px + 3 * (100vw - 320px) / 1600);
    border: none;
    font-weight: 500;
    font-size: calc(15px + 3 * (100vw - 320px) / 1600);
    position: relative;
    z-index: 0;
    transition: all 0.25s ease-in-out;
    border-radius: 5px;
}
.btn-warning {
    background-color: rgba(var(--primary-color), 1);
    color: rgba(var(--white), 1);
    border: 1px solid transparent;
}
.btn-warning:hover {
    color: rgba(var(--primary-color), 1);
    border-color: rgba(var(--primary-color), 1);
    background-color: transparent;
}
.btn-border-white {
    border: 1px solid rgba(var(--white), 1);
    color: rgba(var(--white), 1);
    background-color: transparent;
}
.btn-border-white:hover {
    background-color: rgba(var(--white), 1);
    color: rgba(var(--title-color), 1);
}
.btn.theme-border {
    border: 1px solid rgba(var(--primary-color), 1);
    color: rgba(var(--primary-color), 1);
    background-color: transparent;
}
.btn.theme-border:hover {
    background-color: rgba(var(--primary-color), 1);
    color: #fff;
}
.btn-border {
    border: 1px solid rgba(var(--primary-color), 1);
    color: rgba(var(--primary-color), 1);
    background-color: transparent;
}
.btn-border:hover {
    color: rgba(var(--white), 1);
    background-color: rgba(var(--primary-color), 1);
}
.btn-border-transparent {
    border: 1px solid transparent;
}
.btn-danger {
    background-color: rgba(var(--danger-color), 1);
    outline: 1px solid rgba(var(--danger-color), 1);
    color: #fff;
    box-shadow: none;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger:focus-visible {
    outline: 1px solid rgba(var(--danger-color), 1);
    background-color: transparent;
    color: rgba(var(--danger-color), 1);
    box-shadow: none;
}
.btn-danger:focus:not(:focus-visible) {
    outline: 1px solid rgba(var(--danger-color), 1);
}
.btn-bg-theme {
    background-color: rgba(var(--primary-color), 1);
    color: #fff;
    --Color: #fff;
}
.btn-bg-theme:hover {
    color: #fff;
    --Color: #fff;
    background-color: rgba(var(--primary-color), 1);
}
.btn-bg-theme:first-child:active,
.btn-bg-theme:active {
    color: rgba(var(--primary-color), 1);
    --Color: rgba(var(--primary-color), 1);
    outline: 1px solid rgba(var(--primary-color), 1);
    border: none;
    background-color: transparent;
}
.btn-load-more {
    background-color: rgba(var(--primary-color), 1);
    color: #fff;
    padding-inline: calc(28px + 27 * (100vw - 320px) / 1600);
    margin-top: calc(20px + 13 * (100vw - 320px) / 1600);
    font-size: calc(16px + 2 * (100vw - 320px) / 1600);
    border: 1px solid rgba(var(--primary-color), 1);
}
.btn-load-more:hover {
    background-color: transparent;
    border-color: rgba(var(--primary-color), 1);
    color: rgba(var(--primary-color), 1);
}
.btn-load-more:disabled {
    border-color: rgba(var(--primary-color), 1);
    background-color: rgba(var(--primary-color), 1);
    color: rgba(var(--white), 1);
    cursor: not-allowed;
}

.btn-2 {
    padding: 10px 23px;
    border: none;
    font-weight: 500;
    display: inline-block;
    font-size: 16px;
    color: rgba(var(--title-color), 1);
    border-radius: 0;
}
.btn-2.btn-yellow {
    background-color: rgba(var(--primary-color), 1);
}

.btn-sm {
    font-weight: 400;
    font-size: 14px;
    padding: 6px 20px 5px;
}

.shop-btn {
    padding: 0;
    font-weight: 500;
    font-size: 14px;
    color: rgba(var(--theme-blue2), 1);
}
.shop-btn:hover {
    color: rgba(var(--theme-blue2), 1);
}

.shop-btn-2 {
    padding: 5px 14px;
    font-weight: 500;
    background-color: rgba(var(--primary-color), 1);
    font-size: 14px;
    color: rgba(var(--title-color), 1);
}

.btn-close:focus {
    box-shadow: none;
}

/* Mixin Files */
/**=====================
    2.5 Dropdown CSS
==========================**/
.dropdown-box {
    position: relative;
}
.dropdown-box:hover .dropdown-list {
    margin-top: 0;
    opacity: 1;
    visibility: visible !important;
}
.dropdown-box .dropdown-list {
    transition: all 0.3s ease-in-out;
    position: absolute;
    top: 39px !important;
    bottom: unset;
    left: 50% !important;
    transform: translateX(-50%) !important;
    right: unset !important;
    background-color: rgba(var(--white), 1);
    min-width: calc(215px + 35 * (100vw - 320px) / 1600);
    width: 100%;
    border-radius: 7px;
    padding: calc(9px + 4 * (100vw - 320px) / 1600);
    box-shadow: 0px 4px 10px rgba(var(--black), 0.1);
    z-index: 1;
    margin-top: -8px;
    opacity: 0;
    visibility: hidden !important;
}
.dropdown-box .dropdown-list::before {
    top: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    background-color: rgba(var(--white), 1);
    border-radius: 5px 0 0 0;
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
}
@media (max-width: 1399.98px) {
    .dropdown-box .dropdown-list::before {
        content: none;
    }
}
.dropdown-box .dropdown-list > li {
    width: 100%;
}
.dropdown-box .user-dropdown {
    align-items: center;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: calc(6px + 4 * (100vw - 320px) / 1600);
}
.dropdown-box .user-dropdown li {
    gap: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dropdown-box .user-dropdown li .login-btn {
    width: 100%;
    background-color: rgba(var(--theme-blue-dark), 1);
    color: #fff;
    font-size: calc(15px + 2 * (100vw - 320px) / 1600);
    padding: 8px;
    font-weight: 600;
}
body.demo-5.dark .dropdown-box .user-dropdown li .login-btn {
    background-color: rgba(var(--base-gray), 1);
}
.dropdown-box .user-dropdown li span {
    color: rgba(var(--content-color), 1);
}
.dropdown-box .user-dropdown li .signup-btn {
    padding: 0;
    border: none;
    background-color: transparent;
    color: rgba(var(--title-color), 1);
    font-size: 15px;
    width: unset;
    text-decoration: underline;
}
.dropdown-box .review-dropdown {
    min-width: 420px;
    padding: 18px;
}
@media (max-width: 1400px) {
    .dropdown-box
        .review-dropdown:has(.product-box-list[style="display: none;"])
        .empty-message {
        display: flex !important;
    }
}
@media (max-width: 1399.98px) {
    .dropdown-box .review-dropdown {
        position: fixed;
        top: 0 !important;
        left: unset !important;
        right: 0 !important;
        opacity: 1;
        visibility: visible;
        transform: translateX(350px) !important;
        margin: 0;
        border-radius: 0;
        padding: 0;
        z-index: 9;
        transition: all 0.15s linear;
        min-width: unset;
        width: calc(310px + 30 * (100vw - 320px) / 1081) !important;
        height: 100vh;
    }
    .dropdown-box .review-dropdown.show {
        transform: translateX(0) !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}
.dropdown-box .review-dropdown .dropdown-title {
    color: rgba(var(--title-color), 1);
    width: 100%;
    border-bottom: 1px solid rgba(var(--content-color), 0.2);
    margin-bottom: 13px;
    padding-bottom: 13px;
}
@media (max-width: 1399.98px) {
    .dropdown-box .review-dropdown .dropdown-title {
        padding: 16px calc(15px + 3 * (100vw - 320px) / 1080);
        background-color: #f2f3f8;
        box-shadow: 0 2px 10px -3px rgba(var(--title-color), 0.1);
        border-bottom: 1px solid rgba(var(--content-color), 0.2);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    body.dark .dropdown-box .review-dropdown .dropdown-title {
        background-color: #1a232e;
        border-color: rgba(var(--border-color), 1);
        box-shadow: none;
    }
}
.dropdown-box .review-dropdown .dropdown-title h4 {
    font-size: 21px;
}
.dropdown-box .review-dropdown .dropdown-title .btn-close {
    padding: 0;
    background: none;
    line-height: 1;
    color: rgba(var(--title-color), 1);
    opacity: 1;
    border-radius: calc(4px + 2 * (100vw - 320px) / 1600);
    background-color: rgba(var(--theme-blue-dark), 0.15);
    display: none;
    align-items: center;
    justify-content: center;
    width: calc(24px + 6 * (100vw - 320px) / 1600);
    height: calc(24px + 6 * (100vw - 320px) / 1600);
}
@media (max-width: 1399.98px) {
    .dropdown-box .review-dropdown .dropdown-title .btn-close {
        display: flex;
    }
}
@media (max-width: 575.98px) {
    .dropdown-box .review-dropdown .dropdown-title .btn-close {
        background-color: transparent;
        width: auto;
        height: auto;
    }
}
.dropdown-box .review-dropdown .dropdown-title .btn-close i {
    font-size: calc(18px + 2 * (100vw - 320px) / 1600);
    color: rgba(var(--title-color), 1);
}
.dropdown-box .review-dropdown .product-box-list {
    max-height: 380px;
    overflow: auto;
    padding-right: 12px;
}
[dir="rtl"] .dropdown-box .review-dropdown .product-box-list {
    padding-right: unset;
    padding-left: 12px;
}
@media (max-width: 1400px) {
    .dropdown-box .review-dropdown .product-box-list {
        margin-right: 7px;
        padding-inline: 13px 8px;
        height: calc(100vh - 67px - 20px);
        max-height: none;
    }
}
@media (max-width: 767.98px) {
    .dropdown-box .review-dropdown .product-box-list {
        height: calc(100% - 50px);
        max-height: 100%;
    }
}
.dropdown-box .review-dropdown .product-box-list::-webkit-scrollbar-track {
    border-radius: 100px;
    background-color: #f2f3f7;
}
body.dark
    .dropdown-box
    .review-dropdown
    .product-box-list::-webkit-scrollbar-track {
    background-color: #1a232e;
}
.dropdown-box .review-dropdown .product-box-list::-webkit-scrollbar {
    width: 4px;
    background-color: #f2f3f7;
}
body.dark .dropdown-box .review-dropdown .product-box-list::-webkit-scrollbar {
    background-color: #1a232e;
}
.dropdown-box .review-dropdown .product-box-list::-webkit-scrollbar-thumb {
    border-radius: 100px;
    background-color: rgba(var(--title-color), 0.2);
}
.dropdown-box .review-dropdown .empty-message {
    text-align: center;
    margin-block: 40px;
    padding-top: 18px;
    color: rgba(var(--title-color), 1);
}
@media (max-width: 1400px) {
    .dropdown-box .review-dropdown .empty-message {
        height: calc(100vh - 69px);
        margin: 0;
        padding: 0;
        flex-direction: column;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
.dropdown-box .review-dropdown .empty-message h6 {
    font-size: calc(16px + 2 * (100vw - 320px) / 1600);
    margin-top: 16px;
}

/* Mixin Files */
/**=====================
    2.6 form scss
  ==========================**/
/* Input auto-fill */
.input-group .btn {
    z-index: unset;
}

input[type="search" i]::-webkit-search-cancel-button {
    appearance: none;
    background-image: url(../svg/close-line.svg);
    height: 18px;
    width: 18px;
}
body.dark input[type="search" i]::-webkit-search-cancel-button {
    filter: invert(1);
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
    display: inline-block;
}

.invalid-tooltip,
.valid-tooltip {
    z-index: 1;
    position: static;
    inset: unset;
}

.input-group > .form-control:focus,
.input-group > .form-control:focus,
.input-group > .form-control:focus-within,
.input-group > .form-floating:focus,
.input-group > .form-floating:focus,
.input-group > .form-floating:focus-within {
    z-index: unset;
}

.was-validated .form-control:invalid:focus,
.form-control.is-invalid:focus,
.was-validated .form-control:valid:focus,
.form-control.is-valid:focus,
.was-validated .form-check-input:invalid:focus,
.form-check-input.is-invalid:focus,
.was-validated .form-check-input:valid:focus,
.form-check-input.is-valid:focus {
    box-shadow: unset;
}

.was-validated .form-control:valid:focus,
.form-control.is-valid:focus {
    border-color: rgba(var(--theme-green), 1);
}

.was-validated .form-check-input:valid:focus::after,
.form-check-input.is-valid:focus::after {
    border-color: rgba(var(--theme-green), 1);
}

.was-validated .form-check-input:invalid:focus::after,
.form-check-input.is-invalid:focus::after {
    border-color: rgba(var(--danger-color), 1);
}

.was-validated .form-control:invalid:focus,
.form-control.is-invalid:focus {
    border-color: rgba(var(--danger-color), 1);
}

.was-validated .form-control:invalid,
.form-control.is-invalid {
    background-image: none;
    border-color: rgba(var(--danger-color), 1);
}

.was-validated.form-box .form-control:valid {
    background-image: none;
    border-color: rgba(var(--theme-green), 1);
    position: relative;
}

.was-validated .position-relative .form-control {
    background: none;
}
.was-validated .position-relative .form-control:valid ~ div {
    position: absolute;
    right: 13px;
    top: 12px;
}
.was-validated .position-relative .form-control:valid ~ div::after {
    content: "\eb7b";
    color: rgba(var(--theme-green), 1);
    font-size: 17px;
    font-weight: 600;
    font-family: remixicon;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
}
.was-validated .position-relative .form-control:invalid ~ div {
    position: absolute;
    right: 13px;
    top: 12px;
}
.was-validated .position-relative .form-control:invalid ~ div::after {
    content: "\eb99";
    color: rgba(var(--danger-color), 1);
    font-size: 17px;
    font-weight: 600;
    font-family: remixicon;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
}

.valid-tooltip,
.invalid-tooltip {
    background-color: transparent;
    padding: 0;
    z-index: unset;
}

.valid-tooltip {
    color: rgba(var(--theme-green), 1);
}

.invalid-tooltip {
    color: rgba(var(--danger-color), 1);
}

.was-validated .input-group > .form-control:not(:focus):invalid,
.input-group > .form-control:not(:focus).is-invalid,
.was-validated .input-group > .form-select:not(:focus):invalid,
.input-group > .form-select:not(:focus).is-invalid,
.was-validated .input-group > .form-floating:not(:focus-within):invalid,
.input-group > .form-floating:not(:focus-within).is-invalid {
    z-index: 0;
}

input[type="number"] {
    appearance: textfield;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    appearance: none;
    margin: 0;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    color: rgba(var(--title-color), 1) !important;
    -webkit-text-fill-color: rgba(var(--title-color), 1) !important;
    box-shadow: 0 0 0 1000px rgba(var(--base-gray), 1) inset !important;
    background-clip: text !important;
}

form .form-check-input {
    outline: 0;
}
form .form-check-input:active {
    filter: unset;
}
form .form-check-input:focus {
    box-shadow: unset;
}
form .form-check-input:checked {
    background-color: transparent;
    border-color: transparent;
}

.theme-form .form-label {
    font-size: calc(14px + 4 * (100vw - 320px) / 1600);
    color: rgba(var(--content-color), 1);
    font-weight: 500;
    margin-bottom: calc(2px + 2 * (100vw - 320px) / 1600);
}
.theme-form .form-label span {
    color: rgba(var(--danger-color), 1);
}
.theme-form .input-group-text {
    color: rgba(var(--title-color), 1);
    border-color: rgba(var(--border-color), 1);
    background-color: rgba(var(--base-gray), 1);
}
.theme-form .form-control,
.theme-form .form-select {
    padding: calc(10px + 2 * (100vw - 320px) / 1600)
        calc(12px + 2 * (100vw - 320px) / 1600);
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    font-weight: 400;
    color: rgba(var(--title-color), 1);
    background-color: rgba(var(--white), 1);
    border-radius: 5px;
    border: 1px solid rgba(var(--border-color), 1);
}
[dir="rtl"] .theme-form .form-control,
[dir="rtl"] .theme-form .form-select {
    text-align: right;
}
.theme-form .form-control:focus,
.theme-form .form-select:focus {
    border-color: rgba(var(--title-color), 0.18);
}
.theme-form .form-control::placeholder,
.theme-form .form-select::placeholder {
    color: rgba(var(--content-color), 0.8);
}
.theme-form .suggestion-text {
    font-size: calc(13px + 1 * (100vw - 320px) / 1600);
    font-weight: 400;
    color: rgba(var(--content-color), 1);
    line-height: 1.5;
    margin-top: calc(5px + 2 * (100vw - 320px) / 1600);
    display: block;
}

.form-box .form-control,
.form-box .form-select {
    padding: 13px;
    border: unset;
    font-size: 16px;
    background-color: rgba(var(--base-gray), 1);
}

[dir="rtl"] input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
}
body.dark input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

body.dark .form-select {
    background-image: url(../images/select-arrow.svg);
}

.theme-checkbox {
    min-height: unset;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: calc(7px + 3 * (100vw - 320px) / 1600);
}
.theme-checkbox .form-check-input {
    cursor: pointer;
    background-color: transparent;
    position: relative;
    border: none;
    box-shadow: none;
    float: unset;
    margin: -3px 0 0 0;
    filter: unset;
    width: 18px;
    height: 18px;
}
.theme-checkbox .form-check-input:before {
    transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transform: rotate(-45deg) scale(0, 0);
    left: 4px;
    top: 5px;
    z-index: 1;
    border: 2px solid rgba(var(--primary-color), 1);
    border-top-style: none;
    border-right-style: none;
    content: "";
    position: absolute;
    width: 10px;
    height: 5px;
}
.theme-checkbox .form-check-input:after {
    top: 0;
    left: 0;
    border: 1px solid rgba(var(--content-color), 0.2);
    cursor: pointer;
    background-color: rgba(var(--white), 1);
    border-radius: 4px;
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
}
.theme-checkbox .form-check-input:checked {
    background-color: transparent;
}
.theme-checkbox .form-check-input:checked:before {
    transform: rotate(-45deg) scale(1, 1);
}
.theme-checkbox .form-check-label {
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    color: rgba(var(--content-color), 1);
    font-weight: 400;
    cursor: pointer;
}

.checkbox_animated {
    cursor: pointer;
    position: relative;
    margin-right: 16px;
    height: 100%;
    border: none;
    box-shadow: none;
    width: 18px;
    height: 18px;
}
.checkbox_animated:before {
    transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transform: rotate(-45deg) scale(0, 0);
    left: 4px;
    top: 5px;
    z-index: 1;
    border: 2px solid rgba(var(--primary-color), 1);
    border-top-style: none;
    border-right-style: none;
    content: "";
    position: absolute;
    width: 10px;
    height: 5px;
}
.checkbox_animated:after {
    top: 0;
    left: 0;
    border: 1px solid rgba(var(--content-color), 0.2);
    cursor: pointer;
    background-color: rgba(var(--white), 1);
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
}
.checkbox_animated:checked {
    background-color: transparent;
}
.checkbox_animated:checked:before {
    transform: rotate(-45deg) scale(1, 1);
}

/**=====================
    2.7 Lazy Load css Start
==========================**/
img {
    filter: none;
    opacity: 1;
}
/*-----------------------------------------------------------------------------------
Template Name: Kartify - 
Template URI: https://themes.pixelstrap.com/kartify/
Description: This is E-commerce website
Author: Pixelstrap
Author URI: https://themeforest.net/user/pixelstrap
-----------------------------------------------------------------------------------

1. Base Files
	1.1 Reset CSS
	1.2 Typography CSS

2. Components Files
	2.1 Accordion CSS
	2.2 Brand CSS
	2.3 Breadcrumb CSS
	2.4 Buttons CSS
	2.5 Dropdown CSS
	2.6 Form CSS 
	2.7 Layzload CSS
	2.8 Light Gallery CSS
	2.9 Modal CSS
	2.10 Nav-tabs CSS
	2.11 Offcanvas CSS
	2.12 Pagination CSS
	2.13 Rating CSS
	2.14 Ratio CSS
	2.15 Sidebar Category CSS
	2.16 Slider CSS
	2.17 Table CSS
	2.18 Title CSS

3. Layout Files
    3.1 Banner CSS
    3.2 Category CSS
    3.3 Cookie Bar CSS
    3.4 Footer CSS
    3.5 Header CSS
    3.6 Hone CSS
    3.7 Mobile Menu CSS
    3.8 Nav CSS
    3.9 Newsletter CSS
    3.10 Product CSS
    3.11 Service CSS

4. Pages Files
    4.1 Blog Page CSS
    4.2 Checkout CSS
    4.3 Inner Page CSS
    4.4 Portfolio CSS
    4.5 Product Page CSS
    4.6 Shop Page CSS
    4.7 Vendor Page CSS

5. Templates Files
    5.1 Dark CSS

6. Utils Files
    6.1 Mixin Files
        6.1.1 Animation CSS
        6.1.2 Common CSS
    6.2 Variables CSS */
/* Util Files */
/* Mixin Files */
/**=====================
    2.8 Light Gallery CSS


==========================**/

/* whatsapp */

/* whatsapp */
.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 40px;
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #25d366, #0ecb72);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: whatsappPulse 1.8s infinite;
    margin-bottom: 150px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float::after {
    content: "Chat with us";
    position: absolute;
    right: 70px;
    background: #111;
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    opacity: 0;
    transform: translateX(10px);
    transition: 0.3s;
    white-space: nowrap;
}

.whatsapp-float:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* whatsapp end */

/* ddd */

/* .authentication-box {
    padding: 40px 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
}

.auth-title h4 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

.auth-title p {
    color: #666;
    margin-bottom: 25px;
}

.divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.divider span {
    background: #fff;
    padding: 0 10px;
    position: relative;
    z-index: 1;
}

.divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #ddd;
    z-index: 0;
}

.sign-up-next .btn {
    padding: 0;
    color: var(--theme-color);
} */
/* dd end login */
.lg-container {
    font-family: "BR Hendrix";
}

.lg-backdrop {
    background-color: rgba(var(--title-color), 0.95);
    backdrop-filter: blur(3.5px);
}

.lg-outer.lg-use-transition-for-zoom
    .lg-item.lg-complete.lg-zoomable
    .lg-img-wrap {
    padding-bottom: 11px;
}
.lg-outer .lg-thumb-outer {
    background-color: rgba(var(--title-color), 1);
}

.lg-zoom-in-out .lg-item {
    opacity: 0;
    will-change: transform, opacity;
}
.lg-zoom-in-out .lg-item.lg-prev-slide {
    transform: scale3d(2, 2, 2);
}
.lg-zoom-in-out .lg-item.lg-next-slide {
    transform: scale3d(0, 0, 0);
}
.lg-zoom-in-out .lg-item.lg-current {
    transform: scale3d(1, 1, 1);
    opacity: 1;
}
.lg-zoom-in-out .lg-item.lg-prev-slide,
.lg-zoom-in-out .lg-item.lg-next-slide,
.lg-zoom-in-out .lg-item.lg-current {
    transition:
        transform 1s cubic-bezier(0, 0, 0.25, 1) 0s,
        opacity 1s ease 0s;
}

/* Mixin Files */
/**=====================
    2.9 Modal CSS
==========================**/
.theme-modal.fade .modal-dialog {
    transform: scale(0.9);
}
.theme-modal.show .modal-dialog {
    transform: none;
}
.theme-modal .modal-content {
    overflow: unset;
    border: none;
    border-radius: 0;
    background-color: rgba(var(--white), 1);
}
.theme-modal .modal-content .modal-header {
    padding-bottom: 0;
    border: none;
    justify-content: space-between;
}
.theme-modal .modal-content .modal-header .btn-close {
    margin: 0;
    padding: 0;
    background: none;
    line-height: 1;
    border-radius: 0;
    color: #fff;
    opacity: 1;
    background-color: rgba(var(--primary-color), 1);
    width: calc(26px + 4 * (100vw - 320px) / 1600);
    height: calc(26px + 4 * (100vw - 320px) / 1600);
}
.theme-modal .modal-content .modal-header .btn-close i {
    font-size: calc(18px + 4 * (100vw - 320px) / 1600);
}
.theme-modal .modal-content .modal-header h3 {
    font-size: calc(20px + 4 * (100vw - 320px) / 1600);
    font-weight: 500;
    line-height: 1;
    margin-top: calc(1px + 2 * (100vw - 320px) / 1600);
}
.theme-modal .modal-content .modal-body {
    padding: calc(12px + 4 * (100vw - 320px) / 1600);
}
.theme-modal .modal-content .modal-footer {
    gap: 11px;
    border: unset;
    padding-top: 5px;
}
.theme-modal .modal-content .modal-footer > * {
    margin: 0;
}
.theme-modal .modal-content .modal-footer button {
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    border-radius: 5px;
}

.newsletter-modal {
    padding: 0 !important;
}
.newsletter-modal .modal-dialog {
    max-width: 600px;
}
.newsletter-modal .modal-dialog .modal-content {
    border-radius: 6px;
    overflow: hidden;
}
.newsletter-modal .btn-close {
    margin: 0;
    padding: 0;
    background: none;
    line-height: 1;
    z-index: 1;
    border-radius: 0;
    color: #fff;
    opacity: 1;
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(var(--primary-color), 1);
    width: calc(26px + 4 * (100vw - 320px) / 1600);
    height: calc(26px + 4 * (100vw - 320px) / 1600);
}
.newsletter-modal .btn-close i {
    font-size: calc(18px + 4 * (100vw - 320px) / 1600);
}
.newsletter-modal .modal-content .modal-body {
    padding: 0;
}
.newsletter-modal .newsletter-box {
    position: relative;
    z-index: 0;
}
.newsletter-modal .newsletter-box .newsletter-image {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    object-position: bottom;
}
.newsletter-modal .newsletter-box .newsletter-content {
    padding: calc(50px + 10 * (100vw - 320px) / 1600)
        calc(15px + 15 * (100vw - 320px) / 1600)
        calc(106px + 53 * (100vw - 320px) / 1600);
}
.newsletter-modal .newsletter-box .newsletter-content h3 {
    font-size: calc(22px + 4 * (100vw - 320px) / 1600);
}
body.dark .newsletter-modal .newsletter-box .newsletter-content h3 {
    color: #202326;
}
.newsletter-modal .newsletter-box .newsletter-content p {
    width: 80%;
    color: rgba(var(--content-color), 1);
    margin-top: 2px;
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
}
body.dark .newsletter-modal .newsletter-box .newsletter-content p {
    color: #5e6278;
}
@media (max-width: 767.98px) {
    .newsletter-modal .newsletter-box .newsletter-content p {
        width: 100%;
    }
}
.newsletter-modal .newsletter-box .newsletter-content .newsletter-form-box {
    margin-top: calc(12px + 8 * (100vw - 320px) / 1600);
    gap: calc(8px + 2 * (100vw - 320px) / 1600);
    display: flex;
}
.newsletter-modal
    .newsletter-box
    .newsletter-content
    .newsletter-form-box
    .form-control {
    padding: calc(9px + 2 * (100vw - 320px) / 1600)
        calc(14px + 5 * (100vw - 320px) / 1600)
        calc(7px + 2 * (100vw - 320px) / 1600);
    border-radius: calc(4px + 2 * (100vw - 320px) / 1600);
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
}
[dir="rtl"]
    .newsletter-modal
    .newsletter-box
    .newsletter-content
    .newsletter-form-box
    .form-control {
    text-align: right;
}
.newsletter-modal
    .newsletter-box
    .newsletter-content
    .newsletter-form-box
    .newsletter-button {
    background-color: rgba(var(--primary-color), 1);
    color: #fff;
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    padding-top: calc(8px + 2 * (100vw - 320px) / 1600);
    border-radius: calc(4px + 2 * (100vw - 320px) / 1600);
    margin: 0;
    white-space: nowrap;
}

.notify-modal .modal-content .items-box {
    display: flex;
    align-items: center;
    gap: 14px;
    background-color: rgba(var(--base-gray), 1);
    padding: 11px;
    border-radius: 5px;
    border: 1px solid rgba(var(--border-color), 1);
}
.notify-modal .modal-content .items-box .items-img {
    background-color: rgba(var(--white), 1);
    padding: 10px;
    border-radius: 7px;
    width: 110px;
    height: 110px;
}
.notify-modal .modal-content .items-box .items-details {
    width: calc(100% - 110px - 14px);
}
.notify-modal .modal-content .items-box .items-details h5 {
    color: rgba(var(--content-color), 1);
    margin-top: 6px;
}
.notify-modal .modal-content .theme-form {
    margin-top: 15px;
}
.notify-modal .modal-content .modal-footer .btn {
    border-radius: 6px;
    border: 1px solid rgba(var(--primary-color), 1);
}
.notify-modal .modal-content .modal-footer .btn.apply-btn:hover {
    background-color: transparent;
    color: rgba(var(--primary-color), 1);
}

.ask-question-modal .modal-content .items-box {
    display: flex;
    align-items: center;
    gap: calc(10px + 4 * (100vw - 320px) / 1600);
    background-color: rgba(var(--base-gray), 1);
    padding: calc(8px + 3 * (100vw - 320px) / 1600);
    border-radius: calc(4px + 1 * (100vw - 320px) / 1600);
    border: 1px solid rgba(var(--border-color), 1);
}
.ask-question-modal .modal-content .items-box .items-img {
    background-color: rgba(var(--white), 1);
    padding: calc(8px + 2 * (100vw - 320px) / 1600);
    border-radius: calc(4px + 3 * (100vw - 320px) / 1600);
    width: calc(82px + 28 * (100vw - 320px) / 1600);
    height: calc(82px + 28 * (100vw - 320px) / 1600);
}
.ask-question-modal .modal-content .items-box .items-details {
    width: calc(
        100% - (82px + 28 * (100vw - 320px) / 1600) -
            (10px + 4 * (100vw - 320px) / 1600)
    );
}
.ask-question-modal .modal-content .items-box .items-details h4 {
    font-size: calc(16px + 2 * (100vw - 320px) / 1600);
}
.ask-question-modal .modal-content .items-box .items-details h5 {
    color: rgba(var(--content-color), 1);
    margin-top: calc(4px + 2 * (100vw - 320px) / 1600);
}
.ask-question-modal .modal-content .theme-form {
    margin-top: 15px;
}
.ask-question-modal .modal-content .modal-footer .btn {
    border-radius: calc(4px + 2 * (100vw - 320px) / 1600);
    border: 1px solid rgba(var(--primary-color), 1);
}
.ask-question-modal .modal-content .modal-footer .btn.apply-btn:hover {
    background-color: transparent;
    color: rgba(var(--primary-color), 1);
}

.modal.authentication-offcanvas {
    width: calc(300px + 140 * (100vw - 320px) / 1600);
    inset: unset;
    right: 0;
    top: 0;
    transform: translateX(100%);
    transition: all 0.2s ease-in-out;
}
.modal.authentication-offcanvas.show {
    transform: translateX(0);
}
.modal.authentication-offcanvas .modal-dialog {
    transform: unset;
    max-width: unset;
    margin: 0;
    height: 100%;
    min-height: 100vh;
    display: block;
}
.modal.authentication-offcanvas .modal-dialog .modal-content {
    border: none;
    border-radius: 0;
    min-height: 100vh;
    display: block;
    background-color: rgba(var(--white), 1);
}
.modal.authentication-offcanvas .modal-content {
    border: unset;
    border-radius: 0;
}
.modal.authentication-offcanvas .modal-header {
    border: unset;
    padding: 0;
}
.modal.authentication-offcanvas .modal-body {
    height: 100%;
    min-height: 100vh;
}
.modal.authentication-offcanvas .btn-close {
    position: absolute;
    margin: 0;
    padding: 0;
    top: calc(6px + 4 * (100vw - 320px) / 1600);
    right: calc(6px + 4 * (100vw - 320px) / 1600);
    background: unset;
    background-color: rgba(var(--primary-color), 1);
    opacity: 1;
    color: rgba(var(--white), 1);
    border-radius: 0;
    z-index: 1;
    width: calc(26px + 9 * (100vw - 320px) / 1600);
    height: calc(26px + 9 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
    justify-content: center;
}
[dir="rtl"] .modal.authentication-offcanvas .btn-close {
    right: unset;
    left: calc(6px + 4 * (100vw - 320px) / 1600);
}
.modal.authentication-offcanvas .btn-close i {
    font-size: calc(18px + 4 * (100vw - 320px) / 1600);
}
.modal.authentication-offcanvas .authentication-box {
    padding: 22px 25px;
}
.modal.authentication-offcanvas .authentication-box .auth-title {
    margin-bottom: 20px;
}
.modal.authentication-offcanvas .authentication-box .auth-title h4 {
    font-weight: 600;
    font-size: calc(22px + 5 * (100vw - 320px) / 1600);
}
@media (max-width: 767.98px) {
    .modal.authentication-offcanvas .authentication-box .auth-title h4 {
        font-weight: 500;
    }
}
.modal.authentication-offcanvas .authentication-box .auth-title p {
    color: rgba(var(--content-color), 0.8);
    margin-top: 5px;
    line-height: 1.4;
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
}
.modal.authentication-offcanvas .authentication-box .cancel-btn {
    background-color: #e6e7e9;
    color: rgba(var(--content-color), 1);
    border: 1px solid transparent;
}
body.dark .modal.authentication-offcanvas .authentication-box .cancel-btn {
    background-color: rgba(var(--base-gray), 1);
}
.modal.authentication-offcanvas .authentication-box .cancel-btn:hover {
    background-color: transparent;
    border-color: rgba(var(--border-color), 1);
}
body.dark
    .modal.authentication-offcanvas
    .authentication-box
    .cancel-btn:hover {
    background-color: transparent;
}
.modal.authentication-offcanvas .authentication-box .auth-form .form-control {
    padding: 13px;
    color: rgba(var(--title-color), 1);
    border: unset;
    font-size: calc(15px + 2 * (100vw - 320px) / 1600);
    border-radius: 0;
    background-color: rgba(var(--base-gray), 1);
}
[dir="rtl"]
    .modal.authentication-offcanvas
    .authentication-box
    .auth-form
    .form-control {
    text-align: right;
}
.modal.authentication-offcanvas
    .authentication-box
    .auth-form
    .form-control::placeholder {
    color: rgba(var(--content-color), 0.8);
}
.modal.authentication-offcanvas .authentication-box .auth-form .forgot-box {
    gap: 10px 0;
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.modal.authentication-offcanvas
    .authentication-box
    .auth-form
    .forgot-box
    .form-check {
    min-height: unset;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 7px;
}
.modal.authentication-offcanvas
    .authentication-box
    .auth-form
    .forgot-box
    .form-check
    .form-check-input {
    float: unset;
    margin: 0;
    border: unset;
    background: unset;
    position: relative;
    width: 20px;
    height: 20px;
}
.modal.authentication-offcanvas
    .authentication-box
    .auth-form
    .forgot-box
    .form-check
    .form-check-input::before {
    border: 1px solid rgba(var(--content-color), 0.1);
    background-color: rgba(var(--base-gray), 1);
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}
.modal.authentication-offcanvas
    .authentication-box
    .auth-form
    .forgot-box
    .form-check
    .form-check-input::after {
    border: 2px solid rgba(var(--primary-color), 1);
    border-top: unset;
    border-left: unset;
    top: 2px;
    left: 7px;
    transform: rotate(51deg) scale(0);
    transition: transform 0.3s ease-in-out;
    content: "";
    position: absolute;
    width: 7px;
    height: 12px;
}
.modal.authentication-offcanvas
    .authentication-box
    .auth-form
    .forgot-box
    .form-check
    .form-check-input:checked::after {
    transform: rotate(51deg) scale(1);
}
.modal.authentication-offcanvas
    .authentication-box
    .auth-form
    .forgot-box
    .form-check
    .form-check-label {
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    font-weight: 400;
    color: rgba(var(--content-color), 1);
    line-height: 1;
}
.modal.authentication-offcanvas .authentication-box .auth-form .divider {
    position: relative;
    text-align: center;
    z-index: 0;
    margin-block: calc(7px + 4 * (100vw - 320px) / 1600);
}
.modal.authentication-offcanvas
    .authentication-box
    .auth-form
    .divider::before {
    left: 0;
    border-top: 1px solid rgba(var(--content-color), 0.1);
    z-index: -1;
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 1px;
}
.modal.authentication-offcanvas .authentication-box .auth-form .divider span {
    font-size: 13px;
    color: rgba(var(--content-color), 1);
    padding-inline: 12px;
    background-color: rgba(var(--white), 1);
}
.modal.authentication-offcanvas .authentication-box .auth-form .social-link {
    display: grid;
    gap: 12px;
}
.modal.authentication-offcanvas .authentication-box .auth-form .social-link a {
    gap: 11px;
    font-weight: 400;
    background-color: rgba(var(--base-gray), 1);
    color: rgba(var(--content-color), 1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal.authentication-offcanvas
    .authentication-box
    .auth-form
    .social-link
    a
    img {
    width: calc(22px + 4 * (100vw - 320px) / 1600);
    height: calc(22px + 4 * (100vw - 320px) / 1600);
}
.modal.authentication-offcanvas
    .authentication-box
    .auth-form
    .social-link
    a
    span {
    line-height: 1;
}
.modal.authentication-offcanvas .authentication-box .auth-form .sign-up-next {
    font-size: calc(13px + 1 * (100vw - 320px) / 1600);
    text-align: center;
    margin-top: 18px;
    color: rgba(var(--content-color), 0.7);
    font-weight: 400;
    font-size: 15px;
}
.modal.authentication-offcanvas
    .authentication-box
    .auth-form
    .sign-up-next
    span {
    cursor: pointer;
    border: unset;
    background-color: transparent;
    color: rgba(var(--primary-color), 1);
    padding: 0;
    font-weight: 500;
}
.modal.authentication-offcanvas .authentication-box .nav-tabs {
    border: unset;
    border-bottom: 1px solid rgba(var(--content-color), 0.1);
    margin-bottom: 25px;
    padding-bottom: 6px;
}
.modal.authentication-offcanvas .authentication-box .nav-tabs .nav-item {
    position: relative;
}
.modal.authentication-offcanvas
    .authentication-box
    .nav-tabs
    .nav-item
    .nav-link {
    border: unset;
    margin: 0;
    font-size: 18px;
    color: rgba(var(--content-color), 1);
    font-weight: 400;
    padding: 0;
    border-radius: 0;
}
.modal.authentication-offcanvas
    .authentication-box
    .nav-tabs
    .nav-item
    .nav-link.active {
    color: rgba(var(--primary-color), 1);
    font-weight: 500;
}
.modal.authentication-offcanvas
    .authentication-box
    .nav-tabs
    .nav-item
    + .nav-item {
    margin-left: 10px;
    padding-left: 10px;
}
.modal.authentication-offcanvas
    .authentication-box
    .nav-tabs
    .nav-item
    + .nav-item::after {
    left: 0;
    border-left: 1px solid rgba(var(--primary-color), 1);
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 80%;
}
.modal.authentication-offcanvas .boxContent {
    background: #fff;
    width: 100%;
    padding: 50px;
    margin: 16px;
    opacity: 0;
    display: none;
}
.modal.authentication-offcanvas .active {
    opacity: 1;
}
.modal.authentication-offcanvas .boxContent strong {
    font-size: 30px;
}
.modal.authentication-offcanvas .show-content {
    opacity: 1;
    display: block;
}

.ask-question-modal .modal-body .question-image-box {
    display: flex;
    align-items: center;
    padding: 17px 23px;
    gap: 14px;
    margin-bottom: 22px;
    background-color: rgba(var(--base-gray), 1);
}
.ask-question-modal .modal-body .question-image-box .product-image {
    overflow: hidden;
    background-color: rgba(var(--white), 1);
    padding: 8px;
    width: 80px;
    height: 80px;
}
.ask-question-modal .modal-body .question-image-box .product-name h4 {
    margin-bottom: 5px;
    font-size: 18px;
}
.ask-question-modal .modal-body .question-image-box .product-name h6 {
    line-height: 1;
    color: rgba(var(--content-color), 0.6);
    display: flex;
    align-items: center;
    gap: 3px;
    margin: 5px 0 0;
}

.authentication-modal .modal-content {
    border: unset;
    background-color: rgba(var(--white), 1);
    border-radius: 0;
}
.authentication-modal .modal-header {
    border: unset;
    padding: 0;
}
.authentication-modal .btn-close {
    position: absolute;
    margin: 0;
    padding: 0;
    top: calc(6px + 4 * (100vw - 320px) / 1600);
    right: calc(6px + 4 * (100vw - 320px) / 1600);
    background: unset;
    background-color: rgba(var(--primary-color), 1);
    opacity: 1;
    color: #fff;
    border-radius: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(26px + 9 * (100vw - 320px) / 1600);
    height: calc(26px + 9 * (100vw - 320px) / 1600);
}
[dir="rtl"] .authentication-modal .btn-close {
    right: unset;
    left: calc(6px + 4 * (100vw - 320px) / 1600);
}
.authentication-modal .btn-close i {
    font-size: calc(18px + 4 * (100vw - 320px) / 1600);
}
.authentication-modal .authentication-box {
    padding: calc(15px + 11 * (100vw - 320px) / 1600)
        calc(18px + 19 * (100vw - 320px) / 1600);
}
.authentication-modal .authentication-box .auth-title {
    margin-bottom: 20px;
}
.authentication-modal .authentication-box .auth-title h4 {
    font-weight: 600;
    font-size: calc(22px + 4 * (100vw - 320px) / 1600);
}
@media (max-width: 767.98px) {
    .authentication-modal .authentication-box .auth-title h4 {
        font-weight: 500;
    }
}
.authentication-modal .authentication-box .auth-title p {
    color: rgba(var(--content-color), 1);
    margin-top: 2px;
    font-size: calc(14px + 1 * (100vw - 320px) / 1600);
}
.authentication-modal .authentication-box .auth-form .form-control {
    padding: 13px;
    color: rgba(var(--title-color), 1);
    border: unset;
    font-size: calc(15px + 2 * (100vw - 320px) / 1600);
    border-radius: 5px;
    background-color: rgba(var(--base-gray), 1);
}
body.demo-6.dark
    .authentication-modal
    .authentication-box
    .auth-form
    .form-control {
    background-color: #303438;
}
[dir="rtl"] .authentication-modal .authentication-box .auth-form .form-control {
    text-align: right;
}
.authentication-modal
    .authentication-box
    .auth-form
    .form-control::placeholder {
    color: rgba(var(--title-color), 0.6);
}
.authentication-modal .authentication-box .auth-form .forgot-box {
    gap: 10px 0;
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.authentication-modal .authentication-box .auth-form .forgot-box .form-check {
    min-height: unset;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 7px;
}
.authentication-modal
    .authentication-box
    .auth-form
    .forgot-box
    .form-check
    .form-check-input {
    float: unset;
    margin: 0;
    border: unset;
    background: unset;
    position: relative;
    width: 20px;
    height: 20px;
}
.authentication-modal
    .authentication-box
    .auth-form
    .forgot-box
    .form-check
    .form-check-input::before {
    border: 1px solid rgba(var(--content-color), 0.1);
    background-color: rgba(var(--base-gray), 1);
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}
body.demo-6.dark
    .authentication-modal
    .authentication-box
    .auth-form
    .forgot-box
    .form-check
    .form-check-input::before {
    background-color: #303438;
}
.authentication-modal
    .authentication-box
    .auth-form
    .forgot-box
    .form-check
    .form-check-input::after {
    border: 2px solid rgba(var(--primary-color), 1);
    border-top: unset;
    border-left: unset;
    top: 2px;
    left: 7px;
    transform: rotate(51deg) scale(0);
    transition: transform 0.3s ease-in-out;
    content: "";
    position: absolute;
    width: 7px;
    height: 12px;
}
.authentication-modal
    .authentication-box
    .auth-form
    .forgot-box
    .form-check
    .form-check-input:checked::after {
    transform: rotate(51deg) scale(1);
}
.authentication-modal
    .authentication-box
    .auth-form
    .forgot-box
    .form-check
    .form-check-label {
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    font-weight: 400;
    margin-top: 2px;
    color: rgba(var(--content-color), 1);
    line-height: 1;
}
.authentication-modal .authentication-box .auth-form .divider {
    position: relative;
    text-align: center;
    z-index: 0;
    margin-block: calc(7px + 4 * (100vw - 320px) / 1600);
}
.authentication-modal .authentication-box .auth-form .divider::before {
    left: 0;
    border-top: 1px solid rgba(var(--content-color), 0.1);
    z-index: -1;
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 1px;
}
.authentication-modal .authentication-box .auth-form .divider span {
    font-size: 13px;
    color: rgba(var(--content-color), 0.7);
    padding-inline: 12px;
    background-color: rgba(var(--white), 1);
}
.authentication-modal .authentication-box .auth-form .social-link {
    display: grid;
    gap: 12px;
}
.authentication-modal .authentication-box .auth-form .social-link a {
    gap: 11px;
    font-weight: 400;
    background-color: rgba(var(--base-gray), 1);
    color: rgba(var(--content-color), 1);
    display: flex;
    align-items: center;
    justify-content: center;
}
body.demo-6.dark
    .authentication-modal
    .authentication-box
    .auth-form
    .social-link
    a {
    background-color: #303438;
}
.authentication-modal .authentication-box .auth-form .social-link a img {
    width: calc(22px + 4 * (100vw - 320px) / 1600);
    height: calc(22px + 4 * (100vw - 320px) / 1600);
}
.authentication-modal .authentication-box .auth-form .social-link a span {
    line-height: 1;
}
.authentication-modal .authentication-box .auth-form .sign-up-next {
    text-align: center;
    margin-top: 18px;
    color: rgba(var(--content-color), 0.7);
    font-weight: 400;
    font-size: 15px;
}
.authentication-modal .authentication-box .auth-form .sign-up-next .next-button,
.authentication-modal
    .authentication-box
    .auth-form
    .sign-up-next
    .next-button2 {
    border: unset;
    background-color: transparent;
    color: rgba(var(--primary-color), 1);
    padding: 0;
    font-weight: 500;
    font-size: 15px;
}
.authentication-modal .authentication-box .nav-tabs {
    border: unset;
    border-bottom: 1px solid rgba(var(--content-color), 0.1);
    margin-bottom: 25px;
    padding-bottom: 6px;
}
.authentication-modal .authentication-box .nav-tabs .nav-item {
    position: relative;
}
.authentication-modal .authentication-box .nav-tabs .nav-item .nav-link {
    border: unset;
    margin: 0;
    font-size: 18px;
    color: rgba(var(--content-color), 1);
    font-weight: 400;
    padding: 0;
    border-radius: 0;
}
.authentication-modal .authentication-box .nav-tabs .nav-item .nav-link.active {
    color: rgba(var(--primary-color), 1);
    font-weight: 500;
}
.authentication-modal .authentication-box .nav-tabs .nav-item + .nav-item {
    margin-left: 10px;
    padding-left: 10px;
}
.authentication-modal
    .authentication-box
    .nav-tabs
    .nav-item
    + .nav-item::after {
    left: 0;
    border-left: 1px solid rgba(var(--primary-color), 1);
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 80%;
}
.authentication-modal .boxContent {
    background: #fff;
    width: 100%;
    padding: 50px;
    margin: 16px;
    opacity: 0;
    display: none;
}
.authentication-modal .active {
    opacity: 1;
}
.authentication-modal .boxContent strong {
    font-size: 30px;
}
.authentication-modal .show-content {
    opacity: 1;
    display: block;
}

.delete-account-modal .modal-content {
    text-align: center;
    border-radius: 6px;
}
.delete-account-modal .modal-content .modal-body {
    padding: 27px 16px 11px;
}
.delete-account-modal .modal-content .modal-body .delete-content i {
    margin: 0 auto 20px;
    border-radius: 5px;
    font-size: calc(20px + 4 * (100vw - 320px) / 1600);
    color: rgba(var(--primary-color2), 1);
    background-color: rgba(var(--primary-color2), 0.1);
    border: 1px solid rgba(var(--primary-color2), 1);
    width: calc(42px + 8 * (100vw - 320px) / 1600);
    height: calc(42px + 8 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
    justify-content: center;
}
.delete-account-modal .modal-content .modal-body .delete-content i.success-box {
    color: rgba(var(--theme-green), 1);
    background-color: rgba(var(--theme-green), 0.1);
    border: 1px solid rgba(var(--theme-green), 1);
}
.delete-account-modal .modal-content .modal-body .delete-content h4 {
    font-size: calc(18px + 4 * (100vw - 320px) / 1600);
}
.delete-account-modal .modal-content .modal-body .delete-content p {
    color: rgba(var(--content-color), 1);
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    font-weight: 400;
    line-height: 1.4;
    margin-top: calc(2px + 2 * (100vw - 320px) / 1600);
}
.delete-account-modal .modal-content .modal-footer {
    flex-wrap: nowrap;
    justify-content: center;
}
.delete-account-modal .modal-content .modal-footer button {
    width: 100%;
}

.delivery-return-modal .delivery-contain .delivery-box + .delivery-box {
    margin-top: calc(10px + 14 * (100vw - 320px) / 1600);
}
.delivery-return-modal .delivery-contain .delivery-box p {
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    color: rgba(var(--content-color), 0.8);
    line-height: 1.5;
}
.delivery-return-modal .delivery-contain .delivery-box h4 {
    margin-bottom: calc(4px + 6 * (100vw - 320px) / 1600);
}
.delivery-return-modal .delivery-contain .delivery-box ul {
    padding-left: calc(18px + 4 * (100vw - 320px) / 1600);
}
[dir="rtl"] .delivery-return-modal .delivery-contain .delivery-box ul {
    padding-left: unset;
    padding-right: calc(18px + 4 * (100vw - 320px) / 1600);
}
.delivery-return-modal .delivery-contain .delivery-box ul li {
    display: list-item;
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    color: rgba(var(--content-color), 0.8);
    line-height: 1.5;
}
.delivery-return-modal .delivery-contain .delivery-box ul li + li {
    margin-top: calc(2px + 2 * (100vw - 320px) / 1600);
}

.product-share-modal .product-share-container .nav-tabs {
    background-color: transparent;
    border: none;
    gap: calc(6px + 4 * (100vw - 320px) / 1600);
}
.product-share-modal .product-share-container .nav-tabs .nav-item .nav-link {
    background-color: rgba(var(--base-gray), 0.6);
    margin: 0;
    border: 1px solid rgba(var(--border-color), 1);
    border-radius: 4px;
    padding: 0;
    color: rgba(var(--content-color), 1);
    width: calc(41px + 7 * (100vw - 320px) / 1600);
    height: calc(38px + 4 * (100vw - 320px) / 1600);
}
.product-share-modal
    .product-share-container
    .nav-tabs
    .nav-item
    .nav-link.active {
    border-color: transparent;
    background-color: rgba(var(--primary-color), 1);
    color: #fff;
}
.product-share-modal
    .product-share-container
    .nav-tabs
    .nav-item
    .nav-link.active
    i {
    font-weight: 500;
}
.product-share-modal .product-share-container .nav-tabs .nav-item .nav-link i {
    font-size: calc(18px + 2 * (100vw - 320px) / 1600);
}
.product-share-modal .product-share-container .tab-content {
    margin-top: calc(14px + 4 * (100vw - 320px) / 1600);
}
.product-share-modal .product-share-container .tab-content .input-group {
    gap: calc(8px + 4 * (100vw - 320px) / 1600);
}
.product-share-modal .product-share-container .tab-content .input-group > * {
    border-radius: calc(3px + 2 * (100vw - 320px) / 1600) !important;
}
.product-share-modal .product-share-container .tab-content .input-group .btn {
    font-size: calc(14px + 1 * (100vw - 320px) / 1600);
    padding-inline: calc(14px + 4 * (100vw - 320px) / 1600);
    margin: 0 !important;
    outline: 1px solid transparent;
}
.product-share-modal
    .product-share-container
    .tab-content
    .input-group
    .btn:hover,
.product-share-modal
    .product-share-container
    .tab-content
    .input-group
    .btn:focus,
.product-share-modal
    .product-share-container
    .tab-content
    .input-group
    .btn:active {
    outline: 1px solid rgba(var(--primary-color), 1);
    color: rgba(var(--primary-color), 1);
    background-color: transparent;
}

.quick-view-modal .modal-custom-size {
    max-width: 1100px;
}
.quick-view-modal .modal-custom-size .btn-close {
    margin: 0;
    padding: 0;
    z-index: 1;
    background: none;
    line-height: 1;
    font-size: 22px;
    border-radius: 0;
    color: #fff;
    opacity: 1;
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(var(--primary-color), 1);
    width: 30px;
    height: 30px;
}
[dir="rtl"] .quick-view-modal .modal-custom-size .btn-close {
    right: unset;
    left: 10px;
}
.quick-view-modal .modal-custom-size .btn-close i {
    font-size: 22px;
}
.quick-view-modal .modal-custom-size .left-box-contain {
    position: sticky;
    top: 10px;
    left: 0;
}
.quick-view-modal
    .modal-custom-size
    .left-box-contain
    .quick-slider-product-box
    .view-image {
    height: calc(412px + 140 * (100vw - 767px) / 1153);
    padding: calc(24px + 41 * (100vw - 767px) / 1153);
    background-color: rgba(230, 231, 233, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
}
body.dark
    .quick-view-modal
    .modal-custom-size
    .left-box-contain
    .quick-slider-product-box
    .view-image {
    background-color: rgba(var(--base-gray), 0.45);
}
@media (max-width: 767.98px) {
    .quick-view-modal
        .modal-custom-size
        .left-box-contain
        .quick-slider-product-box
        .view-image {
        height: calc(250px + 162 * (100vw - 320px) / 448);
        padding: calc(14px + 10 * (100vw - 320px) / 448);
    }
}
.quick-view-modal
    .modal-custom-size
    .left-box-contain
    .quick-slider-product-box
    .view-image
    img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}
.quick-view-modal
    .modal-custom-size
    .left-box-contain
    .quick-slider-product-box
    .swiper-button-next,
.quick-view-modal
    .modal-custom-size
    .left-box-contain
    .quick-slider-product-box
    .swiper-button-prev {
    margin: 0;
    font-size: calc(20px + 2 * (100vw - 320px) / 1600);
    z-index: 1;
    color: rgba(var(--title-color), 1);
    background-color: rgba(var(--white), 1);
    border-radius: 100%;
    top: 50%;
    transform: translateY(-50%);
    width: calc(36px + 6 * (100vw - 320px) / 1600);
    height: calc(36px + 6 * (100vw - 320px) / 1600);
}
.quick-view-modal
    .modal-custom-size
    .left-box-contain
    .quick-slider-product-box
    .swiper-button-next::after,
.quick-view-modal
    .modal-custom-size
    .left-box-contain
    .quick-slider-product-box
    .swiper-button-prev::after {
    content: none;
}
.quick-view-modal
    .modal-custom-size
    .left-box-contain
    .quick-slider-product-box
    .swiper-button-next
    i,
.quick-view-modal
    .modal-custom-size
    .left-box-contain
    .quick-slider-product-box
    .swiper-button-prev
    i {
    font-size: inherit;
}
.quick-view-modal
    .modal-custom-size
    .left-box-contain
    .quick-thumbnail-product-box {
    margin-top: 15px;
}
.quick-view-modal
    .modal-custom-size
    .left-box-contain
    .quick-thumbnail-product-box
    .image-box {
    background-color: rgba(230, 231, 233, 0.45);
    padding: 15px;
    height: calc(96px + 44 * (100vw - 767px) / 1153);
    display: flex;
    align-items: center;
    justify-content: center;
}
body.dark
    .quick-view-modal
    .modal-custom-size
    .left-box-contain
    .quick-thumbnail-product-box
    .image-box {
    background-color: rgba(var(--base-gray), 0.45);
}
@media (max-width: 767.98px) {
    .quick-view-modal
        .modal-custom-size
        .left-box-contain
        .quick-thumbnail-product-box
        .image-box {
        height: calc(86px + 44 * (100vw - 320px) / 448);
    }
}
.quick-view-modal
    .modal-custom-size
    .left-box-contain
    .quick-thumbnail-product-box
    .image-box
    img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}
.quick-view-modal .modal-custom-size .right-box-contain {
    background-color: transparent;
}
.quick-view-modal
    .modal-custom-size
    .right-box-contain
    .hurry-up-box
    .progress {
    background-color: rgba(230, 231, 233, 0.45);
}
body.dark
    .quick-view-modal
    .modal-custom-size
    .right-box-contain
    .hurry-up-box
    .progress {
    background-color: #1a232e;
}
.quick-view-modal .modal-custom-size .right-box-contain .offer-top {
    margin-bottom: calc(6px + 2 * (100vw - 320px) / 1600);
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
}
@media (max-width: 575.98px) {
    .quick-view-modal
        .modal-custom-size
        .right-box-contain
        .rating-review-sold-box {
        display: flex;
        gap: 12px;
    }
}
.quick-view-modal
    .modal-custom-size
    .right-box-contain
    .rating-review-sold-box
    li
    h3 {
    font-weight: 400;
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    color: rgba(var(--content-color), 1);
}
.quick-view-modal .modal-custom-size .right-box-contain .name {
    font-size: calc(22px + 4 * (100vw - 320px) / 1600);
}
.quick-view-modal .modal-custom-size .right-box-contain .qty-stock-box {
    margin-top: calc(10px + 8 * (100vw - 320px) / 1600);
    gap: calc(10px + 4 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 400px) {
    .quick-view-modal .modal-custom-size .right-box-contain .qty-stock-box {
        flex-wrap: wrap;
    }
}
.quick-view-modal
    .modal-custom-size
    .right-box-contain
    .qty-stock-box
    .qty-box {
    display: inline-flex;
    border-radius: 4px;
    align-items: center;
    padding: calc(4px + 2 * (100vw - 320px) / 1600);
    background-color: rgba(230, 231, 233, 0.45);
}
body.dark
    .quick-view-modal
    .modal-custom-size
    .right-box-contain
    .qty-stock-box
    .qty-box {
    background-color: #131921;
}
.quick-view-modal
    .modal-custom-size
    .right-box-contain
    .qty-stock-box
    .qty-box
    .qty-btn {
    padding: 0;
    border-radius: 4px;
    background-color: rgba(var(--white), 1);
    color: rgba(var(--content-color), 1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(30px + 5 * (100vw - 320px) / 1600);
    height: calc(30px + 5 * (100vw - 320px) / 1600);
}
.quick-view-modal
    .modal-custom-size
    .right-box-contain
    .qty-stock-box
    .qty-box
    .qty-btn:hover {
    background-color: rgba(var(--primary-color), 1);
    color: #fff;
}
.quick-view-modal
    .modal-custom-size
    .right-box-contain
    .qty-stock-box
    .qty-box
    .qty-input {
    width: calc(52px + 8 * (100vw - 320px) / 1600);
    line-height: 1;
    padding: 4px 0 0;
    border: none;
    color: rgba(var(--title-color), 1);
    text-align: center;
    outline: unset;
    background-color: transparent;
    font-size: calc(16px + 4 * (100vw - 320px) / 1600);
}
@media (max-width: 400px) {
    .quick-view-modal
        .modal-custom-size
        .right-box-contain
        .qty-stock-box
        .qty-box
        .qty-input {
        width: 122px;
    }
}
.quick-view-modal
    .modal-custom-size
    .right-box-contain
    .qty-stock-box
    .qty-box
    .qty-input[type="number"] {
    appearance: textfield;
}
.quick-view-modal
    .modal-custom-size
    .right-box-contain
    .qty-stock-box
    .qty-box
    .qty-input[type="number"]::-webkit-inner-spin-button,
.quick-view-modal
    .modal-custom-size
    .right-box-contain
    .qty-stock-box
    .qty-box
    .qty-input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
}
.quick-view-modal
    .modal-custom-size
    .right-box-contain
    .qty-stock-box
    .buy-btn {
    width: 100%;
    background-color: rgba(var(--title-color), 1);
    border-color: rgba(var(--title-color), 1);
    color: rgba(var(--white), 1);
    animation: shake 150ms 2 linear;
    padding: calc(6px + 4 * (100vw - 320px) / 1600);
}

.exit-modal .modal-custom-size {
    max-width: 850px;
}
.exit-modal .modal-content .modal-body {
    padding: 0;
}
.exit-modal .modal-content .modal-body .exit-box .exit-right-box img {
    aspect-ratio: 23/25;
    object-fit: cover;
}
@media (max-width: 575.98px) {
    .exit-modal .modal-content .modal-body .exit-box .exit-right-box img {
        aspect-ratio: unset;
        width: 100%;
        height: calc(215px + 75 * (100vw - 320px) / 256);
    }
}
.exit-modal .modal-content .modal-body .exit-box .exit-left-box {
    padding: calc(15px + 29 * (100vw - 320px) / 1600);
    height: 100%;
    flex-direction: column;
    position: relative;
    inset: unset;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.exit-modal .modal-content .modal-body .exit-box .exit-left-box h3 {
    font-size: calc(16px + 6 * (100vw - 320px) / 1600);
    letter-spacing: calc(0.1px + 0.2 * (100vw - 320px) / 1600);
}
.exit-modal .modal-content .modal-body .exit-box .exit-left-box h4 {
    letter-spacing: calc(0.1px + 0.2 * (100vw - 320px) / 1600);
    font-weight: 600;
    margin-top: calc(2px + 3 * (100vw - 320px) / 1600);
    font-size: calc(20px + 8 * (100vw - 320px) / 1600);
}
.exit-modal .modal-content .modal-body .exit-box .exit-left-box h5 {
    font-size: calc(36px + 28 * (100vw - 320px) / 1600);
    margin-top: calc(20px + 16 * (100vw - 320px) / 1600);
    line-height: 1;
    color: rgba(var(--primary-color), 1);
}
.exit-modal .modal-content .modal-body .exit-box .exit-left-box h6 {
    font-size: calc(16px + 2 * (100vw - 320px) / 1600);
    margin-top: 6px;
}
.exit-modal .modal-content .modal-body .exit-box .exit-left-box .clock-list {
    margin-top: calc(24px + 6 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
    gap: calc(4px + 2 * (100vw - 320px) / 1600);
}
.exit-modal
    .modal-content
    .modal-body
    .exit-box
    .exit-left-box
    .clock-list
    li.dots {
    font-size: 22px;
    line-height: 1;
    color: rgba(var(--content-color), 1);
}
.exit-modal
    .modal-content
    .modal-body
    .exit-box
    .exit-left-box
    .clock-list
    li
    .digits {
    display: flex;
    align-items: center;
    gap: 3px;
}
.exit-modal
    .modal-content
    .modal-body
    .exit-box
    .exit-left-box
    .clock-list
    li
    .digits
    span {
    font-size: calc(18px + 4 * (100vw - 320px) / 1600);
    line-height: 1;
    padding-top: calc(2px + 1 * (100vw - 320px) / 1600);
    border-radius: calc(4px + 1 * (100vw - 320px) / 1600);
    background-color: rgba(var(--title-color), 1);
    color: rgba(var(--white), 1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(39px + 8 * (100vw - 320px) / 1600);
    height: calc(38px + 6 * (100vw - 320px) / 1600);
}
.exit-modal .modal-content .modal-body .exit-box .exit-left-box h6 {
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    font-weight: 400;
    margin-top: 12px;
    color: rgba(var(--content-color), 1);
}

/* Mixin Files */
/**=====================
    2.10 Nav-tabs scss
==========================**/
.product-section-box {
    margin-top: calc(12px + 36 * (100vw - 320px) / 1600);
}
.product-section-box .custom-nav {
    flex-wrap: nowrap;
    border: none;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    margin: 0;
    border-radius: 6px;
    background-color: rgba(var(--white), 1);
    border-bottom: 1px solid rgba(var(--border-color), 1);
}
.product-section-box .custom-nav .nav-item .nav-link {
    color: rgba(var(--title-color), 1);
    padding: calc(12px + 10 * (100vw - 320px) / 1600)
        calc(11px + 19 * (100vw - 320px) / 1600)
        calc(12px + 3 * (100vw - 320px) / 1600);
    font-size: calc(16px + 4 * (100vw - 320px) / 1600);
    letter-spacing: 0.6px;
    border: none;
    font-weight: 500;
    position: relative;
    box-shadow: unset;
}
.product-section-box .custom-nav .nav-item .nav-link::after {
    bottom: 0;
    left: 0;
    background-color: transparent;
    transition: all 0.15s ease-in-out;
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
}
[dir="rtl"] .product-section-box .custom-nav .nav-item .nav-link::after {
    left: unset;
    right: 0;
}
.product-section-box .custom-nav .nav-item .nav-link:focus,
.product-section-box .custom-nav .nav-item .nav-link:hover,
.product-section-box .custom-nav .nav-item .nav-link.active {
    background-color: rgba(var(--white), 1);
}
.product-section-box .custom-nav .nav-item .nav-link:focus::after,
.product-section-box .custom-nav .nav-item .nav-link:hover::after,
.product-section-box .custom-nav .nav-item .nav-link.active::after {
    width: 100%;
    background: rgba(var(--primary-color), 1);
}
.product-section-box .offer-table {
    margin-bottom: 0;
    border: 1px solid rgba(var(--border-color), 1);
    table-layout: fixed;
    display: inherit;
    border-radius: 6px;
}
.product-section-box .offer-table tbody tr th,
.product-section-box .offer-table tbody tr td {
    padding: 12px 16px;
}
.product-section-box .offer-table tbody tr th {
    width: 7%;
}
.product-section-box .offer-table tbody tr td {
    vertical-align: middle;
}
.product-section-box .offer-table tbody tr td.offer-name {
    width: 20%;
}
.product-section-box .custom-tab {
    padding-top: 12px;
}
.product-section-box .custom-tab .tab-pane {
    background-color: rgba(var(--white), 1);
    padding: calc(14px + 8 * (100vw - 320px) / 1600)
        calc(16px + 12 * (100vw - 320px) / 1600);
    border-radius: calc(4px + 2 * (100vw - 320px) / 1600);
}
.product-section-box .product-detail .detail-title h5 {
    font-weight: 600;
    color: rgba(var(--content-color), 1);
    font-size: 17px;
    margin-bottom: 10px;
}
.product-section-box .product-detail .detail-list {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}
.product-section-box .product-detail .detail-list li {
    display: flex;
    align-items: flex-start;
    color: rgba(var(--content-color), 1);
    width: 100%;
}
.product-section-box .product-detail .detail-list li i {
    font-size: 6px;
    color: rgba(var(--content-color), 1);
    margin: 6px 6px 0 0;
}
.product-section-box .information-box ul {
    display: flex;
    flex-wrap: wrap;
    gap: calc(2px + 5 * (100vw - 320px) / 1600);
}
.product-section-box .information-box ul li {
    color: rgba(var(--content-color), 1);
    width: 100%;
    display: list-item;
    list-style-type: disc;
    margin-left: calc(15px + 7 * (100vw - 320px) / 1600);
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
}
.product-section-box .review-box .b-end {
    border-right: 1px solid rgba(var(--border-color), 1);
}
[dir="rtl"] .product-section-box .review-box .b-end {
    border-right: unset;
    border-left: 1px solid rgba(var(--border-color), 1);
}
@media (max-width: 1199.98px) {
    .product-section-box .review-box .b-end {
        border-right: unset;
        border-bottom: 1px solid rgba(var(--border-color), 1);
        padding-bottom: var(--bs-gutter-y);
    }
    [dir="rtl"] .product-section-box .review-box .b-end {
        border-left: unset;
    }
}
.product-section-box .review-box .product-review-box {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(var(--border-color), 1);
}
.product-section-box .review-box .review-title {
    margin-bottom: calc(10px + 8 * (100vw - 320px) / 1600);
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.product-section-box .review-box .review-title h4 {
    margin: 0;
    font-weight: 500;
    font-size: calc(19px + 2 * (100vw - 320px) / 1600);
}
.product-section-box .review-box .rating-box {
    margin-top: 17px;
}
.product-section-box .review-box .rating-box ul {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: calc(10px + 10 * (100vw - 320px) / 1600);
}
.product-section-box .review-box .rating-box ul li {
    width: 100%;
}
.product-section-box .review-box .rating-box ul li .rating-list {
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
    gap: 14px;
}
.product-section-box .review-box .rating-box ul li .rating-list h5 {
    white-space: nowrap;
    line-height: 1;
    padding-top: calc(2px + 2 * (100vw - 320px) / 1600);
    width: calc(37px + 7 * (100vw - 320px) / 1600);
}
.product-section-box .review-box .rating-box ul li .rating-list .progress {
    width: calc(100% - (37px + 7 * (100vw - 320px) / 1600) - 14px);
    border-radius: 0;
    background-color: rgba(var(--base-gray), 1);
    height: calc(14px + 2 * (100vw - 320px) / 1600);
}
.product-section-box
    .review-box
    .rating-box
    ul
    li
    .rating-list
    .progress
    .progress-bar {
    background: rgba(var(--primary-color), 1);
    border-radius: 0;
    padding-top: 2px;
}
.product-section-box .review-box .sort-message {
    display: flex;
    align-items: center;
    gap: 8px;
}
.product-section-box .review-box .sort-message span {
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    white-space: nowrap;
    color: rgba(var(--content-color), 1);
}
.product-section-box .review-box .sort-message .form-select {
    display: inline-block;
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    width: auto;
    border: 1px solid rgba(var(--border-color), 1);
    border-radius: 0;
    color: rgba(var(--title-color), 1);
    padding: 6px calc(29px + 7 * (100vw - 320px) / 1600) 6px 12px;
    background-position: right calc(8px + 4 * (100vw - 320px) / 1600) center;
    background-color: rgba(var(--base-gray), 1);
}
[dir="rtl"] .product-section-box .review-box .sort-message .form-select {
    background-position: left calc(8px + 4 * (100vw - 320px) / 1600) center;
    padding-inline: 12px calc(29px + 7 * (100vw - 320px) / 1600);
}
body.dark .product-section-box .review-box .sort-message .form-select {
    background-color: rgba(var(--base-gray), 1);
}
.product-section-box .review-box .review-form-box label {
    color: rgba(var(--content-color), 0.9);
    margin-bottom: 5px;
}
.product-section-box .review-box .review-form-box .form-control {
    padding: calc(10px + 5 * (100vw - 320px) / 1600)
        calc(12px + 3 * (100vw - 320px) / 1600)
        calc(7px + 5 * (100vw - 320px) / 1600);
    font-weight: 400;
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    color: rgba(var(--title-color), 1);
    background-color: rgba(var(--base-gray), 1);
    border: 1px solid rgba(var(--border-color), 1);
}
.product-section-box .review-box .customer-review-box {
    display: flex;
    align-items: center;
}
.product-section-box .review-box .customer-review-box h5 {
    font-size: calc(32px + 6 * (100vw - 320px) / 1600);
    font-weight: 600;
    line-height: 1;
    border-right: 1px solid rgba(var(--border-color), 1);
    padding-right: 7px;
    margin-right: 7px;
}
[dir="rtl"] .product-section-box .review-box .customer-review-box h5 {
    margin-left: 7px;
    padding-left: 7px;
    margin-right: unset;
    padding-right: unset;
    border-right: unset;
    border-left: 1px solid rgba(var(--border-color), 1);
}
.product-section-box .review-box .customer-review-box h5 span {
    font-size: calc(20px + 4 * (100vw - 320px) / 1600);
    font-weight: 500;
}
.product-section-box .review-box .customer-review-box .product-rating h6 {
    font-size: calc(14px + 1 * (100vw - 320px) / 1600);
    font-weight: 500;
    border: none;
    padding: 0;
    margin: calc(4px + 2 * (100vw - 320px) / 1600) 0 0;
    color: rgba(var(--content-color), 0.8);
}
.product-section-box .info-table {
    border: 1px solid rgba(var(--border-color), 1);
    margin-bottom: 0;
}
.product-section-box .info-table.table-striped tbody tr:nth-of-type(odd) td {
    background-color: rgba(var(--light-gray), 1);
    color: rgba(var(--title-color), 1);
}
.product-section-box .info-table tbody tr th {
    background-color: rgba(var(--base-gray), 1);
    font-weight: 500;
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    color: rgba(var(--title-color), 1);
}
.product-section-box .info-table tbody tr th,
.product-section-box .info-table tbody tr td {
    padding: calc(10px + 4 * (100vw - 320px) / 1600)
        calc(12px + 6 * (100vw - 320px) / 1600);
    white-space: nowrap;
    width: max-content;
}
.product-section-box .info-table tbody tr td {
    border-left: 1px solid rgba(var(--border-color), 1);
    color: rgba(var(--content-color), 1);
    font-size: calc(14px + 1 * (100vw - 320px) / 1600);
}
.product-section-box .product-description p {
    margin-bottom: calc(12px + 8 * (100vw - 320px) / 1600);
    color: rgba(var(--content-color), 1);
    line-height: 1.7;
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
}
@media (max-width: 575.98px) {
    .product-section-box .product-description p {
        line-height: 1.5;
    }
}
.product-section-box .product-description p:last-child {
    margin-bottom: 0;
}
.product-section-box .nav-desh {
    margin-bottom: calc(12px + 8 * (100vw - 320px) / 1600);
}
.product-section-box .nav-desh:last-of-type {
    margin-bottom: 0;
}
.product-section-box .nav-desh .desh-title {
    margin-bottom: calc(6px + 2 * (100vw - 320px) / 1600);
}
.product-section-box .nav-desh .desh-title h4 {
    font-weight: 500;
    font-size: calc(16px + 2 * (100vw - 320px) / 1600);
}

.review-people .review-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}
.review-people .review-list > li + li {
    margin-top: calc(14px + 10 * (100vw - 320px) / 1600);
}
.review-people .review-list > li > .review-list {
    margin-top: calc(15px + 9 * (100vw - 320px) / 1600);
    padding-left: calc(40px + 21 * (100vw - 320px) / 1600);
    position: relative;
}
[dir="rtl"] .review-people .review-list > li > .review-list {
    padding-right: calc(40px + 21 * (100vw - 320px) / 1600);
    padding-left: unset;
}
.review-people .review-list > li > .review-list::before {
    top: 0;
    left: calc(20px + 10 * (100vw - 320px) / 1600);
    height: 100%;
    border-left: 1px solid rgba(var(--content-color), 0.1);
    content: "";
    position: absolute;
}
[dir="rtl"] .review-people .review-list > li > .review-list::before {
    left: unset;
    right: calc(20px + 10 * (100vw - 320px) / 1600);
}
.review-people .review-list > li > .review-list > li {
    position: relative;
    border-radius: 6px;
    background-color: rgba(var(--white), 1);
}
.review-people .review-list > li > .review-list > li::before {
    right: 0;
    border-top: 1px solid rgba(var(--content-color), 0.1);
    z-index: -1;
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% + 20px + 10 * (100vw - 320px) / 1600);
    height: 1px;
}
.review-people .review-list li {
    display: block;
    width: 100%;
}
.review-people .review-list li .people-box {
    display: flex;
    width: 100%;
    padding: calc(15px + 11 * (100vw - 320px) / 1600);
    background-color: rgba(var(--base-gray), 1);
    border-radius: 6px;
}
@media (max-width: 480px) {
    .review-people .review-list li .people-box {
        display: block;
    }
}
.review-people .review-list li .people-box:hover .reply a {
    opacity: 1;
}
.review-people .review-list li .people-box .people-image {
    border-radius: 4px;
    overflow: hidden;
    width: calc(62px + 8 * (100vw - 320px) / 1600);
    height: calc(62px + 8 * (100vw - 320px) / 1600);
}
.review-people .review-list li .people-box .people-comment {
    padding-left: 15px;
    width: calc(100% - 70px);
    position: relative;
}
[dir="rtl"] .review-people .review-list li .people-box .people-comment {
    padding-left: unset;
    padding-right: 15px;
}
.review-people .review-list li .people-box .people-comment .name {
    display: block;
}
.review-people .review-list li .people-box .people-comment .name a {
    font-weight: 600;
    font-size: calc(16px + 2 * (100vw - 320px) / 1600);
    color: rgba(var(--title-color), 0.9);
}
.review-people .review-list li .people-box .people-comment .name a:hover {
    color: rgba(var(--title-color), 1);
}
.review-people
    .review-list
    li
    .people-box
    .people-comment
    .name
    .product-rating
    .rating {
    margin-top: -1px;
}
.review-people
    .review-list
    li
    .people-box
    .people-comment
    .name
    .product-rating
    .rating
    > li {
    width: auto;
}
.review-people
    .review-list
    li
    .people-box
    .people-comment
    .name
    .product-rating
    .rating
    > li
    :hover {
    transition: 0.3s;
}
.review-people
    .review-list
    li
    .people-box
    .people-comment
    .name
    .product-rating
    .rating
    > li
    :hover::before {
    content: "\f186";
    color: rgba(var(--primary-color), 1);
}
.review-people
    .review-list
    li
    .people-box
    .people-comment
    .name
    .product-rating
    .rating
    > li.theme-color
    i {
    color: rgba(var(--primary-color), 1);
}
.review-people
    .review-list
    li
    .people-box
    .people-comment
    .name
    .product-rating
    .rating
    > li.theme-color
    i::before {
    content: "\f186";
}
@media (max-width: 480px) {
    .review-people .review-list li .people-box .people-comment {
        padding: 0;
        width: 100%;
        margin-top: calc(12px + 4 * (100vw - 320px) / 161);
    }
}
.review-people .review-list li .people-box .people-comment .date-time {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    display: inline-flex;
}
[dir="rtl"]
    .review-people
    .review-list
    li
    .people-box
    .people-comment
    .date-time {
    right: unset;
    left: 0;
}
@media (max-width: 480px) {
    .review-people .review-list li .people-box .people-comment .date-time {
        position: relative;
        inset: unset;
        margin-top: 7px;
    }
    [dir="rtl"]
        .review-people
        .review-list
        li
        .people-box
        .people-comment
        .date-time {
        inset: unset;
    }
}
.review-people .review-list li .people-box .people-comment .date-time h6,
.review-people .review-list li .people-box .people-comment .date-time .h6 {
    color: rgba(var(--content-color), 1);
    margin-top: 1px;
}
.review-people .review-list li .people-box .reply {
    margin-top: 4px;
    line-height: 1.6;
    color: rgba(var(--content-color), 1);
    position: relative;
}
.review-people .review-list li .people-box .reply p {
    width: 97%;
    margin: 0;
    line-height: 1.6;
    font-size: calc(14px + 1 * (100vw - 320px) / 1600);
    color: rgba(var(--title-color), 0.8);
}
@media (max-width: 575.98px) {
    .review-people .review-list li .people-box .reply p {
        line-height: 1.5;
        width: 100%;
    }
}
.review-people .review-list li .people-box .reply a {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
    font-weight: 600;
    transition: all 0.15s ease-in-out;
}
@media (max-width: 575.98px) {
    .review-people .review-list li .people-box .reply a {
        opacity: 1;
    }
}
@media (max-width: 480px) {
    .review-people .review-list li .people-box .reply a {
        position: relative;
        margin-left: 8px;
    }
}
.review-people .review-list li .people-box .share-box {
    display: flex;
    align-items: center;
    gap: calc(10px + 8 * (100vw - 320px) / 1600);
    margin-top: calc(7px + 2 * (100vw - 320px) / 1600);
    flex-wrap: wrap;
}
.review-people .review-list li .people-box .share-box > li {
    width: auto;
}
.review-people .review-list li .people-box .share-box > li > a {
    color: rgba(var(--content-color), 0.6);
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 1;
}
.review-people .review-list li .people-box .share-box > li > a i {
    font-size: 16px;
    line-height: 1;
}
.review-people .reply-review-list > li + li {
    padding-top: 0;
    border-top: unset;
}

.delivery-nav-content .delivery-nav {
    gap: 8px;
}
.delivery-nav-content .delivery-nav .nav-item .nav-link {
    border: 1px solid rgba(var(--content-color), 0.1);
    border-radius: 0;
    font-size: 15px;
    padding: 7px 15px 3px;
    color: rgba(var(--content-color), 1);
    font-weight: 400;
}
.delivery-nav-content .delivery-nav .nav-item .nav-link.active {
    background-color: rgba(var(--primary-color), 1);
    color: rgba(var(--white), 1);
}
.delivery-nav-content .delivery-content .tab-pane p {
    letter-spacing: 0.9px;
    text-decoration: underline;
    color: rgba(var(--content-color), 1);
    margin-top: 4px;
}

.custom-faq-nav {
    justify-content: center;
    border: unset;
    gap: 14px;
}
.custom-faq-nav .nav-item .nav-link {
    font-size: 18px;
    border-radius: 4px;
    position: relative;
    background-color: rgba(var(--primary-color), 0.1);
    font-weight: 400;
    color: rgba(var(--primary-color), 1);
}
.custom-faq-nav .nav-item .nav-link.active {
    background-color: rgba(var(--primary-color), 1);
    color: rgba(var(--white), 1);
    font-weight: 500;
}

.dashboard-order-nav {
    border: unset;
    gap: 14px;
}
.dashboard-order-nav .nav-item .nav-link {
    font-size: 16px;
    border-radius: 4px;
    padding-bottom: 5px;
    position: relative;
    background-color: rgba(var(--primary-color), 0.1);
    font-weight: 400;
    color: rgba(var(--primary-color), 1);
    text-transform: capitalize;
}
.dashboard-order-nav .nav-item .nav-link.process-tab {
    color: #ff800d;
    background-color: rgba(255, 128, 13, 0.15);
}
.dashboard-order-nav .nav-item .nav-link.success-tab {
    color: #1c9550;
    background-color: rgba(28, 149, 80, 0.15);
}
.dashboard-order-nav .nav-item .nav-link.cancel-tab {
    color: #ff5f60;
    background-color: rgba(255, 95, 96, 0.15);
}
.dashboard-order-nav .nav-item .nav-link.active {
    background-color: rgba(var(--primary-color), 1);
    color: rgba(var(--white), 1);
    font-weight: 500;
}
.dashboard-order-nav .nav-item .nav-link.active.process-tab {
    color: #fff;
    background-color: rgb(255, 130, 13);
}
.dashboard-order-nav .nav-item .nav-link.active.success-tab {
    color: #fff;
    background-color: rgb(28, 149, 80);
}
.dashboard-order-nav .nav-item .nav-link.active.cancel-tab {
    color: #fff;
    background-color: rgb(255, 95, 96);
}

/* Mixin Files */
/**=====================
    2.11 Offcanvas CSS
==========================**/
.offcanvas-backdrop {
    z-index: 12;
}

.offcanvas.category-fixed-box {
    width: calc(310px + 90 * (100vw - 320px) / 1600);
    top: 0;
    border: none;
    background-color: rgba(var(--white), 1);
    transition: all 0.3s ease-in-out;
}
.offcanvas.category-fixed-box .category-header {
    flex-shrink: 0;
    z-index: 1;
    box-shadow: 0 2px 10px -3px rgba(var(--title-color), 0.1);
    position: relative;
    padding: calc(16px + 8 * (100vw - 320px) / 1600)
        calc(15px + 5 * (100vw - 320px) / 1600);
    background-color: rgba(var(--base-gray), 1);
    border-bottom: 1px solid rgba(var(--content-color), 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
body.dark .offcanvas.category-fixed-box .category-header {
    box-shadow: none;
}
.offcanvas.category-fixed-box .category-header h5 {
    color: rgba(var(--title-color), 1);
    font-weight: 500;
    line-height: 1;
    font-size: calc(17px + 5 * (100vw - 320px) / 1600);
}
.offcanvas.category-fixed-box .category-header .btn-close {
    padding: 0;
    margin: 0;
    font-size: 20px;
    line-height: 1;
    background: unset;
    opacity: 1;
    width: unset;
    height: unset;
}
body.dark .offcanvas.category-fixed-box .category-header .btn-close {
    color: #fff;
}
.offcanvas.category-fixed-box .category-menu-list {
    background-color: rgba(var(--white), 1);
    padding-top: 20px;
    overflow: auto;
    height: 100%;
}
.offcanvas.category-fixed-box .category-menu-list::-webkit-scrollbar-track {
    border-radius: 100px;
    background-color: #f2f3f7;
}
.offcanvas.category-fixed-box .category-menu-list::-webkit-scrollbar {
    width: 4px;
    background-color: #f2f3f7;
}
.offcanvas.category-fixed-box .category-menu-list::-webkit-scrollbar-thumb {
    border-radius: 100px;
    background-color: rgba(var(--theme-blue-dark), 0.7);
}
@media (max-width: 1400px) {
    .offcanvas.category-fixed-box .category-menu-list {
        height: unset;
        border: none;
    }
}
.offcanvas.category-fixed-box .category-menu-list.category-bg-color {
    border-radius: 5px;
    background-color: #e8f1f7;
    border: none;
}
.offcanvas.category-fixed-box .category-menu-list .category-title {
    padding: 0 20px 20px;
    font-weight: 600;
}
.offcanvas.category-fixed-box .category-menu-list .top-menu-list {
    margin-inline: 20px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(var(--content-color), 0.2);
}
.offcanvas.category-fixed-box .category-menu-list .top-menu-list li {
    display: block;
    width: 100%;
}
.offcanvas.category-fixed-box .category-menu-list .top-menu-list li + li {
    margin-top: 25px;
}
.offcanvas.category-fixed-box
    .category-menu-list
    .top-menu-list
    li
    .sub-category-box {
    display: flex;
    align-items: center;
    gap: 11px;
    color: rgba(var(--title-color), 1);
}
.offcanvas.category-fixed-box
    .category-menu-list
    .top-menu-list
    li
    .sub-category-box
    svg {
    fill: rgba(var(--content-color), 1);
    margin-top: -4px;
    width: 20px;
    height: 20px;
}
.offcanvas.category-fixed-box
    .category-menu-list
    .top-menu-list
    li
    .sub-category-box
    h5 {
    font-weight: 500;
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
}
.offcanvas.category-fixed-box
    .category-menu-list
    .top-menu-list
    li
    .sub-category-box
    h5
    span {
    font-weight: 500;
    font-size: 14px;
    color: rgba(var(--white), 1);
    line-height: 1;
    padding: 3px 5px;
    border-radius: 3px;
    margin-left: 10px;
    animation: blink 0.6s ease-in-out infinite alternate;
}
[dir="rtl"]
    .offcanvas.category-fixed-box
    .category-menu-list
    .top-menu-list
    li
    .sub-category-box
    h5
    span {
    margin-left: unset;
    margin-right: 10px;
}
.offcanvas.category-fixed-box .category-menu-list .top-menu-list-sm {
    padding-bottom: 14px;
    margin-bottom: 14px;
}
.offcanvas.category-fixed-box .category-menu-list .top-menu-list-sm li + li {
    margin-top: 15px;
}
.offcanvas.category-fixed-box .category-menu-list .sub-menu-list li {
    display: block;
    width: 100%;
    padding: 13px 20px 13px 17px;
    border-left: 3px solid transparent;
    transition: 0.3s;
}
[dir="rtl"]
    .offcanvas.category-fixed-box
    .category-menu-list
    .sub-menu-list
    li {
    border-left: unset;
    border-right: 3px solid transparent;
}
.offcanvas.category-fixed-box .category-menu-list .sub-menu-list li:hover {
    background-color: rgba(var(--base-gray), 1);
    border-color: rgba(var(--primary-color), 1);
}
.offcanvas.category-fixed-box
    .category-menu-list
    .sub-menu-list
    li:hover
    .sub-category-box::after {
    content: "\f2e5";
}
.offcanvas.category-fixed-box
    .category-menu-list
    .sub-menu-list
    li
    .sub-category-box {
    display: flex;
    align-items: center;
    gap: 11px;
    position: relative;
    color: rgba(var(--title-color), 1);
}
.offcanvas.category-fixed-box
    .category-menu-list
    .sub-menu-list
    li
    .sub-category-box::after {
    color: rgba(var(--content-color), 1);
    font-size: 18px;
    margin-left: auto;
    transition: all 0.5s ease-in-out;
    content: "\ea6e";
    position: relative;
    font-family: remixicon;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
}
[dir="rtl"]
    .offcanvas.category-fixed-box
    .category-menu-list
    .sub-menu-list
    li
    .sub-category-box::after {
    margin-left: unset;
    margin-right: auto;
}
.offcanvas.category-fixed-box
    .category-menu-list
    .sub-menu-list
    li
    .sub-category-box
    i {
    font-size: 20px;
    color: rgba(var(--content-color), 1);
    margin-top: -4px;
}
.offcanvas.category-fixed-box
    .category-menu-list
    .sub-menu-list
    li
    .sub-category-box
    svg {
    fill: rgba(var(--content-color), 1);
    margin-top: -4px;
    width: 20px;
    height: 20px;
}
.offcanvas.category-fixed-box
    .category-menu-list
    .sub-menu-list
    li
    .sub-category-box
    h5 {
    font-weight: 500;
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    line-height: 1.3;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
.offcanvas.category-fixed-box
    .category-menu-list
    .sub-menu-list
    li
    .sub-category-box
    h5
    span {
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    line-height: 1;
    padding: 3px 5px;
    border-radius: 3px;
    margin-left: 10px;
}
[dir="rtl"]
    .offcanvas.category-fixed-box
    .category-menu-list
    .sub-menu-list
    li
    .sub-category-box
    h5
    span {
    margin-left: unset;
    margin-right: 10px;
}
.offcanvas.category-fixed-box .category-menu-list .sub-menu-list-sm li {
    padding-block: 8px;
}
.offcanvas.cart-offcanvas {
    border: none;
    width: calc(310px + 120 * (100vw - 320px) / 1600);
    background-color: rgba(var(--white), 1);
}
.offcanvas.cart-offcanvas .offcanvas-header {
    padding: calc(16px + 4 * (100vw - 320px) / 1600);
    display: block;
    background-color: rgba(var(--base-gray), 1);
    border-bottom: 1px solid rgba(var(--content-color), 0.2);
}
.offcanvas.cart-offcanvas .offcanvas-header .title-offcanvas {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.offcanvas.cart-offcanvas .offcanvas-header .title-offcanvas h4 {
    font-size: calc(17px + 5 * (100vw - 320px) / 1600);
    font-weight: 500;
    display: block;
    line-height: 1;
    margin-bottom: calc(-3px + -2 * (100vw - 320px) / 1600);
}
.offcanvas.cart-offcanvas .offcanvas-header .title-offcanvas h4 i {
    font-size: 20px;
    margin-top: -3px;
    color: rgba(var(--title-color), 1);
}
@media (max-width: 767.98px) {
    .offcanvas.cart-offcanvas .offcanvas-header .title-offcanvas h4 i {
        font-size: calc(18px + 5 * (100vw - 320px) / 448);
        line-height: 1;
        margin-top: -2px;
    }
}
.offcanvas.cart-offcanvas .offcanvas-header .title-offcanvas .close-btn {
    padding: 0;
    color: rgba(var(--title-color), 1);
    border: none;
    line-height: 1;
    width: unset;
    height: unset;
}
.offcanvas.cart-offcanvas .offcanvas-header .title-offcanvas .close-btn i {
    font-size: calc(18px + 4 * (100vw - 320px) / 1600);
}
.offcanvas.cart-offcanvas .offcanvas-body {
    padding: 0;
}
.offcanvas.cart-offcanvas .offcanvas-body .cart-product-box .product-box-list {
    height: calc(
        100vh - (58px + 6 * (100vw - 320px) / 1600) -
            (198px + 34 * (100vw - 320px) / 1600)
    );
    overflow: auto;
    padding: calc(13px + 3 * (100vw - 320px) / 1600);
}
.offcanvas.cart-offcanvas
    .offcanvas-body
    .cart-product-box
    .product-box-list:has(.product-box-list .empty-cart.show) {
    display: flex;
    align-items: center;
    justify-content: center;
}
.offcanvas.cart-offcanvas
    .offcanvas-body
    .cart-product-box
    .product-box-list::-webkit-scrollbar-track {
    border-radius: 100px;
    background-color: #f2f3f7;
}
.offcanvas.cart-offcanvas
    .offcanvas-body
    .cart-product-box
    .product-box-list::-webkit-scrollbar {
    width: 4px;
    background-color: #f2f3f7;
}
.offcanvas.cart-offcanvas
    .offcanvas-body
    .cart-product-box
    .product-box-list::-webkit-scrollbar-thumb {
    border-radius: 100px;
    background-color: rgba(var(--theme-blue-dark), 0.7);
}
.offcanvas.cart-offcanvas
    .offcanvas-body
    .cart-product-box
    .product-box-list
    .vertical-product-box
    .product-content {
    padding: 0;
}
.offcanvas.cart-offcanvas .offcanvas-body .cart-product-box .total-price-box {
    width: 100%;
    background-color: #f2f3f7;
    padding: calc(13px + 3 * (100vw - 320px) / 1600);
    border-top: 1px solid rgba(var(--content-color), 0.2);
}
body.dark
    .offcanvas.cart-offcanvas
    .offcanvas-body
    .cart-product-box
    .total-price-box {
    background-color: #131921;
}
.offcanvas.cart-offcanvas
    .offcanvas-body
    .cart-product-box
    .total-price-box
    .free {
    color: rgba(var(--title-color), 0.9);
}
.offcanvas.cart-offcanvas
    .offcanvas-body
    .cart-product-box
    .total-price-box
    .progress {
    margin-top: calc(8px + 10 * (100vw - 320px) / 1600);
    height: calc(5px + 3 * (100vw - 320px) / 1600);
    background-color: #e6e7e9;
    border-radius: 100px;
    position: relative;
    overflow: unset;
    margin-bottom: calc(18px + 13 * (100vw - 320px) / 1600);
}
body.dark
    .offcanvas.cart-offcanvas
    .offcanvas-body
    .cart-product-box
    .total-price-box
    .progress {
    background-color: rgba(var(--content-color), 0.1);
}
.offcanvas.cart-offcanvas
    .offcanvas-body
    .cart-product-box
    .total-price-box
    .progress
    .progress-bar {
    min-width: 28px;
    max-width: calc(100% - 2px);
    height: calc(5px + 3 * (100vw - 320px) / 1600);
    background-color: rgba(var(--primary-color), 1);
    border-radius: 100px;
    position: relative;
    overflow: unset;
}
.offcanvas.cart-offcanvas
    .offcanvas-body
    .cart-product-box
    .total-price-box
    .progress
    .progress-bar.bg-yellow {
    background-color: rgba(var(--rating), 1);
}
.offcanvas.cart-offcanvas
    .offcanvas-body
    .cart-product-box
    .total-price-box
    .progress
    .progress-bar.bg-yellow
    .iconsax {
    background-color: rgba(var(--rating), 1);
}
.offcanvas.cart-offcanvas
    .offcanvas-body
    .cart-product-box
    .total-price-box
    .progress
    .progress-bar.bg-red {
    background-color: rgba(var(--primary-color2), 1);
}
.offcanvas.cart-offcanvas
    .offcanvas-body
    .cart-product-box
    .total-price-box
    .progress
    .progress-bar.bg-red
    .iconsax {
    background-color: rgba(var(--primary-color2), 1);
}
.offcanvas.cart-offcanvas
    .offcanvas-body
    .cart-product-box
    .total-price-box
    .progress
    .progress-bar.bg-green {
    background-color: rgba(var(--theme-green), 1);
}
.offcanvas.cart-offcanvas
    .offcanvas-body
    .cart-product-box
    .total-price-box
    .progress
    .progress-bar.bg-green
    .iconsax {
    background-color: rgba(var(--theme-green), 1);
}
.offcanvas.cart-offcanvas
    .offcanvas-body
    .cart-product-box
    .total-price-box
    .progress
    .progress-bar
    .iconsax {
    position: absolute;
    right: 0;
    border-radius: 100%;
    background-color: rgba(var(--primary-color), 1);
    --Color: #fff;
    --size: calc(15px + (17 - 15) * ((100vw - 320px) / (1920 - 320)));
    top: 50%;
    transform: translateY(-50%);
    width: calc(22px + 6 * (100vw - 320px) / 1600);
    height: calc(22px + 6 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
    justify-content: center;
}
[dir="rtl"]
    .offcanvas.cart-offcanvas
    .offcanvas-body
    .cart-product-box
    .total-price-box
    .progress
    .progress-bar
    .iconsax {
    right: unset;
    left: 0;
}
.offcanvas.cart-offcanvas
    .offcanvas-body
    .cart-product-box
    .total-price-box
    .tax-text {
    border-bottom: 1px solid rgba(var(--content-color), 0.15);
    padding-bottom: calc(7px + 4 * (100vw - 320px) / 1600);
    margin-bottom: calc(13px + 6 * (100vw - 320px) / 1600);
    margin-top: 3px;
    color: rgba(var(--title-color), 0.9);
    font-weight: 300;
    display: flex;
    align-items: center;
}
.offcanvas.cart-offcanvas
    .offcanvas-body
    .cart-product-box
    .total-price-box
    .tax-text
    span {
    padding-inline: 4px;
    text-decoration: underline;
}
.offcanvas.cart-offcanvas
    .offcanvas-body
    .cart-product-box
    .total-price-box
    .sub-total {
    font-size: calc(15px + 3 * (100vw - 320px) / 1600);
    color: rgba(var(--title-color), 1);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.offcanvas.cart-offcanvas
    .offcanvas-body
    .cart-product-box
    .total-price-box
    .sub-total
    span {
    font-weight: 500;
    color: rgba(var(--title-color), 1);
}
.offcanvas.cart-offcanvas
    .offcanvas-body
    .cart-product-box
    .total-price-box
    .cart-btn-group {
    display: flex;
    align-items: center;
    gap: calc(8px + 8 * (100vw - 320px) / 1600);
}
.offcanvas.cart-offcanvas
    .offcanvas-body
    .cart-product-box
    .total-price-box
    .cart-btn-group
    .btn {
    display: block;
    width: 100%;
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    padding: 10px 8px 8px;
}
.offcanvas.cart-offcanvas
    .offcanvas-body
    .cart-product-box
    .total-price-box
    .cart-btn-group
    .btn.check-out-button {
    background-color: rgba(var(--theme-blue-dark), 1);
    color: rgba(var(--white), 1);
    font-weight: 600;
    border: 1px solid transparent;
}
body.dark
    .offcanvas.cart-offcanvas
    .offcanvas-body
    .cart-product-box
    .total-price-box
    .cart-btn-group
    .btn.check-out-button {
    background-color: #fff;
}
.offcanvas.cart-offcanvas
    .offcanvas-body
    .cart-product-box
    .total-price-box
    .cart-btn-group
    .btn.cart-button {
    border: 1px solid rgba(var(--theme-blue-dark), 1);
    color: rgba(var(--theme-blue-dark), 1);
}
body.dark
    .offcanvas.cart-offcanvas
    .offcanvas-body
    .cart-product-box
    .total-price-box
    .cart-btn-group
    .btn.cart-button {
    border-color: #fff;
    color: #fff;
}
.offcanvas.cart-offcanvas
    .offcanvas-body
    .cart-product-box
    .total-price-box
    .cart-btn-group
    .btn.cart-button:hover {
    color: rgba(var(--white), 1);
}
body.dark
    .offcanvas.cart-offcanvas
    .offcanvas-body
    .cart-product-box
    .total-price-box
    .cart-btn-group
    .btn.cart-button:hover {
    color: rgba(var(--white), 1);
}
.offcanvas.cart-offcanvas
    .offcanvas-body
    .cart-product-box
    .total-price-box
    .cart-btn-group
    .check-out-button:hover,
.offcanvas.cart-offcanvas
    .offcanvas-body
    .cart-product-box
    .total-price-box
    .cart-btn-group
    .cart-button:hover {
    background-color: rgba(var(--theme-blue-dark), 1);
    color: rgba(var(--white), 1);
}
body.dark
    .offcanvas.cart-offcanvas
    .offcanvas-body
    .cart-product-box
    .total-price-box
    .cart-btn-group
    .check-out-button:hover,
body.dark
    .offcanvas.cart-offcanvas
    .offcanvas-body
    .cart-product-box
    .total-price-box
    .cart-btn-group
    .cart-button:hover {
    background-color: #fff;
}
.offcanvas.cart-offcanvas
    .offcanvas-body
    .cart-product-box
    .product-box-list:has(.empty-cart[style="display: block;"]) {
    position: relative;
}
.offcanvas.cart-offcanvas
    .offcanvas-body
    .cart-product-box
    .product-box-list:has(.empty-cart[style="display: block;"])
    .empty-cart {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.offcanvas.cart-offcanvas
    .offcanvas-body
    .cart-product-box
    .product-box-list
    .vertical-product-box
    .close-button:not(
        .wishlist-offcanvas
            .cart-product-box
            .vertical-product-box
            .close-button
    ) {
    display: none;
}
@media (max-width: 767.98px) {
    .offcanvas.cart-offcanvas
        .offcanvas-body
        .cart-product-box
        .product-box-list
        .vertical-product-box
        .close-button:not(
            .wishlist-offcanvas
                .cart-product-box
                .vertical-product-box
                .close-button
        ) {
        line-height: 1.2;
    }
}
@media (max-width: 767.98px) {
    .offcanvas.cart-offcanvas
        .offcanvas-body
        .product-box-list
        .vertical-product-box
        .product-content
        .quantity-box {
        position: relative;
        inset: unset;
        margin-top: 9px;
        display: flex;
    }
}
.offcanvas.cart-offcanvas
    .offcanvas-body
    .product-box-list
    .vertical-product-box
    .product-content
    .quantity-box
    .form-control {
    padding: calc(2px + -2 * (100vw - 320px) / 1600) 0 0;
}
.offcanvas.cart-offcanvas
    .offcanvas-body
    .product-box-list
    .vertical-product-box
    .product-content
    .quantity-box
    .qty-btn-plus
    i {
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
}
.offcanvas.wishlist-offcanvas .offcanvas-body .product-box-list:has(.no-data) {
    display: grid;
    place-items: center;
    height: 100%;
}
.offcanvas.wishlist-offcanvas
    .offcanvas-body
    .product-box-list
    .vertical-product-box
    .product-content {
    padding: 0;
    width: calc(
        100% - (94px + 17 * (100vw - 320px) / 1600) -
            (26px + -6 * (100vw - 320px) / 1600)
    );
}
.offcanvas.wishlist-offcanvas
    .offcanvas-body
    .product-box-list
    .vertical-product-box
    .product-content
    .cart-btn {
    border-radius: 0;
}
.offcanvas.wishlist-offcanvas
    .offcanvas-body
    .product-box-list
    .vertical-product-box
    .product-content
    .cart-btn::before {
    border-radius: 100px;
}
.offcanvas.wishlist-offcanvas
    .offcanvas-body
    .product-box-list
    .vertical-product-box
    .wishlist-btn {
    border: none;
    padding: 0;
    line-height: 1;
    position: absolute;
    top: 8px;
    right: 0;
    font-size: calc(16px + 3 * (100vw - 320px) / 1600);
    color: rgba(var(--content-color), 1);
}
[dir="rtl"]
    .offcanvas.wishlist-offcanvas
    .offcanvas-body
    .product-box-list
    .vertical-product-box
    .wishlist-btn {
    right: unset;
    left: 0;
}
.offcanvas.wishlist-offcanvas
    .offcanvas-body
    .product-box-list
    .vertical-product-box
    .wishlist-btn
    i {
    font-size: calc(16px + 3 * (100vw - 320px) / 1600);
}
.offcanvas.wishlist-offcanvas .offcanvas-body .product-box-list .no-data {
    text-align: center;
}
.offcanvas.wishlist-offcanvas .offcanvas-body .product-box-list .no-data svg {
    width: calc(112px + 88 * (100vw - 320px) / 1600);
    height: calc(112px + 88 * (100vw - 320px) / 1600);
}
.offcanvas.wishlist-offcanvas .offcanvas-body .product-box-list .no-data p {
    color: rgba(var(--content-color), 1);
    margin-top: 15px;
    font-size: calc(15px + 2 * (100vw - 320px) / 1600);
}
.offcanvas.wishlist-offcanvas
    .offcanvas-body
    .cart-product-box
    .product-box-list {
    height: calc(100vh - (185px + 30 * (100vw - 320px) / 1600));
}
.offcanvas.wishlist-offcanvas
    .offcanvas-body
    .cart-product-box
    .total-price-box
    .tax-text {
    margin-top: 0;
    display: block;
}
.offcanvas.product-filter-offcanvas {
    width: calc(300px + 50 * (100vw - 320px) / 1600);
    background-color: rgba(var(--base-gray), 1);
}
.offcanvas.product-filter-offcanvas .offcanvas-header {
    justify-content: space-between;
    padding: calc(13px + 6 * (100vw - 320px) / 1600)
        calc(16px + 8 * (100vw - 320px) / 1600) 13px;
    border-bottom: 1px solid rgba(82, 82, 108, 0.15);
    background-color: rgba(var(--white), 1);
}
.offcanvas.product-filter-offcanvas .offcanvas-header .btn-close {
    padding: 0;
    margin: 0;
    background: unset;
    opacity: 1;
    width: unset;
    height: unset;
}
.offcanvas.product-filter-offcanvas .offcanvas-header .btn-close::before {
    content: "\eb99";
    font-size: 18px;
    color: rgba(var(--content-color), 1);
    font-family: remixicon;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
}
.offcanvas.product-filter-offcanvas .offcanvas-body {
    padding-inline: calc(12px + 4 * (100vw - 320px) / 1600);
}
.offcanvas.product-filter-offcanvas .offcanvas-body::-webkit-scrollbar {
    width: 3px;
}
.offcanvas.product-filter-offcanvas .offcanvas-body::-webkit-scrollbar-track {
    background: rgba(var(--base-gray), 1);
}
.offcanvas.product-filter-offcanvas .offcanvas-body::-webkit-scrollbar-thumb {
    background-color: rgb(85, 85, 85);
    border-radius: 3px;
    border: 3px none rgba(var(--base-gray), 1);
}
@media (max-width: 991.98px) {
    .offcanvas.product-filter-offcanvas .offcanvas-body .left-box {
        border: unset;
        position: relative;
        inset: unset;
        background-color: transparent;
        z-index: unset;
        transition: all 0.5s ease;
        overflow: visible;
        transition: all 0.15s ease-in-out;
        width: unset;
        height: unset;
    }
}
.offcanvas.product-filter-offcanvas
    .offcanvas-body
    .left-box
    .filter-category-2 {
    background-color: rgba(var(--white), 1);
    margin-bottom: calc(12px + 8 * (100vw - 320px) / 1600);
    padding: calc(12px + 8 * (100vw - 320px) / 1600);
}
.offcanvas.product-filter-offcanvas
    .offcanvas-body
    .left-box
    .filter-category-2
    .filter-title {
    padding: 0 0 calc(12px + 2 * (100vw - 320px) / 1600);
}
.offcanvas.product-filter-offcanvas
    .offcanvas-body
    .left-box
    .filter-category-2
    .filter-title
    h2 {
    font-size: 17px;
    color: rgba(var(--title-color), 1);
}
.offcanvas.product-filter-offcanvas
    .offcanvas-body
    .left-box
    .filter-category-2
    .filter-title
    .btn {
    display: block;
    color: rgba(var(--danger-color), 1);
    padding: 0;
    font-weight: 400;
    font-size: 14px;
    text-decoration: underline;
}
.offcanvas.product-filter-offcanvas
    .offcanvas-body
    .left-box
    .filter-category-2
    ul {
    padding: 0;
}
.offcanvas.product-filter-offcanvas
    .offcanvas-body
    .left-box
    .filter-category-2
    ul
    li {
    background-color: rgba(var(--base-gray), 1);
    padding: calc(6px + 3 * (100vw - 320px) / 1600)
        calc(8px + 3 * (100vw - 320px) / 1600);
}
.offcanvas.product-filter-offcanvas
    .offcanvas-body
    .left-box
    .filter-category-2
    ul
    li:after {
    color: rgba(var(--content-color), 1);
    cursor: pointer;
    line-height: 1;
    margin-top: -2px;
    content: "\eb99";
    position: relative;
    font-family: remixicon;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
}
.offcanvas.product-filter-offcanvas
    .offcanvas-body
    .left-box
    .filter-category-2
    ul
    li
    a {
    color: rgba(var(--content-color), 1);
}
@media (max-width: 991.98px) {
    .offcanvas.product-filter-offcanvas
        .offcanvas-body
        .left-box
        .shop-left-sidebar {
        padding: 0;
    }
}
.offcanvas.product-filter-offcanvas
    .offcanvas-body
    .left-box
    .shop-left-sidebar.shop-right-sidebar {
    padding-left: calc(16px + 10 * (100vw - 320px) / 1600);
    padding-right: unset;
}
@media (max-width: 991.98px) {
    .offcanvas.product-filter-offcanvas
        .offcanvas-body
        .left-box
        .shop-left-sidebar.shop-right-sidebar {
        padding: calc(16px + 10 * (100vw - 320px) / 1600);
    }
}
.offcanvas.product-filter-offcanvas
    .offcanvas-body
    .left-box
    .shop-left-sidebar.shop-right-sidebar
    .back-button
    h3
    i {
    margin-right: auto;
    margin-left: 0;
}
.offcanvas.product-filter-offcanvas
    .offcanvas-body
    .left-box
    .shop-left-sidebar
    .back-button {
    display: none;
}
@media (max-width: 991.98px) {
    .offcanvas.product-filter-offcanvas
        .offcanvas-body
        .left-box
        .shop-left-sidebar
        .back-button {
        display: block;
        margin-bottom: 26px;
    }
}
.offcanvas.product-filter-offcanvas
    .offcanvas-body
    .left-box
    .shop-left-sidebar
    .back-button
    h3 {
    display: flex;
    align-items: center;
    font-weight: 600;
}
.offcanvas.product-filter-offcanvas
    .offcanvas-body
    .left-box
    .shop-left-sidebar
    .back-button
    h3
    i {
    margin-right: 10px;
}
.offcanvas.product-filter-offcanvas
    .offcanvas-body
    .left-box
    .shop-left-sidebar
    .search-box {
    position: relative;
    margin-bottom: 20px;
}
.offcanvas.product-filter-offcanvas
    .offcanvas-body
    .left-box
    .shop-left-sidebar
    .search-box
    .search-button {
    position: absolute;
    right: 0;
    border-left: 1px solid rgba(var(--content-color), 0.3);
    font-size: 15px;
    padding: 0 10px;
    height: 60%;
    display: flex;
    align-items: center;
    color: rgba(var(--content-color), 1);
    top: 50%;
    transform: translateY(-50%);
}
.offcanvas.product-filter-offcanvas
    .offcanvas-body
    .left-box
    .shop-left-sidebar
    .search-box
    .form-control {
    background-color: rgba(var(--white), 1);
}
.offcanvas.product-filter-offcanvas
    .offcanvas-body
    .left-box
    .shop-left-sidebar
    .custom-accordion-2 {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}
@media (max-width: 991.98px) {
    .offcanvas.product-filter-offcanvas
        .offcanvas-body
        .left-box
        .shop-left-sidebar
        .custom-accordion-2 {
        gap: 0;
    }
}
.offcanvas.product-filter-offcanvas
    .offcanvas-body
    .left-box
    .shop-left-sidebar
    .custom-accordion-2
    .accordion-item {
    background-color: rgba(var(--white), 1);
    padding: calc(12px + 8 * (100vw - 320px) / 1600);
    border-radius: 5px;
    border: 0;
}
.offcanvas.product-filter-offcanvas
    .offcanvas-body
    .left-box
    .shop-left-sidebar
    .custom-accordion-2
    .accordion-item
    .accordion-header {
    padding: 0 0 calc(12px + 2 * (100vw - 320px) / 1600);
}
.offcanvas.product-filter-offcanvas
    .offcanvas-body
    .left-box
    .shop-left-sidebar
    .custom-accordion-2
    .accordion-item
    .accordion-header
    .accordion-button {
    font-size: 16px;
}
.offcanvas.product-filter-offcanvas
    .offcanvas-body
    .left-box
    .shop-left-sidebar
    .custom-accordion-2
    .accordion-item
    .accordion-collapse {
    padding: 0;
}
.offcanvas.product-filter-offcanvas
    .offcanvas-body
    .left-box
    .shop-left-sidebar
    .custom-accordion-2
    .accordion-item
    .accordion-collapse
    .accordion-body {
    padding: calc(12px + 4 * (100vw - 320px) / 1600) 0 0;
}
.offcanvas.product-filter-offcanvas
    .offcanvas-body
    .left-box
    .shop-left-sidebar
    .left-title {
    margin-bottom: 20px;
    margin-top: 32px;
}
.offcanvas.product-filter-offcanvas
    .offcanvas-body
    .left-box
    .shop-left-sidebar
    .left-title
    h3 {
    font-weight: 700;
}
.offcanvas.product-filter-offcanvas
    .offcanvas-body
    .left-box
    .shop-left-sidebar
    .custom-nav-tab {
    gap: calc(11px + 9 * (100vw - 320px) / 1600);
}
.offcanvas.product-filter-offcanvas
    .offcanvas-body
    .left-box
    .shop-left-sidebar
    .custom-nav-tab
    .nav-item {
    background-color: #f7f6f3;
    border-radius: 6px;
    display: flex;
    overflow: hidden;
    width: 100%;
    height: 60px;
}
.offcanvas.product-filter-offcanvas
    .offcanvas-body
    .left-box
    .shop-left-sidebar
    .custom-nav-tab
    .nav-item
    .nav-link {
    width: 100%;
    text-align: left;
    font-size: 18px;
    font-weight: 500;
    color: rgba(var(--title-color), 1);
    border-radius: unset;
    position: relative;
    text-align: left;
}
[dir="rtl"]
    .offcanvas.product-filter-offcanvas
    .offcanvas-body
    .left-box
    .shop-left-sidebar
    .custom-nav-tab
    .nav-item
    .nav-link {
    text-align: right;
}
.offcanvas.product-filter-offcanvas
    .offcanvas-body
    .left-box
    .shop-left-sidebar
    .custom-nav-tab
    .nav-item
    .nav-link:hover(not)
    img {
    transform: translateY(-50%) rotate(-4deg);
    right: -12px;
    opacity: 0.45;
    width: 75px;
    height: 75px;
}
.offcanvas.product-filter-offcanvas
    .offcanvas-body
    .left-box
    .shop-left-sidebar
    .custom-nav-tab
    .nav-item
    .nav-link:hover
    img {
    transform: translateY(-50%) rotate(-4deg);
    right: -12px;
    opacity: 0.29;
    width: 75px;
    height: 75px;
}
.offcanvas.product-filter-offcanvas
    .offcanvas-body
    .left-box
    .shop-left-sidebar
    .custom-nav-tab
    .nav-item
    .nav-link.active {
    color: rgba(var(--white), 1);
    background: linear-gradient(
        90.56deg,
        rgba(var(--primary-color1), 1) 8.46%,
        rgba(var(--primary-color), 1) 62.97%
    );
    font-size: 19px;
    font-weight: 600;
}
.offcanvas.product-filter-offcanvas
    .offcanvas-body
    .left-box
    .shop-left-sidebar
    .custom-nav-tab
    .nav-item
    .nav-link.active
    img {
    position: absolute;
    right: -10px;
    filter: invert(1);
    opacity: 0.4;
    top: 50%;
    transform: translateY(-50%);
    width: 90px;
    height: 90px;
}
.offcanvas.product-filter-offcanvas
    .offcanvas-body
    .left-box
    .shop-left-sidebar
    .custom-nav-tab
    .nav-item
    .nav-link
    img {
    position: absolute;
    right: -10px;
    opacity: 0.1;
    transition: all 0.15s ease-in-out;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
}
.offcanvas.product-filter-offcanvas
    .offcanvas-body
    .left-box
    .special-offer-box {
    margin-top: 20px;
    padding: 15px;
    height: auto;
    background-color: rgba(var(--white), 1);
}

.product-box-list > li {
    display: block;
}
.product-box-list > li + li {
    margin-top: calc(8px + 3 * (100vw - 320px) / 1600);
    border-top: 1px solid rgba(221, 221, 221, 0.322);
    padding-top: calc(8px + 3 * (100vw - 320px) / 1600);
}
body.dark .product-box-list > li + li {
    border-color: rgba(var(--border-color), 1);
}
.product-box-list > li.empty-card {
    display: none;
}
.product-box-list > li.empty-card.show {
    display: block;
}
.product-box-list .vertical-product-box {
    display: flex;
    position: relative;
}
.product-box-list .vertical-product-box .close-button {
    border: none;
    padding: 0;
    position: absolute;
    top: 8px;
    right: 0;
    font-size: calc(16px + 3 * (100vw - 320px) / 1600);
    color: rgba(var(--content-color), 1);
}
[dir="rtl"] .product-box-list .vertical-product-box .close-button {
    right: unset;
    left: 0;
}
.product-box-list .vertical-product-box .product-image {
    padding-block: calc(3px + 5 * (100vw - 320px) / 1600);
    background-color: rgba(var(--base-gray), 1);
    padding: 10px;
    overflow: hidden;
    border-radius: 6px;
    width: calc(94px + 17 * (100vw - 320px) / 1600);
    height: calc(94px + 17 * (100vw - 320px) / 1600);
}
.product-box-list .vertical-product-box .product-content {
    width: calc(100% - (94px + 17 * (100vw - 320px) / 1600));
    padding-top: calc(0px + 11 * (100vw - 320px) / 1600);
}
.product-box-list .vertical-product-box .product-content a {
    color: rgba(var(--title-color), 1);
}
.product-box-list .vertical-product-box .product-content a .name {
    color: rgba(var(--title-color), 1);
    margin-bottom: calc(0px + 4 * (100vw - 320px) / 1600);
    font-weight: 500;
}
.product-box-list .vertical-product-box .product-content .price {
    margin-top: calc(5px + 2 * (100vw - 320px) / 1600);
    color: rgba(var(--theme-green), 1);
    font-weight: 500;
}
.product-box-list .vertical-product-box .product-content .price del {
    color: rgba(var(--content-color), 1);
    margin-left: 3px;
}
[dir="rtl"]
    .product-box-list
    .vertical-product-box
    .product-content
    .price
    del {
    margin-left: unset;
    margin-right: 3px;
}
.product-box-list .vertical-product-box .product-content .quantity-box {
    padding: 5px;
    width: 80px;
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 8px;
    right: 0;
    background-color: rgba(var(--content-color), 0.05);
}
[dir="rtl"]
    .product-box-list
    .vertical-product-box
    .product-content
    .quantity-box {
    right: unset;
    left: 0;
}
@media (max-width: 767.98px) {
    .product-box-list .vertical-product-box .product-content .quantity-box {
        display: none;
    }
}
.product-box-list .vertical-product-box .product-content .quantity-box button {
    padding: 0;
    border: none;
    width: 100%;
    color: rgba(var(--title-color), 1);
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
}
.product-box-list .vertical-product-box .product-content .quantity-box input {
    padding: 0;
    border: unset;
    color: rgba(var(--title-color), 1);
    background-color: transparent;
    text-align: center;
    font-size: 14px;
}
.product-box-list .vertical-product-box .product-content .cart-btn {
    padding: 0;
    display: inline-block;
    position: relative;
    inset: unset;
    background-color: transparent;
    font-size: calc(15px + 2 * (100vw - 320px) / 1600);
    overflow: hidden;
    margin-top: calc(5px + 2 * (100vw - 320px) / 1600);
    color: rgba(var(--primary-color2), 1);
    border-radius: 0;
}
.product-box-list .vertical-product-box .product-content .cart-btn::before {
    bottom: 0;
    left: 0;
    background-color: rgba(var(--primary-color2), 1);
    transition: 0.5s;
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
}
[dir="rtl"]
    .product-box-list
    .vertical-product-box
    .product-content
    .cart-btn::before {
    left: unset;
    right: 0;
}
.product-box-list .vertical-product-box .product-content .cart-btn:hover {
    color: rgba(var(--primary-color2), 1);
}
.product-box-list
    .vertical-product-box
    .product-content
    .cart-btn:hover::before {
    width: 100%;
}
.product-box-list .vertical-product-box .product-content .cart-btn a {
    color: rgba(var(--primary-color2), 1);
}
.product-box-list .vertical-product-box.row-remove {
    display: none;
}
.product-box-list li.empty-cart {
    text-align: center;
}
.product-box-list li.empty-cart:not(.show) {
    display: none;
}
.product-box-list li.empty-cart img,
.product-box-list li.empty-cart svg {
    height: 200px;
}
.product-box-list li.empty-cart h4 {
    padding-top: 12px;
}

/* Mixin Files */
/**=====================
    2.12 Pagination scss
==========================**/
.custom-pagination {
    margin-top: calc(22px + 13 * (100vw - 320px) / 1600);
    border-radius: 5px;
}
.custom-pagination .pagination {
    flex-wrap: wrap;
    gap: calc(6px + 7 * (100vw - 320px) / 1600);
}
.custom-pagination .pagination .page-item {
    border-radius: 5px;
    overflow: hidden;
}
.custom-pagination .pagination .page-item:not(:first-child) .page-link {
    margin: 0;
}
[dir="rtl"] .custom-pagination .pagination .page-item:first-child .page-link,
[dir="rtl"] .custom-pagination .pagination .page-item:last-child .page-link {
    transform: scaleX(-1);
}
.custom-pagination .pagination .page-item.active .page-link {
    background-color: rgba(var(--primary-color), 1);
    border-color: rgba(var(--primary-color), 1);
    color: #fff;
    --Color: #fff;
}
.custom-pagination .pagination .page-item.active:hover .page-link {
    background-color: rgba(var(--primary-color), 1);
    border-color: rgba(var(--primary-color), 1);
    color: #fff;
    --Color: #fff;
}
.custom-pagination .pagination .page-item.disabled .page-link {
    opacity: 0.5;
    user-select: none;
}
.custom-pagination .pagination .page-item .page-link {
    color: rgba(var(--content-color), 1);
    border: 1px solid transparent;
    border-radius: calc(3px + 2 * (100vw - 320px) / 1600);
    line-height: 1;
    z-index: 0;
    padding: 0;
    background-color: rgba(var(--white), 1);
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    --size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    position: relative;
    width: calc(34px + 6 * (100vw - 320px) / 1600);
    height: calc(34px + 6 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
    justify-content: center;
}
.custom-pagination .pagination .page-item .page-link:hover {
    border: 1px solid rgba(var(--primary-color), 1);
    background-color: rgba(var(--white), 1);
    color: rgba(var(--primary-color), 1);
}
.custom-pagination .pagination .page-item .page-link:focus {
    color: rgba(var(--primary-color), 1);
    background-color: rgba(var(--white), 1);
    box-shadow: none;
}
.custom-pagination .pagination .page-item .page-link i {
    --Color: rgba(var(--title-color), 1);
}
.custom-pagination .pagination .page-item .page-link span {
    position: absolute;
    top: 52%;
    left: 48%;
    transform: translate(-50%, -50%);
    line-height: 1;
}

/* Mixin Files */
/**=====================
    2.13 Rating CSS
==========================**/
.rating {
    display: flex;
    align-items: center;
    gap: 2px;
}
.rating li {
    line-height: 1;
}
.rating li i {
    font-size: calc(13px + 1 * (100vw - 320px) / 1600);
    color: rgba(var(--content-color), 0.3);
}
body.dark .rating li i {
    color: rgba(var(--content-color), 0.8);
}
.rating li i.fill {
    color: rgba(var(--rating), 1);
}
body.dark .rating li i.fill {
    color: rgba(var(--rating), 1);
}

/* Mixin Files */
/**=====================
   2.14 Ratio CSS Start
==========================**/
.ratio_30 .bg-size:before {
    padding-top: 30%;
    content: "";
    display: block;
}

.ratio_45 .bg-size:before {
    padding-top: 45%;
    content: "";
    display: block;
}

.ratio_50 .bg-size:before {
    padding-top: 50%;
    content: "";
    display: block;
}

.ratio_57 .bg-size:before {
    padding-top: 57%;
    content: "";
    display: block;
}

.ratio_60 .bg-size:before {
    padding-top: 60%;
    content: "";
    display: block;
}

.ratio_62 .bg-size:before {
    padding-top: 62.3%;
    content: "";
    display: block;
}

.ratio_66 .bg-size:before {
    padding-top: 66.66%;
    content: "";
    display: block;
}

.ratio_69 .bg-size:before {
    padding-top: 69%;
    content: "";
    display: block;
}

.ratio_72 .bg-size:before {
    padding-top: 72%;
    content: "";
    display: block;
}

.ratio_75 .bg-size:before {
    padding-top: 75%;
    content: "";
    display: block;
}

.ratio_82 .bg-size:before {
    padding-top: 82.6%;
    content: "";
    display: block;
}

.ratio_86 .bg-size:before {
    padding-top: 86%;
    content: "";
    display: block;
}

.ratio_89 .bg-size:before {
    padding-top: 89%;
    content: "";
    display: block;
}

.ratio_100 .bg-size:before {
    padding-top: 100%;
    content: "";
    display: block;
}

.ratio_116 .bg-size:before {
    padding-top: 116%;
    content: "";
    display: block;
}

.ratio_120 .bg-size:before {
    padding-top: 120%;
    content: "";
    display: block;
}

.ratio_127 .bg-size:before {
    padding-top: 127.7777778%;
    content: "";
    display: block;
}

.ratio_130 .bg-size:before {
    padding-top: 130.4%;
    content: "";
    display: block;
}

.ratio_136 .bg-size:before {
    padding-top: 136%;
    content: "";
    display: block;
}

.ratio_144 .bg-size:before {
    padding-top: 144%;
    content: "";
    display: block;
}

.ratio_148 .bg-size {
    content: "";
    padding-top: 148%;
    display: block;
}
@media (max-width: 1199.98px) {
    .ratio_148 .bg-size {
        padding-top: 88%;
    }
}

.ratio_150 .bg-size:before {
    padding-top: 150%;
    content: "";
    display: block;
}

.ratio_170 .bg-size:before {
    padding-top: 170%;
    content: "";
    display: block;
}

.ratio_176 .bg-size:before {
    padding-top: 176%;
    content: "";
    display: block;
}

.ratio_179 .bg-size:before {
    padding-top: 179%;
    content: "";
    display: block;
}

.ratio_190 .bg-size:before {
    padding-top: 190%;
    content: "";
    display: block;
}

.b-top {
    background-position: top !important;
}

.b-right {
    background-position: right !important;
}

.b-bottom {
    background-position: bottom !important;
}

.b-left {
    background-position: left !important;
}

.ratio-8x5 {
    aspect-ratio: 1.6;
    object-fit: cover;
    object-position: left;
}

/* Mixin Files */
/**=====================
    2.15 Sidebar Category CSS
==========================**/
.category-full-box.offcanvas {
    background-color: rgba(var(--white), 1);
}
@media (min-width: 1399.98px) {
    .category-full-box.offcanvas {
        position: relative;
        visibility: visible;
        z-index: 0;
    }
}
@media (max-width: 1399.98px) {
    .category-full-box {
        position: fixed;
        left: 0;
        top: 0;
        z-index: 13;
        transition: all 0.15s linear;
        overflow: hidden auto;
        transform: translateX(-320px);
        width: calc(305px + 15 * (100vw - 320px) / 448);
        height: 100vh;
    }
    [dir="rtl"] .category-full-box {
        transform: translateX(320px);
        left: unset;
        right: 0;
    }
    .category-full-box.show {
        transform: translateX(0);
    }
}
.category-full-box .category-header {
    flex-shrink: 0;
    z-index: 1;
    box-shadow: 0 2px 10px -3px rgba(var(--title-color), 0.1);
    position: sticky;
    top: 0;
    padding: calc(16px + 10 * (100vw - 320px) / 1080)
        calc(19px + 13 * (100vw - 320px) / 1080) 16px;
    background-color: #f2f3f8;
    border-bottom: 1px solid rgba(var(--content-color), 0.2);
    display: none;
}
body.dark .category-full-box .category-header {
    background-color: #131921;
    box-shadow: none;
    border-color: rgba(var(--border-color), 1);
}
body.demo-5.dark .category-full-box .category-header {
    background-color: #1c1a3b;
}
@media (max-width: 1399.98px) {
    .category-full-box .category-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .category-full-box .category-header h5 {
        color: rgba(var(--title-color), 1);
        font-weight: 500;
        line-height: 1;
        font-size: calc(17px + 5 * (100vw - 320px) / 1080);
    }
    .category-full-box .category-header .btn-close {
        padding: 0;
        margin: 0;
        font-size: 20px;
        line-height: 1;
        background: unset;
        opacity: 1;
        width: unset;
        height: unset;
    }
    body.dark .category-full-box .category-header .btn-close {
        color: #fff;
    }
}
.category-full-box .category-menu-list {
    background-color: rgba(var(--white), 1);
    border: 1px solid rgba(var(--content-color), 0.2);
    padding-top: 20px;
    height: 100%;
}
@media (max-width: 1399.98px) {
    .category-full-box .category-menu-list {
        height: unset;
        border: none;
        overflow: auto;
    }
}
.category-full-box .category-menu-list.category-bg-color {
    border-radius: 5px;
    background-color: #e8f1f7;
    border: none;
}
.category-full-box .category-menu-list .category-title {
    padding: 0 20px 20px;
    font-weight: 600;
}
.category-full-box .category-menu-list .top-menu-list {
    margin-inline: calc(15px + 5 * (100vw - 320px) / 1600);
    padding-bottom: calc(14px + 6 * (100vw - 320px) / 1600);
    margin-bottom: calc(4px + 16 * (100vw - 320px) / 1600);
    border-bottom: 1px solid rgba(var(--content-color), 0.2);
}
.category-full-box .category-menu-list .top-menu-list li {
    display: block;
    width: 100%;
}
.category-full-box .category-menu-list .top-menu-list li + li {
    margin-top: calc(20px + 5 * (100vw - 320px) / 1600);
}
.category-full-box .category-menu-list .top-menu-list li .sub-category-box {
    display: flex;
    align-items: center;
    gap: calc(8px + 3 * (100vw - 320px) / 1600);
    color: rgba(var(--title-color), 1);
}
.category-full-box .category-menu-list .top-menu-list li .sub-category-box svg {
    fill: rgba(var(--content-color), 1);
    margin-top: calc(-1px + -3 * (100vw - 320px) / 1600);
    width: calc(18px + 2 * (100vw - 320px) / 1600);
    height: calc(18px + 2 * (100vw - 320px) / 1600);
}
.category-full-box .category-menu-list .top-menu-list li .sub-category-box h5 {
    font-weight: 500;
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
}
.category-full-box
    .category-menu-list
    .top-menu-list
    li
    .sub-category-box
    h5
    span {
    font-weight: 500;
    font-size: 14px;
    color: rgba(var(--white), 1);
    line-height: 1;
    padding: 3px 5px;
    border-radius: 3px;
    margin-left: 10px;
    animation: blink 0.6s ease-in-out infinite alternate;
}
[dir="rtl"]
    .category-full-box
    .category-menu-list
    .top-menu-list
    li
    .sub-category-box
    h5
    span {
    margin-left: unset;
    margin-right: 10px;
}
.category-full-box .category-menu-list .top-menu-list-sm {
    padding-bottom: 14px;
    margin-bottom: 14px;
}
.category-full-box .category-menu-list .top-menu-list-sm li + li {
    margin-top: 15px;
}
.category-full-box .category-menu-list .sub-menu-list {
    height: calc(400px + 180 * (100vw - 1399px) / 521);
    overflow: auto;
}
.category-full-box .category-menu-list .sub-menu-list::-webkit-scrollbar-track {
    border-radius: 100px;
    background-color: #f2f3f7;
}
body.dark
    .category-full-box
    .category-menu-list
    .sub-menu-list::-webkit-scrollbar-track {
    background-color: rgba(255, 255, 255, 0.05);
}
.category-full-box .category-menu-list .sub-menu-list::-webkit-scrollbar {
    width: 3px;
    background-color: #f2f3f7;
}
body.dark
    .category-full-box
    .category-menu-list
    .sub-menu-list::-webkit-scrollbar {
    background-color: rgba(255, 255, 255, 0.05);
}
.category-full-box .category-menu-list .sub-menu-list::-webkit-scrollbar-thumb {
    border-radius: 100px;
    background-color: rgba(var(--theme-blue-dark), 0.4);
}
@media (max-width: 1399.98px) {
    .category-full-box .category-menu-list .sub-menu-list {
        height: auto;
    }
}
.category-full-box .category-menu-list .sub-menu-list li {
    display: block;
}
.category-full-box .category-menu-list .sub-menu-list li .sub-category-box {
    display: flex;
    align-items: center;
    gap: calc(8px + 3 * (100vw - 320px) / 1600);
    position: relative;
    color: rgba(var(--title-color), 1);
    padding: calc(10px + 3 * (100vw - 320px) / 1600)
        calc(15px + 5 * (100vw - 320px) / 1600)
        calc(7px + 6 * (100vw - 320px) / 1600)
        calc(15px + 2 * (100vw - 320px) / 1600);
    border-left: 3px solid transparent;
    transition: 0.3s;
}
[dir="rtl"]
    .category-full-box
    .category-menu-list
    .sub-menu-list
    li
    .sub-category-box {
    border-left: unset;
    border-right: 3px solid transparent;
}
.category-full-box
    .category-menu-list
    .sub-menu-list
    li
    .sub-category-box:hover {
    background-color: #eaeded;
    border-color: rgba(var(--primary-color), 1);
}
body.dark
    .category-full-box
    .category-menu-list
    .sub-menu-list
    li
    .sub-category-box:hover {
    background-color: #131921;
}
.category-full-box
    .category-menu-list
    .sub-menu-list
    li
    .sub-category-box:hover::after {
    content: "\f2e5";
}
.category-full-box
    .category-menu-list
    .sub-menu-list
    li
    .sub-category-box::after {
    color: rgba(var(--content-color), 1);
    font-size: 18px;
    margin-left: auto;
    transition: all 0.5s ease-in-out;
    content: "\ea6e";
    position: relative;
    font-family: remixicon;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
}
[dir="rtl"]
    .category-full-box
    .category-menu-list
    .sub-menu-list
    li
    .sub-category-box::after {
    margin-left: unset;
    margin-right: auto;
}
.category-full-box .category-menu-list .sub-menu-list li .sub-category-box i {
    font-size: 20px;
    color: rgba(var(--content-color), 1);
    margin-top: -4px;
}
.category-full-box .category-menu-list .sub-menu-list li .sub-category-box svg {
    fill: rgba(var(--content-color), 1);
    margin-top: calc(-1px + -3 * (100vw - 320px) / 1600);
    width: calc(18px + 2 * (100vw - 320px) / 1600);
    height: calc(18px + 2 * (100vw - 320px) / 1600);
}
.category-full-box .category-menu-list .sub-menu-list li .sub-category-box h5 {
    font-weight: 500;
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    line-height: 1.3;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
.category-full-box
    .category-menu-list
    .sub-menu-list
    li
    .sub-category-box
    h5
    span {
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    line-height: 1;
    padding: 3px 5px;
    border-radius: 3px;
    margin-left: 10px;
}
[dir="rtl"]
    .category-full-box
    .category-menu-list
    .sub-menu-list
    li
    .sub-category-box
    h5
    span {
    margin-left: unset;
    margin-right: 10px;
}
.category-full-box .category-menu-list .sub-menu-list-sm li {
    padding-block: 8px;
}

.category-menu-list-2 {
    background-color: #f4faf9;
    padding-top: 20px;
}
body.dark .category-menu-list-2 {
    background-color: #032a27;
}
.category-menu-list-2 .top-menu-list {
    margin-inline: 20px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(var(--content-color), 0.2);
}
.category-menu-list-2 .top-menu-list li {
    display: block;
    width: 100%;
}
.category-menu-list-2 .top-menu-list li + li {
    margin-top: 25px;
}
.category-menu-list-2 .top-menu-list li .sub-category-box {
    display: flex;
    align-items: center;
    gap: 11px;
    color: rgba(var(--title-color), 1);
}
.category-menu-list-2 .top-menu-list li .sub-category-box svg {
    fill: rgba(var(--content-color), 1);
    margin-top: calc(-1px + -3 * (100vw - 320px) / 1600);
    width: calc(18px + 2 * (100vw - 320px) / 1600);
    height: calc(18px + 2 * (100vw - 320px) / 1600);
}
.category-menu-list-2 .top-menu-list li .sub-category-box h5 {
    display: flex;
    align-items: center;
}
.category-menu-list-2 .top-menu-list li .sub-category-box h5 span {
    font-weight: 500;
    font-size: 14px;
    color: rgba(var(--white), 1);
    line-height: 1;
    padding: 3px 5px;
    border-radius: 3px;
    margin-left: 10px;
    animation: blink 0.6s ease-in-out infinite alternate;
}
[dir="rtl"] .category-menu-list-2 .top-menu-list li .sub-category-box h5 span {
    margin-left: unset;
    margin-right: 10px;
}
.category-menu-list-2 .sub-menu-list li {
    display: block;
    width: 100%;
    padding: 13px 20px;
    border-left: 3px solid transparent;
    transition: 0.3s;
}
[dir="rtl"] .category-menu-list-2 .sub-menu-list li {
    border-left: unset;
    border-right: 3px solid transparent;
}
.category-menu-list-2 .sub-menu-list li:hover {
    background-color: #eaeded;
    border-color: rgba(var(--primary-color), 1);
}
body.dark .category-menu-list-2 .sub-menu-list li:hover {
    background-color: rgba(218, 238, 235, 0.3019607843);
}
.category-menu-list-2 .sub-menu-list li:hover .sub-category-box::after {
    content: "\f2e5";
}
.category-menu-list-2 .sub-menu-list li .sub-category-box {
    display: flex;
    align-items: center;
    gap: 11px;
    position: relative;
    color: rgba(var(--title-color), 1);
}
.category-menu-list-2 .sub-menu-list li .sub-category-box::after {
    color: rgba(var(--content-color), 1);
    font-size: 18px;
    margin-left: auto;
    transition: all 0.5s ease-in-out;
    content: "\ea6e";
    position: relative;
    font-family: remixicon;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
}
[dir="rtl"] .category-menu-list-2 .sub-menu-list li .sub-category-box::after {
    margin-left: unset;
    margin-right: auto;
}
.category-menu-list-2 .sub-menu-list li .sub-category-box i {
    font-size: 20px;
    color: rgba(var(--content-color), 1);
    margin-top: -4px;
}
.category-menu-list-2 .sub-menu-list li .sub-category-box svg {
    fill: rgba(var(--content-color), 1);
    margin-top: calc(-1px + -3 * (100vw - 320px) / 1600);
    width: calc(18px + 2 * (100vw - 320px) / 1600);
    height: calc(18px + 2 * (100vw - 320px) / 1600);
}
.category-menu-list-2 .sub-menu-list li .sub-category-box h5 {
    font-weight: 500;
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
.category-menu-list-2 .sub-menu-list li .sub-category-box h5 span {
    font-weight: 500;
    font-size: 14px;
    color: rgba(var(--white), 1);
    line-height: 1;
    padding: 3px 5px;
    border-radius: 3px;
    margin-left: 10px;
}

/* Mixin Files */
/**=====================
    2.16 Slider CSS
==========================**/
[dir="rtl"] .swiper {
    direction: ltr;
}
[dir="rtl"] .swiper .swiper-wrapper .swiper-slide > * {
    direction: rtl;
}

.hot-deal-slider > .swiper-wrapper > .swiper-slide {
    background-color: rgba(var(--white), 1);
}

.menu-product-slider2 {
    margin-block: -16px;
}
.menu-product-slider2 .swiper-wrapper {
    padding-block: 16px;
}

.vertical-slider .swiper-slide {
    height: 100% !important;
}

.product-box-slider {
    margin-bottom: -70px;
}
@media (max-width: 767.98px) {
    .product-box-slider {
        margin-bottom: 0;
    }
}
.product-box-slider .swiper-wrapper .swiper-slide {
    padding-bottom: 70px;
}
@media (max-width: 767.98px) {
    .product-box-slider .swiper-wrapper .swiper-slide {
        padding-bottom: 0;
    }
}

.slider-pagination .swiper-pagination {
    position: relative;
    inset: unset;
    margin-top: calc(10px + 28 * (100vw - 320px) / 1600);
    height: auto;
}
.slider-pagination .swiper-pagination .swiper-pagination-bullet {
    background-color: #f2f3f8;
    transition: all 0.5s ease;
    border-radius: 100px;
    opacity: 1;
    width: 10px;
    height: 4px;
}
body.dark .slider-pagination .swiper-pagination .swiper-pagination-bullet {
    background-color: #474c64;
}
.slider-pagination .swiper-pagination .swiper-pagination-bullet-active {
    width: 27px;
    background-color: rgba(var(--primary-color), 1);
}
body.dark
    .slider-pagination
    .swiper-pagination
    .swiper-pagination-bullet-active {
    background-color: rgba(var(--primary-color), 1);
}

.slider-pagination-lg .swiper-pagination {
    z-index: unset;
    position: relative;
    inset: unset;
    margin-top: 10px;
    height: auto;
}
.slider-pagination-lg .swiper-pagination .swiper-pagination-bullet {
    background: unset;
    background-color: rgba(var(--primary-color), 0.5);
    transition: all 0.5s ease;
    border-radius: 100px;
    margin: 0;
    margin-inline: calc(4px + 1 * (100vw - 320px) / 1600);
    width: calc(10px + 4 * (100vw - 320px) / 1600);
    height: calc(4px + 1 * (100vw - 320px) / 1600);
}
.slider-pagination-lg .swiper-pagination .swiper-pagination-bullet:first-child {
    margin-left: unset;
}
.slider-pagination-lg .swiper-pagination .swiper-pagination-bullet:last-child {
    margin-right: unset;
}
.slider-pagination-lg .swiper-pagination .swiper-pagination-bullet-active {
    width: calc(25px + 10 * (100vw - 320px) / 1600);
    background-color: rgba(var(--primary-color), 1);
}

.product-consider-box {
    position: relative;
    display: flex;
    align-items: center;
}
.product-consider-box .thumbnail-image-box {
    order: -1;
}
@media (max-width: 375px) {
    .product-consider-box {
        display: block;
    }
}
.product-consider-box .thumbnail-image-box {
    width: 59px;
}
@media (max-width: 375px) {
    .product-consider-box .thumbnail-image-box {
        width: auto;
        margin-top: 15px;
    }
}
@media (max-width: 375px) {
    .product-consider-box .thumbnail-image-box .swiper-wrapper {
        justify-content: center;
    }
}
.product-consider-box .thumbnail-image-box .swiper-slide {
    height: 100% !important;
}
@media (max-width: 375px) {
    .product-consider-box .thumbnail-image-box .swiper-slide {
        width: max-content !important;
    }
}
.product-consider-box .thumbnail-image-box .swiper-slide:last-child {
    margin-bottom: unset !important;
}
.product-consider-box
    .thumbnail-image-box
    .swiper-slide.swiper-slide-thumb-active
    .product-thumbnail-box {
    border: 2px solid rgb(40, 116, 240);
}
.product-consider-box
    .thumbnail-image-box
    .swiper-slide
    .product-thumbnail-box {
    background-color: rgba(var(--white), 1);
    border: 1px solid rgba(var(--content-color), 0.5);
    border-radius: calc(6px + 4 * (100vw - 320px) / 1600);
    cursor: pointer;
    width: 59px;
    height: 59px;
}
@media (max-width: 375px) {
    .product-consider-box
        .thumbnail-image-box
        .swiper-slide
        .product-thumbnail-box {
        width: calc(50px + 9 * (100vw - 320px) / 55);
        height: calc(50px + 9 * (100vw - 320px) / 55);
    }
}
.product-consider-box .real-image-box {
    width: calc(100% - 59px);
}
@media (max-width: 375px) {
    .product-consider-box .real-image-box {
        width: calc(100% - (50px + 9 * (100vw - 320px) / 55));
    }
}
.product-consider-box .real-image-box .swiper-slide .product-thumbnail-box {
    height: 278px;
}
@media (max-width: 375px) {
    .product-consider-box .real-image-box .swiper-slide .product-thumbnail-box {
        height: calc(215px + 63 * (100vw - 320px) / 55);
    }
}
.arrow-slider .swiper-button-next,
.arrow-slider .swiper-button-prev {
    background-color: rgba(var(--light-gray), 1);
    border-radius: 8px;
    font-size: calc(18px + 3 * (100vw - 320px) / 1600);
    color: rgba(var(--title-color), 1);
    top: 50%;
    transform: translateY(-50%);
    width: calc(30px + 6 * (100vw - 320px) / 1600);
    height: calc(30px + 6 * (100vw - 320px) / 1600);
}
.arrow-slider .swiper-button-next:after,
.arrow-slider .swiper-button-prev:after {
    content: none;
}

.collection-box .collection-image {
    background-color: #f3f4f8;
    width: 100%;
    height: 125px;
}
.collection-box h4 {
    font-size: calc(13px + 1 * (100vw - 320px) / 1600);
    font-weight: 500;
    color: rgba(var(--content-color), 1);
    margin-top: 10px;
}

.product-six-slider .swiper-wrapper .swiper-slide .row > div + div {
    margin-top: calc(14px + 6 * (100vw - 320px) / 1600);
}

.product-option-box {
    margin-bottom: -45px;
}
@media (max-width: 767.98px) {
    .product-option-box {
        margin: 0;
    }
}
.product-option-box .swiper-slide {
    padding-bottom: 45px;
}
@media (max-width: 767.98px) {
    .product-option-box .swiper-slide {
        padding: 0;
    }
}

.menu-product-slider {
    margin: -4px -6px -8px;
}
.menu-product-slider .swiper-wrapper .swiper-slide {
    padding: 4px 6px 8px;
}

/* Mixin Files */
/**=====================
    2.17 Typography CSS
==========================**/
table,
.table {
    margin: 0;
}
table > :not(caption) > * > *,
.table > :not(caption) > * > * {
    background-color: transparent;
}

.add-to-cart-table {
    max-height: 150px;
}
.add-to-cart-table tbody tr + tr {
    border-top: 1px solid #dee2e6;
}
.add-to-cart-table tbody tr td {
    vertical-align: middle;
    padding: 11px 4px;
    border: none;
}
.add-to-cart-table tbody tr td:first-child {
    padding-inline: 0;
}
.add-to-cart-table tbody tr td .cart-image {
    object-fit: contain;
    width: 70px;
    height: 70px;
}
.add-to-cart-table tbody tr td .name h5 {
    margin-bottom: 3px;
}
.add-to-cart-table tbody tr td .name h6 {
    font-weight: 400;
    color: rgba(var(--content-color), 1);
}
.add-to-cart-table tbody tr td .sub-total {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.add-to-cart-table tbody tr td .sub-total del {
    font-size: 14px;
    color: rgba(var(--content-color), 1);
}
.add-to-cart-table tbody tr td .quantity-box {
    padding: 5px;
    width: 80px;
    display: inline-flex;
    align-items: center;
    background-color: rgba(var(--content-color), 0.05);
}
.add-to-cart-table tbody tr td .quantity-box .btn {
    padding: 0;
    color: rgba(var(--content-color), 1);
    width: 100%;
}
.add-to-cart-table tbody tr td .quantity-box .quantity {
    width: 100%;
    display: block;
    text-align: center;
}
.add-to-cart-table tbody tr td .total-price {
    font-size: 18px;
    color: rgba(var(--primary-color), 1);
    display: inline-block;
}

.order-table thead tr td:first-child,
.order-table thead tr th:first-child,
.order-table tbody tr td:first-child,
.order-table tbody tr th:first-child {
    padding-left: 0;
}
[dir="rtl"] .order-table thead tr td:first-child,
[dir="rtl"] .order-table thead tr th:first-child,
[dir="rtl"] .order-table tbody tr td:first-child,
[dir="rtl"] .order-table tbody tr th:first-child {
    padding-right: 0;
    padding-left: 8px;
}
@media (max-width: 991.98px) {
    .order-table thead tr td:first-child,
    .order-table thead tr th:first-child,
    .order-table tbody tr td:first-child,
    .order-table tbody tr th:first-child {
        min-width: 325px;
    }
}
.order-table thead tr td:last-child,
.order-table thead tr th:last-child,
.order-table tbody tr td:last-child,
.order-table tbody tr th:last-child {
    padding-right: 0;
    min-width: 100px;
    text-align: right;
}
[dir="rtl"] .order-table thead tr td:last-child,
[dir="rtl"] .order-table thead tr th:last-child,
[dir="rtl"] .order-table tbody tr td:last-child,
[dir="rtl"] .order-table tbody tr th:last-child {
    padding-left: 0;
    padding-right: 8px;
    text-align: left;
}
.order-table thead tr th {
    color: rgba(var(--title-color), 1);
    border-bottom: 1px solid rgba(var(--border-color), 1);
    font-size: calc(18px + 2 * (100vw - 320px) / 1600);
    font-weight: 500;
}
.order-table tbody tr:hover td .checkout-product-box .product-image img {
    transform: scale(1.05) rotate(-3deg);
}
.order-table tbody tr:hover td .checkout-product-box .product-contain h5 {
    color: rgba(var(--primary-color), 1);
}
.order-table tbody tr:hover td .checkout-product-box .product-contain h5 span {
    color: rgba(var(--title-color), 1);
}
.order-table tbody tr.price-tb td {
    padding: calc(8px + 2 * (100vw - 320px) / 1600);
}
.order-table tbody tr.price-tb td:first-child {
    padding-left: 0;
}
.order-table tbody tr.price-tb td:last-child {
    padding-right: 0;
}
.order-table tbody tr:last-child td {
    padding-bottom: 0;
    border-bottom: 0;
    color: rgba(var(--title-color), 1);
    font-weight: 600;
    font-size: calc(19px + 2 * (100vw - 320px) / 1600);
}
.order-table tbody tr td {
    padding: calc(12px + 4 * (100vw - 320px) / 1600);
    border-bottom: 1px solid rgba(var(--border-color), 1);
    font-size: calc(16px + 2 * (100vw - 320px) / 1600);
    color: rgba(var(--content-color), 1);
}
.order-table tbody tr td:last-child {
    padding-right: 0;
}
.order-table tbody tr td .checkout-product-box {
    display: flex;
    align-items: flex-start;
    gap: calc(12px + 4 * (100vw - 320px) / 1600);
}
.order-table tbody tr td .checkout-product-box .product-image {
    background-color: rgba(var(--base-gray), 1);
    padding: calc(9px + 2 * (100vw - 320px) / 1600);
    border-radius: calc(5px + 1 * (100vw - 320px) / 1600);
    border: 1px solid rgba(var(--border-color), 1);
    width: calc(80px + 22 * (100vw - 320px) / 1600);
    height: calc(80px + 22 * (100vw - 320px) / 1600);
}
.order-table tbody tr td .checkout-product-box .product-image img {
    transition: all 0.2s ease-in-out;
}
.order-table tbody tr td .checkout-product-box .product-contain {
    width: calc(
        100% - (80px + 22 * (100vw - 320px) / 1600) -
            (12px + 4 * (100vw - 320px) / 1600)
    );
}
.order-table tbody tr td .checkout-product-box .product-contain h5 {
    color: rgba(var(--title-color), 1);
    font-size: calc(16px + 2 * (100vw - 320px) / 1600);
    transition: all 0.15s ease-in-out;
}
.order-table tbody tr td .checkout-product-box .product-contain h5 span {
    font-weight: 400;
    color: rgba(var(--content-color), 1);
    margin-left: 5px;
    transition: all 0.15s ease-in-out;
}
.order-table
    tbody
    tr
    td
    .checkout-product-box
    .product-contain
    .product-category-list {
    display: flex;
    flex-direction: column;
    gap: calc(5px + 2 * (100vw - 320px) / 1600);
    margin-top: calc(7px + 6 * (100vw - 320px) / 1600);
}
.order-table
    tbody
    tr
    td
    .checkout-product-box
    .product-contain
    .product-category-list
    li {
    color: rgba(var(--content-color), 0.7);
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    line-height: 1;
    letter-spacing: 0.4px;
    font-weight: 400;
}
.order-table
    tbody
    tr
    td
    .checkout-product-box
    .product-contain
    .product-category-list
    li
    span {
    color: rgba(var(--content-color), 1);
}

/* Mixin Files */
/**=====================
    2.18 Title CSS
==========================**/
.title-flex {
    flex-wrap: wrap;
    gap: calc(6px + 9 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.title-flex h3 {
    display: flex;
    align-items: center;
    gap: 4px;
}
.title-flex h3 i {
    margin-top: -5px;
    line-height: 1;
    font-size: calc(16px + 6 * (100vw - 320px) / 1600);
}
.title-flex h3 span {
    font-size: calc(16px + 4 * (100vw - 320px) / 1600);
    color: rgba(var(--primary-color2), 1);
}
.title-flex h3 span.small-title {
    font-size: 16px;
    color: rgba(var(--content-color), 1);
}
@media (max-width: 767.98px) {
    .title-flex h3 {
        display: block;
    }
}
.title-flex a {
    color: rgba(var(--content-color), 1);
}

.title {
    margin-bottom: calc(13px + 7 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
    gap: calc(6px + 9 * (100vw - 320px) / 1600);
}
.title h3 {
    font-weight: 500;
    font-size: calc(16px + 10 * (100vw - 320px) / 1600);
}
.title p {
    font-weight: 500;
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    color: rgba(var(--content-color), 1);
}
@media (max-width: 991.98px) {
    .title p {
        display: none;
    }
}
.title a {
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    font-weight: 500;
    color: rgba(var(--content-color), 1);
    display: flex;
    align-items: center;
    line-height: 1;
}
@media (max-width: 575.98px) {
    .title a {
        display: none;
    }
}
.title a i {
    margin-top: -6px;
}
.title a.light-blue {
    color: rgba(var(--light-blue), 1);
}

.title-2 {
    margin-bottom: calc(13px + 7 * (100vw - 320px) / 1600);
}
.title-2 h3 {
    font-weight: 500;
    text-transform: capitalize;
    font-size: calc(16px + 8 * (100vw - 320px) / 1600);
    line-height: 1.4;
}
.title-2-sm h3 {
    font-size: calc(17px + 3 * (100vw - 320px) / 1600);
}

.title-timer .title-timer {
    background-color: rgba(var(--primary-color2), 1);
    border-radius: 3px;
    padding: 12px 10px;
    color: #fff;
    display: flex;
    align-items: center;
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    font-weight: 500;
}
@media (max-width: 500px) {
    .title-timer .title-timer {
        display: none;
    }
}
.title-timer .title-timer span {
    line-height: 1;
    margin-bottom: -1px;
}
.title-timer .title-timer .counter {
    margin-left: 4px;
    line-height: 1;
}
[dir="rtl"] .title-timer .title-timer .counter {
    margin-left: unset;
    margin-right: 4px;
}
.title-timer .title-timer .counter span {
    display: flex;
    align-items: center;
}
.title-timer .title-timer .counter + .counter span {
    position: relative;
}
.title-timer .title-timer .counter + .counter span::before {
    content: ":";
    margin-right: 4px;
    margin-top: -1px;
}
[dir="rtl"] .title-timer .title-timer .counter + .counter span::before {
    margin-right: unset;
    margin-left: 4px;
}

.title-nav-pills {
    flex-wrap: nowrap;
    align-items: center;
    gap: calc(7px + 13 * (100vw - 320px) / 1600);
    overflow: auto;
}
.title-nav-pills .nav-item .nav-link {
    background-color: transparent;
    white-space: nowrap;
    font-weight: 400;
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    padding-top: 0;
    color: rgba(var(--content-color), 1);
    padding-inline: calc(5px + 3 * (100vw - 320px) / 1600);
    padding-bottom: calc(3px + 3 * (100vw - 320px) / 1600);
    border-bottom: 2px solid transparent;
    border-radius: 0;
    position: relative;
}
.title-nav-pills .nav-item .nav-link::before {
    bottom: -2px;
    left: 0;
    background-color: rgba(var(--content-color), 1);
    transition: 0.5s ease-in-out;
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
}
[dir="rtl"] .title-nav-pills .nav-item .nav-link::before {
    left: unset;
    right: 0;
}
.title-nav-pills .nav-item .nav-link:hover::before {
    width: 100%;
    background-color: rgba(var(--primary-color), 1);
}
.title-nav-pills .nav-item .nav-link.active {
    color: rgba(var(--primary-color), 1);
}
.title-nav-pills .nav-item .nav-link.active::before {
    width: 100%;
    background-color: rgba(var(--primary-color), 1);
}
.title-nav-pills.theme-nav-color .nav-item .nav-link:hover::before {
    background-color: rgba(var(--primary-color), 1);
}
.title-nav-pills.theme-nav-color .nav-item .nav-link.active {
    border-bottom: 2px solid rgba(var(--primary-color), 1);
    color: rgba(var(--primary-color), 1);
}

.title-nav-pills-2 {
    flex-wrap: nowrap;
    align-items: center;
    gap: calc(7px + 13 * (100vw - 320px) / 1600);
    overflow: auto;
}
.title-nav-pills-2 .nav-item .nav-link {
    background-color: transparent;
    white-space: nowrap;
    font-weight: 400;
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    padding: 0 0 calc(3px + 3 * (100vw - 320px) / 1600);
    color: rgba(var(--content-color), 1);
    border-bottom: 2px solid transparent;
    border-radius: 0;
    position: relative;
}
.title-nav-pills-2 .nav-item .nav-link::before {
    bottom: -2px;
    background-color: rgba(var(--content-color), 1);
    transition: 0.5s ease-in-out;
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
}
.title-nav-pills-2 .nav-item .nav-link:hover::before {
    width: 85%;
    background-color: rgba(var(--primary-color), 1);
}
.title-nav-pills-2 .nav-item .nav-link.active {
    color: rgba(var(--primary-color), 1);
}
.title-nav-pills-2 .nav-item .nav-link.active::before {
    width: 85%;
    background-color: rgba(var(--primary-color), 1);
}

.title-theme-nav {
    flex-wrap: nowrap;
    align-items: center;
    gap: 14px;
    overflow: auto;
}
.title-theme-nav .nav-item .nav-link {
    background-color: transparent;
    white-space: nowrap;
    font-weight: 400;
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    padding-top: 0;
    color: rgba(var(--content-color), 1);
    padding-inline: calc(5px + 3 * (100vw - 320px) / 1600);
    padding-bottom: 1px;
    border-bottom: 3px solid transparent;
    border-radius: 0;
    position: relative;
}
.title-theme-nav .nav-item .nav-link::before {
    bottom: -3px;
    left: 0;
    background-color: rgba(var(--primary-color), 1);
    transition: 0.5s ease-in-out;
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
}
[dir="rtl"] .title-theme-nav .nav-item .nav-link::before {
    left: unset;
    right: 0;
}
.title-theme-nav .nav-item .nav-link:hover::before {
    width: 100%;
    background-color: rgba(var(--primary-color), 1);
}
.title-theme-nav .nav-item .nav-link.active {
    border-bottom: 3px solid rgba(var(--primary-color), 1);
    color: rgba(var(--title-color), 1);
}

.title-slider-button {
    display: flex;
    align-items: center;
    gap: calc(6px + 9 * (100vw - 320px) / 1600);
    flex-wrap: wrap;
}
[dir="rtl"] .title-slider-button {
    flex-direction: row-reverse;
}

.slider-button {
    position: relative;
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.slider-button .swiper-btn-next,
.slider-button .swiper-btn-prev {
    position: relative;
    z-index: 0;
    inset: unset;
    border: none;
    background-color: rgba(var(--light-gray), 1);
    border-radius: calc(5px + 7 * (100vw - 320px) / 1600);
    font-size: calc(18px + 5 * (100vw - 320px) / 1600);
    margin: 0;
    color: rgba(var(--title-color), 1);
    width: calc(30px + 6 * (100vw - 320px) / 1600);
    height: calc(30px + 6 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-button .swiper-btn-next.swiper-button-disabled,
.slider-button .swiper-btn-prev.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
}
.slider-button .swiper-btn-next::after,
.slider-button .swiper-btn-prev::after {
    content: none;
}

.slider-button-sm {
    position: relative;
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.slider-button-sm .swiper-btn-next,
.slider-button-sm .swiper-btn-prev {
    position: relative;
    z-index: 0;
    inset: unset;
    border: none;
    background-color: rgba(var(--light-gray), 1);
    border-radius: 8px;
    font-size: 18px;
    margin: 0;
    color: rgba(var(--title-color), 1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}
.slider-button-sm .swiper-btn-next.swiper-button-disabled,
.slider-button-sm .swiper-btn-prev.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
}
.slider-button-sm .swiper-btn-next::after,
.slider-button-sm .swiper-btn-prev::after {
    content: none;
}

.related-title {
    margin-bottom: calc(8px + 12 * (100vw - 320px) / 1600);
}
.related-title h2 {
    font-size: calc(24px + 6 * (100vw - 320px) / 1600);
}

.contact-title {
    margin-bottom: 32px;
    text-align: center;
}
.contact-title h2 {
    font-size: 44px;
    margin-top: 3px;
}
.contact-title p {
    font-size: 17px;
    line-height: 1.5;
    width: 70%;
    margin: 7px auto 0;
    color: rgba(var(--content-color), 1);
}

/* Layout Files */
/*-----------------------------------------------------------------------------------
Template Name: Kartify - 
Template URI: https://themes.pixelstrap.com/kartify/
Description: This is E-commerce website
Author: Pixelstrap
Author URI: https://themeforest.net/user/pixelstrap
-----------------------------------------------------------------------------------

1. Base Files
	1.1 Reset CSS
	1.2 Typography CSS

2. Components Files
	2.1 Accordion CSS
	2.2 Brand CSS
	2.3 Breadcrumb CSS
	2.4 Buttons CSS
	2.5 Dropdown CSS
	2.6 Form CSS 
	2.7 Layzload CSS
	2.8 Light Gallery CSS
	2.9 Modal CSS
	2.10 Nav-tabs CSS
	2.11 Offcanvas CSS
	2.12 Pagination CSS
	2.13 Rating CSS
	2.14 Ratio CSS
	2.15 Sidebar Category CSS
	2.16 Slider CSS
	2.17 Table CSS
	2.18 Title CSS

3. Layout Files
    3.1 Banner CSS
    3.2 Category CSS
    3.3 Cookie Bar CSS
    3.4 Footer CSS
    3.5 Header CSS
    3.6 Hone CSS
    3.7 Mobile Menu CSS
    3.8 Nav CSS
    3.9 Newsletter CSS
    3.10 Product CSS
    3.11 Service CSS

4. Pages Files
    4.1 Blog Page CSS
    4.2 Checkout CSS
    4.3 Inner Page CSS
    4.4 Portfolio CSS
    4.5 Product Page CSS
    4.6 Shop Page CSS
    4.7 Vendor Page CSS

5. Templates Files
    5.1 Dark CSS

6. Utils Files
    6.1 Mixin Files
        6.1.1 Animation CSS
        6.1.2 Common CSS
    6.2 Variables CSS */
/* Util Files */
/* Mixin Files */
/**=====================
    3.1 Banner CSS
==========================**/
.left-banner-content {
    padding: calc(10px + 10 * (100vw - 1200px) / 720)
        calc(10px + 15 * (100vw - 1200px) / 720);
    background-color: rgba(var(--white), 1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.left-banner-content .accessories-computer-box {
    width: 100%;
}
.left-banner-content .accessories-computer-box h4 {
    font-size: calc(15px + 3 * (100vw - 1200px) / 720);
    margin-bottom: 13px;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
.left-banner-content .accessories-computer-box .deal-list li {
    display: block;
    width: 100%;
}
.left-banner-content .accessories-computer-box .deal-list li + li {
    margin-top: 6px;
}
.left-banner-content .accessories-computer-box .deal-list li a {
    font-size: calc(14px + 2 * (100vw - 1200px) / 720);
    color: rgba(var(--content-color), 1);
    text-transform: capitalize;
}
.left-banner-content .accessories-computer-box .deal-list li:last-child a {
    color: rgba(var(--theme-green), 1);
}

.banner-box {
    overflow: hidden;
    border-radius: 12px;
}

.banner-box img {
    width: 100%;
    display: block;
}

/* Right side small banners */
.side-banner-box img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Desktop */
@media (min-width: 992px) {
    .main-slider-box {
        height: 100%;
    }

    .main-slider-box .carousel-inner,
    .main-slider-box .carousel-item {
        height: 100%;
    }

    .main-slider-box .carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .side-banner-box {
        height: calc(50% - 0.75rem);
    }

    .side-banner-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* Tablet + Mobile */
@media (max-width: 991.98px) {
    .main-slider-box,
    .side-banner-box {
        height: auto !important;
    }

    .main-slider-box .carousel-inner,
    .main-slider-box .carousel-item {
        height: auto !important;
    }

    .main-slider-box .carousel-item img,
    .side-banner-box img {
        width: 100%;
        height: auto !important;
        object-fit: contain !important;
    }
}

.banner-box-9 {
    display: block;
    height: calc(60px + 90 * (100vw - 320px) / 1600);
}
.banner-box-9 img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.banner-newsletter-section .banner-box {
    position: relative;
    overflow: unset;
    padding-block: 35px;
    z-index: 0;
}
@media (max-width: 991.98px) {
    .banner-newsletter-section .banner-box {
        padding: 0;
    }
}
.banner-newsletter-section .banner-box .circle {
    border-radius: 100%;
    border: 3px solid #60c7eb;
    display: block;
    position: absolute;
    left: -23px;
    top: 14px;
    z-index: -1;
    width: 46px;
    height: 46px;
}
[dir="rtl"] .banner-newsletter-section .banner-box .circle {
    left: unset;
    right: -23px;
}
.banner-newsletter-section .banner-box .circle::after {
    border: 3px solid #fff;
    border-radius: 100%;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}
.banner-newsletter-section .banner-box .circle::before {
    border: 3px solid #ffd1de;
    border-radius: 100%;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.banner-newsletter-section .banner-box .circle-2 {
    border-radius: 100%;
    border: 3px solid #60c7eb;
    display: block;
    position: absolute;
    right: 582px;
    bottom: -13px;
    z-index: -1;
    width: 46px;
    height: 46px;
}
.banner-newsletter-section .banner-box .circle-2::after {
    border: 3px solid #fff;
    border-radius: 100%;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}
.banner-newsletter-section .banner-box .circle-2::before {
    border: 3px solid #ffd1de;
    border-radius: 100%;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.banner-newsletter-section .banner-box .star-1 {
    position: absolute;
    top: -4px;
    right: 15px;
    z-index: -1;
}
[dir="rtl"] .banner-newsletter-section .banner-box .star-1 {
    right: unset;
    left: 15px;
}
@media (max-width: 575.98px) {
    .banner-newsletter-section .banner-box .star-1 {
        display: none;
    }
}
.banner-newsletter-section .banner-box .star-1::before {
    content: "";
    background-color: rgba(94, 98, 120, 0.5019607843);
    display: block;
    margin-bottom: -7px;
    margin-inline: auto;
    width: 1px;
    height: 59px;
}
.banner-newsletter-section .banner-box .star-1 i {
    color: rgba(var(--primary-color), 1);
}
.banner-newsletter-section .banner-box .star-2 {
    position: absolute;
    top: -4px;
    right: 25px;
    z-index: -1;
}
[dir="rtl"] .banner-newsletter-section .banner-box .star-2 {
    right: unset;
    left: 25px;
}
@media (max-width: 575.98px) {
    .banner-newsletter-section .banner-box .star-2 {
        display: none;
    }
}
.banner-newsletter-section .banner-box .star-2::before {
    content: "";
    background-color: rgba(94, 98, 120, 0.5019607843);
    display: block;
    margin-bottom: -7px;
    margin-inline: auto;
    width: 1px;
    height: 78px;
}
.banner-newsletter-section .banner-box .star-2 i {
    color: rgba(var(--primary-color), 1);
}
.banner-newsletter-section .banner-box .star-3 {
    position: absolute;
    top: -4px;
    right: 35px;
    z-index: -1;
}
[dir="rtl"] .banner-newsletter-section .banner-box .star-3 {
    right: unset;
    left: 35px;
}
@media (max-width: 575.98px) {
    .banner-newsletter-section .banner-box .star-3 {
        display: none;
    }
}
.banner-newsletter-section .banner-box .star-3::before {
    content: "";
    background-color: rgba(94, 98, 120, 0.5019607843);
    display: block;
    margin-bottom: -7px;
    margin-inline: auto;
    width: 1px;
    height: 65px;
}
.banner-newsletter-section .banner-box .star-3 i {
    color: rgba(var(--primary-color), 1);
}
.banner-newsletter-section .banner-box .main-banner-box {
    background-color: #f5fbff;
    position: relative;
    overflow: hidden;
    z-index: 0;
}
.banner-newsletter-section .banner-box .newsletter-img {
    position: absolute;
    z-index: 1;
    left: calc(8px + 72 * (100vw - 1398px) / 522);
    width: calc(240px + 43 * (100vw - 1398px) / 522);
    top: 50%;
    transform: translateY(-50%);
}
[dir="rtl"] .banner-newsletter-section .banner-box .newsletter-img {
    left: unset;
    right: calc(8px + 72 * (100vw - 1398px) / 522);
    transform: scaleX(-1) translateY(-50%);
}
@media (max-width: 1399.98px) {
    .banner-newsletter-section .banner-box .newsletter-img {
        left: 8px;
        width: 240px;
    }
    [dir="rtl"] .banner-newsletter-section .banner-box .newsletter-img {
        left: unset;
        right: 8px;
    }
}
@media (max-width: 991.98px) {
    .banner-newsletter-section .banner-box .newsletter-img {
        display: none;
    }
}
.banner-newsletter-section .banner-box .banner-content {
    display: flex;
    align-items: center;
    padding: 23px calc(52px + 18 * (100vw - 1398px) / 522) 23px
        calc(220px + 160 * (100vw - 1398px) / 522);
    justify-content: flex-end;
}
[dir="rtl"] .banner-newsletter-section .banner-box .banner-content {
    padding: 23px calc(220px + 160 * (100vw - 1398px) / 522) 23px
        calc(52px + 18 * (100vw - 1398px) / 522);
}
@media (max-width: 1399.98px) {
    .banner-newsletter-section .banner-box .banner-content {
        padding-left: 270px;
        padding-right: 70px;
        display: block;
    }
    [dir="rtl"] .banner-newsletter-section .banner-box .banner-content {
        padding-left: 70px;
        padding-right: 270px;
    }
}
@media (max-width: 991.98px) {
    .banner-newsletter-section .banner-box .banner-content {
        padding: calc(15px + 10 * (100vw - 320px) / 672);
    }
    [dir="rtl"] .banner-newsletter-section .banner-box .banner-content {
        padding: calc(15px + 10 * (100vw - 320px) / 672);
    }
}
.banner-newsletter-section .banner-box .banner-content h3 {
    color: #202326;
    font-size: calc(20px + 4 * (100vw - 320px) / 1600);
    font-weight: 500;
    width: 28%;
}
@media (max-width: 1740px) {
    .banner-newsletter-section .banner-box .banner-content h3 {
        width: 45%;
    }
}
@media (max-width: 1399.98px) {
    .banner-newsletter-section .banner-box .banner-content h3 {
        width: 100%;
    }
}
.banner-newsletter-section .banner-box .banner-content h3 span {
    color: rgba(var(--primary-color2), 1);
}
.banner-newsletter-section .banner-box .banner-content .newsletter-form {
    gap: 10px;
    border-left: 1px solid rgba(94, 98, 120, 0.5019607843);
    padding-left: calc(30px + 20 * (100vw - 1398px) / 522);
    margin-left: calc(30px + 20 * (100vw - 1398px) / 522);
    width: calc(100% - (60px + 40 * (100vw - 1398px) / 522));
    display: flex;
    align-items: center;
    justify-content: space-between;
}
[dir="rtl"]
    .banner-newsletter-section
    .banner-box
    .banner-content
    .newsletter-form {
    border-right: 1px solid rgba(94, 98, 120, 0.5019607843);
    padding-right: calc(30px + 20 * (100vw - 1398px) / 522);
    margin-right: calc(30px + 20 * (100vw - 1398px) / 522);
    border-left: unset;
    padding-left: unset;
    margin-left: unset;
}
@media (max-width: 1399.98px) {
    .banner-newsletter-section .banner-box .banner-content .newsletter-form {
        padding-left: 0;
        margin-left: 0;
        width: 100%;
        border-top: 1px solid rgba(94, 98, 120, 0.5019607843);
        border-left: unset;
        padding-top: 9px;
        margin-top: 7px;
    }
    [dir="rtl"]
        .banner-newsletter-section
        .banner-box
        .banner-content
        .newsletter-form {
        margin-right: unset;
        padding-right: unset;
        border-right: unset;
    }
}
@media (max-width: 740.98px) {
    .banner-newsletter-section .banner-box .banner-content .newsletter-form {
        flex-wrap: wrap;
    }
}
.banner-newsletter-section .banner-box .banner-content .newsletter-form h4 {
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    line-height: 1.3;
    width: 35%;
    font-weight: 400;
    color: rgba(94, 98, 120, 0.8);
}
@media (max-width: 1300.98px) {
    .banner-newsletter-section .banner-box .banner-content .newsletter-form h4 {
        width: 50%;
    }
}
@media (max-width: 1170.98px) {
    .banner-newsletter-section .banner-box .banner-content .newsletter-form h4 {
        width: 70%;
    }
}
@media (max-width: 740.98px) {
    .banner-newsletter-section .banner-box .banner-content .newsletter-form h4 {
        width: 100%;
    }
}
.banner-newsletter-section
    .banner-box
    .banner-content
    .newsletter-form
    .input-group {
    width: 64%;
}
@media (max-width: 1399.98px) {
    .banner-newsletter-section
        .banner-box
        .banner-content
        .newsletter-form
        .input-group {
        width: 507px;
    }
}
@media (max-width: 740.98px) {
    .banner-newsletter-section
        .banner-box
        .banner-content
        .newsletter-form
        .input-group {
        width: 100%;
    }
}
.banner-newsletter-section
    .banner-box
    .banner-content
    .newsletter-form
    .input-group
    .newsletter-form-button {
    position: absolute;
    right: 4px;
    background-color: rgba(var(--primary-color), 1);
    color: #fff;
    font-size: 14px;
    height: calc(100% - 8px);
    line-height: 1;
    font-weight: 400;
    padding: 0 calc(14px + 12 * (100vw - 320px) / 1600);
    border-radius: 6px !important;
    top: 50%;
    transform: translateY(-50%);
}
[dir="rtl"]
    .banner-newsletter-section
    .banner-box
    .banner-content
    .newsletter-form
    .input-group
    .newsletter-form-button {
    right: unset;
    left: 4px;
}
.banner-newsletter-section
    .banner-box
    .banner-content
    .newsletter-form
    .input-group
    .form-control {
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    font-weight: 500;
    padding: calc(12px + 2 * (100vw - 320px) / 1600)
        calc(104px + 21 * (100vw - 320px) / 1600)
        calc(12px + 2 * (100vw - 320px) / 1600)
        calc(16px + 4 * (100vw - 320px) / 1600);
    border-color: transparent;
}
[dir="rtl"]
    .banner-newsletter-section
    .banner-box
    .banner-content
    .newsletter-form
    .input-group
    .form-control {
    padding: calc(12px + 2 * (100vw - 320px) / 1600)
        calc(16px + 4 * (100vw - 320px) / 1600)
        calc(12px + 2 * (100vw - 320px) / 1600)
        calc(104px + 21 * (100vw - 320px) / 1600);
}

.shopping-section .banner-box {
    overflow: unset;
    position: relative;
    z-index: 0;
    padding: 25px;
}
.shopping-section .banner-box::before {
    z-index: 1;
    left: 0;
    bottom: 0;
    background-image: url(../svg/shipping.svg);
    transform: scaleY(-1);
    background-repeat: no-repeat;
    content: "";
    position: absolute;
    width: 100%;
    height: 11px;
}
body.dark .shopping-section .banner-box::before {
    background-image: url(../svg/shipping-dark.svg);
    transform: scaleY(1);
    bottom: -4px;
}
.shopping-section .banner-box::after {
    z-index: 1;
    left: 0;
    content: "";
    position: absolute;
    top: 0;
    background-image: url(../svg/shipping.svg);
    background-repeat: no-repeat;
    content: "";
    position: absolute;
    width: 100%;
    height: 11px;
}
body.dark .shopping-section .banner-box::after {
    top: -4px;
    transform: scaleY(-1);
    background-image: url(../svg/shipping-dark.svg);
}
.shopping-section .banner-box .shipping-img {
    position: absolute;
    object-fit: cover;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@media (max-width: 767.98px) {
    .shopping-section .banner-box > .row {
        display: grid;
        grid-template-columns: auto auto;
        gap: 15px;
    }
}
@media (max-width: 575.98px) {
    .shopping-section .banner-box > .row {
        display: grid;
        grid-template-columns: auto;
        gap: 15px;
    }
}
.shopping-section .banner-box > .row > div {
    position: relative;
}
.shopping-section .banner-box > .row > div + div::before {
    background-color: rgba(94, 98, 120, 0.502);
    left: 0;
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 39px;
}
[dir="rtl"] .shopping-section .banner-box > .row > div + div::before {
    left: unset;
    right: 0;
}
@media (max-width: 767.98px) {
    .shopping-section .banner-box > .row > div + div::before {
        content: none;
    }
}
@media (max-width: 1199.98px) {
    .shopping-section .banner-box > .row > div:last-child::before {
        content: none;
    }
}
.shopping-section .banner-box .shipping-box {
    gap: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.shopping-section .banner-box .shipping-box svg {
    color: rgba(var(--primary-color2), 1);
    fill: transparent;
    width: calc(31px + 12 * (100vw - 320px) / 1600);
    height: calc(31px + 12 * (100vw - 320px) / 1600);
}
@media (max-width: 575.98px) {
    .shopping-section .banner-box .shipping-box > div {
        width: calc(100% - (31px + 12 * (100vw - 320px) / 1600) - 15px);
    }
}
.shopping-section .banner-box .shipping-box h4 {
    color: #202326;
    font-size: calc(16px + 4 * (100vw - 320px) / 1600);
}
.shopping-section .banner-box .shipping-box h5 {
    color: rgba(94, 98, 120, 0.8);
    font-size: calc(13px + 1 * (100vw - 320px) / 1600);
    font-weight: 400;
    margin-top: calc(2px + 2 * (100vw - 320px) / 1600);
}

.banner-row
    .swiper
    .swiper-wrapper
    .swiper-slide:nth-child(2n)
    .right-image-box
    img {
    order: 1;
}
.banner-row
    .swiper
    .swiper-wrapper
    .swiper-slide:nth-child(1)
    .banner-content-1 {
    background-image: url("../images/banner/27.jpg");
}
.banner-row
    .swiper
    .swiper-wrapper
    .swiper-slide:nth-child(2)
    .banner-content-1 {
    background-image: url("../images/banner/28.jpg");
}
.banner-row
    .swiper
    .swiper-wrapper
    .swiper-slide:nth-child(3)
    .banner-content-1 {
    background-image: url("../images/banner/29.jpg");
}
.banner-row
    .swiper
    .swiper-wrapper
    .swiper-slide:nth-child(4)
    .banner-content-1 {
    background-image: url("../images/banner/30.jpg");
}

.banner-box-17 .banner-image {
    mix-blend-mode: darken;
    object-fit: cover;
    object-position: bottom;
    width: 100%;
    height: 371px;
}
.banner-box-17 .banner-contain {
    padding: calc(13px + 9 * (100vw - 1200px) / 720)
        calc(16px + 9 * (100vw - 1200px) / 720);
    text-align: center;
}
.banner-box-17 .banner-contain h3 {
    font-size: calc(22px + 8 * (100vw - 1200px) / 720);
    color: rgba(var(--primary-color), 1);
    font-family: "Dancing Script", cursive;
    position: relative;
    display: inline-block;
    margin-bottom: calc(6px + 4 * (100vw - 1200px) / 720);
}
.banner-box-17 .banner-contain h3::before,
.banner-box-17 .banner-contain h3::after {
    top: 50%;
    border-radius: 100%;
    content: "";
    position: absolute;
    width: 60px;
    height: 2px;
}
.banner-box-17 .banner-contain h3::before {
    left: -50px;
    background: linear-gradient(
        90deg,
        rgba(var(--primary-color), 1) 12.3%,
        rgba(var(--primary-color), 0) 72.13%
    );
}
.banner-box-17 .banner-contain h3::after {
    right: -50px;
    background: linear-gradient(
        -90deg,
        rgba(var(--primary-color), 1) 12.3%,
        rgba(var(--primary-color), 0) 72.13%
    );
}
.banner-box-17 .banner-contain h4 {
    font-size: calc(15px + 5 * (100vw - 1200px) / 720);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: calc(4px + 4 * (100vw - 1200px) / 720);
    color: #202326;
}
.banner-box-17 .banner-contain h4 span {
    color: rgba(var(--primary-color3), 1);
}
.banner-box-17 .banner-contain h5 {
    font-size: calc(15px + 5 * (100vw - 1200px) / 720);
    color: rgba(var(--primary-color2), 1);
}
.banner-box-17 .banner-contain h5 del {
    color: #5e6278;
}
.banner-box-17 .banner-contain p {
    margin-top: 5px;
    margin-bottom: 10px;
    font-size: calc(14px + 2 * (100vw - 1200px) / 720);
    text-transform: capitalize;
    color: rgba(94, 98, 120, 0.8);
}
.banner-box-17 .banner-contain .banner-timer {
    gap: calc(3px + 6 * (100vw - 1200px) / 720);
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-box-17 .banner-contain .banner-timer li {
    background-color: #fff;
    padding: calc(9px + 3 * (100vw - 1200px) / 720);
    text-align: center;
    box-shadow: 2.65556px 4.42593px 8.85185px rgba(45, 126, 87, 0.05);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 72px;
}
.banner-box-17 .banner-contain .banner-timer li > div {
    line-height: 1;
}
.banner-box-17 .banner-contain .banner-timer li > div .counter {
    font-size: calc(18px + 5 * (100vw - 1200px) / 720);
    font-weight: 600;
    color: rgba(var(--primary-color3), 1);
    line-height: 1;
    position: relative;
    margin-bottom: 5px;
}
.banner-box-17 .banner-contain .banner-timer li > div .counter::before {
    bottom: -2px;
    background-color: rgba(var(--primary-color), 1);
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
}
.banner-box-17 .banner-contain .banner-timer li > div span {
    color: rgba(94, 98, 120, 0.8);
    font-size: 14px;
    text-transform: capitalize;
}
.banner-box-17 .banner-contain .banner-btn {
    background-color: rgba(var(--primary-color), 1);
    margin-top: 15px;
    width: 100%;
    gap: 10px;
    font-size: 14px;
    color: #202326;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-box-17 .banner-contain .banner-btn i {
    margin-top: -3px;
    line-height: 1;
}

.banner-box-25 {
    position: relative;
    height: 100%;
}
[dir="rtl"] .banner-box-25 {
    transform: scaleX(-1);
}
.banner-box-25 .banner-content {
    padding: 25px 20px;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}
[dir="rtl"] .banner-box-25 .banner-content {
    transform: scaleX(-1);
}
.banner-box-25 .banner-content h4 {
    font-size: calc(19px + 6 * (100vw - 1200px) / 720);
    margin-bottom: calc(6px + 6 * (100vw - 1200px) / 720);
}
body.dark .banner-box-25 .banner-content h4 {
    color: rgb(32, 35, 38);
}
.banner-box-25 .banner-content .banner-product-list {
    display: flex;
    flex-wrap: wrap;
    gap: calc(6px + 6 * (100vw - 1200px) / 720);
}
.banner-box-25 .banner-content .banner-product-list li {
    width: 100%;
}
.banner-box-25 .banner-content .banner-product-list li a {
    font-size: calc(15px + 1 * (100vw - 1200px) / 720);
    text-transform: capitalize;
    color: rgba(var(--content-color), 1);
}
body.dark .banner-box-25 .banner-content .banner-product-list li a {
    color: #5e6278;
}
.banner-box-25 .banner-content .banner-product-list li:last-child a {
    color: rgba(var(--light-blue), 1);
}

/* Mixin Files */
/**=====================
    3.2 Category CSS
==========================**/
.category-box {
    text-align: center;
}
.category-box:hover h5 {
    color: rgba(var(--title-color), 1);
}
.category-box img {
    object-fit: contain;
    width: 100%;
    height: 126px;
}
.category-box h4 {
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    font-weight: 500;
    margin-top: calc(14px + 1 * (100vw - 320px) / 1600);
    color: rgba(var(--content-color), 1);
    transition: 0.3s;
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}

.category-bg-color {
    background-color: rgba(var(--white), 1);
    height: 100%;
    overflow: hidden;
}
.category-bg-color > div {
    z-index: 0;
    padding: calc(9px + 11 * (100vw - 320px) / 1600)
        calc(12px + 13 * (100vw - 320px) / 1600);
}
.category-bg-color .category-box-2 {
    text-align: center;
}
.category-bg-color .category-box-2:hover .category-image img {
    transform: scale(1.07);
}
.category-bg-color .category-box-2:hover h6 {
    color: rgba(var(--title-color), 1);
}
.category-bg-color .category-box-2 .category-image {
    background-color: #f2f3f8;
    border-radius: 100%;
    margin-inline: auto;
    overflow: hidden;
    width: calc(92px + 8 * (100vw - 320px) / 1600);
    height: calc(92px + 8 * (100vw - 320px) / 1600);
}
.category-bg-color .category-box-2 .category-image img {
    transition: all 0.15s ease-in-out;
}
.category-bg-color .category-box-2 h6 {
    word-break: break-all;
    margin-top: calc(8px + 7 * (100vw - 320px) / 1600);
    font-weight: 500;
    color: rgba(var(--content-color), 1);
    font-size: 14px;
    transition: all 0.15s ease-in-out;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
.category-bg-color .category-box-2.category-menu .category-image {
    background-color: rgba(var(--primary-color), 1);
}
.category-bg-color .category-box-2.category-menu .category-image i {
    font-size: 30px;
    display: grid;
    place-items: center;
    height: 100%;
}

.product-category:hover .hover-box {
    bottom: 0;
}
.product-category .product-image {
    position: relative;
    overflow: hidden;
}
.product-category .product-image a {
    aspect-ratio: 7/10;
    display: block;
}
.product-category .wishlistProduct.show {
    color: rgba(var(--primary-color), 1);
}
.product-category .wishlistProduct.show::after {
    transform: scale(1);
}
.product-category .wishlistProduct.show i {
    color: rgba(var(--title-color), 1);
}
.product-category .wishlistProduct.show i:before {
    content: "\ee0f";
}
.product-category .hover-box {
    position: absolute;
    width: 100%;
    bottom: -50px;
    left: 0;
    background-color: rgba(var(--white), 1);
    padding: 4px;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 575.98px) {
    .product-category .hover-box {
        bottom: 0;
        opacity: 1;
    }
}
.product-category .hover-box a {
    border-radius: 100%;
    background-color: rgba(var(--white), 1);
    color: rgba(var(--content-color), 1);
    font-size: 16px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}
.product-category .hover-box a::after {
    left: 0;
    top: 0;
    background-color: #ffe500;
    transform: scale(0);
    z-index: -1;
    border-radius: 100%;
    transition: all 0.5s ease;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
}
.product-category .hover-box a:hover {
    color: #202326;
    transition: all 0.5s ease;
}
.product-category .hover-box a:hover::after {
    transform: scale(1);
}
.product-category .category-content {
    text-align: center;
    margin-top: calc(11px + 9 * (100vw - 320px) / 1600);
    display: flex;
    flex-wrap: wrap;
    gap: calc(2px + 3 * (100vw - 320px) / 1600);
}
.product-category .category-content h4 {
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    font-weight: 500;
    line-height: 1.3;
    width: 100%;
    text-transform: capitalize;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
.product-category .category-content h4.name {
    color: rgba(var(--title-color), 1);
}
.product-category .category-content h4.offer {
    color: rgba(var(--theme-green), 1);
}
.product-category .category-content h4.rate {
    color: rgba(var(--content-color), 1);
}

.category-box-2 .category-image {
    border-radius: 5px;
    overflow: hidden;
}
.category-box-2 .category-image img {
    aspect-ratio: 32/33;
}
.category-box-2 .category-content {
    color: rgba(var(--title-color), 1);
    margin-inline: auto;
    width: calc(100% - 11px);
    background-color: rgba(var(--white), 1);
    border-radius: 100px;
    margin-top: -11px;
    text-align: center;
    padding: 10px;
    text-transform: capitalize;
    z-index: 1;
    position: relative;
}

.category-box-3 {
    text-align: center;
}
.category-box-3 .category-image {
    width: 100%;
    height: 105px;
}
.category-box-4 {
    text-align: center;
    display: block;
    color: rgba(var(--title-color), 1);
    padding: calc(14px + 14 * (100vw - 320px) / 1600)
        calc(10px + 13 * (100vw - 320px) / 1600);
    background-color: rgba(var(--base-gray), 1);
    box-shadow: 0px 2px 0px rgba(82, 82, 108, 0.15);
}
.category-box-4 img {
    object-fit: contain;
    mix-blend-mode: darken;
    width: 100%;
    height: calc(91px + 35 * (100vw - 320px) / 1600);
}
body.dark .category-box-4 img {
    mix-blend-mode: difference;
}
.category-box-4 .category-content {
    margin-top: calc(8px + 9 * (100vw - 320px) / 1600);
}
.category-box-4 .category-content h4 {
    font-size: 16px;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
.category-box-4 .category-content h5 {
    font-size: calc(13px + 1 * (100vw - 320px) / 1600);
    font-weight: 500;
    color: rgba(var(--content-color), 0.8);
    margin-top: calc(0px + 2 * (100vw - 320px) / 1600);
}

.top-category-section {
    margin-block: 10px;
    z-index: 0;
    position: relative;
}
.top-category-section .top-category-box {
    display: block;
    padding: 10px;
    text-align: center;
    background-color: rgba(var(--white), 1);
    text-transform: uppercase;
    color: rgba(var(--title-color), 1);
}

.category-sm-box {
    text-align: center;
}
.category-sm-box .category-image {
    width: 100%;
    height: 70px;
}
.category-sm-box h4 {
    font-size: calc(13px + 1 * (100vw - 320px) / 1600);
    font-weight: 500;
    margin-top: 5px;
    text-transform: capitalize;
    color: rgba(var(--content-color), 1);
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}

.arrivals-box .swiper-wrapper .swiper-slide:nth-child(2) .new-arrivals-box {
    background-color: #eff8ff;
}
.arrivals-box .swiper-wrapper .swiper-slide:nth-child(3) .new-arrivals-box {
    background-color: #f1fce8;
}
.arrivals-box .swiper-wrapper .swiper-slide:nth-child(4) .new-arrivals-box {
    background-color: #eafafa;
}
.arrivals-box .swiper-wrapper .swiper-slide:nth-child(5) .new-arrivals-box {
    background-color: #fff3e8;
}
.arrivals-box .swiper-wrapper .swiper-slide:nth-child(6) .new-arrivals-box {
    background-color: #e2f8e8;
}
.arrivals-box .swiper-wrapper .swiper-slide:nth-child(7) .new-arrivals-box {
    background-color: #e5f5ff;
}
.arrivals-box .new-arrivals-box {
    padding: calc(10px + 10 * (100vw - 320px) / 1600)
        calc(9px + 24 * (100vw - 320px) / 1600);
    border-radius: calc(6px + 4 * (100vw - 320px) / 1600);
    background-color: #fef2f6;
    display: block;
    text-align: center;
    width: 100%;
    height: 100%;
}
.arrivals-box .new-arrivals-box .arrivals-image {
    border-radius: 100%;
    margin: 0 auto calc(11px + 11 * (100vw - 320px) / 1600);
    width: calc(76px + 35 * (100vw - 320px) / 1600);
    height: calc(76px + 35 * (100vw - 320px) / 1600);
}
.arrivals-box .new-arrivals-box h4 {
    font-size: calc(15px + 3 * (100vw - 320px) / 1600);
    color: #202326;
}

.category-section .category-slide-2 {
    position: relative;
}
.category-section .category-slide-2 .swiper-wrapper {
    z-index: unset;
}
.category-section .category-slide-2 .category-button {
    margin: 0;
    padding: 8px;
    color: rgba(var(--title-color), 1);
    z-index: unset;
    box-shadow: 0px 4px 10px rgba(var(--black), 0.1);
    background-color: rgba(var(--white), 1);
    display: none;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    height: calc(100% - 30px);
}
@media (max-width: 767.98px) {
    .category-section .category-slide-2 .category-button {
        display: flex;
    }
}
.category-section .category-slide-2 .category-button::after {
    content: unset;
}
.category-section .category-slide-2 .category-button.swiper-button-prev {
    left: 0;
    border-radius: 0 6px 6px 0;
}
.category-section .category-slide-2 .category-button.swiper-button-next {
    right: 0;
    border-radius: 6px 0 0 6px;
}
.category-section .category-slide-2 .category-button i {
    font-size: 22px;
}

/* Mixin Files */
/**=====================
    3.3 Cookie Bar CSS
==========================**/
.cookie-bar-section {
    max-width: 620px;
    width: 100%;
    padding-inline: 15px;
    position: fixed;
    bottom: calc(15px + 5 * (100vw - 320px) / 1600);
    z-index: 7;
    transition: all 0.3s ease-in-out;
    left: 50%;
    transform: translateX(-50%);
}
.cookie-bar-section .cookie-bar-box {
    box-shadow: 0px 12px 24px -6px rgba(96, 96, 96, 0.149);
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    background-color: rgba(var(--white), 1);
    padding: 13px;
}
@media (max-width: 500px) {
    .cookie-bar-section .cookie-bar-box {
        flex-direction: column;
        align-items: unset;
    }
}
.cookie-bar-section svg {
    min-width: 36px;
    background-color: rgba(var(--primary-color), 0.1);
    fill: rgba(var(--primary-color), 1);
    padding: 6px;
    border-radius: 8px;
    width: 36px;
    height: 36px;
}
.cookie-bar-section p {
    color: rgba(var(--content-color), 1);
}
.cookie-bar-section .cookie-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}
.cookie-bar-section .cookie-buttons .btn {
    padding: 6px 10px 4px;
    font-size: 14px;
}
.cookie-bar-section .cookie-buttons .btn.allow-btn {
    background-color: rgba(var(--primary-color), 1);
    color: #fff;
}
.cookie-bar-section .cookie-buttons .btn.decline-btn {
    background-color: rgba(var(--light-gray), 1);
    color: rgba(var(--content-color), 1);
    font-weight: 400;
}
.cookie-bar-section.cookie-bar-full {
    width: 100%;
    max-width: 902px;
}
.cookie-bar-section.cookie-bar-full .cookie-bar-box {
    border-radius: 6px;
    justify-content: center;
    background-color: rgba(var(--light-gray), 1);
    border: 1px solid rgba(var(--border-color), 1);
    padding: 13px;
}
@media (max-width: 500px) {
    .cookie-bar-section.cookie-bar-full .cookie-bar-box {
        flex-direction: column;
        align-items: unset;
    }
}
.cookie-bar-section.cookie-bar-full .cookie-bar-box svg {
    min-width: 32px;
    background-color: transparent;
    fill: rgba(var(--primary-color), 1);
    padding: 0;
    border-radius: 0;
    width: 32px;
    height: 32px;
}
.cookie-bar-section.cookie-bar-3 {
    width: 100%;
    max-width: 467px;
}
@media (max-width: 575.98px) {
    .cookie-bar-section.cookie-bar-3 {
        max-width: 300px;
        padding: 0;
        bottom: 80px;
        right: 15px;
        transform: unset;
        left: unset;
    }
}
.cookie-bar-section.cookie-bar-3 .cookie-bar-box {
    border-radius: 100px;
    justify-content: center;
    background-color: rgba(var(--light-gray), 1);
    border: none;
    padding: 13px;
}
body.dark .cookie-bar-section.cookie-bar-3 .cookie-bar-box {
    background-color: #02201e;
}
@media (max-width: 575.98px) {
    .cookie-bar-section.cookie-bar-3 .cookie-bar-box {
        background-color: rgba(var(--white), 1);
        border-radius: 7px;
        display: block;
        padding: 14px;
    }
}
.cookie-bar-section.cookie-bar-3 .cookie-bar-box svg {
    min-width: 60px;
    background-color: #363d4d;
    border-radius: 100%;
    padding: 12px;
    margin: -14px 0px -14px -25px;
    width: 60px;
    height: 60px;
}
body.dark .cookie-bar-section.cookie-bar-3 .cookie-bar-box svg {
    background-color: rgba(var(--base-gray), 1);
}
[dir="rtl"] .cookie-bar-section.cookie-bar-3 .cookie-bar-box svg {
    margin-inline: -25px 0;
}
@media (max-width: 575.98px) {
    .cookie-bar-section.cookie-bar-3 .cookie-bar-box svg {
        background-color: transparent;
        padding: 0;
        margin: 0;
        min-width: 42px;
        width: 42px;
        height: 42px;
    }
    [dir="rtl"] .cookie-bar-section.cookie-bar-3 .cookie-bar-box svg {
        margin: 0;
    }
}
@media (max-width: 575.98px) {
    .cookie-bar-section.cookie-bar-3 .cookie-bar-box p {
        margin-top: 7px;
        font-size: 14px;
    }
}
.cookie-bar-section.cookie-bar-3 .cookie-bar-box .cookie-buttons .allow-btn {
    background-color: transparent;
    color: rgba(var(--title-color), 1);
    padding: 0;
}
@media (max-width: 575.98px) {
    .cookie-bar-section.cookie-bar-3
        .cookie-bar-box
        .cookie-buttons
        .allow-btn {
        position: absolute;
        top: 5px;
        right: 8px;
    }
}
.cookie-bar-section.cookie-bar-3 .cookie-bar-box .cookie-buttons .allow-btn i {
    line-height: 1;
    font-size: calc(18px + 2 * (100vw - 320px) / 1600);
}

.cookie-bar-box1 {
    max-width: 360px;
    width: 100%;
    padding-inline: calc(15px + 5 * (100vw - 320px) / 1600);
    position: fixed;
    bottom: calc(15px + 5 * (100vw - 320px) / 1600);
    right: 0;
    z-index: 9;
    transition: all 0.3s ease-in-out;
}
.cookie-bar-box1 .cookie-bar-box {
    display: block;
    border-radius: 10px;
    background-color: rgba(var(--light-gray), 1);
    padding: calc(14px + 10 * (100vw - 320px) / 1600)
        calc(12px + 12 * (100vw - 320px) / 1600);
    box-shadow: 0px 0px 1px 0px rgba(96, 96, 96, 0.1019607843);
    border: 1px solid rgba(var(--border-color), 1);
}
.cookie-bar-box1 h4 {
    font-size: calc(15px + 2 * (100vw - 320px) / 1600);
    font-weight: 600;
    line-height: 1;
}
.cookie-bar-box1 p {
    margin-top: calc(8px + 2 * (100vw - 320px) / 1600);
    color: rgba(var(--content-color), 1);
}
.cookie-bar-box1 .cookie-buttons {
    gap: calc(8px + 2 * (100vw - 320px) / 1600);
    margin-top: calc(12px + 6 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cookie-bar-box1 .cookie-buttons .btn {
    padding: 8px calc(14px + 6 * (100vw - 320px) / 1600) 6px;
    font-size: calc(14px + 1 * (100vw - 320px) / 1600);
}
.cookie-bar-box1 .cookie-buttons .btn.allow-btn {
    background-color: rgba(var(--primary-color), 1);
    color: #fff;
}
.cookie-bar-box1 .cookie-buttons .btn.decline-btn {
    background-color: rgba(var(--primary-color), 0.1);
    color: rgba(var(--primary-color), 1);
}

.cookie-bar-box2 {
    max-width: 360px;
    width: 100%;
    padding-inline: calc(15px + 5 * (100vw - 320px) / 1600);
    position: fixed;
    bottom: calc(15px + 5 * (100vw - 320px) / 1600);
    right: 0;
    z-index: 9;
    transition: all 0.3s ease-in-out;
}
.cookie-bar-box2 .cookie-bar-box {
    display: block;
    overflow: hidden;
    position: relative;
    z-index: 0;
    border-radius: 10px;
    background-color: rgba(var(--light-gray), 1);
    padding: calc(14px + 10 * (100vw - 320px) / 1600)
        calc(12px + 12 * (100vw - 320px) / 1600);
    box-shadow: 0px 0px 1px 0px rgba(96, 96, 96, 0.1019607843);
    border: 1px solid rgba(var(--border-color), 1);
}
.cookie-bar-box2 svg {
    position: absolute;
    top: -16px;
    right: -16px;
    transform: rotate(-55deg);
    opacity: 0.6;
    z-index: -1;
    width: 70px;
    height: 70px;
}
.cookie-bar-box2 h4 {
    font-size: calc(15px + 2 * (100vw - 320px) / 1600);
    font-weight: 600;
    line-height: 1;
}
.cookie-bar-box2 p {
    margin-top: calc(8px + 2 * (100vw - 320px) / 1600);
    color: rgba(var(--content-color), 1);
}
.cookie-bar-box2 .cookie-buttons {
    gap: calc(8px + 2 * (100vw - 320px) / 1600);
    margin-top: calc(12px + 6 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cookie-bar-box2 .cookie-buttons .btn {
    width: 100%;
    padding: 8px calc(14px + 6 * (100vw - 320px) / 1600) 6px;
    font-size: calc(14px + 1 * (100vw - 320px) / 1600);
}
.cookie-bar-box2 .cookie-buttons .btn.allow-btn {
    background-color: rgba(var(--primary-color), 1);
    color: #fff;
}
.cookie-bar-box2 .cookie-buttons .btn.decline-btn {
    background-color: rgba(var(--primary-color), 0.1);
    color: rgba(var(--primary-color), 1);
}

.cookie.hide {
    bottom: -50px;
    opacity: 0;
    visibility: hidden;
}

/* Mixin Files */
/**=====================
    3.4 Footer CSS
==========================**/
.footer-section {
    background-color: rgba(var(--white), 1);
}
.footer-section .main-footer {
    padding-block: calc(22px + 24 * (100vw - 320px) / 1600)
        calc(15px + 23 * (100vw - 320px) / 1600);
    border-bottom: 1px solid rgba(var(--title-color), 0.1);
}
.footer-section .main-footer .footer-title,
.footer-section .main-footer .footer-title-2 {
    margin-bottom: calc(8px + 10 * (100vw - 320px) / 1600);
}
@media (max-width: 575.98px) {
    .footer-section .main-footer .footer-title,
    .footer-section .main-footer .footer-title-2 {
        cursor: pointer;
        margin: 0;
    }
}
.footer-section .main-footer .footer-title h4,
.footer-section .main-footer .footer-title-2 h4 {
    font-weight: 500;
    font-size: calc(16px + 4 * (100vw - 320px) / 1600);
}
@media (max-width: 575.98px) {
    .footer-section .main-footer .footer-title {
        margin: 0;
    }
}
.footer-section .main-footer .footer-title-2 ~ .footer-content-list {
    margin-top: calc(10px + 7 * (100vw - 320px) / 1600);
}
.footer-section .main-footer .footer-content-list {
    margin-bottom: calc(10px + 7 * (100vw - 320px) / 1600);
    display: flex;
    flex-wrap: wrap;
    gap: calc(8px + 2 * (100vw - 320px) / 1600);
}
.footer-section .main-footer .footer-content-list li {
    width: 100%;
    display: block;
}
.footer-section .main-footer .footer-content-list li:first-child .content-box {
    color: rgba(var(--primary-color), 1);
    display: flex;
    align-items: center;
    gap: calc(7px + 4 * (100vw - 320px) / 1600);
}
.footer-section
    .main-footer
    .footer-content-list
    li:first-child
    .content-box
    svg {
    fill: rgba(var(--primary-color), 1);
    width: calc(24px + 5 * (100vw - 320px) / 1600);
    height: calc(21px + 8 * (100vw - 320px) / 1600);
}
.footer-section
    .main-footer
    .footer-content-list
    li:first-child
    .content-box
    svg.svg-theme-color {
    fill: rgba(var(--primary-color3), 1);
    stroke: rgba(var(--primary-color3), 1);
}
.footer-section
    .main-footer
    .footer-content-list
    li:first-child
    .content-box
    h4 {
    width: calc(
        100% - (24px + 5 * (100vw - 320px) / 1600) -
            (7px + 4 * (100vw - 320px) / 1600)
    );
    font-weight: 400;
    font-size: calc(18px + 2 * (100vw - 320px) / 1600);
}
.footer-section
    .main-footer
    .footer-content-list
    li:first-child
    .content-box.theme-color4
    svg {
    fill: rgba(var(--primary-color), 1);
}
.footer-section
    .main-footer
    .footer-content-list
    li:first-child
    .content-box.theme-color4
    h4 {
    color: rgba(var(--primary-color), 1);
}
.footer-section .main-footer .footer-content-list li .content-box {
    color: rgba(var(--content-color), 1);
    display: flex;
    align-items: center;
    gap: calc(7px + 4 * (100vw - 320px) / 1600);
}
.footer-section
    .main-footer
    .footer-content-list
    li
    .content-box
    .footer-content-icon {
    width: calc(24px + 5 * (100vw - 320px) / 1600);
    display: grid;
    place-items: center;
}
.footer-section
    .main-footer
    .footer-content-list
    li
    .content-box
    .footer-content-icon
    svg {
    width: 21px;
    height: 21px;
}
body.dark
    .footer-section
    .main-footer
    .footer-content-list
    li
    .content-box
    .footer-content-icon
    svg {
    fill: #fff;
}
.footer-section
    .main-footer
    .footer-content-list
    li
    .content-box
    .footer-content-icon
    svg.content-color {
    fill: rgba(var(--content-color), 1);
}
.footer-section .main-footer .footer-content-list li .content-box h5 {
    width: calc(
        100% - (24px + 5 * (100vw - 320px) / 1600) -
            (7px + 4 * (100vw - 320px) / 1600)
    );
}
.footer-section .main-footer .social-icon-box {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: calc(6px + 4 * (100vw - 320px) / 1600);
}
.footer-section .main-footer .social-icon-box .social-icon-list li {
    line-height: 1;
    position: relative;
}
.footer-section .main-footer .social-icon-box .social-icon-list li + li {
    margin-left: 6px;
    padding-left: 6px;
}
[dir="rtl"]
    .footer-section
    .main-footer
    .social-icon-box
    .social-icon-list
    li
    + li {
    margin-left: unset;
    padding-left: unset;
    margin-right: 6px;
    padding-right: 6px;
}
.footer-section
    .main-footer
    .social-icon-box
    .social-icon-list
    li
    + li::before {
    left: -2px;
    background-color: rgba(var(--content-color), 0.2);
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
}
[dir="rtl"]
    .footer-section
    .main-footer
    .social-icon-box
    .social-icon-list
    li
    + li::before {
    left: unset;
    right: -2px;
}
.footer-section .main-footer .social-icon-box .social-icon-list li a {
    color: rgba(var(--content-color), 1);
    font-size: 17px;
    line-height: 1;
}
.footer-section .main-footer .footer-list,
.footer-section .main-footer .footer-list-2 {
    display: flex;
    flex-wrap: wrap;
    gap: calc(2px + 7 * (100vw - 320px) / 1600);
}
@media (max-width: 575.98px) {
    .footer-section .main-footer .footer-list,
    .footer-section .main-footer .footer-list-2 {
        margin-top: calc(8px + 10 * (100vw - 320px) / 1600);
    }
}
.footer-section .main-footer .footer-list li,
.footer-section .main-footer .footer-list-2 li {
    width: 100%;
    display: block;
}
.footer-section .main-footer .footer-list li a,
.footer-section .main-footer .footer-list-2 li a {
    font-weight: 400;
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    color: rgba(var(--content-color), 1);
    position: relative;
    display: inline-block;
    transition: 0.3s ease-in-out;
}
@media (max-width: 575.98px) {
    .footer-section .main-footer .footer-list li a,
    .footer-section .main-footer .footer-list-2 li a {
        margin-left: 5px;
        display: flex;
        align-items: center;
        gap: calc(6px + 4 * (100vw - 320px) / 256);
    }
    [dir="rtl"] .footer-section .main-footer .footer-list li a,
    [dir="rtl"] .footer-section .main-footer .footer-list-2 li a {
        margin-left: unset;
        margin-right: 5px;
    }
}
.footer-section .main-footer .footer-list li a::before,
.footer-section .main-footer .footer-list-2 li a::before {
    bottom: 0;
    left: 0;
    background-color: rgba(var(--content-color), 0.3);
    transition: 0.3s ease-in-out;
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
}
[dir="rtl"] .footer-section .main-footer .footer-list li a::before,
[dir="rtl"] .footer-section .main-footer .footer-list-2 li a::before {
    left: unset;
    right: 0;
}
@media (max-width: 575.98px) {
    .footer-section .main-footer .footer-list li a::before,
    .footer-section .main-footer .footer-list-2 li a::before {
        position: relative;
        inset: unset;
        display: block;
        border-radius: 100%;
        background-color: rgba(var(--title-color), 0.7);
        width: calc(4px + 1 * (100vw - 320px) / 256);
        height: calc(4px + 1 * (100vw - 320px) / 256);
    }
}
.footer-section .main-footer .footer-list li a:hover,
.footer-section .main-footer .footer-list-2 li a:hover {
    color: rgba(var(--title-color), 1);
}
.footer-section .main-footer .footer-list li a:hover::before,
.footer-section .main-footer .footer-list-2 li a:hover::before {
    width: 100%;
    background-color: rgba(var(--title-color), 0.8);
}
@media (max-width: 575.98px) {
    .footer-section .main-footer .footer-list li a:hover::before,
    .footer-section .main-footer .footer-list-2 li a:hover::before {
        background-color: rgba(var(--title-color), 0.7);
        width: 5px;
    }
}
.footer-section .main-footer .footer-list li p,
.footer-section .main-footer .footer-list-2 li p {
    font-weight: 400;
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    color: rgba(var(--content-color), 1);
    position: relative;
    display: inline-block;
    transition: 0.3s ease-in-out;
}
.footer-section .main-footer .app-store-link {
    margin-top: calc(11px + 7 * (100vw - 320px) / 1600);
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: calc(6px + 5 * (100vw - 320px) / 1600);
}
.footer-section .main-footer .app-store-link li a {
    display: block;
    width: calc(110px + 25 * (100vw - 320px) / 1600);
}
.footer-section .main-footer.light-b-bottom {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-section .main-footer.light-b-bottom .footer-title {
    color: rgba(var(--white), 1);
}
.footer-section
    .main-footer.light-b-bottom
    .footer-content-list
    li
    .content-box {
    color: #fff;
}
.footer-section
    .main-footer.light-b-bottom
    .footer-content-list
    li
    .content-box
    .footer-content-icon
    svg.content-color {
    fill: #fff;
}
.footer-section
    .main-footer.light-b-bottom
    .social-icon-box
    h5.template-text-content {
    color: #fff !important;
}
.footer-section
    .main-footer.light-b-bottom
    .social-icon-box
    .social-icon-list
    li
    a {
    color: #fff;
}
.footer-section .main-footer.light-b-bottom .footer-list li a,
.footer-section .main-footer.light-b-bottom .footer-list-2 li a {
    color: rgba(255, 255, 255, 0.6);
}
.footer-section .main-footer.light-b-bottom .footer-list li a:hover,
.footer-section .main-footer.light-b-bottom .footer-list-2 li a:hover {
    color: rgb(255, 255, 255);
}
.footer-section .main-footer.light-b-bottom .footer-list li a:hover::before,
.footer-section .main-footer.light-b-bottom .footer-list-2 li a:hover::before {
    background-color: rgba(255, 255, 255, 0.8);
}
.footer-section .main-footer.light-b-bottom .footer-list li p,
.footer-section .main-footer.light-b-bottom .footer-list-2 li p {
    color: rgba(255, 255, 255, 0.6);
}
.footer-section .sub-footer {
    padding-block: 14px 13px;
    flex-wrap: wrap;
    gap: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 767.98px) {
    .footer-section .sub-footer {
        justify-content: center;
    }
}
@media (max-width: 575.98px) {
    .footer-section .sub-footer {
        padding-bottom: calc(79px + 7 * (100vw - 320px) / 255);
    }
}
.footer-section .sub-footer .payment-list {
    display: flex;
    align-items: center;
    gap: 5px;
}
.footer-section .sub-footer .sub-footer-logo {
    width: calc(110px + 70 * (100vw - 320px) / 1600);
}

.footer-section-2 {
    background-color: rgb(21, 21, 21);
}
.footer-section-2 .main-footer {
    padding-block: calc(22px + 24 * (100vw - 320px) / 1600)
        calc(15px + 23 * (100vw - 320px) / 1600);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-section-2 .main-footer .footer-title,
.footer-section-2 .main-footer .footer-title-2 {
    margin-bottom: calc(8px + 10 * (100vw - 320px) / 1600);
}
@media (max-width: 575.98px) {
    .footer-section-2 .main-footer .footer-title,
    .footer-section-2 .main-footer .footer-title-2 {
        cursor: pointer;
    }
}
.footer-section-2 .main-footer .footer-title h4,
.footer-section-2 .main-footer .footer-title-2 h4 {
    font-weight: 500;
    color: #fff;
    font-size: calc(17px + 3 * (100vw - 320px) / 1600);
}
@media (max-width: 575.98px) {
    .footer-section-2 .main-footer .footer-title {
        margin: 0;
    }
}
.footer-section-2 .main-footer .footer-content-list {
    margin-bottom: calc(10px + 7 * (100vw - 320px) / 1600);
    display: flex;
    flex-wrap: wrap;
    gap: calc(8px + 2 * (100vw - 320px) / 1600);
}
.footer-section-2 .main-footer .footer-content-list li {
    width: 100%;
    display: block;
}
.footer-section-2
    .main-footer
    .footer-content-list
    li:first-child
    .content-box {
    color: rgba(var(--primary-color3), 1);
    display: flex;
    align-items: center;
    gap: calc(7px + 4 * (100vw - 320px) / 1600);
}
.footer-section-2
    .main-footer
    .footer-content-list
    li:first-child
    .content-box
    svg {
    fill: rgba(var(--primary-color3), 1);
    width: calc(24px + 5 * (100vw - 320px) / 1600);
    height: calc(21px + 8 * (100vw - 320px) / 1600);
}
.footer-section-2
    .main-footer
    .footer-content-list
    li:first-child
    .content-box
    h4 {
    width: calc(
        100% - (24px + 5 * (100vw - 320px) / 1600) -
            (7px + 4 * (100vw - 320px) / 1600)
    );
    font-weight: 400;
    font-size: calc(18px + 2 * (100vw - 320px) / 1600);
}
.footer-section-2
    .main-footer
    .footer-content-list
    li:first-child
    .content-box.theme-color {
    color: rgba(var(--primary-color), 1);
}
.footer-section-2
    .main-footer
    .footer-content-list
    li:first-child
    .content-box.theme-color
    svg {
    fill: rgba(var(--primary-color), 1);
}
.footer-section-2 .main-footer .footer-content-list li .content-box {
    color: rgba(var(--white), 0.5);
    display: flex;
    align-items: center;
    gap: calc(7px + 4 * (100vw - 320px) / 1600);
}
.footer-section-2
    .main-footer
    .footer-content-list
    li
    .content-box
    .footer-content-icon {
    width: calc(24px + 5 * (100vw - 320px) / 1600);
    display: grid;
    place-items: center;
}
.footer-section-2
    .main-footer
    .footer-content-list
    li
    .content-box
    .footer-content-icon
    svg {
    fill: rgba(var(--white), 0.5);
    width: 21px;
    height: 21px;
}
body.dark
    .footer-section-2
    .main-footer
    .footer-content-list
    li
    .content-box
    .footer-content-icon
    svg {
    fill: rgba(255, 255, 255, 0.5);
}
.footer-section-2 .main-footer .footer-content-list li .content-box h5 {
    width: calc(
        100% - (24px + 5 * (100vw - 320px) / 1600) -
            (7px + 4 * (100vw - 320px) / 1600)
    );
}
.footer-section-2 .main-footer .social-icon-box {
    display: flex;
    align-items: center;
    gap: calc(6px + 4 * (100vw - 320px) / 1600);
}
.footer-section-2 .main-footer .social-icon-box h5 {
    color: rgba(var(--white), 0.5);
}
body.dark .footer-section-2 .main-footer .social-icon-box h5 {
    color: rgba(255, 255, 255, 0.5);
}
.footer-section-2 .main-footer .social-icon-box .social-icon-list li {
    position: relative;
}
.footer-section-2 .main-footer .social-icon-box .social-icon-list li:hover a {
    color: rgba(var(--white), 0.9);
}
body.dark
    .footer-section-2
    .main-footer
    .social-icon-box
    .social-icon-list
    li:hover
    a {
    color: rgba(255, 255, 255, 0.9);
}
.footer-section-2 .main-footer .social-icon-box .social-icon-list li + li {
    margin-left: 6px;
    padding-left: 6px;
}
[dir="rtl"]
    .footer-section-2
    .main-footer
    .social-icon-box
    .social-icon-list
    li
    + li {
    margin-left: unset;
    margin-right: 6px;
    padding-left: unset;
    padding-right: 6px;
}
.footer-section-2
    .main-footer
    .social-icon-box
    .social-icon-list
    li
    + li::before {
    left: -2px;
    background-color: rgba(var(--white), 0.2);
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
}
[dir="rtl"]
    .footer-section-2
    .main-footer
    .social-icon-box
    .social-icon-list
    li
    + li::before {
    left: unset;
    right: -2px;
}
body.dark
    .footer-section-2
    .main-footer
    .social-icon-box
    .social-icon-list
    li
    + li::before {
    background-color: rgba(255, 255, 255, 0.2);
}
.footer-section-2 .main-footer .social-icon-box .social-icon-list li a {
    color: rgba(var(--white), 0.5);
    font-size: calc(15px + 2 * (100vw - 320px) / 1600);
    line-height: 1;
    transition: 0.3s ease-in-out;
}
body.dark
    .footer-section-2
    .main-footer
    .social-icon-box
    .social-icon-list
    li
    a {
    color: rgba(255, 255, 255, 0.5);
}
.footer-section-2 .main-footer .footer-list,
.footer-section-2 .main-footer .footer-list-2 {
    display: flex;
    flex-wrap: wrap;
    gap: calc(2px + 7 * (100vw - 320px) / 1600);
}
.footer-section-2 .main-footer .footer-list li,
.footer-section-2 .main-footer .footer-list-2 li {
    width: 100%;
    display: block;
}
.footer-section-2 .main-footer .footer-list li:hover a,
.footer-section-2 .main-footer .footer-list-2 li:hover a {
    color: rgba(var(--white), 0.9);
}
body.dark .footer-section-2 .main-footer .footer-list li:hover a,
body.dark .footer-section-2 .main-footer .footer-list-2 li:hover a {
    color: rgba(255, 255, 255, 0.9);
}
.footer-section-2 .main-footer .footer-list li:hover a::after,
.footer-section-2 .main-footer .footer-list-2 li:hover a::after {
    width: 100%;
    background-color: rgba(var(--white), 0.9);
}
@media (max-width: 575.98px) {
    .footer-section-2 .main-footer .footer-list li:hover a::after,
    .footer-section-2 .main-footer .footer-list-2 li:hover a::after {
        width: 5px;
    }
}
body.dark .footer-section-2 .main-footer .footer-list li:hover a::after,
body.dark .footer-section-2 .main-footer .footer-list-2 li:hover a::after {
    background-color: rgba(255, 255, 255, 0.9);
}
.footer-section-2 .main-footer .footer-list li a,
.footer-section-2 .main-footer .footer-list-2 li a {
    font-weight: 400;
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    color: rgba(var(--white), 0.5);
    display: inline-block;
    position: relative;
    transition: 0.3s ease-in-out;
}
@media (max-width: 575.98px) {
    .footer-section-2 .main-footer .footer-list li a,
    .footer-section-2 .main-footer .footer-list-2 li a {
        margin-left: 5px;
        display: flex;
        align-items: center;
        flex-direction: row-reverse;
        justify-content: start;
        gap: calc(6px + 4 * (100vw - 320px) / 256);
    }
    [dir="rtl"] .footer-section-2 .main-footer .footer-list li a,
    [dir="rtl"] .footer-section-2 .main-footer .footer-list-2 li a {
        margin-left: unset;
        margin-right: 5px;
    }
}
body.dark .footer-section-2 .main-footer .footer-list li a,
body.dark .footer-section-2 .main-footer .footer-list-2 li a {
    color: rgba(255, 255, 255, 0.5);
}
.footer-section-2 .main-footer .footer-list li a::after,
.footer-section-2 .main-footer .footer-list-2 li a::after {
    bottom: 0;
    left: 0;
    background-color: rgba(var(--white), 0.5);
    transition: 0.3s ease-in-out;
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
}
[dir="rtl"] .footer-section-2 .main-footer .footer-list li a::after,
[dir="rtl"] .footer-section-2 .main-footer .footer-list-2 li a::after {
    left: unset;
    right: 0;
}
body.dark .footer-section-2 .main-footer .footer-list li a::after,
body.dark .footer-section-2 .main-footer .footer-list-2 li a::after {
    background-color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 575.98px) {
    .footer-section-2 .main-footer .footer-list li a::after,
    .footer-section-2 .main-footer .footer-list-2 li a::after {
        position: relative;
        inset: unset;
        display: block;
        border-radius: 100%;
        background-color: rgba(var(--content-color), 0.7);
        width: calc(4px + 1 * (100vw - 320px) / 256);
        height: calc(4px + 1 * (100vw - 320px) / 256);
    }
    [dir="rtl"] .footer-section-2 .main-footer .footer-list li a::after,
    [dir="rtl"] .footer-section-2 .main-footer .footer-list-2 li a::after {
        inset: unset;
    }
}
.footer-section-2 .main-footer .footer-list li p,
.footer-section-2 .main-footer .footer-list-2 li p {
    font-weight: 400;
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    color: rgba(var(--white), 0.5);
    display: inline-block;
    position: relative;
    transition: 0.3s ease-in-out;
}
body.dark .footer-section-2 .main-footer .footer-list li p,
body.dark .footer-section-2 .main-footer .footer-list-2 li p {
    color: rgba(255, 255, 255, 0.5);
}
.footer-section-2 .main-footer .app-store-link {
    margin-top: calc(11px + 7 * (100vw - 320px) / 1600);
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: calc(6px + 5 * (100vw - 320px) / 1600);
}
.footer-section-2 .main-footer .app-store-link li a {
    display: block;
    width: calc(110px + 25 * (100vw - 320px) / 1600);
}
.footer-section-2 .sub-footer {
    padding-block: 14px 13px;
    flex-wrap: wrap;
    gap: calc(7px + 8 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 767.98px) {
    .footer-section-2 .sub-footer {
        justify-content: center;
    }
}
@media (max-width: 575.98px) {
    .footer-section-2 .sub-footer {
        margin-bottom: calc(79px + 7 * (100vw - 320px) / 256);
    }
}
.footer-section-2 .sub-footer .payment-list {
    display: flex;
    align-items: center;
    gap: 5px;
}
.footer-section-2 .sub-footer .sub-footer-logo {
    width: auto;
    height: calc(37px + 13 * (100vw - 320px) / 1600);
}
/* Mixin Files */
/**=====================
    3.5 Header CSS
==========================**/
header.sticky-header ~ .blog-section .left-sidebar-box {
    top: 98px;
}
@media (max-width: 1199.98px) {
    header.sticky-header ~ .blog-section .left-sidebar-box {
        top: 0;
    }
}

.header-style-1 {
    position: relative;
    z-index: 2;
    transition: all 0.15s ease-in-out;
}
@media (max-width: 1199.98px) {
    .header-style-1 {
        z-index: unset;
    }
    .header-style-1:has(.search-overlay.show) {
        z-index: 10;
    }
}
.header-style-1.sticky-header {
    z-index: 3;
}
@media (max-width: 1199.98px) {
    .header-style-1.sticky-header {
        z-index: 9;
    }
}
.header-style-1.sticky-header .main-header,
.header-style-1.sticky-header .main-dark-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}
.header-style-1.sticky-header .main-dark-header {
    background-color: rgba(var(--white), 1);
    box-shadow: 7px 5px 10px rgba(54, 97, 79, 0.1);
}
.header-style-1.sticky-header ~ .faqs-section .faq-wrapper,
.header-style-1.sticky-header ~ .faqs-section .contact-wrapper,
.header-style-1.sticky-header ~ .contact-section .faq-wrapper,
.header-style-1.sticky-header ~ .contact-section .contact-wrapper {
    top: 110px;
}
.header-style-1 .top-header {
    background-color: rgba(var(--theme-blue-dark), 1);
    padding-block: 11px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-style-1 .top-header.blue-color {
    background-color: rgba(var(--theme-blue2), 1);
}
.header-style-1 .top-header .left-header {
    display: flex;
    align-items: center;
}
.header-style-1 .top-header .left-header .dropdown-box {
    display: inline-block;
    padding-right: calc(6px + 9 * (100vw - 320px) / 1600);
    margin-right: calc(6px + 9 * (100vw - 320px) / 1600);
    border-right: 1px solid rgba(var(--white), 0.2);
}
[dir="rtl"] .header-style-1 .top-header .left-header .dropdown-box {
    margin-right: unset;
    margin-left: calc(6px + 9 * (100vw - 320px) / 1600);
    padding-right: unset;
    padding-left: calc(6px + 9 * (100vw - 320px) / 1600);
    border-right: unset;
    border-left: 1px solid rgba(var(--white), 0.2);
}
body.dark .header-style-1 .top-header .left-header .dropdown-box {
    border-color: #2f343e;
}
.header-style-1 .top-header .left-header .dropdown-box > ul {
    display: flex;
    align-items: center;
    gap: calc(9px + 11 * (100vw - 320px) / 1600);
}
.header-style-1
    .top-header
    .left-header
    .dropdown-box
    > ul
    > li
    .theme-form-select {
    padding: 0;
    background-color: transparent;
    color: rgba(var(--white), 1);
    border: none;
    background-image: none;
    position: relative;
}
.header-style-1
    .top-header
    .left-header
    .dropdown-box
    > ul
    > li
    .theme-form-select
    .dropdown-toggle {
    font-size: 14px;
    font-weight: 400;
    color: rgba(var(--white), 1);
    padding: revert;
    padding: 0;
    line-height: 1;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
body.dark
    .header-style-1
    .top-header
    .left-header
    .dropdown-box
    > ul
    > li
    .theme-form-select
    .dropdown-toggle {
    color: #fff;
}
.header-style-1
    .top-header
    .left-header
    .dropdown-box
    > ul
    > li
    .theme-form-select
    .dropdown-toggle
    img {
    margin-right: 8px;
    object-fit: cover;
    width: 20px;
    height: 12px;
}
[dir="rtl"]
    .header-style-1
    .top-header
    .left-header
    .dropdown-box
    > ul
    > li
    .theme-form-select
    .dropdown-toggle
    img {
    margin-right: unset;
    margin-left: 8px;
}
.header-style-1
    .top-header
    .left-header
    .dropdown-box
    > ul
    > li
    .theme-form-select
    .dropdown-toggle:active {
    border-color: transparent;
}
.header-style-1
    .top-header
    .left-header
    .dropdown-box
    > ul
    > li
    .theme-form-select
    .dropdown-toggle:focus {
    box-shadow: none;
}
.header-style-1
    .top-header
    .left-header
    .dropdown-box
    > ul
    > li
    .theme-form-select
    .dropdown-toggle::after {
    margin-left: 3px;
    right: 0;
    color: rgba(var(--white), 1);
    border: none;
    vertical-align: unset;
    font-size: 17px;
    margin-top: 0;
    content: "\ea4e";
    position: relative;
    font-family: remixicon;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
}
[dir="rtl"]
    .header-style-1
    .top-header
    .left-header
    .dropdown-box
    > ul
    > li
    .theme-form-select
    .dropdown-toggle::after {
    margin-left: unset;
    margin-right: 3px;
}
body.dark
    .header-style-1
    .top-header
    .left-header
    .dropdown-box
    > ul
    > li
    .theme-form-select
    .dropdown-toggle::after {
    color: #fff;
}
.header-style-1
    .top-header
    .left-header
    .dropdown-box
    > ul
    > li
    .theme-form-select
    .dropdown-menu {
    background-color: rgba(var(--white), 1);
    min-width: auto;
    width: 100%;
    padding-block: 5px;
}
.header-style-1
    .top-header
    .left-header
    .dropdown-box
    > ul
    > li
    .theme-form-select
    .dropdown-menu
    li {
    width: 100%;
}
.header-style-1
    .top-header
    .left-header
    .dropdown-box
    > ul
    > li
    .theme-form-select
    .dropdown-menu
    li
    + li {
    margin-left: 0;
}
.header-style-1
    .top-header
    .left-header
    .dropdown-box
    > ul
    > li
    .theme-form-select
    .dropdown-menu
    li
    .dropdown-item {
    padding-block: 0;
    font-size: 14px;
    padding-inline: 4px;
    padding: 4px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-style-1
    .top-header
    .left-header
    .dropdown-box
    > ul
    > li
    .theme-form-select
    .dropdown-menu
    li
    .dropdown-item:hover,
.header-style-1
    .top-header
    .left-header
    .dropdown-box
    > ul
    > li
    .theme-form-select
    .dropdown-menu
    li
    .dropdown-item:focus {
    background-color: transparent;
}
.header-style-1
    .top-header
    .left-header
    .dropdown-box
    > ul
    > li
    .theme-form-select
    .dropdown-menu
    li
    .dropdown-item.active,
.header-style-1
    .top-header
    .left-header
    .dropdown-box
    > ul
    > li
    .theme-form-select
    .dropdown-menu
    li
    .dropdown-item:active {
    color: rgba(var(--title-color), 1);
    background-color: transparent;
}
.header-style-1
    .top-header
    .left-header
    .dropdown-box
    > ul
    > li
    .theme-form-select
    .dropdown-menu
    li
    .dropdown-item
    img {
    width: 20px;
    margin-right: 8px;
}
[dir="rtl"]
    .header-style-1
    .top-header
    .left-header
    .dropdown-box
    > ul
    > li
    .theme-form-select
    .dropdown-menu
    li
    .dropdown-item
    img {
    margin-right: unset;
    margin-left: 8px;
}
.header-style-1
    .top-header
    .left-header
    .dropdown-box
    > ul
    > li
    .theme-form-select
    .dropdown-menu
    li
    .dropdown-item
    span {
    line-height: 1;
    color: rgba(var(--title-color), 1);
}
.header-style-1 .top-header .left-header .social-box .social-list {
    display: flex;
    align-items: center;
    gap: calc(6px + 9 * (100vw - 320px) / 1600);
}
.header-style-1 .top-header .left-header .social-box .social-list li:hover a {
    color: rgba(var(--primary-color), 1);
}
body.dark
    .header-style-1
    .top-header
    .left-header
    .social-box
    .social-list
    li:hover
    a {
    color: rgba(var(--primary-color), 1);
}
.header-style-1
    .top-header
    .left-header
    .social-box
    .social-list
    li:hover
    a::before {
    width: 100%;
    background-color: rgba(var(--primary-color), 1);
}
.header-style-1 .top-header .left-header .social-box .social-list li a {
    position: relative;
    color: rgba(var(--white), 1);
    font-size: calc(15px + 3 * (100vw - 320px) / 1600);
    transition: color 0.5s ease-in-out;
}
body.dark
    .header-style-1
    .top-header
    .left-header
    .social-box
    .social-list
    li
    a {
    color: #fff;
}
.header-style-1 .top-header .left-header .social-box .social-list li a::before {
    bottom: 0;
    left: 0;
    background-color: rgba(var(--white), 1);
    transition: all 0.5s ease-in-out;
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
}
@media (max-width: 1145px) {
    .header-style-1 .top-header .middle-header {
        display: none;
    }
}
.header-style-1 .top-header .middle-header .middle-content p {
    font-weight: 400;
    font-size: 14px;
    color: rgba(var(--white), 1);
    overflow: hidden;
    position: relative;
    height: 20px;
}
.header-style-1 .top-header .middle-header .middle-content p span {
    display: inline-block;
    color: rgba(var(--white), 1);
    position: relative;
    white-space: nowrap;
    top: 0;
    left: 0;
    animation: move 4s;
    animation-iteration-count: infinite;
    animation-delay: 1s;
}
body.dark .header-style-1 .top-header .middle-header .middle-content p span {
    color: #fff;
}
@media (max-width: 670px) {
    .header-style-1 .top-header .right-header {
        display: none;
    }
}
.header-style-1 .top-header .right-header .content-list {
    display: flex;
    align-items: center;
    gap: calc(8px + 12 * (100vw - 320px) / 1600);
}
.header-style-1 .top-header .right-header .content-list li:hover a {
    color: rgba(var(--primary-color), 1);
}
body.dark .header-style-1 .top-header .right-header .content-list li:hover a {
    color: rgba(var(--primary-color), 1);
}
.header-style-1 .top-header .right-header .content-list li:hover a::before {
    width: 100%;
    background-color: rgba(var(--primary-color), 1);
}
.header-style-1 .top-header .right-header .content-list li a {
    font-weight: 400;
    font-size: 14px;
    color: rgba(var(--white), 1);
    position: relative;
    transition: color 0.5s ease-in-out;
}
body.dark .header-style-1 .top-header .right-header .content-list li a {
    color: #fff;
}
.header-style-1 .top-header .right-header .content-list li a::before {
    bottom: 0;
    left: 0;
    background-color: #fff;
    transition: all 0.5s ease-in-out;
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
}
[dir="rtl"]
    .header-style-1
    .top-header
    .right-header
    .content-list
    li
    a::before {
    left: unset;
    right: 0;
}
.header-style-1 .top-header.theme-header {
    padding-block: 3px;
    background-color: rgba(var(--primary-color3), 1);
}
.header-style-1 .top-header.theme-header2 {
    background-color: rgba(var(--primary-color4), 1);
}
.header-style-1 .border-b-color {
    border-bottom: 1px solid rgba(var(--content-color), 0.1);
}
.header-style-1 .main-header {
    padding-block: calc(10px + 5 * (100vw - 320px) / 1600);
    background-color: rgba(var(--theme-blue), 1);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 991.98px) {
    .header-style-1 .main-header {
        gap: 25px;
    }
}
.header-style-1 .main-header .left-header {
    display: flex;
    align-items: center;
}
.header-style-1 .main-header .left-header .header-logo {
    height: calc(36px + 14 * (100vw - 320px) / 1600);
}
@media (max-width: 991.98px) {
    .header-style-1 .main-header .middle-header {
        padding: 14px;
        left: 0;
        display: block;
        transform: translateY(-50%);
        opacity: 0;
        visibility: hidden;
        position: absolute;
        padding-inline: calc(15px + 145 * (100vw - 320px) / 1600);
        transition: all 0.5s ease-in-out;
        background-color: rgba(var(--white), 1);
        z-index: 2;
        top: 0;
        position: fixed;
        width: 100%;
        height: auto;
    }
    .header-style-1 .main-header .middle-header.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .header-style-1 .main-header .middle-header .result-box {
        z-index: unset;
        margin-top: 12px;
        position: relative;
        inset: unset;
        overflow: auto;
        height: calc(100vh - (82px + 4 * (100vw - 320px) / 672));
    }
}
.header-style-1 .main-header .middle-header .close-icon {
    right: 10px;
    cursor: pointer;
    display: none;
    position: absolute;
    color: rgba(var(--content-color), 1);
    z-index: 1;
    font-size: calc(16px + 5 * (100vw - 320px) / 672);
    line-height: 1;
    top: 50%;
    transform: translateY(-50%);
    width: unset;
    height: unset;
}
[dir="rtl"] .header-style-1 .main-header .middle-header .close-icon {
    right: unset;
    left: 10px;
}
@media (max-width: 991.98px) {
    .header-style-1 .main-header .middle-header .close-icon {
        display: block;
    }
}
.header-style-1 .main-header .middle-header .close-icon i {
    font-size: 21px;
}
@media (max-width: 991.98px) {
    .header-style-1 .main-header .middle-header .close-icon i {
        font-size: calc(16px + 5 * (100vw - 320px) / 672);
    }
}
@media (min-width: 992px) {
    .header-style-1 .main-header .middle-header .search-form {
        position: relative;
        inset: unset;
        display: flex;
        transform: unset;
        background-color: transparent;
        visibility: visible;
        z-index: 2;
        width: max-content;
        height: max-content;
    }
}
.header-style-1 .main-header .middle-header .search-form .input-group {
    z-index: 2;
    flex-wrap: nowrap;
}
.header-style-1
    .main-header
    .middle-header
    .search-form
    .input-group
    .form-control {
    border: none;
    padding: 15px;
    font-weight: 400;
    font-size: 14px;
    width: 780px;
    color: rgba(var(--title-color), 1);
    z-index: 0;
}
.header-style-1
    .main-header
    .middle-header
    .search-form
    .input-group
    .form-control::placeholder {
    color: rgba(var(--content-color), 1);
}
body.dark
    .header-style-1
    .main-header
    .middle-header
    .search-form
    .input-group
    .form-control {
    background-color: #131921;
}
@media (max-width: 1667px) {
    .header-style-1
        .main-header
        .middle-header
        .search-form
        .input-group
        .form-control {
        width: 690px;
    }
}
@media (max-width: 1550px) {
    .header-style-1
        .main-header
        .middle-header
        .search-form
        .input-group
        .form-control {
        width: 590px;
    }
}
@media (max-width: 1420px) {
    .header-style-1
        .main-header
        .middle-header
        .search-form
        .input-group
        .form-control {
        width: 450px;
    }
}
@media (max-width: 1254px) {
    .header-style-1
        .main-header
        .middle-header
        .search-form
        .input-group
        .form-control {
        width: 290px;
    }
}
@media (max-width: 1061px) {
    .header-style-1
        .main-header
        .middle-header
        .search-form
        .input-group
        .form-control {
        border-radius: 0 6px 6px 0 !important;
        border: none;
        margin: 0 !important;
    }
    [dir="rtl"]
        .header-style-1
        .main-header
        .middle-header
        .search-form
        .input-group
        .form-control {
        border-radius: 6px 0 0 6px !important;
    }
}
@media (max-width: 992px) {
    .header-style-1
        .main-header
        .middle-header
        .search-form
        .input-group
        .form-control {
        width: 100%;
        background-color: #f2f3f6;
        border-radius: 0 5px 5px 0 !important;
    }
}
.header-style-1
    .main-header
    .middle-header
    .search-form
    .input-group
    .input-group-text {
    padding: 0;
    border: none;
    background-color: #e6e7e9;
    border-radius: 5px 0 0 5px !important;
}
body.dark
    .header-style-1
    .main-header
    .middle-header
    .search-form
    .input-group
    .input-group-text {
    background-color: #2f343e;
}
[dir="rtl"]
    .header-style-1
    .main-header
    .middle-header
    .search-form
    .input-group
    .input-group-text {
    border-radius: 0 5px 5px 0 !important;
}
.header-style-1
    .main-header
    .middle-header
    .search-form
    .input-group
    .input-group-text
    .dropdown
    .dropdown-toggle {
    border: none;
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    color: rgba(var(--content-color), 1);
    background-color: transparent;
    padding: 0 10px;
    line-height: 1;
    border-radius: 0;
    display: flex;
    align-items: center;
}
.header-style-1
    .main-header
    .middle-header
    .search-form
    .input-group
    .input-group-text
    .dropdown
    .dropdown-toggle::after {
    content: "\ea4e";
    color: rgba(var(--content-color), 1);
    font-size: 18px;
    margin: 0 0 0 5px;
    font-family: remixicon;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
}
[dir="rtl"]
    .header-style-1
    .main-header
    .middle-header
    .search-form
    .input-group
    .input-group-text
    .dropdown
    .dropdown-toggle::after {
    margin: 0 5px 0 0;
}
.header-style-1
    .main-header
    .middle-header
    .search-form
    .input-group
    .input-group-text
    .dropdown
    .dropdown-menu {
    background-color: rgba(var(--white), 1);
    border-color: rgba(var(--border-color), 1);
    width: 100%;
    min-width: 7.5rem;
    padding: 6px 0;
    margin-top: 15px !important;
}
.header-style-1
    .main-header
    .middle-header
    .search-form
    .input-group
    .input-group-text
    .dropdown
    .dropdown-menu
    li {
    display: block;
}
.header-style-1
    .main-header
    .middle-header
    .search-form
    .input-group
    .input-group-text
    .dropdown
    .dropdown-menu
    li
    + li
    .dropdown-item {
    margin-top: 4px;
}
.header-style-1
    .main-header
    .middle-header
    .search-form
    .input-group
    .input-group-text
    .dropdown
    .dropdown-menu
    li
    .dropdown-item {
    font-size: 14px;
    line-height: 1;
    color: rgba(var(--content-color), 1);
    font-weight: 400;
}
body.dark
    .header-style-1
    .main-header
    .middle-header
    .search-form
    .input-group
    .input-group-text
    .dropdown
    .dropdown-menu
    li
    .dropdown-item:hover {
    background-color: #131921;
}
.header-style-1
    .main-header
    .middle-header
    .search-form
    .input-group
    .input-group-text
    .dropdown
    .dropdown-menu
    li
    .dropdown-item:active {
    background-color: rgba(var(--base-gray), 1);
}
.header-style-1
    .main-header
    .middle-header
    .search-form
    .input-group
    .search-button {
    background-color: rgba(var(--primary-color), 1);
    border: 1px solid transparent;
    padding: 14px 15px;
    line-height: 1;
    font-size: 19px;
    border-radius: 5px;
    color: #fff;
    z-index: 1;
}
@media (max-width: 1061px) {
    .header-style-1
        .main-header
        .middle-header
        .search-form
        .input-group
        .search-button {
        position: absolute;
        right: 0;
        border: none;
        height: 100%;
        top: 50%;
        transform: translateY(-50%);
    }
    [dir="rtl"]
        .header-style-1
        .main-header
        .middle-header
        .search-form
        .input-group
        .search-button {
        right: unset;
        left: 0;
    }
}
@media (max-width: 991.98px) {
    .header-style-1
        .main-header
        .middle-header
        .search-form
        .input-group
        .search-button {
        display: none;
    }
}
.header-style-1
    .main-header
    .middle-header
    .search-form
    .input-group
    .search-button.search-light-color {
    background-color: rgba(var(--white), 0.2);
}
.header-style-1
    .main-header
    .middle-header
    .search-form
    .input-group
    .search-button-light {
    background-color: rgb(78, 145, 255);
}
.header-style-1 .main-header .right-header .header-icon {
    display: flex;
    align-items: center;
    gap: 14px;
}
@media (max-width: 991.98px) {
    .header-style-1 .main-header .right-header .header-icon {
        gap: calc(8px + 6 * (100vw - 320px) / 280);
    }
}
.header-style-1 .main-header .right-header .header-icon > li {
    position: relative;
}
@media (max-width: 575.98px) {
    .header-style-1 .main-header .right-header .header-icon > li {
        display: none;
    }
}
@media (max-width: 575.98px) {
    .header-style-1 .main-header .right-header .header-icon > li:first-child,
    .header-style-1 .main-header .right-header .header-icon > li:last-child {
        display: block;
    }
}
.header-style-1 .main-header .right-header .header-icon > li.contact-list {
    margin-right: 9px;
}
@media (max-width: 991.98px) {
    .header-style-1 .main-header .right-header .header-icon > li.contact-list {
        margin-right: 0;
    }
}
.header-style-1 .main-header .right-header .header-icon > li:first-child {
    display: none;
}
@media (max-width: 991.98px) {
    .header-style-1 .main-header .right-header .header-icon > li:first-child {
        display: block;
    }
}
.header-style-1 .main-header .right-header .header-icon > li > a {
    color: rgba(var(--white), 1);
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}
.header-style-1 .main-header .right-header .header-icon > li > a .label {
    position: absolute;
    padding-top: 1px;
    top: -4px;
    right: -6px;
    color: #fff;
    background-color: rgba(var(--primary-color2), 1);
    border-radius: 100%;
    font-size: calc(10px + 2 * (100vw - 320px) / 1600);
    font-weight: 500;
    width: calc(13px + 5 * (100vw - 320px) / 1600);
    height: calc(13px + 5 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
    justify-content: center;
}
[dir="rtl"]
    .header-style-1
    .main-header
    .right-header
    .header-icon
    > li
    > a
    .label {
    right: unset;
    left: -6px;
}
.header-style-1 .main-header .right-header .header-icon > li > a .label span {
    margin-top: calc(0px + 2.6 * (100vw - 320px) / 1600);
    line-height: 1;
}
.header-style-1 .main-header .right-header .header-icon > li > a i {
    font-size: 25px;
    color: #fff;
}
@media (max-width: 991.98px) {
    .header-style-1 .main-header .right-header .header-icon > li > a i {
        font-size: calc(17px + 8 * (100vw - 320px) / 672);
    }
}
.header-style-1 .main-header .right-header .header-icon > li > a .iconsax {
    --size: 25px;
    --Color: #fff;
}
@media (max-width: 991.98px) {
    .header-style-1 .main-header .right-header .header-icon > li > a .iconsax {
        --size: calc(19px + (25 - 19) * ((100vw - 320px) / (992 - 320)));
    }
}
@media (max-width: 991.98px) {
    .header-style-1 .main-header .right-header .header-icon > li > a > div {
        display: none;
    }
}
.header-style-1 .main-header .right-header .header-icon > li > a h6,
.header-style-1 .main-header .right-header .header-icon > li > a h5 {
    font-size: 14px;
}
.header-style-1 .main-header .right-header .header-icon > li > a h5 {
    margin-bottom: 3px;
}
.header-style-1 .main-header-theme-color {
    background-color: rgba(var(--primary-color3), 1);
}
.header-style-1 .main-dark-header {
    padding-block: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 991.98px) {
    .header-style-1 .main-dark-header {
        gap: 25px;
    }
}
.header-style-1 .main-dark-header .left-header {
    display: flex;
    align-items: center;
}
.header-style-1 .main-dark-header .left-header .header-logo {
    height: calc(37px + 13 * (100vw - 320px) / 1600);
}
@media (max-width: 991.98px) {
    .header-style-1 .main-dark-header .middle-header {
        padding: 14px;
        left: 0;
        display: block;
        transform: translateY(-50%);
        opacity: 0;
        visibility: hidden;
        position: absolute;
        padding-inline: calc(15px + 145 * (100vw - 320px) / 1600);
        transition: all 0.5s ease-in-out;
        background-color: rgba(var(--white), 1);
        z-index: 2;
        top: 0;
        position: fixed;
        width: 100%;
        height: auto;
    }
    .header-style-1 .main-dark-header .middle-header.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .header-style-1 .main-dark-header .middle-header .result-box {
        z-index: unset;
        margin-top: 12px;
        position: relative;
        inset: unset;
        overflow: auto;
        height: calc(100vh - (82px + 4 * (100vw - 320px) / 672));
    }
}
.header-style-1 .main-dark-header .middle-header .close-icon {
    right: 10px;
    cursor: pointer;
    display: none;
    position: absolute;
    color: rgba(var(--content-color), 1);
    z-index: 1;
    font-size: calc(16px + 5 * (100vw - 320px) / 672);
    line-height: 1;
    top: 50%;
    transform: translateY(-50%);
    width: unset;
    height: unset;
}
[dir="rtl"] .header-style-1 .main-dark-header .middle-header .close-icon {
    right: unset;
    left: 10px;
}
@media (max-width: 991.98px) {
    .header-style-1 .main-dark-header .middle-header .close-icon {
        display: block;
    }
}
.header-style-1 .main-dark-header .middle-header .close-icon i {
    font-size: 21px;
}
@media (max-width: 991.98px) {
    .header-style-1 .main-dark-header .middle-header .close-icon i {
        font-size: calc(16px + 5 * (100vw - 320px) / 672);
    }
}
@media (min-width: 992px) {
    .header-style-1 .main-dark-header .middle-header .search-form {
        position: relative;
        inset: unset;
        display: flex;
        transform: unset;
        background-color: transparent;
        visibility: visible;
        z-index: 1;
        width: max-content;
        height: max-content;
    }
}
.header-style-1 .main-dark-header .middle-header .search-form .input-group {
    z-index: 2;
    border: 1px solid rgba(var(--content-color), 0.2);
    border-radius: 5px;
    flex-wrap: nowrap;
}
@media (max-width: 991.98px) {
    .header-style-1 .main-dark-header .middle-header .search-form .input-group {
        flex-wrap: nowrap;
    }
}
.header-style-1
    .main-dark-header
    .middle-header
    .search-form
    .input-group
    .form-control {
    background-color: rgba(var(--white), 1);
    border: none;
    padding: 15px;
    font-weight: 400;
    font-size: 14px;
    color: rgba(var(--content-color), 1);
    width: 780px;
    z-index: 0;
}
.header-style-1
    .main-dark-header
    .middle-header
    .search-form
    .input-group
    .form-control::placeholder {
    color: rgba(var(--content-color), 0.8);
}
@media (max-width: 1667px) {
    .header-style-1
        .main-dark-header
        .middle-header
        .search-form
        .input-group
        .form-control {
        width: 690px;
    }
}
@media (max-width: 1550px) {
    .header-style-1
        .main-dark-header
        .middle-header
        .search-form
        .input-group
        .form-control {
        width: 590px;
    }
}
@media (max-width: 1420px) {
    .header-style-1
        .main-dark-header
        .middle-header
        .search-form
        .input-group
        .form-control {
        width: 450px;
    }
}
@media (max-width: 1254px) {
    .header-style-1
        .main-dark-header
        .middle-header
        .search-form
        .input-group
        .form-control {
        width: 290px;
    }
}
@media (max-width: 1061px) {
    .header-style-1
        .main-dark-header
        .middle-header
        .search-form
        .input-group
        .form-control {
        border-radius: 0 !important;
        border: none;
        margin: 0 !important;
    }
}
@media (max-width: 992.98px) {
    .header-style-1
        .main-dark-header
        .middle-header
        .search-form
        .input-group
        .form-control {
        width: 100%;
        background-color: rgba(var(--content-color), 0.05);
        border-radius: 0 5px 5px 0 !important;
        padding: calc(10px + 5 * (100vw - 320px) / 1600)
            calc(12px + 3 * (100vw - 320px) / 1600);
    }
}
.header-style-1
    .main-dark-header
    .middle-header
    .search-form
    .input-group
    .input-group-text {
    padding: 0;
    border: none;
    background-color: #e6e7e9;
    border-radius: 5px 0 0 5px !important;
    margin-left: unset !important;
    margin-right: calc(-1 * var(--bs-border-width)) !important;
}
[dir="rtl"]
    .header-style-1
    .main-dark-header
    .middle-header
    .search-form
    .input-group
    .input-group-text {
    border-radius: 0 5px 5px 0 !important;
    margin-right: unset !important;
    margin-left: calc(-1 * var(--bs-border-width)) !important;
}
.header-style-1
    .main-dark-header
    .middle-header
    .search-form
    .input-group
    .input-group-text
    .dropdown
    .dropdown-toggle {
    border: none;
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    color: rgba(var(--content-color), 1);
    background-color: transparent;
    padding: 0 10px;
    display: flex;
    align-items: center;
}
.header-style-1
    .main-dark-header
    .middle-header
    .search-form
    .input-group
    .input-group-text
    .dropdown
    .dropdown-toggle::after {
    content: "\ea4e";
    color: rgba(var(--content-color), 1);
    font-size: 18px;
    font-family: remixicon;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
}
.header-style-1
    .main-dark-header
    .middle-header
    .search-form
    .input-group
    .input-group-text
    .dropdown
    .dropdown-menu {
    border-color: rgba(var(--border-color), 1);
    width: 100%;
    min-width: 7.5rem;
    padding: 6px 0;
    margin-top: 15px !important;
    background-color: rgba(var(--white), 1);
}
.header-style-1
    .main-dark-header
    .middle-header
    .search-form
    .input-group
    .input-group-text
    .dropdown
    .dropdown-menu
    li {
    display: block;
}
.header-style-1
    .main-dark-header
    .middle-header
    .search-form
    .input-group
    .input-group-text
    .dropdown
    .dropdown-menu
    li
    + li {
    margin-top: 4px;
}
.header-style-1
    .main-dark-header
    .middle-header
    .search-form
    .input-group
    .input-group-text
    .dropdown
    .dropdown-menu
    li
    .dropdown-item {
    font-size: 14px;
    line-height: 1;
    color: rgba(var(--content-color), 1);
    font-weight: 400;
}
body.dark
    .header-style-1
    .main-dark-header
    .middle-header
    .search-form
    .input-group
    .input-group-text
    .dropdown
    .dropdown-menu
    li
    .dropdown-item:hover {
    background-color: #07544f;
}
.header-style-1
    .main-dark-header
    .middle-header
    .search-form
    .input-group
    .input-group-text
    .dropdown
    .dropdown-menu
    li
    .dropdown-item:active {
    background-color: rgba(var(--base-gray), 1);
}
.header-style-1
    .main-dark-header
    .middle-header
    .search-form
    .input-group
    .search-button {
    background-color: rgba(var(--primary-color), 1);
    border: 1px solid transparent;
    padding: 14px 15px;
    line-height: 1;
    font-size: 19px;
    border-radius: 0 5px 5px 0;
    color: rgba(var(--content-color), 1);
    z-index: 1;
}
[dir="rtl"]
    .header-style-1
    .main-dark-header
    .middle-header
    .search-form
    .input-group
    .search-button {
    border-radius: 5px 0 0 5px;
}
@media (max-width: 1061px) {
    .header-style-1
        .main-dark-header
        .middle-header
        .search-form
        .input-group
        .search-button {
        position: absolute;
        right: 0;
        border: none;
        height: 100%;
        top: 50%;
        transform: translateY(-50%);
    }
}
@media (max-width: 991.98px) {
    .header-style-1
        .main-dark-header
        .middle-header
        .search-form
        .input-group
        .search-button {
        display: none;
    }
}
.header-style-1
    .main-dark-header
    .middle-header
    .search-form
    .input-group
    .search-button.search-light-color {
    background-color: rgba(var(--white), 0.2);
}
.header-style-1 .main-dark-header .right-header .header-icon {
    display: flex;
    align-items: center;
    gap: 14px;
}
@media (max-width: 991.98px) {
    .header-style-1 .main-dark-header .right-header .header-icon {
        gap: calc(8px + 6 * (100vw - 320px) / 280);
    }
}
.header-style-1 .main-dark-header .right-header .header-icon > li {
    position: relative;
}
@media (max-width: 575.98px) {
    .header-style-1 .main-dark-header .right-header .header-icon > li {
        display: none;
    }
}
@media (max-width: 575.98px) {
    .header-style-1
        .main-dark-header
        .right-header
        .header-icon
        > li:first-child,
    .header-style-1
        .main-dark-header
        .right-header
        .header-icon
        > li:last-child {
        display: block;
    }
}
.header-style-1 .main-dark-header .right-header .header-icon > li.contact-list {
    margin-right: 9px;
}
@media (max-width: 991.98px) {
    .header-style-1
        .main-dark-header
        .right-header
        .header-icon
        > li.contact-list {
        margin-right: 0;
    }
}
.header-style-1 .main-dark-header .right-header .header-icon > li:first-child {
    display: none;
}
@media (max-width: 991.98px) {
    .header-style-1
        .main-dark-header
        .right-header
        .header-icon
        > li:first-child {
        display: block;
    }
}
.header-style-1 .main-dark-header .right-header .header-icon > li > a {
    color: rgba(var(--title-color), 1);
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}
.header-style-1 .main-dark-header .right-header .header-icon > li > a .label {
    position: absolute;
    padding-top: 1px;
    top: -4px;
    right: -6px;
    color: #fff;
    background-color: rgba(var(--primary-color2), 1);
    border-radius: 100%;
    font-size: calc(10px + 2 * (100vw - 320px) / 1600);
    font-weight: 500;
    width: calc(13px + 5 * (100vw - 320px) / 1600);
    height: calc(13px + 5 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
    justify-content: center;
}
[dir="rtl"]
    .header-style-1
    .main-dark-header
    .right-header
    .header-icon
    > li
    > a
    .label {
    right: unset;
    left: -6px;
}
.header-style-1
    .main-dark-header
    .right-header
    .header-icon
    > li
    > a
    .label
    span {
    margin-top: calc(0px + 2.6 * (100vw - 320px) / 1600);
    line-height: 1;
}
.header-style-1 .main-dark-header .right-header .header-icon > li > a i {
    font-size: 25px;
    color: rgba(var(--white), 1);
}
@media (max-width: 991.98px) {
    .header-style-1 .main-dark-header .right-header .header-icon > li > a i {
        font-size: calc(17px + 8 * (100vw - 320px) / 671);
    }
}
.header-style-1 .main-dark-header .right-header .header-icon > li > a .iconsax {
    --size: 25px;
    --Color: rgba(var(--title-color), 1);
}
@media (max-width: 991.98px) {
    .header-style-1
        .main-dark-header
        .right-header
        .header-icon
        > li
        > a
        .iconsax {
        --size: calc(17px + (25 - 17) * ((100vw - 320px) / (991 - 320)));
    }
}
@media (max-width: 991.98px) {
    .header-style-1
        .main-dark-header
        .right-header
        .header-icon
        > li
        > a
        > div {
        display: none;
    }
}
.header-style-1 .main-dark-header .right-header .header-icon > li > a h6,
.header-style-1 .main-dark-header .right-header .header-icon > li > a h5 {
    font-size: 14px;
}
.header-style-1 .main-dark-header .right-header .header-icon > li > a h6 {
    margin-bottom: 3px;
}
.header-style-1 .nav-header {
    position: relative;
    background-color: rgba(var(--theme-blue), 1);
    color: rgba(var(--white), 1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 575.98px) {
    .header-style-1 .nav-header {
        height: 0;
        position: relative;
    }
}
.header-style-1 .nav-header .category-header.category-space-header {
    margin-block: 6px;
}
.header-style-1 .nav-header .category-header .category-button {
    color: rgba(var(--white), 1);
    font-weight: 400;
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    border: none;
    gap: calc(7px + 8 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
    line-height: 1;
    position: relative;
    padding: 15px 11px;
}
body.dark .header-style-1 .nav-header .category-header .category-button {
    color: #fff;
}
.header-style-1 .nav-header .category-header .category-button::before {
    bottom: -3px;
    left: 0;
    background-color: rgba(var(--primary-color), 1);
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
}
@media (max-width: 1199.98px) {
    .header-style-1 .nav-header .category-header .category-button::before {
        bottom: 0;
    }
}
.header-style-1 .nav-header .category-header .category-button-2 {
    gap: calc(7px + 3 * (100vw - 320px) / 1600);
}
.header-style-1 .nav-header .category-header .category-button-2::before {
    content: none;
}
.header-style-1
    .nav-header
    .category-header
    .category-button.category-yellow-bg {
    color: #202326;
    background-color: rgba(var(--theme-yellow), 1);
}
body.dark
    .header-style-1
    .nav-header
    .category-header
    .category-button.category-yellow-bg {
    color: #202326;
}
.header-style-1 .nav-header .category-header .category-button i {
    margin-top: 0;
    font-size: calc(17px + 3 * (100vw - 320px) / 1600);
}
.header-style-1 .nav-header .category-header .category-button span {
    padding-top: 2px;
}
.header-style-1 .nav-light-header {
    background-color: rgba(var(--white), 1);
    color: rgba(var(--title-color), 1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 575.98px) {
    .header-style-1 .nav-light-header {
        height: 0;
    }
}
.header-style-1 .nav-light-header .category-header {
    padding-block: 12px;
}
.header-style-1 .nav-light-header .category-header .category-button {
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    border: none;
    padding: 0;
    gap: 15px;
    display: flex;
    align-items: center;
    line-height: 1;
    position: relative;
    padding: 15px 11px;
    transition: all 0.3s ease;
    border-radius: 4px;
}
.header-style-1
    .nav-light-header
    .category-header
    .category-button:hover::before {
    background: linear-gradient(
        90deg,
        rgb(255, 84, 82) 13.1%,
        rgb(255, 168, 0) 174.18%
    );
}
.header-style-1 .nav-light-header .category-header .category-button::before {
    bottom: 0;
    left: 0;
    z-index: -1;
    background-color: rgb(255, 84, 82);
    background: linear-gradient(
        274.63deg,
        rgb(255, 84, 82) 13.1%,
        rgb(255, 168, 0) 174.18%
    );
    transition: all 0.15s ease-in-out;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
}
.header-style-1 .nav-light-header .category-header .category-button i {
    margin-top: -3px;
    font-size: 20px;
}
.header-style-1 .nav-light-header .category-header .category-button span {
    padding-top: 2px;
}
.header-style-1 .nav-light-header .category-header .category-button.bg-color {
    color: #fff;
    background-color: rgba(var(--primary-color3), 1);
}
.header-style-1
    .nav-light-header
    .category-header
    .category-button.bg-color::before {
    content: unset;
}
.header-style-1 .recent-header .product-viwer > li {
    position: relative;
}
.header-style-1 .recent-header .product-viwer > li + li {
    margin-left: 10px;
    padding-left: 10px;
}
[dir="rtl"] .header-style-1 .recent-header .product-viwer > li + li {
    margin-left: unset;
    margin-right: 10px;
    padding-left: unset;
    padding-right: 10px;
}
.header-style-1 .recent-header .product-viwer > li + li::before {
    left: 0;
    background-color: rgba(var(--white), 0.2);
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
}
body.dark .header-style-1 .recent-header .product-viwer > li + li::before {
    background-color: rgba(255, 255, 255, 0.2);
}
[dir="rtl"] .header-style-1 .recent-header .product-viwer > li + li::before {
    left: unset;
    right: 0;
}
.header-style-1 .recent-header .product-viwer > li > a {
    font-weight: 400;
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(var(--white), 1);
}
.header-style-1
    .recent-header
    .product-viwer
    > li.recent-product
    .product-link {
    color: rgba(var(--white), 1);
}
body.dark
    .header-style-1
    .recent-header
    .product-viwer
    > li.recent-product
    .product-link {
    color: #fff;
}
.header-style-1
    .recent-header
    .product-viwer
    > li.recent-product
    .product-link::after {
    content: "\ea4e";
    position: relative;
    font-family: remixicon;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
}
.header-style-1
    .recent-header
    .product-viwer
    > li.order-tracking
    .product-link {
    color: rgba(var(--white), 0.4);
}
body.dark
    .header-style-1
    .recent-header
    .product-viwer
    > li.order-tracking
    .product-link {
    color: rgba(255, 255, 255, 0.4);
}
.header-style-1 .recent-light-header .product-viwer > li {
    position: relative;
}
.header-style-1 .recent-light-header .product-viwer > li + li {
    margin-left: 10px;
    padding-left: 10px;
}
[dir="rtl"] .header-style-1 .recent-light-header .product-viwer > li + li {
    margin-left: unset;
    padding-left: unset;
    margin-right: 10px;
    padding-right: 10px;
}
.header-style-1 .recent-light-header .product-viwer > li + li::before {
    left: 0;
    background-color: rgba(var(--title-color), 0.2);
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
}
[dir="rtl"]
    .header-style-1
    .recent-light-header
    .product-viwer
    > li
    + li::before {
    left: unset;
    right: 0;
}
.header-style-1 .recent-light-header .product-viwer > li > a {
    font-weight: 400;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(var(--title-color), 1);
}
.header-style-1
    .recent-light-header
    .product-viwer
    > li.recent-product
    .product-link {
    color: rgba(var(--title-color), 1);
}
.header-style-1
    .recent-light-header
    .product-viwer
    > li.recent-product
    .product-link::after {
    content: "\ea4e";
    position: relative;
    font-family: remixicon;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
}
@media (max-width: 1399.98px) {
    .header-style-1
        .recent-light-header
        .product-viwer
        > li.recent-product
        .product-link::after {
        content: none;
    }
}
.header-style-1
    .recent-light-header
    .product-viwer
    > li.order-tracking
    .product-link {
    color: rgba(var(--title-color), 1);
}
.header-style-1 .top-header-banner {
    display: none;
}
@media (min-width: 1200px) {
    .header-style-1 .top-header-banner {
        display: block;
    }
}
.header-style-1 .top-header-banner .close-btn {
    position: absolute;
    top: 8px;
    right: 8%;
    padding: 0;
    background-color: rgba(var(--title-color), 1);
    color: rgba(var(--white), 1);
    line-height: 1;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 900;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-style-1 .top-header-banner .banner-timer {
    padding: 5px 16px;
    background-color: rgba(var(--white), 1);
    text-align: center;
}
.header-style-1 .top-header-banner .banner-timer h6 {
    margin-bottom: 4px;
    color: rgba(var(--content-color), 1);
    font-weight: 500;
}
.header-style-1 .top-header-banner .banner-timer h4 {
    font-size: 18px;
    font-weight: 500;
    color: rgba(var(--primary-color2), 1);
}
.header-style-1 .top-header-banner .discount {
    font-size: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    margin-bottom: -5px;
}
.header-style-1 .top-header-banner .discount .offer {
    color: rgba(var(--primary-color2), 1);
}
.header-style-1 .top-header-banner .discount .off {
    font-size: 18px;
}

.header-style-2 {
    position: relative;
}
@media (max-width: 1199.98px) {
    .header-style-2 {
        z-index: unset;
    }
    .header-style-2:has(.search-overlay.show) {
        z-index: 10;
    }
}
.header-style-2.sticky-header {
    z-index: 2;
}
.header-style-2.sticky-header .main-header {
    position: fixed;
    top: 0;
    margin-top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(var(--white), 1);
    box-shadow: 7px 5px 10px rgba(54, 97, 79, 0.1);
}
.header-style-2 .top-header {
    background-color: rgba(var(--primary-color2), 1);
    padding-block: 6px 0px;
    width: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-style-2 .top-header::before {
    left: 0;
    bottom: -11px;
    background-image: url(../svg/header-shape.svg);
    z-index: -1;
    content: "";
    position: absolute;
    width: 100%;
    height: 11px;
}
body.dark .header-style-2 .top-header::before {
    background-color: #303438;
}
.header-style-2 .top-header .left-header {
    display: flex;
    align-items: center;
}
.header-style-2 .top-header .left-header .dropdown-box {
    display: inline-block;
    padding-right: calc(6px + 9 * (100vw - 320px) / 1600);
    margin-right: calc(6px + 9 * (100vw - 320px) / 1600);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}
[dir="rtl"] .header-style-2 .top-header .left-header .dropdown-box {
    padding-left: calc(6px + 9 * (100vw - 320px) / 1600);
    margin-left: calc(6px + 9 * (100vw - 320px) / 1600);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-right: unset;
    margin-right: unset;
    border-right: unset;
}
.header-style-2 .top-header .left-header .dropdown-box > ul {
    display: flex;
    align-items: center;
    gap: calc(9px + 11 * (100vw - 320px) / 1600);
}
.header-style-2
    .top-header
    .left-header
    .dropdown-box
    > ul
    > li
    .theme-form-select {
    padding: 0;
    background-color: transparent;
    color: #fff;
    border: none;
    background-image: none;
    position: relative;
}
.header-style-2
    .top-header
    .left-header
    .dropdown-box
    > ul
    > li
    .theme-form-select
    .dropdown-toggle {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    padding: revert;
    padding: 0;
    line-height: 1;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-style-2
    .top-header
    .left-header
    .dropdown-box
    > ul
    > li
    .theme-form-select
    .dropdown-toggle
    img {
    margin-right: 8px;
    object-fit: cover;
    width: 20px;
    height: 12px;
}
[dir="rtl"]
    .header-style-2
    .top-header
    .left-header
    .dropdown-box
    > ul
    > li
    .theme-form-select
    .dropdown-toggle
    img {
    margin-right: unset;
    margin-left: 8px;
}
.header-style-2
    .top-header
    .left-header
    .dropdown-box
    > ul
    > li
    .theme-form-select
    .dropdown-toggle:active {
    border-color: transparent;
}
.header-style-2
    .top-header
    .left-header
    .dropdown-box
    > ul
    > li
    .theme-form-select
    .dropdown-toggle:focus {
    box-shadow: none;
}
.header-style-2
    .top-header
    .left-header
    .dropdown-box
    > ul
    > li
    .theme-form-select
    .dropdown-toggle::after {
    margin-left: 3px;
    color: #fff;
    border: none;
    vertical-align: unset;
    font-size: 17px;
    content: "\ea4e";
    position: relative;
    font-family: remixicon;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
}
[dir="rtl"]
    .header-style-2
    .top-header
    .left-header
    .dropdown-box
    > ul
    > li
    .theme-form-select
    .dropdown-toggle::after {
    margin-left: unset;
    margin-right: 3px;
}
.header-style-2
    .top-header
    .left-header
    .dropdown-box
    > ul
    > li
    .theme-form-select
    .dropdown-menu {
    background-color: rgba(var(--white), 1);
    min-width: auto;
    width: 100%;
    padding-block: 5px;
}
.header-style-2
    .top-header
    .left-header
    .dropdown-box
    > ul
    > li
    .theme-form-select
    .dropdown-menu
    li {
    width: 100%;
}
.header-style-2
    .top-header
    .left-header
    .dropdown-box
    > ul
    > li
    .theme-form-select
    .dropdown-menu
    li
    + li {
    margin-left: 0;
}
.header-style-2
    .top-header
    .left-header
    .dropdown-box
    > ul
    > li
    .theme-form-select
    .dropdown-menu
    li
    .dropdown-item {
    padding-block: 0;
    font-size: 14px;
    padding-inline: 6px;
    padding: 4px 5px;
    color: rgba(var(--title-color), 1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-style-2
    .top-header
    .left-header
    .dropdown-box
    > ul
    > li
    .theme-form-select
    .dropdown-menu
    li
    .dropdown-item:hover,
.header-style-2
    .top-header
    .left-header
    .dropdown-box
    > ul
    > li
    .theme-form-select
    .dropdown-menu
    li
    .dropdown-item:focus {
    background-color: transparent;
}
.header-style-2
    .top-header
    .left-header
    .dropdown-box
    > ul
    > li
    .theme-form-select
    .dropdown-menu
    li
    .dropdown-item.active,
.header-style-2
    .top-header
    .left-header
    .dropdown-box
    > ul
    > li
    .theme-form-select
    .dropdown-menu
    li
    .dropdown-item:active {
    color: rgba(var(--title-color), 1);
    background-color: transparent;
}
.header-style-2
    .top-header
    .left-header
    .dropdown-box
    > ul
    > li
    .theme-form-select
    .dropdown-menu
    li
    .dropdown-item
    img {
    width: 20px;
    margin-right: 8px;
}
[dir="rtl"]
    .header-style-2
    .top-header
    .left-header
    .dropdown-box
    > ul
    > li
    .theme-form-select
    .dropdown-menu
    li
    .dropdown-item
    img {
    margin-right: unset;
    margin-left: 8px;
}
.header-style-2
    .top-header
    .left-header
    .dropdown-box
    > ul
    > li
    .theme-form-select
    .dropdown-menu
    li
    .dropdown-item
    span {
    line-height: 1;
}
.header-style-2 .top-header .left-header .social-box .social-list {
    display: flex;
    align-items: center;
    gap: calc(6px + 9 * (100vw - 320px) / 1600);
}
.header-style-2 .top-header .left-header .social-box .social-list li:hover a {
    color: rgba(var(--primary-color), 1);
}
.header-style-2
    .top-header
    .left-header
    .social-box
    .social-list
    li:hover
    a::before {
    width: 100%;
    background-color: rgba(var(--primary-color), 1);
}
.header-style-2 .top-header .left-header .social-box .social-list li a {
    position: relative;
    color: #fff;
    font-size: calc(15px + 3 * (100vw - 320px) / 1600);
    transition: color 0.5s ease-in-out;
}
.header-style-2 .top-header .left-header .social-box .social-list li a::before {
    bottom: 0;
    left: 0;
    background-color: #fff;
    transition: all 0.5s ease-in-out;
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
}
[dir="rtl"]
    .header-style-2
    .top-header
    .left-header
    .social-box
    .social-list
    li
    a::before {
    left: unset;
    right: 0;
}
@media (max-width: 1145px) {
    .header-style-2 .top-header .middle-header {
        display: none;
    }
}
.header-style-2 .top-header .middle-header .middle-content p {
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    overflow: hidden;
    position: relative;
    height: 20px;
}
.header-style-2 .top-header .middle-header .middle-content p span {
    display: inline-block;
    color: #fff;
    position: relative;
    white-space: nowrap;
    top: 0;
    left: 0;
    animation: move 4s;
    animation-iteration-count: infinite;
    animation-delay: 1s;
}
@media (max-width: 670px) {
    .header-style-2 .top-header .right-header {
        display: none;
    }
}
.header-style-2 .top-header .right-header .content-list {
    display: flex;
    align-items: center;
    gap: calc(8px + 12 * (100vw - 320px) / 1600);
}
.header-style-2 .top-header .right-header .content-list li:hover a {
    color: rgba(var(--primary-color), 1);
}
.header-style-2 .top-header .right-header .content-list li:hover a::before {
    width: 100%;
    background-color: rgba(var(--primary-color), 1);
}
.header-style-2 .top-header .right-header .content-list li a {
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    position: relative;
    transition: color 0.5s ease-in-out;
}
.header-style-2 .top-header .right-header .content-list li a::before {
    bottom: 0;
    left: 0;
    background-color: #fff;
    transition: all 0.5s ease-in-out;
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
}
[dir="rtl"]
    .header-style-2
    .top-header
    .right-header
    .content-list
    li
    a::before {
    left: unset;
    right: 0;
}
.header-style-2 .main-header {
    padding-block: 10px 15px;
    position: relative;
    margin-top: 10px;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 991.98px) {
    .header-style-2 .main-header {
        gap: 25px;
    }
}
@media (max-width: 575.98px) {
    .header-style-2 .main-header {
        padding-bottom: 7px;
        border-bottom: 1px solid rgba(var(--title-color), 0.1);
    }
}
.header-style-2 .main-header .left-header {
    display: flex;
    align-items: center;
}
.header-style-2 .main-header .left-header .header-logo {
    height: calc(36px + 14 * (100vw - 320px) / 1600);
}
@media (max-width: 991.98px) {
    .header-style-2 .main-header .middle-header {
        padding: 14px;
        left: 0;
        display: block;
        transform: translateY(-50%);
        opacity: 0;
        visibility: hidden;
        position: absolute;
        padding-inline: calc(15px + 145 * (100vw - 320px) / 1600);
        transition: all 0.5s ease-in-out;
        background-color: rgba(var(--white), 1);
        z-index: 2;
        top: 0;
        position: fixed;
        width: 100%;
        height: auto;
    }
    .header-style-2 .main-header .middle-header.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .header-style-2 .main-header .middle-header .result-box {
        z-index: unset;
        margin-top: 12px;
        position: relative;
        inset: unset;
        overflow: auto;
        height: calc(100vh - (82px + 4 * (100vw - 320px) / 672));
    }
}
.header-style-2 .main-header .middle-header .close-icon {
    right: 10px;
    cursor: pointer;
    display: none;
    position: absolute;
    color: rgba(var(--content-color), 1);
    z-index: 1;
    font-size: calc(16px + 5 * (100vw - 320px) / 672);
    line-height: 1;
    top: 50%;
    transform: translateY(-50%);
    width: unset;
    height: unset;
}
[dir="rtl"] .header-style-2 .main-header .middle-header .close-icon {
    right: unset;
    left: 10px;
}
@media (max-width: 991.98px) {
    .header-style-2 .main-header .middle-header .close-icon {
        display: block;
    }
}
.header-style-2 .main-header .middle-header .close-icon i {
    font-size: 21px;
}
@media (max-width: 991.98px) {
    .header-style-2 .main-header .middle-header .close-icon i {
        font-size: calc(16px + 5 * (100vw - 320px) / 672);
    }
}
@media (min-width: 992px) {
    .header-style-2 .main-header .middle-header .search-form {
        position: relative;
        inset: unset;
        display: flex;
        transform: unset;
        background-color: transparent;
        visibility: visible;
        z-index: 1;
        width: max-content;
        height: max-content;
    }
}
.header-style-2 .main-header .middle-header .search-form .input-group {
    z-index: 2;
    border-bottom: 1px solid rgba(var(--content-color), 0.2);
    padding-bottom: 10px;
    background-color: rgba(var(--white), 1);
    border-radius: 0;
}
@media (max-width: 991.98px) {
    .header-style-2 .main-header .middle-header .search-form .input-group {
        flex-wrap: nowrap;
        background-color: rgba(var(--content-color), 0.05);
        padding: calc(5px + 5 * (100vw - 320px) / 672);
        border-radius: 6px;
    }
}
.header-style-2
    .main-header
    .middle-header
    .search-form
    .input-group
    .form-control {
    border: none;
    border-left: 1px solid rgba(var(--content-color), 0.2);
    padding: 8px 15px;
    font-weight: 400;
    font-size: 14px;
    color: rgba(var(--content-color), 1);
    width: 780px;
    z-index: 0;
    background-color: rgba(var(--white), 1);
    color: rgba(var(--title-color), 1);
}
.header-style-2
    .main-header
    .middle-header
    .search-form
    .input-group
    .form-control::placeholder {
    color: rgba(var(--content-color), 1);
}
@media (max-width: 1667px) {
    .header-style-2
        .main-header
        .middle-header
        .search-form
        .input-group
        .form-control {
        width: 690px;
    }
}
@media (max-width: 1550px) {
    .header-style-2
        .main-header
        .middle-header
        .search-form
        .input-group
        .form-control {
        width: 590px;
    }
}
@media (max-width: 1420px) {
    .header-style-2
        .main-header
        .middle-header
        .search-form
        .input-group
        .form-control {
        width: 450px;
    }
}
@media (max-width: 1254px) {
    .header-style-2
        .main-header
        .middle-header
        .search-form
        .input-group
        .form-control {
        width: 290px;
    }
}
@media (max-width: 1061px) {
    .header-style-2
        .main-header
        .middle-header
        .search-form
        .input-group
        .form-control {
        border-radius: 6px !important;
        border: none;
        margin: 0 !important;
    }
}
@media (max-width: 991.98) {
    .header-style-2
        .main-header
        .middle-header
        .search-form
        .input-group
        .form-control {
        width: 100%;
        background-color: transparent;
        border-radius: 0 5px 5px 0 !important;
    }
}
.header-style-2
    .main-header
    .middle-header
    .search-form
    .input-group
    .input-group-text {
    padding: 0;
    border: none;
    background-color: rgba(var(--white), 1);
    z-index: 1;
}
@media (max-width: 991.98) {
    .header-style-2
        .main-header
        .middle-header
        .search-form
        .input-group
        .input-group-text {
        background-color: rgba(var(--border-color), 1);
        border-radius: 4px;
    }
}
.header-style-2
    .main-header
    .middle-header
    .search-form
    .input-group
    .input-group-text
    .dropdown
    .dropdown-toggle {
    border: none;
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    color: rgba(var(--content-color), 1);
    background-color: transparent;
    padding: 0 10px;
    display: flex;
    align-items: center;
}
.header-style-2
    .main-header
    .middle-header
    .search-form
    .input-group
    .input-group-text
    .dropdown
    .dropdown-toggle::after {
    content: "\ea4e";
    color: rgba(var(--content-color), 1);
    font-size: 18px;
    font-family: remixicon;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
}
.header-style-2
    .main-header
    .middle-header
    .search-form
    .input-group
    .input-group-text
    .dropdown
    .dropdown-menu {
    border-color: rgba(var(--border-color), 1);
    width: 100%;
    min-width: 7.5rem;
    padding: 6px 0;
    background-color: rgba(var(--white), 1);
    margin-top: 15px !important;
}
.header-style-2
    .main-header
    .middle-header
    .search-form
    .input-group
    .input-group-text
    .dropdown
    .dropdown-menu
    li {
    display: block;
}
.header-style-2
    .main-header
    .middle-header
    .search-form
    .input-group
    .input-group-text
    .dropdown
    .dropdown-menu
    li
    + li
    .dropdown-item {
    margin-top: 4px;
}
.header-style-2
    .main-header
    .middle-header
    .search-form
    .input-group
    .input-group-text
    .dropdown
    .dropdown-menu
    li
    .dropdown-item {
    font-size: 14px;
    line-height: 1;
    color: rgba(var(--content-color), 1);
    font-weight: 400;
}
.header-style-2
    .main-header
    .middle-header
    .search-form
    .input-group
    .input-group-text
    .dropdown
    .dropdown-menu
    li
    .dropdown-item:hover {
    background-color: rgba(var(--content-color), 0.05);
}
.header-style-2
    .main-header
    .middle-header
    .search-form
    .input-group
    .input-group-text
    .dropdown
    .dropdown-menu
    li
    .dropdown-item:active {
    background-color: rgba(var(--base-gray), 1);
}
.header-style-2
    .main-header
    .middle-header
    .search-form
    .input-group
    .search-button {
    background-color: rgba(var(--white), 1);
    padding: 0;
    font-size: 19px;
    border-radius: 5px;
    color: rgba(var(--content-color), 1);
}
@media (max-width: 1061px) {
    .header-style-2
        .main-header
        .middle-header
        .search-form
        .input-group
        .search-button {
        position: absolute;
        right: 0;
        border: none;
        height: 100%;
        top: 50%;
        transform: translateY(-50%);
    }
}
@media (max-width: 991.98px) {
    .header-style-2
        .main-header
        .middle-header
        .search-form
        .input-group
        .search-button {
        display: none;
    }
}
.header-style-2
    .main-header
    .middle-header
    .search-form
    .input-group
    .search-button.search-light-color {
    background-color: rgba(var(--white), 0.2);
}
.header-style-2 .main-header .right-header .header-icon {
    display: flex;
    align-items: center;
    gap: 14px;
}
@media (max-width: 991.98px) {
    .header-style-2 .main-header .right-header .header-icon {
        gap: calc(8px + 6 * (100vw - 320px) / 280);
    }
}
.header-style-2 .main-header .right-header .header-icon > li {
    position: relative;
}
@media (max-width: 575.98px) {
    .header-style-2 .main-header .right-header .header-icon > li {
        display: none;
    }
}
@media (max-width: 575.98px) {
    .header-style-2 .main-header .right-header .header-icon > li:first-child,
    .header-style-2 .main-header .right-header .header-icon > li:last-child {
        display: block;
    }
}
.header-style-2 .main-header .right-header .header-icon > li.contact-list {
    margin-right: 9px;
}
@media (max-width: 991.98px) {
    .header-style-2 .main-header .right-header .header-icon > li.contact-list {
        margin-right: 0;
    }
}
.header-style-2 .main-header .right-header .header-icon > li:first-child {
    display: none;
}
@media (max-width: 991.98px) {
    .header-style-2 .main-header .right-header .header-icon > li:first-child {
        display: block;
    }
}
.header-style-2 .main-header .right-header .header-icon > li > a {
    color: rgba(var(--title-color), 1);
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}
.header-style-2 .main-header .right-header .header-icon > li > a .label {
    position: absolute;
    padding-top: 1px;
    top: -4px;
    right: -6px;
    color: #fff;
    background-color: rgba(var(--primary-color2), 1);
    border-radius: 100%;
    font-size: calc(10px + 2 * (100vw - 320px) / 1600);
    font-weight: 500;
    width: calc(13px + 5 * (100vw - 320px) / 1600);
    height: calc(13px + 5 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
    justify-content: center;
}
[dir="rtl"]
    .header-style-2
    .main-header
    .right-header
    .header-icon
    > li
    > a
    .label {
    right: unset;
    left: -6px;
}
.header-style-2 .main-header .right-header .header-icon > li > a .label span {
    margin-top: calc(0px + 2.6 * (100vw - 320px) / 1600);
    line-height: 1;
}
.header-style-2 .main-header .right-header .header-icon > li > a i {
    font-size: 25px;
    color: rgba(var(--title-color), 1);
}
@media (max-width: 991.98px) {
    .header-style-2 .main-header .right-header .header-icon > li > a i {
        font-size: calc(17px + 8 * (100vw - 320px) / 671);
    }
}
.header-style-2 .main-header .right-header .header-icon > li > a .iconsax {
    --size: 25px;
    --Color: rgba(var(--title-color), 1);
}
@media (max-width: 991.98px) {
    .header-style-2 .main-header .right-header .header-icon > li > a .iconsax {
        --size: calc(17px + (25 - 17) * ((100vw - 320px) / (991 - 320)));
    }
}
@media (max-width: 991.98px) {
    .header-style-2 .main-header .right-header .header-icon > li > a > div {
        display: none;
    }
}
.header-style-2 .main-header .right-header .header-icon > li > a h6,
.header-style-2 .main-header .right-header .header-icon > li > a h5 {
    font-size: 14px;
}
.header-style-2 .main-header .right-header .header-icon > li > a h6 {
    margin-bottom: 3px;
}
.header-style-2 .nav-header {
    color: rgba(var(--white), 1);
    position: relative;
    padding-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-style-2 .nav-header::before {
    left: 0;
    bottom: 0;
    background-image: url(../svg/cloud.svg);
    z-index: -1;
    content: "";
    position: absolute;
    width: 100%;
    height: 76px;
}
body.dark .header-style-2 .nav-header::before {
    background-image: url(../svg/dark-cloud.svg);
}
@media (max-width: 575.98px) {
    .header-style-2 .nav-header::before {
        content: none;
    }
}
@media (max-width: 575.98px) {
    .header-style-2 .nav-header {
        height: 0;
        padding-bottom: 0;
        position: relative;
    }
}
.header-style-2 .nav-header .category-header .category-button {
    color: #fff;
    font-weight: 400;
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    border: none;
    gap: calc(7px + 8 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
    line-height: 1;
    position: relative;
    padding: 15px 11px;
    background-color: rgba(var(--primary-color2), 1);
    border-radius: 5px;
}
.header-style-2 .nav-header .category-header .category-button i {
    margin-top: 0;
    font-size: calc(17px + 3 * (100vw - 320px) / 1600);
}
.header-style-2 .nav-header .category-header .category-button span {
    padding-top: 2px;
}
.header-style-2 .recent-header .product-viwer > li {
    position: relative;
}
.header-style-2 .recent-header .product-viwer > li + li {
    margin-left: 10px;
    padding-left: 10px;
}
[dir="rtl"] .header-style-2 .recent-header .product-viwer > li + li {
    margin-left: unset;
    margin-right: 10px;
    margin-left: unset;
    padding-right: 10px;
}
.header-style-2 .recent-header .product-viwer > li + li::before {
    left: 0;
    background-color: rgba(var(--title-color), 0.3);
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
}
[dir="rtl"] .header-style-2 .recent-header .product-viwer > li + li::before {
    left: unset;
    right: 0;
}
.header-style-2 .recent-header .product-viwer > li > a {
    font-weight: 400;
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(var(--title-color), 1);
}
.header-style-2
    .recent-header
    .product-viwer
    > li.recent-product
    .product-link::after {
    content: "\ea4e";
    position: relative;
    font-family: remixicon;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
}
.header-style-2 .recent-light-header .product-viwer > li {
    position: relative;
}
.header-style-2 .recent-light-header .product-viwer > li + li {
    margin-left: 10px;
    padding-left: 10px;
}
.header-style-2 .recent-light-header .product-viwer > li + li::before {
    left: 0;
    background-color: rgba(var(--title-color), 0.4);
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
}
.header-style-2 .recent-light-header .product-viwer > li > a {
    font-weight: 400;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(var(--title-color), 1);
}
.header-style-2
    .recent-light-header
    .product-viwer
    > li.recent-product
    .product-link {
    color: rgba(var(--title-color), 1);
}
.header-style-2
    .recent-light-header
    .product-viwer
    > li.recent-product
    .product-link::after {
    content: "\ea4e";
    position: relative;
    font-family: remixicon;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
}
.header-style-2
    .recent-light-header
    .product-viwer
    > li.order-tracking
    .product-link {
    color: rgba(var(--title-color), 1);
}

.result-box {
    position: absolute;
    top: 110%;
    left: 0;
    z-index: 1;
    background-color: rgba(var(--white), 1);
    border-radius: 5px;
    border: 1px solid rgba(var(--border-color), 1);
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    transition:
        height 0.15s ease-in-out,
        opacity 0.15s ease-in-out,
        visibility 0.15s ease-in-out;
    width: 100%;
    height: 0;
}
.result-box.show {
    height: auto;
    opacity: 1;
    visibility: visible;
}
.result-box .search-border-box {
    padding: calc(12px + 5 * (100vw - 320px) / 1600)
        calc(12px + 8 * (100vw - 320px) / 1600);
}
.result-box .search-border-box + .search-border-box {
    border-top: 1px solid rgba(var(--border-color), 1);
}
.result-box .search-result-box .result-list-box {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: calc(5px + 4 * (100vw - 320px) / 1600);
}
.result-box .search-result-box .result-list-box li {
    padding: 0;
    display: inline-block;
    width: auto;
}
.result-box .search-result-box .result-list-box li a {
    display: block;
    padding: 11px 12px 8px;
    color: rgba(var(--title-color), 1);
    border-radius: 4px;
    font-weight: 400;
    font-size: calc(13px + 2 * (100vw - 320px) / 1600);
    background-color: rgba(var(--content-color), 0.05);
    outline: 1px solid transparent;
    transition: all 0.15s ease-in-out;
    text-transform: capitalize;
}
@media (max-width: 991.98px) {
    .result-box .search-result-box .result-list-box li a {
        padding: calc(7px + 4 * (100vw - 320px) / 672)
            calc(8px + 4 * (100vw - 320px) / 672)
            calc(7px + 1 * (100vw - 320px) / 672);
    }
}
.result-box .search-result-box .result-list-box li a:hover {
    color: rgba(var(--primary-color), 1);
    background-color: transparent;
    outline: 1px solid rgba(var(--primary-color), 1);
}
.result-box .last-search-box .result-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.result-box .last-search-box .search-list-box {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: calc(5px + 4 * (100vw - 320px) / 1600);
}
.result-box .last-search-box .search-list-box li {
    padding: 0;
}
.result-box .last-search-box .search-list-box li a {
    color: rgba(var(--title-color), 1);
    display: flex;
    align-items: center;
    gap: calc(6px + 2 * (100vw - 320px) / 1600);
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    text-transform: capitalize;
    font-weight: 400;
    transition: color 0.15s ease-in-out;
}
.result-box .last-search-box .search-list-box li a:hover {
    color: rgba(var(--primary-color), 1);
}
.result-box .last-search-box .search-list-box li a:hover::before,
.result-box .last-search-box .search-list-box li a:hover::after {
    color: rgba(var(--primary-color), 1);
}
.result-box .last-search-box .search-list-box li a::before {
    content: "\f20e";
    line-height: 1;
    font-size: calc(17px + 3 * (100vw - 320px) / 1600);
    transition: color 0.15s ease-in-out;
    color: rgba(var(--content-color), 1);
    font-family: remixicon;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
}
.result-box .last-search-box .search-list-box li a::after {
    content: "\eb99";
    line-height: 1;
    font-size: calc(16px + 2 * (100vw - 320px) / 1600);
    transition: color 0.15s ease-in-out;
    color: rgba(var(--content-color), 1);
    margin-left: auto;
    font-family: remixicon;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
}
[dir="rtl"] .result-box .last-search-box .search-list-box li a::after {
    margin-left: unset;
    margin-right: auto;
}
.result-box .last-seen-search-box .search-list-box {
    grid-template-columns: repeat(6, 1fr);
    align-items: center;
    display: grid;
    flex-wrap: wrap;
    gap: calc(12px + 6 * (100vw - 992px) / 928);
}
@media (max-width: 1410px) {
    .result-box .last-seen-search-box .search-list-box {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 1254px) {
    .result-box .last-seen-search-box .search-list-box {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 991.98px) {
    .result-box .last-seen-search-box .search-list-box {
        grid-template-columns: repeat(5, 1fr);
    }
}
@media (max-width: 720.98px) {
    .result-box .last-seen-search-box .search-list-box {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 555.98px) {
    .result-box .last-seen-search-box .search-list-box {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 400.98px) {
    .result-box .last-seen-search-box .search-list-box {
        grid-template-columns: repeat(2, 1fr);
    }
}
.result-box .last-seen-search-box .search-list-box li {
    padding: 0;
    width: auto;
}
.result-box .last-seen-search-box .search-list-box li a {
    height: 120px;
    background-color: rgba(var(--content-color), 0.05);
    padding: 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 991.98px) {
    .result-box .last-seen-search-box .search-list-box li a {
        height: calc(80px + 40 * (100vw - 320px) / 672);
    }
}
.result-box .last-seen-search-box .search-list-box li a:hover img {
    transform: rotate(3deg) scale(1.05);
}
.result-box .last-seen-search-box .search-list-box li a img {
    transition: transform 0.3s ease-in-out;
}
.result-box li {
    list-style: none;
    padding: 8px 12px;
    width: 100%;
    cursor: default;
}

.searchInput.active .result-box li {
    display: block;
}

.search-overlay {
    background-color: rgba(var(--title-color), 0.15);
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    width: 100vw;
    height: 100vh;
}
body.dark .search-overlay {
    background-color: rgba(19, 25, 33, 0.46);
}
.search-overlay.show {
    visibility: visible;
    opacity: 1;
}
@media (max-width: 991.98px) {
    .search-overlay.show {
        opacity: 0;
        visibility: hidden;
    }
}

/* Mixin Files */
/**=====================
    3.6 Home CSS
==========================**/
.home-section {
    padding-top: calc(8px + 12 * (100vw - 320px) / 1600);
}
@media (min-width: 1400px) {
    .home-section .custom-home-row .custom-xxl-3 {
        width: 23.55%;
    }
}
@media (min-width: 1400px) {
    .home-section .custom-home-row .custom-xxl-9 {
        width: 76.45%;
    }
}

@media (max-width: 767.98px) {
    .baby-home-section .banner-box {
        background: none !important;
    }
    .baby-home-section .banner-box img {
        display: block !important;
    }
    .baby-home-section .banner-box::before {
        content: none;
    }
}
@media (max-width: 575.98px) {
    .baby-home-section .right-banner-1 .banner-box img,
    .baby-home-section .right-banner-2 .banner-box img {
        aspect-ratio: 23/20;
    }
}

/**=====================
    3.6 Mobile Menu CSS
==========================**/
.mobile-menu {
    position: fixed;
    bottom: 0;
    padding: 15px 10px 10px;
    width: 100%;
    background-color: rgba(var(--white), 1);
    z-index: 4;
    overflow: hidden;
    box-shadow: 0 -3px 10px 0px rgba(var(--black), 0.08);
}
.mobile-menu ul {
    display: flex;
    width: 100%;
    margin: 0 auto;
}
.mobile-menu ul li {
    width: 100%;
    text-align: center;
}
.mobile-menu ul li.active {
    transition: 0.3s ease;
    position: relative;
}
.mobile-menu ul li.active i {
    color: rgba(var(--primary-color), 1);
}
.mobile-menu ul li.active span {
    color: rgba(var(--primary-color), 1);
}
.mobile-menu ul li a {
    display: block;
    color: rgba(var(--title-color), 1);
}
.mobile-menu ul li a.active,
.mobile-menu ul li a:hover {
    color: rgba(var(--title-color), 1);
}
.mobile-menu ul li a i {
    display: block;
    margin: 0 auto;
    font-size: calc(20px + 2 * (100vw - 320px) / 1600);
    color: rgba(var(--content-color), 1);
    line-height: 1;
}
.mobile-menu ul li a span {
    display: inline-block;
    color: rgba(var(--content-color), 0.8);
    line-height: 1;
    margin-top: 5px;
}

/* Mixin Files */
/**=====================
    3.7 Nav CSS
==========================**/
header .main-nav {
    display: flex;
    align-items: center;
}
header .icon-box {
    display: inline-block;
    margin-right: 10px;
}
header .dropdown-header {
    display: block;
    padding: 8px 20px;
    margin-bottom: 0;
    font-size: 14px;
    white-space: nowrap;
}
header .navbar-nav {
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
header .navbar-nav .nav-item {
    margin-bottom: 0;
}
header .navbar-nav .nav-item .new-pages .new-dropdown {
    position: absolute;
    top: -7px;
    right: 3px;
    font-size: 10px;
    padding: 1px 4px;
    color: rgba(var(--white), 1);
    font-weight: 600;
    border-top-left-radius: 5px;
    border-bottom-right-radius: 5px;
}
header .navbar-nav .nav-item:hover {
    color: rgba(var(--white), 1);
}
header .navbar-nav .dropdown-menu {
    min-width: 200px;
    margin: 0;
    margin-top: -8px;
    background-color: rgba(var(--white), 1);
    border-color: transparent;
    box-shadow: none;
    border: 0;
    position: static;
    transition: all 0.5s ease;
    opacity: 0;
    visibility: hidden;
    display: block !important;
    transform: translateY(15px);
}
header .navbar-nav .dropdown-menu .sub-dropdown-hover {
    position: relative;
}
@media (max-width: 1199.98px) {
    header
        .navbar-nav
        .dropdown-menu
        .sub-dropdown-hover
        + .sub-dropdown-hover {
        padding-block: 6px !important;
    }
}
header .navbar-nav .dropdown-menu .sub-dropdown-hover > a {
    display: block;
    position: relative;
}
@media (max-width: 1199.98px) {
    header .navbar-nav .dropdown-menu .sub-dropdown-hover > a {
        font-size: 15px !important;
        color: rgba(var(--title-color), 1) !important;
        padding: 4px 8px 0 5px !important;
        display: flex !important;
        flex-direction: row-reverse !important;
        align-items: center !important;
        justify-content: flex-end !important;
    }
    header .navbar-nav .dropdown-menu .sub-dropdown-hover > a.show ~ .sub-menu {
        display: block;
    }
    header .navbar-nav .dropdown-menu .sub-dropdown-hover > a:before {
        margin-left: auto;
        transform: unset !important;
        inset: unset !important;
        background-color: transparent !important;
        content: "\ea4e" !important;
        position: relative !important;
        font-family: remixicon;
        font-style: normal;
        -webkit-font-smoothing: antialiased;
        width: auto !important;
        height: auto !important;
    }
    [dir="rtl"]
        header
        .navbar-nav
        .dropdown-menu
        .sub-dropdown-hover
        > a:before {
        margin-left: unset;
        margin-right: auto;
    }
}
header .navbar-nav .dropdown-menu .sub-dropdown-hover > a .new-text i {
    font-size: 12px;
    margin-left: 4px;
    color: rgba(var(--white), 1);
}
header .navbar-nav .dropdown-menu .sub-dropdown-hover > a::before {
    right: 0;
    content: "\ea6e";
    position: absolute;
    font-family: remixicon;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    top: 50%;
    transform: translateY(-50%);
}
[dir="rtl"] header .navbar-nav .dropdown-menu .sub-dropdown-hover > a::before {
    right: unset;
    left: 0;
    transform: scaleX(-1) translateY(-50%);
}
header .navbar-nav .dropdown-menu .sub-dropdown-hover:hover .sub-menu {
    left: calc(100% + 22px);
    visibility: visible;
    opacity: 1;
}
@media (max-width: 1199.98px) {
    header .navbar-nav .dropdown-menu .sub-dropdown-hover:hover .sub-menu {
        inset: unset;
    }
}
[dir="rtl"]
    header
    .navbar-nav
    .dropdown-menu
    .sub-dropdown-hover:hover
    .sub-menu {
    left: unset;
    right: calc(100% + 22px);
}
@media (max-width: 1199.98px) {
    [dir="rtl"]
        header
        .navbar-nav
        .dropdown-menu
        .sub-dropdown-hover:hover
        .sub-menu {
        inset: unset;
    }
}
header .navbar-nav .dropdown-menu .sub-dropdown-hover .sub-menu {
    position: absolute;
    top: -17px;
    left: 123%;
    min-width: 200px;
    background-color: rgba(var(--white), 1);
    border-color: transparent;
    padding: 20px;
    border-radius: 10px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.15s ease-in-out;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
@media (max-width: 1199.98px) {
    header .navbar-nav .dropdown-menu .sub-dropdown-hover .sub-menu {
        position: relative;
        inset: unset;
        opacity: 1;
        visibility: visible;
        padding: 4px 0 0;
        min-width: unset;
        gap: calc(5px + 5 * (100vw - 320px) / 880);
        display: none;
    }
}
[dir="rtl"] header .navbar-nav .dropdown-menu .sub-dropdown-hover .sub-menu {
    left: unset;
    right: 123%;
}
@media (max-width: 1199.98px) {
    [dir="rtl"]
        header
        .navbar-nav
        .dropdown-menu
        .sub-dropdown-hover
        .sub-menu {
        inset: unset;
    }
}
header .navbar-nav .dropdown-menu .sub-dropdown-hover .sub-menu li a {
    padding: 0;
    font-weight: 400;
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    position: relative;
    transition: all 0.15s ease-in-out;
    z-index: 0;
    color: rgba(var(--title-color), 1);
    display: block;
    text-transform: capitalize;
}
@media (max-width: 1199.98px) {
    header .navbar-nav .dropdown-menu .sub-dropdown-hover .sub-menu li a {
        flex-direction: row-reverse;
        gap: 8px;
        text-transform: capitalize;
        color: rgba(var(--content-color), 1);
        font-size: 14px;
        padding: 6px 9px;
        position: relative;
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
}
header .navbar-nav .dropdown-menu .sub-dropdown-hover .sub-menu li a:hover {
    letter-spacing: 0.03em;
}
@media (max-width: 1199.98px) {
    header .navbar-nav .dropdown-menu .sub-dropdown-hover .sub-menu li a:hover {
        letter-spacing: unset;
    }
}
header
    .navbar-nav
    .dropdown-menu
    .sub-dropdown-hover
    .sub-menu
    li
    a:hover::after {
    width: 40%;
}
@media (max-width: 1199.98px) {
    header
        .navbar-nav
        .dropdown-menu
        .sub-dropdown-hover
        .sub-menu
        li
        a:hover::after {
        width: 4px;
    }
}
header .navbar-nav .dropdown-menu .sub-dropdown-hover .sub-menu li a::after {
    bottom: -1px;
    left: 0;
    background-color: rgba(var(--primary-color), 0.5);
    border-radius: 100px;
    transition: all 0.15s ease-in-out;
    z-index: -1;
    content: "";
    position: absolute;
    width: 0;
    height: 4px;
}
@media (max-width: 1199.98px) {
    header
        .navbar-nav
        .dropdown-menu
        .sub-dropdown-hover
        .sub-menu
        li
        a::after {
        background-color: rgba(var(--content-color), 1);
        position: relative;
        inset: unset;
        display: block;
        width: 4px;
        height: 4px;
    }
}
[dir="rtl"]
    header
    .navbar-nav
    .dropdown-menu
    .sub-dropdown-hover
    .sub-menu
    li
    a::after {
    left: unset;
    right: 0;
}
header .navbar-nav .dropdown-menu .dropdown {
    margin-right: 20px;
    margin-left: 20px;
}
header .navbar-nav .dropdown-menu .dropdown:last-child {
    margin-bottom: 12px;
}
header .navbar-nav .dropdown-menu .dropdown-menu {
    display: block;
    padding-right: 16px;
    padding-left: 16px;
}
header .navbar-nav .demo-list {
    gap: calc(8px + 10 * (100vw - 1198px) / 722);
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 1199.98px) {
    header .navbar-nav .demo-list {
        gap: 12px;
    }
}
header .navbar-nav .demo-list li {
    text-align: center;
    width: calc(25% - (8.4px + 6 * (100vw - 1198px) / 722)) !important;
}
@media (max-width: 1199.98px) {
    header .navbar-nav .demo-list li {
        width: 100% !important;
    }
}
header .navbar-nav .demo-list li img {
    box-shadow: 7px 5px 10px rgba(var(--border-color), 0.549);
    border-radius: calc(6px + 2 * (100vw - 320px) / 1600);
    border: 1px solid rgba(var(--border-color), 1);
}
@media (max-width: 1199.98px) {
    header .navbar-nav .demo-list li img {
        object-fit: cover;
        object-position: top;
        width: 100%;
        height: calc(140px + 23 * (100vw - 320px) / 880);
    }
}
header .navbar-nav .demo-list li h4 {
    font-size: calc(15px + 1 * (100vw - 320px) / 1600);
    margin-top: calc(8px + 2 * (100vw - 320px) / 1600);
    letter-spacing: 0.3px;
    color: rgba(var(--title-color), 1);
}
header .navbar-nav .dropdown-image {
    background-image: none;
}
header .navbar-nav .dropdown-image::after {
    content: none;
}
header .navbar-nav .dropdown-image .dropdown-column {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
}
header .navbar-nav .dropdown-image .dropdown-column .dropdown-item {
    margin: 0 !important;
    text-align: center;
}
header .navbar-nav .dropdown-image .dropdown-column .dropdown-item::after {
    content: none;
}
header .navbar-nav .dropdown-image .dropdown-column .dropdown-item:hover img {
    box-shadow: 5px 20px 40px 0 rgba(var(--title-color), 0.07);
    transform: translateY(-4px);
}
header .navbar-nav .dropdown-image .dropdown-column .dropdown-item:hover span {
    color: rgba(var(--white), 1);
    font-weight: 600;
}
header
    .navbar-nav
    .dropdown-image
    .dropdown-column
    .dropdown-item:hover
    span::after {
    width: 100%;
}
header .navbar-nav .dropdown-image .dropdown-column .dropdown-item img {
    width: 100%;
    box-shadow: 5px 20px 40px 0 rgba(var(--title-color), 0.04);
    transition: all 0.15s ease-in-out;
    display: block;
}
header .navbar-nav .dropdown-image .dropdown-column .dropdown-item span {
    display: inline-block;
    margin-top: 14px;
    text-align: center;
    font-size: calc(14px + 2 * (100vw - 1200px) / 720);
    margin-bottom: -6px;
    position: relative;
    z-index: 0;
}
header .navbar-nav .dropdown-image .dropdown-column .dropdown-item span::after {
    left: 0;
    bottom: 2px;
    background-color: rgba(var(--white), 1);
    opacity: 0.3;
    border-radius: 50px;
    transition: all 0.15s ease-in-out;
    z-index: -1;
    content: "";
    position: absolute;
    width: 0;
    height: 4px;
}
header .navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0;
}
header .nav-left-align .navbar-nav .dropdown-menu-2 {
    left: 0;
    transform: unset;
}
header .navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
    margin-right: 16px;
    font-size: calc(21px + 0.45vw);
    white-space: nowrap;
    display: inline-block;
    font-weight: 500;
}
header .navbar-brand:hover {
    text-decoration: none;
}
header .navbar-brand:focus {
    text-decoration: none;
}
header .navbar.navbar-expand-xl .navbar-nav {
    position: unset;
    display: flex;
    align-items: center;
    gap: calc(22px + 18 * (100vw - 1200px) / 720);
}
header .navbar.navbar-expand-xl .navbar-nav .nav-link {
    padding: 0;
    font-size: 16px;
    font-weight: normal;
    box-shadow: none;
    position: relative;
    padding-block: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
body.dark header .navbar.navbar-expand-xl .navbar-nav .nav-link {
    color: #fff;
}
header .navbar.navbar-expand-xl .navbar-nav .nav-link .icli {
    margin-left: 10px;
}
header .navbar.navbar-expand-xl .navbar-nav .nav-link .label-menu {
    position: absolute;
    top: -10px;
    left: 84%;
    transform: translateX(-50%);
    font-size: 8px;
    display: inline-block;
    text-transform: uppercase;
    line-height: 16px;
    padding: 0 8px;
    font-weight: 600;
    color: rgba(var(--white), 1);
    background-color: rgba(var(--white), 1);
    border-radius: 50px;
}
@media (max-width: 1199.98px) {
    header .navbar.navbar-expand-xl .navbar-nav .nav-link .label-menu {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        margin-left: 10px;
        margin-right: auto;
        border-radius: 3px;
    }
}
header .navbar.navbar-expand-xl .navbar-nav .nav-link .label-menu::before {
    display: inline-block;
    top: 100%;
    left: 10px;
    border-right: 4px solid transparent;
    border-top: 4px solid var(--primary-color);
    content: "";
    position: absolute;
    width: 0;
    height: 0;
}
@media (max-width: 1199.98px) {
    header .navbar.navbar-expand-xl .navbar-nav .nav-link .label-menu::before {
        content: none;
    }
}
header .navbar.navbar-expand-xl .navbar-nav .nav-link-2::before {
    content: none;
}
header .navbar-text {
    padding-top: 9px;
    padding-bottom: 9px;
}
header .navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
}
header .navbar-toggler {
    background-color: transparent;
    transition: box-shadow 0.15s ease-in-out;
    padding: 12px;
    font-size: 18px;
    margin-right: 10px;
    padding: 0;
}
[dir="rtl"] header .navbar-toggler {
    margin-right: unset;
    margin-left: 10px;
}
header .navbar-toggler:focus-visible {
    outline: none;
}
header .navbar-toggler:focus {
    box-shadow: none;
}
header .navbar-toggler-icon {
    font-size: 20px;
    color: rgba(var(--white), 1);
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
body.dark header .navbar-toggler-icon {
    color: #fff;
}
@media (max-width: 767.98px) {
    header .navbar-toggler-icon {
        margin-right: 0;
    }
}
header .navbar-expand {
    flex-wrap: nowrap;
    justify-content: flex-start;
}
header .navbar-expand .navbar-nav {
    flex-direction: row;
}
header .navbar-expand .navbar-nav .dropdown-menu {
    position: absolute;
    left: 26px;
    top: 30px;
    box-shadow: 0px 3px 4px rgba(var(--black), 0.14);
}
header .navbar-expand .navbar-collapse {
    display: flex;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
}
header .navbar-expand .navbar-toggler {
    display: none;
}
header .navbar-light .navbar-brand {
    color: rgba(var(--title-color), 1);
}
header .navbar-light .navbar-brand:hover {
    color: rgba(var(--title-color), 1);
}
header .navbar-light .navbar-brand:focus {
    color: rgba(var(--title-color), 1);
}
header .navbar-light .navbar-nav .nav-link {
    color: rgba(var(--white), 1);
}
header .navbar-light .navbar-nav .nav-link:hover {
    color: rgba(var(--white), 1);
}
header .navbar-light .navbar-nav .nav-link:focus {
    color: rgba(var(--white), 1);
}
header .navbar-light .navbar-nav .nav-link.active {
    color: rgba(var(--white), 1);
}
header .navbar-light .navbar-nav-dark .nav-item .nav-link {
    color: rgba(var(--title-color), 1);
}
header .navbar-light .navbar-nav-dark .nav-item .nav-link::after {
    color: rgba(var(--title-color), 1);
}
header .navbar-light .navbar-nav-dark .nav-item .nav-link:hover {
    color: rgba(var(--title-color), 1);
}
header .navbar-light .navbar-nav-dark .nav-item .nav-link:focus {
    color: rgba(var(--title-color), 1);
}
header .navbar-light .navbar-nav-dark .nav-item .nav-link.active {
    color: rgba(var(--title-color), 1);
}
header .navbar-light .navbar-toggler {
    color: rgba(var(--content-color), 1);
    border-color: transparent;
}
header .navbar-light .navbar-text {
    color: rgba(var(--content-color), 1);
}
header .navbar-light .navbar-text a {
    color: rgba(var(--white), 1);
}
header .navbar-light .navbar-text a:hover {
    color: rgba(var(--white), 1);
}
header .navbar-light .navbar-text a:focus {
    color: rgba(var(--white), 1);
}
header .navbar {
    position: unset;
    display: inline-block;
    padding: 0;
}
header .navbar-shadow {
    box-shadow: 0 2px 10px -3px rgba(var(--title-color), 0.1);
}
header .offcanvas {
    position: fixed;
    bottom: 0;
    z-index: 1080;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    visibility: hidden;
    background-color: rgba(var(--white), 1);
    background-clip: padding-box;
    outline: 0;
    box-shadow:
        -1px 0 10px 0 rgba(var(--title-color), 0.07),
        5px 20px 40px 0 rgba(var(--title-color), 0.04);
    transition: transform 0.3s ease-in-out;
    will-change: transform, box-shadow;
    transition:
        transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        box-shadow 0.3s ease;
    visibility: visible !important;
}
header .offcanvas:not(.offcanvas-end):not(.offcanvas-bottom) {
    will-change: unset;
    transition: all 0.15s linear;
    top: 0;
    left: 0;
    box-shadow: none;
}
[dir="rtl"] header .offcanvas:not(.offcanvas-end):not(.offcanvas-bottom) {
    left: unset;
    right: 0;
}
@media (max-width: 1199.98px) {
    header .offcanvas:not(.offcanvas-end):not(.offcanvas-bottom) {
        transform: translateX(-101%);
        z-index: 13;
        width: calc(310px + 40 * (100vw - 320px) / 880);
        height: 100vh;
    }
    [dir="rtl"] header .offcanvas:not(.offcanvas-end):not(.offcanvas-bottom) {
        transform: translateX(101%);
    }
}
header .offcanvas.show {
    transform: none !important;
    box-shadow:
        -1px 0 10px 0 rgba(var(--title-color), 0.07),
        5px 20px 40px 0 rgba(var(--title-color), 0.04) !important;
}
header .offcanvas-header {
    flex-shrink: 0;
    padding: 20px 24px;
    z-index: 1;
    padding: calc(16px + 10 * (100vw - 320px) / 1600)
        calc(19px + 13 * (100vw - 320px) / 1600) 16px;
    background-color: #f2f3f8;
    border-bottom: 1px solid rgba(var(--content-color), 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
body.dark header .offcanvas-header {
    background-color: rgba(var(--theme-blue-dark), 1);
    box-shadow: none;
    border-color: rgba(var(--border-color), 1);
}
header .offcanvas-header .btn-close {
    padding: 0;
    margin: 0;
    font-size: 20px;
    line-height: 1;
    background: unset;
    opacity: 1;
    color: rgba(var(--title-color), 1);
    width: unset;
    height: unset;
}
header .offcanvas-header h5 {
    color: rgba(var(--title-color), 1);
    font-weight: 500;
    line-height: 1;
    font-size: calc(17px + 5 * (100vw - 320px) / 1600);
}
header .offcanvas-title {
    margin-bottom: 0;
    line-height: initial;
}
header .offcanvas-body {
    flex-grow: 1;
    padding: 20px 24px;
    overflow-y: auto;
    height: 100%;
}
header .offcanvas-body::-webkit-scrollbar {
    width: 0;
    background-color: transparent;
    opacity: 0;
}
header .offcanvas-body::-webkit-scrollbar-thumb {
    border-radius: 4px;
}
header .offcanvas-body > .simplebar-track {
    display: block;
    background-color: transparent;
}
header .offcanvas-body .simplebar-vertical {
    margin-right: 3px;
}
@media (max-width: 1199.98px) {
    header .offcanvas-body {
        padding: calc(13px + 7 * (100vw - 320px) / 879)
            calc(15px + 9 * (100vw - 320px) / 879);
    }
}
header .offcanvas-end {
    top: 0;
    right: 0;
    width: 352px;
    border-left: 0 solid transparent;
    transform: translateX(100%);
}
header .offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: 30vh;
    max-height: 100%;
    border-bottom: 0 solid transparent;
    transform: translateY(-100%);
}
header .offcanvas-bottom {
    right: 0;
    left: 0;
    height: 30vh;
    max-height: 100%;
    border-top: 0 solid transparent;
    transform: translateY(100%);
}
header .offcanvas-footer {
    flex-shrink: 0;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .dropdown {
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
    border-left: 0;
}
header .dropdown .dropdown-toggle {
    position: relative;
    padding-right: 26px;
}
header .dropdown .dropdown-toggle::after {
    border: none;
    color: rgba(var(--white), 1);
    margin: 0;
    vertical-align: unset;
    margin-left: 5px;
    line-height: 1;
    content: "\ea4e";
    position: relative;
    font-family: remixicon;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    width: unset;
    height: unset;
}
body.dark header .dropdown .dropdown-toggle::after {
    color: #fff;
}
[dir="rtl"] header .dropdown .dropdown-toggle::after {
    margin-left: unset;
    margin-right: 5px;
}
@media (max-width: 1199.98px) {
    header .dropdown .dropdown-toggle::after {
        color: rgba(var(--title-color), 1);
    }
}
header .dropdown:last-child {
    margin-bottom: 0;
}
header .sidebar-toggle {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: 0;
    z-index: 1025;
}
header .hot-deal-box {
    color: rgb(226, 23, 25);
    font-weight: 600;
    font-size: 16px;
    margin-left: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
header .hot-deal-box img {
    margin-right: 7px;
}
header .hot-deal-box span {
    font-size: 16px;
    font-weight: 500;
}
header .navbar-expand-xl .offcanvas {
    -webkit-box-flex: 1;
}
@media (max-width: 1199.98px) {
    header .navbar-expand-xl .offcanvas {
        z-index: 4;
        -webkit-box-flex: 2;
    }
}
header .navbar-expand-xl .menu-nav-tabs {
    border: none;
    height: 298px;
    overflow: auto;
    padding-right: 8px;
}
[dir="rtl"] header .navbar-expand-xl .menu-nav-tabs {
    padding-right: unset;
    padding-left: 8px;
}
@media (max-width: 1199.98px) {
    header .navbar-expand-xl .menu-nav-tabs {
        max-height: 298px;
        height: auto;
        padding-right: unset;
        padding-left: 4px;
    }
    [dir="rtl"] header .navbar-expand-xl .menu-nav-tabs {
        padding-left: unset;
        padding-right: 4px;
    }
}
header .navbar-expand-xl .menu-nav-tabs::-webkit-scrollbar-track {
    border-radius: 100px;
    background-color: #f2f3f7;
}
body.dark header .navbar-expand-xl .menu-nav-tabs::-webkit-scrollbar-track {
    background-color: #374658;
}
header .navbar-expand-xl .menu-nav-tabs::-webkit-scrollbar {
    width: 4px;
    background-color: #f2f3f7;
}
body.dark header .navbar-expand-xl .menu-nav-tabs::-webkit-scrollbar {
    background-color: #1a232e;
}
header .navbar-expand-xl .menu-nav-tabs::-webkit-scrollbar-thumb {
    border-radius: 100px;
    background-color: rgba(var(--theme-blue-dark), 0.3);
}
header .navbar-expand-xl .menu-nav-tabs .nav-item + .nav-item .nav-link {
    padding-top: calc(10px + 2 * (100vw - 320px) / 1600);
    margin-top: calc(10px + 2 * (100vw - 320px) / 1600);
    border-top: 1px solid rgba(var(--border-color), 1);
}
@media (max-width: 1199.98px) {
    header .navbar-expand-xl .menu-nav-tabs .nav-item + .nav-item .nav-link {
        padding-top: 9px;
        margin-top: 0;
        border-top: none;
    }
}
header .navbar-expand-xl .menu-nav-tabs .nav-item .nav-link {
    width: 100%;
    color: rgba(var(--title-color), 1);
    justify-content: unset;
    text-align: unset;
    padding: 0;
    margin: 0;
    gap: 10px;
    border-radius: 0;
    background-color: transparent;
    border: none;
}
@media (max-width: 1199.98px) {
    header .navbar-expand-xl .menu-nav-tabs .nav-item .nav-link {
        justify-content: unset !important;
        text-transform: capitalize;
        font-size: 14px;
        padding: 6px calc(14px + 2 * (100vw - 320px) / 880) !important;
        position: relative;
        line-height: 1.2;
        color: rgba(var(--content-color), 1) !important;
    }
    header .navbar-expand-xl .menu-nav-tabs .nav-item .nav-link::before {
        left: 4px;
        border-radius: 100%;
        background-color: rgba(var(--content-color), 1);
        top: 50%;
        transform: translateY(-50%);
        content: "";
        position: absolute;
        width: 4px;
        height: 4px;
    }
    [dir="rtl"]
        header
        .navbar-expand-xl
        .menu-nav-tabs
        .nav-item
        .nav-link::before {
        left: unset;
        right: 4px;
    }
}
header .navbar-expand-xl .menu-nav-tabs .nav-item .nav-link.active {
    color: rgba(var(--primary-color), 1);
}
body.dark header .navbar-expand-xl .menu-nav-tabs .nav-item .nav-link.active {
    color: rgba(var(--primary-color), 1);
}
@media (max-width: 1199.98px) {
    header .navbar-expand-xl .menu-nav-tabs .nav-item .nav-link.active {
        color: rgba(var(--content-color), 1) !important;
    }
}
header .navbar-expand-xl .menu-nav-tabs .nav-item .nav-link i {
    line-height: 1.3;
    margin-top: -3px;
}
@media (max-width: 1199.98px) {
    header .navbar-expand-xl .menu-nav-tabs .nav-item .nav-link i {
        display: none;
    }
}
header .navbar-expand-xl .menu-nav-tabs .nav-item .nav-link h5 {
    word-break: break-all;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
@media (max-width: 1199.98px) {
    header .navbar-expand-xl .menu-nav-tabs .nav-item .nav-link h5 {
        color: rgba(var(--content-color), 1);
        font-weight: 400;
        display: flex;
        align-items: center;
        gap: 5px;
    }
    header .navbar-expand-xl .menu-nav-tabs .nav-item .nav-link h5::before {
        content: "";
        display: block;
        background-color: rgba(var(--content-color), 1);
        border-radius: 100%;
        width: 4px;
        height: 4px;
    }
}
header .navbar-expand-xl .menu-nav-tabs .nav-item .nav-link .arrow {
    margin-left: auto;
}
[dir="rtl"] header .navbar-expand-xl .menu-nav-tabs .nav-item .nav-link .arrow {
    margin-left: unset;
    margin-right: auto;
    transform: scaleX(-1);
}
@media (max-width: 1199.98px) {
    header .navbar-expand-xl .menu-nav-tabs .nav-item .nav-link .arrow {
        display: none;
    }
}
header .productMain .product-image {
    height: 176px;
}
header .productMain .productImage {
    aspect-ratio: 36/25;
}
header .productMain .productName {
    word-break: break-all;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
header .product-white-box {
    background-color: rgba(var(--base-gray), 0.3);
    padding-bottom: calc(10px + 5 * (100vw - 320px) / 1600);
}
header .product-white-box:after {
    top: 0;
    left: 0;
    border-radius: 4px;
    z-index: -1;
    background-color: rgba(var(--white), 1);
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
}
header .product-white-box .product-image {
    height: unset;
}
header .product-white-box .product-image img {
    height: 126px;
}
header .product-white-box .product-image .product-option li {
    width: auto;
}
header .product-white-box .product-content .name {
    height: unset;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
@media (prefers-reduced-motion: reduce) {
    header .navbar-toggler {
        transition: none;
    }
    header .offcanvas {
        transition: none;
    }
}
@media (min-width: 1200px) {
    header .navbar-expand-xl.navbar .offcanvas-body {
        overflow: visible;
    }
    header .navbar-expand-xl .navbar-nav {
        position: relative;
        padding-top: 0;
    }
    header .navbar-expand-xl .navbar-nav .nav-item {
        border: 0;
    }
    header .navbar-expand-xl .navbar-nav .nav-item:hover > .nav-link {
        color: rgba(var(--primary-color), 1);
    }
    body.dark header .navbar-expand-xl .navbar-nav .nav-item:hover > .nav-link {
        color: rgba(var(--primary-color), 1);
    }
    header .navbar-expand-xl .navbar-nav .nav-item:hover > .nav-link::after {
        color: rgba(var(--primary-color), 1);
    }
    header .navbar-expand-xl .navbar-nav .nav-item.mega-dropdown {
        position: unset;
    }
    header .navbar-expand-xl .navbar-nav .nav-item.mega-dropdown .mega-menu {
        width: calc(100vw - (30px + 290 * (100vw - 320px) / 1600));
        inset: unset;
        transform: translateX(-50%) translateY(15px);
        left: 50%;
    }
    header
        .navbar-expand-xl
        .navbar-nav
        .nav-item.mega-dropdown:hover
        .mega-menu {
        transform: translateX(-50%) translateY(0);
    }
    header .navbar-expand-xl .navbar-nav .nav-item .menu-banner img {
        object-fit: cover;
        width: 100%;
        height: 120px;
    }
    header .navbar-expand-xl .dropdown-menu {
        margin-top: 0;
        box-shadow:
            -1px 0 10px 0 rgba(var(--title-color), 0.07),
            5px 20px 40px 0 rgba(var(--title-color), 0.04);
        background-color: rgba(var(--white), 1);
        border-color: rgba(var(--white), 1);
        padding: calc(12px + 8 * (100vw - 1200px) / 720);
        border-radius: 10px;
    }
    header .navbar-expand-xl .dropdown-menu li {
        display: block;
        width: 100%;
    }
    header .navbar-expand-xl .dropdown-menu li:first-child .dropdown-item {
        margin: 0;
        margin-top: -3px;
    }
    header .navbar-expand-xl .dropdown-menu li:last-child .dropdown-item {
        margin-bottom: -4px;
    }
    header .navbar-expand-xl .dropdown-menu .dropdown-item {
        color: rgba(var(--title-color), 1);
        padding: 0;
        margin: 10px 0 0 0;
        font-size: 16px;
        position: relative;
        transition: all 0.15s ease-in-out;
        z-index: 0;
        text-transform: capitalize;
    }
    header .navbar-expand-xl .dropdown-menu .dropdown-item:hover::after {
        width: 40%;
    }
    header .navbar-expand-xl .dropdown-menu .dropdown-item:active {
        color: rgba(var(--title-color), 1);
    }
    header .navbar-expand-xl .dropdown-menu .dropdown-item::after {
        bottom: -1px;
        left: 0;
        background-color: rgba(var(--primary-color), 0.5);
        border-radius: 50px;
        transition: all 0.15s ease-in-out;
        z-index: -1;
        content: "";
        position: absolute;
        width: 0;
        height: 4px;
    }
    [dir="rtl"] header .navbar-expand-xl .dropdown-menu .dropdown-item::after {
        left: unset;
        right: 0;
    }
    header .navbar-expand-xl .dropdown-menu .dropdown-item:focus {
        background-color: transparent;
    }
    header .navbar-expand-xl .dropdown-menu .dropdown-item:hover {
        background-color: transparent;
        letter-spacing: 0.03em;
    }
    header .navbar-expand-xl .dropdown-menu .menu-title {
        margin-bottom: calc(5px + 11 * (100vw - 1198px) / 722);
        padding-bottom: calc(5px + 5 * (100vw - 1198px) / 722);
        border-bottom: 1px solid rgba(var(--border-color), 1);
    }
    header .navbar-expand-xl .dropdown-menu .menu-title h3 {
        font-size: calc(15px + 3 * (100vw - 1198px) / 722);
    }
    header .navbar-expand-xl .dropdown-menu .product-box {
        padding: 15px;
    }
    header .navbar-expand-xl .dropdown-menu .dropdown-menu {
        top: 0;
        right: auto;
        left: 100%;
        width: auto;
        margin-top: 0;
        margin-inline: 0px;
        padding-inline: 0;
        border-radius: 5px;
        background-color: rgba(var(--white), 1);
    }
    header .navbar-expand-xl .dropdown-menu .rating li {
        display: inline-block;
        width: auto;
    }
    header .navbar-expand-xl .dropdown-menu.show {
        display: none;
    }
    header .navbar-expand-xl .dropdown-menu.dropdown-menu-end {
        right: 0;
        left: auto;
    }
    header .navbar-expand-xl .dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        display: block !important;
    }
    header .navbar-expand-xl .dropdown:hover .dropdown-menu-2 {
        transform: translateX(-50%) translateY(0);
        display: block !important;
    }
    header .navbar-expand-xl .dropdown:hover .dropdown-menu-center {
        transform: translateX(0%) translateY(0);
    }
    header .navbar-expand-xl .dropdown:hover .dropdown-menu-left {
        transform: translateX(0%) translateY(0);
    }
    header .navbar-expand-xl .dropdown-mega {
        position: static;
    }
    header .navbar-expand-xl .dropdown-mega > .dropdown-menu {
        align-items: flex-start;
        justify-content: space-between;
        flex-wrap: nowrap;
    }
    header .navbar-expand-xl .dropdown-mega:hover > .dropdown-menu {
        display: flex;
    }
    header .navbar-expand-xl .dropdown-mega .dropdown-menu .dropdown-item {
        padding: 0;
        margin: 10px 0px 0 0;
    }
    header
        .navbar-expand-xl
        .dropdown-mega
        .dropdown-column.dropdown-column-img {
        width: 200px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        margin: 0;
    }
    header .navbar-expand-xl .dropdown-mega .dropdown-column .dropdown-header {
        padding: 0;
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 14px;
        color: rgba(var(--title-color), 1);
    }
    header .offcanvas-collapse {
        display: block;
        position: static;
        inset: auto !important;
        max-width: 100% !important;
        height: auto !important;
        transform: none !important;
        background-color: transparent;
        box-shadow: none;
        width: auto !important;
        height: auto !important;
    }
    header .offcanvas-collapse .offcanvas-header {
        display: none;
    }
    header .offcanvas-collapse .offcanvas-footer {
        display: none;
    }
    header .offcanvas-collapse .offcanvas-body {
        padding: 0;
        overflow: initial;
    }
}
@media (max-width: 1199.98px) {
    header .offcanvas-collapse .offcanvas-body .navbar-nav {
        padding-top: 0;
        gap: 10px;
    }
    header .offcanvas-collapse .offcanvas-body .navbar-nav .nav-item {
        border-top: 0;
        width: 100%;
    }
    header .offcanvas-collapse .offcanvas-body .navbar-nav .nav-link {
        color: rgba(var(--title-color), 1);
        font-weight: 500;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    header .offcanvas-collapse .offcanvas-body .navbar-nav .nav-link:hover {
        color: rgba(var(--title-color), 1);
        background-color: transparent;
    }
    header .offcanvas-collapse .offcanvas-body .navbar-nav .nav-link.active {
        color: rgba(var(--white), 1);
        background-color: transparent;
    }
    header .offcanvas-collapse .offcanvas-body .navbar-nav .nav-link.disabled {
        color: rgba(var(--content-color), 1);
    }
    header .offcanvas-collapse .offcanvas-body .navbar-nav .show > .nav-link {
        color: rgba(var(--white), 1);
    }
    header .offcanvas-collapse .offcanvas-body .navbar-nav .active > .nav-link {
        color: rgba(var(--white), 1);
    }
    header .offcanvas-collapse .offcanvas-body .navbar-nav .dropdown-menu li {
        display: block;
        width: 100%;
    }
    header
        .offcanvas-collapse
        .offcanvas-body
        .navbar-nav
        .dropdown-menu
        .dropdown-item {
        background-color: transparent;
        text-transform: capitalize;
        color: rgba(var(--content-color), 1);
        font-size: 14px;
        padding: 6px calc(14px + 2 * (100vw - 320px) / 880);
        position: relative;
        line-height: 1;
    }
    header
        .offcanvas-collapse
        .offcanvas-body
        .navbar-nav
        .dropdown-menu
        .dropdown-item::before {
        left: 4px;
        border-radius: 100%;
        background-color: rgba(var(--content-color), 1);
        content: "";
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 4px;
    }
    [dir="rtl"]
        header
        .offcanvas-collapse
        .offcanvas-body
        .navbar-nav
        .dropdown-menu
        .dropdown-item::before {
        left: unset;
        right: 4px;
    }
    header
        .offcanvas-collapse
        .offcanvas-body
        .navbar-nav
        .dropdown-menu
        .dropdown-item:hover {
        color: rgba(var(--content-color), 1);
        background-color: transparent;
    }
    header
        .offcanvas-collapse
        .offcanvas-body
        .navbar-nav
        .dropdown-menu
        .dropdown-item.active {
        color: rgba(var(--white), 1);
        background-color: transparent;
    }
    header
        .offcanvas-collapse
        .offcanvas-body
        .navbar-nav
        .dropdown-menu
        .dropdown-item.disabled {
        color: rgba(var(--content-color), 1);
    }
    header .offcanvas-collapse .offcanvas-body .navbar-nav .dropdown-header {
        font-size: 16px;
        font-weight: 600;
    }
    header .navbar-nav .dropdown-menu {
        opacity: 1;
        visibility: visible;
        display: none !important;
        transform: translateY(0);
        margin-top: 0;
        min-width: unset;
        font-size: calc(14px + 2 * (100vw - 320px) / 880);
        padding: 8px 0 calc(0px + 8 * (100vw - 320px) / 880) !important;
        width: 100%;
    }
    header .navbar-nav .dropdown-menu.show {
        display: block !important;
        left: unset;
    }
    header .navbar-nav .product-box {
        padding: 15px;
    }
    header .navbar-nav .menu-title {
        margin-bottom: 5px;
        padding-bottom: 5px;
        border-bottom: 1px solid rgba(var(--border-color), 1);
    }
    header .navbar-nav .menu-title h4 {
        font-size: 15px;
    }
}

/* Mixin Files */
/**=====================
    3.8 Newsletter CSS
==========================**/
.newsletter-section .newsletter-box {
    background-color: rgba(var(--dark-blue), 1);
    position: relative;
    padding: calc(20px + 36 * (100vw - 320px) / 1600)
        calc(15px + 45 * (100vw - 320px) / 1600);
    overflow: hidden;
    border-radius: 6px;
}
.newsletter-section .newsletter-box img.newsletter-1,
.newsletter-section .newsletter-box img.newsletter-2,
.newsletter-section .newsletter-box img.newsletter-3 {
    position: absolute;
    opacity: 0.12;
    animation: plane-animation 5s linear infinite;
}
@media (max-width: 767.98px) {
    .newsletter-section .newsletter-box img.newsletter-1,
    .newsletter-section .newsletter-box img.newsletter-2,
    .newsletter-section .newsletter-box img.newsletter-3 {
        display: none;
    }
}
.newsletter-section .newsletter-box img.newsletter-1 {
    top: 11px;
    left: 10px;
    animation-delay: 0.5s;
}
[dir="rtl"] .newsletter-section .newsletter-box img.newsletter-1 {
    left: unset;
    right: 10px;
}
.newsletter-section .newsletter-box img.newsletter-2 {
    top: 23px;
    left: 37%;
    animation-delay: 1s;
}
[dir="rtl"] .newsletter-section .newsletter-box img.newsletter-2 {
    left: unset;
    right: 37%;
}
.newsletter-section .newsletter-box img.newsletter-3 {
    bottom: -12px;
    left: 11%;
    animation-delay: 1.5s;
}
[dir="rtl"] .newsletter-section .newsletter-box img.newsletter-3 {
    left: unset;
    right: 11%;
}
.newsletter-section .newsletter-box > .row {
    align-items: center;
}
.newsletter-section .newsletter-box .newsletter-content {
    display: flex;
    align-items: center;
    color: rgba(var(--white), 1);
    gap: 15px;
}
@media (max-width: 480px) {
    .newsletter-section .newsletter-box .newsletter-content {
        display: block;
        text-align: center;
    }
}
.newsletter-section .newsletter-box .newsletter-content svg {
    fill: rgba(var(--primary-color), 1);
    width: calc(40px + 8 * (100vw - 320px) / 1600);
    height: calc(28px + 8 * (100vw - 320px) / 1600);
}
@media (max-width: 480px) {
    .newsletter-section .newsletter-box .newsletter-content svg {
        margin-bottom: 8px;
    }
}
.newsletter-section .newsletter-box .newsletter-content > div {
    width: calc(100% - 48px - 15px);
}
@media (max-width: 480px) {
    .newsletter-section .newsletter-box .newsletter-content > div {
        width: 100%;
    }
}
.newsletter-section .newsletter-box .newsletter-content h3 {
    font-size: calc(18px + 4 * (100vw - 320px) / 1600);
    font-weight: 600;
    line-height: 1;
    margin-bottom: calc(5px + 3 * (100vw - 320px) / 1600);
}
.newsletter-section .newsletter-box .newsletter-content h4 {
    font-weight: 500;
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    line-height: 1;
    opacity: 0.8;
}
@media (max-width: 480px) {
    .newsletter-section .newsletter-box .newsletter-content h4 {
        line-height: 1.1;
    }
}
.newsletter-section .newsletter-box .newsletter-form {
    border-radius: 5px;
    overflow: hidden;
}
@media (max-width: 480px) {
    .newsletter-section .newsletter-box .newsletter-form .input-group {
        display: block;
        text-align: center;
    }
}
.newsletter-section
    .newsletter-box
    .newsletter-form
    .input-group
    .form-control {
    border: 1px solid rgba(var(--border-color), 1);
    padding-inline: 18px;
    line-height: 1;
    font-size: 14px;
    border-radius: 5px;
    font-weight: 400;
    color: rgba(var(--title-color), 1);
    background-color: rgba(var(--white), 1);
}
body.dark
    .newsletter-section
    .newsletter-box
    .newsletter-form
    .input-group
    .form-control {
    background-color: #1a232e;
}
.newsletter-section
    .newsletter-box
    .newsletter-form
    .input-group
    .form-control::placeholder {
    color: rgba(var(--content-color), 1);
}
@media (max-width: 480px) {
    .newsletter-section
        .newsletter-box
        .newsletter-form
        .input-group
        .form-control {
        text-align: center;
        width: 100%;
        padding: 11px 10px;
        border-radius: 5px;
        margin-bottom: 7px;
    }
}
.newsletter-section
    .newsletter-box
    .newsletter-form
    .input-group
    .newsletter-form-button {
    padding: calc(13px + 7 * (100vw - 320px) / 1600)
        calc(18px + 16 * (100vw - 320px) / 1600);
    line-height: 1;
    color: #fff;
    background-color: rgba(var(--primary-color), 1);
    border-radius: 0px 5px 5px 0px;
    font-size: 14px;
    text-transform: uppercase;
}
@media (max-width: 480px) {
    .newsletter-section
        .newsletter-box
        .newsletter-form
        .input-group
        > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(
            .valid-feedback
        ):not(.invalid-tooltip):not(.invalid-feedback) {
        border-radius: 5px;
    }
}
@media (max-width: 480px) {
    .newsletter-section
        .newsletter-box
        .newsletter-form
        .input-group:not(.has-validation)
        > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(
            .form-floating
        ) {
        text-align: center;
        width: 100%;
        padding: 11px 10px;
        border-radius: 5px;
        margin-bottom: 7px;
    }
}

.newsletter-section-2 {
    padding: calc(20px + 8 * (100vw - 320px) / 1600)
        calc(20px + 110 * (100vw - 320px) / 1600);
    background-color: rgba(var(--primary-color3), 1);
    color: rgba(var(--white), 1);
}
.newsletter-section-2 .newsletter-box-list {
    display: flex;
    align-items: center;
}
@media (max-width: 767.98px) {
    .newsletter-section-2 .newsletter-box-list {
        display: block;
        text-align: center;
    }
}
@media (max-width: 1199.98px) {
    .newsletter-section-2 .newsletter-box-list li {
        width: 100%;
    }
}
.newsletter-section-2 .newsletter-box-list li + li {
    margin-left: calc(12px + 16 * (100vw - 320px) / 1600);
    padding-left: calc(12px + 16 * (100vw - 320px) / 1600);
    border-left: 1px solid rgba(217, 217, 217, 0.3);
}
[dir="rtl"] .newsletter-section-2 .newsletter-box-list li + li {
    margin-right: calc(12px + 16 * (100vw - 320px) / 1600);
    margin-left: unset;
    padding-right: calc(12px + 16 * (100vw - 320px) / 1600);
    padding-left: unset;
    border-right: 1px solid rgba(217, 217, 217, 0.3);
    border-left: unset;
}
@media (max-width: 767.98px) {
    .newsletter-section-2 .newsletter-box-list li + li {
        margin-left: unset;
        margin-top: 10px;
        padding: 0;
        border: none;
    }
    [dir="rtl"] .newsletter-section-2 .newsletter-box-list li + li {
        margin-inline: unset;
        padding-inline: unset;
        border: none;
    }
}
.newsletter-section-2 .newsletter-box-list li .newsletter-box {
    display: flex;
    align-items: center;
    gap: calc(6px + 4 * (100vw - 320px) / 1600);
}
@media (max-width: 767.98px) {
    .newsletter-section-2 .newsletter-box-list li .newsletter-box {
        justify-content: center;
    }
}
.newsletter-section-2 .newsletter-box-list li .newsletter-box > div {
    width: calc(100% - 37px - 10px);
}
@media (max-width: 767.98px) {
    .newsletter-section-2 .newsletter-box-list li .newsletter-box > div {
        width: unset;
    }
}
.newsletter-section-2 .newsletter-box-list li .newsletter-box svg {
    fill: #fff;
    width: 37px;
    height: 37px;
}
@media (max-width: 575.98px) {
    .newsletter-section-2 .newsletter-box-list li .newsletter-box svg {
        display: none;
    }
}
.newsletter-section-2 .newsletter-box-list li .newsletter-box h4 {
    font-size: calc(18px + 6 * (100vw - 320px) / 1600);
    margin-bottom: calc(1px + 4 * (100vw - 320px) / 1600);
}
.newsletter-section-2 .newsletter-box-list li .newsletter-box h4 span {
    color: rgba(var(--primary-color), 1);
}
.newsletter-section-2 .newsletter-box-list li .newsletter-box h5 {
    color: rgba(255, 255, 255, 0.6);
}
.newsletter-section-2 .newsletter-form {
    border-radius: 5px;
    overflow: hidden;
}
@media (max-width: 480px) {
    .newsletter-section-2 .newsletter-form .input-group {
        display: block;
        text-align: center;
    }
}
.newsletter-section-2 .newsletter-form .input-group .form-control {
    padding-inline: 18px;
    line-height: 1;
    font-size: 14px;
    font-weight: 400;
    color: rgba(var(--title-color), 1);
    background-color: rgba(var(--white), 1);
    border-radius: 5px;
    border-color: rgba(var(--border-color), 1);
}
.newsletter-section-2 .newsletter-form .input-group .form-control::placeholder {
    color: rgba(var(--content-color), 1);
}
@media (max-width: 480px) {
    .newsletter-section-2 .newsletter-form .input-group .form-control {
        text-align: center;
        width: 100%;
        padding: 11px 10px;
        border-radius: 5px;
        margin-bottom: 7px;
    }
}
.newsletter-section-2 .newsletter-form .input-group .newsletter-form-button {
    padding: calc(13px + 7 * (100vw - 320px) / 1600)
        calc(18px + 16 * (100vw - 320px) / 1600);
    line-height: 1;
    color: rgba(var(--title-color), 1);
    background-color: rgba(var(--primary-color), 1);
    border-radius: 0;
    font-size: 14px;
    text-transform: uppercase;
}
@media (max-width: 480px) {
    .newsletter-section-2
        .newsletter-form
        .input-group
        > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(
            .valid-feedback
        ):not(.invalid-tooltip):not(.invalid-feedback) {
        border-radius: 5px;
    }
}
@media (max-width: 480px) {
    .newsletter-section-2
        .newsletter-form
        .input-group:not(.has-validation)
        > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(
            .form-floating
        ) {
        text-align: center;
        width: 100%;
        padding: 11px 10px;
        border-radius: 5px;
        margin-bottom: 7px;
    }
}

.newsletter-section-3 .newsletter-box {
    z-index: 0;
    background-image: url(../images/newsletter/bg-2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: calc(20px + 30 * (100vw - 320px) / 1600)
        calc(15px + 45 * (100vw - 320px) / 1600);
    overflow: hidden;
}
.newsletter-section-3 .newsletter-box .newsletter-content {
    display: flex;
    align-items: center;
    color: rgba(var(--white), 1);
    gap: 15px;
}
@media (max-width: 480px) {
    .newsletter-section-3 .newsletter-box .newsletter-content {
        display: block;
        text-align: center;
    }
}
.newsletter-section-3 .newsletter-box .newsletter-content svg {
    fill: rgba(var(--primary-color), 1);
    width: calc(40px + 8 * (100vw - 320px) / 1600);
    height: calc(28px + 8 * (100vw - 320px) / 1600);
}
@media (max-width: 480px) {
    .newsletter-section-3 .newsletter-box .newsletter-content svg {
        margin-bottom: 8px;
    }
}
.newsletter-section-3 .newsletter-box .newsletter-content > div {
    width: calc(100% - 48px - 15px);
}
@media (max-width: 480px) {
    .newsletter-section-3 .newsletter-box .newsletter-content > div {
        width: 100%;
    }
}
.newsletter-section-3 .newsletter-box .newsletter-content h3 {
    font-size: calc(18px + 4 * (100vw - 320px) / 1600);
    font-weight: 600;
    line-height: 1;
    margin-bottom: calc(5px + 3 * (100vw - 320px) / 1600);
}
.newsletter-section-3 .newsletter-box .newsletter-content h4 {
    line-height: 1;
    opacity: 0.8;
}
@media (max-width: 480px) {
    .newsletter-section-3 .newsletter-box .newsletter-content h4 {
        line-height: 1.1;
    }
}
.newsletter-section-3 .newsletter-box .newsletter-form {
    border-radius: 5px;
    overflow: hidden;
}
@media (max-width: 480px) {
    .newsletter-section-3 .newsletter-box .newsletter-form .input-group {
        display: block;
        text-align: center;
    }
}
.newsletter-section-3
    .newsletter-box
    .newsletter-form
    .input-group
    .form-control {
    z-index: 0;
    border: unset;
    padding-inline: 18px;
    line-height: 1;
    border-radius: 0;
    font-size: 14px;
    font-weight: 400;
    color: rgba(var(--title-color), 1);
    background-color: rgba(var(--white), 1);
}
.newsletter-section-3
    .newsletter-box
    .newsletter-form
    .input-group
    .form-control::placeholder {
    color: rgba(var(--content-color), 1);
}
@media (max-width: 480px) {
    .newsletter-section-3
        .newsletter-box
        .newsletter-form
        .input-group
        .form-control {
        text-align: center;
        width: 100%;
        padding: 11px 10px;
        border-radius: 5px;
        margin-bottom: 7px;
        border-radius: 5px !important;
    }
}
.newsletter-section-3
    .newsletter-box
    .newsletter-form
    .input-group
    .newsletter-form-button {
    padding: calc(13px + 7 * (100vw - 320px) / 1600)
        calc(18px + 16 * (100vw - 320px) / 1600);
    line-height: 1;
    color: #fff;
    background-color: rgba(var(--primary-color), 1);
    border-radius: 0;
    font-size: 14px;
    text-transform: uppercase;
}
@media (max-width: 480px) {
    .newsletter-section-3
        .newsletter-box
        .newsletter-form
        .input-group
        .newsletter-form-button {
        border-radius: 0 !important;
    }
}

/* Mixin Files */
/**=====================
    3.9 Product CSS
==========================**/
.product-box {
    background-color: rgba(var(--white), 1);
    border: 1px solid rgba(var(--content-color), 0.3);
    padding: 36px 15px 16px;
    transition: 0.3s ease-in-out;
    position: relative;
}
.product-box:hover {
    border-bottom: 0;
    border: 1px solid rgba(var(--primary-color), 1);
    box-shadow: 0px 4px 10px rgba(var(--black), 0.1);
}
.product-box:hover .compare-box {
    box-shadow: 0px 4px 10px rgba(var(--black), 0.1);
    transform: unset;
    border-color: rgba(var(--primary-color), 1);
    opacity: 1;
    visibility: visible;
    background-color: rgba(var(--white), 1);
}
@media (max-width: 767.98px) {
    .product-box:hover .compare-box {
        box-shadow: none;
    }
}
.product-box:hover .product-content a {
    color: rgba(var(--primary-color), 1);
}
.product-box:hover .product-image {
    transform: rotate(3deg) scale(1.05);
}
.product-box .product-image {
    margin: 0 auto 27px;
    transition: 0.3s ease-in-out;
    text-align: center;
    display: block;
    width: 100%;
    height: 170px;
}
.product-box .product-content a h4 {
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    font-weight: 500;
    color: rgba(var(--title-color), 1);
    margin-bottom: 4px;
    transition: 0.3s ease-in-out;
}
.product-box .product-content .price {
    font-weight: 500;
    color: rgba(var(--theme-green), 1);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-block: 9px 10px;
}
.product-box .product-content .price del {
    color: rgba(var(--content-color), 0.8);
}
.product-box .product-content .progress {
    height: 7px;
    border-radius: 0;
    background-color: #e3e6e6;
    margin-top: 10px;
}
body.dark .product-box .product-content .progress {
    background-color: #3b495a;
}
.product-box .product-content .progress .progress-bar {
    width: 50%;
    background-color: rgba(var(--primary-color), 1);
}
.product-box .product-content .sold {
    padding-top: 10px;
    font-weight: 500;
    color: rgba(var(--title-color), 1);
    opacity: 0.8;
    transition: 0.3s ease-in-out;
}
.product-box .compare-box {
    position: absolute;
    border: 1px solid rgba(var(--content-color), 0.3);
    border-top: 0;
    padding-inline: 15px;
    padding-bottom: 11px;
    bottom: -70px;
    padding-top: 10px;
    left: 0;
    width: 101%;
    margin-left: -1px;
    transform: translateY(-18px);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
}
@media (max-width: 767.98px) {
    .product-box .compare-box {
        transform: unset;
        border-color: rgba(var(--content-color), 0.3);
        opacity: 1;
        visibility: visible;
        text-align: center;
        background-color: rgba(var(--white), 1);
        inset: 0;
        width: 100%;
        position: relative;
        padding: 0;
        margin: 0;
        border: none;
    }
}
@media (max-width: 483px) {
    .product-box .compare-box {
        width: 100.4%;
    }
}
.product-box .compare-box .cart-button {
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    padding: 8px;
    border: none;
    color: #fff;
    background-color: rgba(var(--primary-color), 1);
    border-radius: 0;
    margin-bottom: 10px;
}
.product-box .compare-box .compare-list {
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-box .compare-box .compare-list li {
    position: relative;
}
.product-box .compare-box .compare-list li + li {
    padding-left: 10px;
    margin-left: 10px;
}
[dir="rtl"] .product-box .compare-box .compare-list li + li {
    margin-left: unset;
    padding-left: unset;
    margin-right: 10px;
    padding-right: 10px;
}
.product-box .compare-box .compare-list li + li::before {
    left: 0;
    border-left: 1px solid rgba(var(--content-color), 0.2);
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 15px;
}
[dir="rtl"] .product-box .compare-box .compare-list li + li::before {
    left: unset;
    right: 0;
}
.product-box .compare-box .compare-list li a,
.product-box .compare-box .compare-list li .btn {
    padding: 0;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(var(--content-color), 1);
    transition: 0.3s ease-in-out;
}
.product-box .compare-box .compare-list li a:hover,
.product-box .compare-box .compare-list li .btn:hover {
    font-weight: 600;
    color: rgba(var(--primary-color), 1);
}
.product-box .compare-box .compare-list li a span,
.product-box .compare-box .compare-list li .btn span {
    line-height: 1;
}

.product-box-2 .product-image {
    display: block;
    width: calc(106px + 24 * (100vw - 320px) / 1600);
    margin-inline: auto;
}
.product-box-2 .product-content {
    margin-top: calc(10px + 14 * (100vw - 320px) / 1600);
}
.product-box-2 .product-content a {
    color: rgba(var(--content-color), 1);
    margin-bottom: calc(8px + 7 * (100vw - 320px) / 1600);
}
.product-box-2 .product-content a h4 {
    text-transform: capitalize;
    font-weight: 500;
    line-height: 1.5;
}
.product-box-2 .product-content a h4 span {
    font-weight: 600;
    color: rgba(var(--title-color), 1);
}
.product-box-2 .product-content .price {
    font-weight: 500;
    font-size: calc(16px + 4 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
    gap: calc(4px + 6 * (100vw - 320px) / 1600);
    color: rgba(var(--theme-green), 1);
}
.product-box-2 .product-content .price del {
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    color: rgba(var(--content-color), 1);
}

.product-box-3 {
    padding: calc(11px + 7 * (100vw - 320px) / 1600)
        calc(11px + 12 * (100vw - 320px) / 1600);
}
.product-box-3 > .row > div {
    position: relative;
}
.product-box-3 > .row > div + div::before {
    left: 0;
    background: linear-gradient(
        0deg,
        rgba(var(--content-color), 0) -3.39%,
        rgba(var(--content-color), 0.2) 54.49%,
        rgba(var(--content-color), 0) 114.83%
    );
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 80%;
}
[dir="rtl"] .product-box-3 > .row > div + div::before {
    left: unset;
    right: 0;
}
.product-box-3 > .row > div:first-child .product-white-box {
    padding-left: 0;
}
.product-box-3 > .row > div:last-child .product-white-box {
    padding-right: 0;
}
.product-box-3 > .row > div:nth-child(3n + 1)::before {
    content: none;
}
@media (max-width: 1400px) {
    .product-box-3 > .row > div:nth-child(3n + 1)::before {
        content: "";
    }
}
@media (max-width: 1400px) {
    .product-box-3 > .row > div:nth-child(odd)::before {
        content: none;
    }
}

.product-box-4 {
    padding: calc(7px + 3 * (100vw - 320px) / 1600);
    background-color: rgba(var(--light-gray), 1);
    transition: all 0.5s ease-in-out;
    position: relative;
    height: 100%;
    z-index: 0;
    border-radius: 6px;
}
body.dark .product-box-4 {
    background-color: rgba(var(--white), 1);
}
.product-box-4.pro-bg-white {
    background-color: rgba(var(--white), 1);
}
body.dark .product-box-4.pro-bg-white:hover {
    background-color: rgba(var(--white), 1);
}
body.dark .product-box-4.pro-bg-white:hover .product-content .option-box {
    background-color: rgba(var(--white), 1);
}
.product-box-4:hover {
    z-index: 1;
    background-color: rgba(var(--white), 1);
    box-shadow: var(--shadow-2);
}
body.dark .product-box-4:hover {
    background-color: rgba(var(--base-gray), 1);
}
@media (max-width: 460px) {
    .product-box-4:hover {
        z-index: unset;
    }
}
.product-box-4:hover .product-image a {
    transform: scale(1.05);
}
.product-box-4:hover .product-image .quick-view-button-box {
    margin-top: 0;
    opacity: 1;
    visibility: visible;
}
.product-box-4:hover .product-content .option-box {
    bottom: -45px;
    opacity: 1;
    visibility: visible;
    box-shadow:
        0px 4px 10px rgba(82, 77, 141, 0.1),
        0px 8px 20px rgba(82, 77, 141, 0.06),
        0px 12px 30px rgba(82, 77, 141, 0.04);
    background-color: rgba(var(--white), 1);
}
@media (max-width: 767.98px) {
    .product-box-4:hover .product-content .option-box {
        inset: unset;
        box-shadow: unset;
    }
}
.product-box-4 .product-image {
    width: 100%;
    aspect-ratio: 103/100;
    padding: 12px;
    background-color: rgba(var(--light-gray), 1);
    position: relative;
}
.product-box-4 .product-image-lg {
    height: calc(152px + 98 * (100vw - 320px) / 1600);
    padding: calc(10px + 20 * (100vw - 320px) / 1600);
}
.product-box-4 .product-image .remove-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    padding: 0;
    z-index: 1;
    line-height: 1;
    background-color: rgba(var(--theme-blue), 1);
    color: rgba(var(--white), 1);
    border-radius: 4px;
    font-size: 20px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-box-4 .product-image a {
    mix-blend-mode: darken;
    display: block;
    transition:
        opacity 0.5s,
        transform 1.25s cubic-bezier(0, 0, 0.44, 1.18);
    width: 100%;
    height: 100%;
}
body.dark .product-box-4 .product-image a {
    mix-blend-mode: difference;
}
.product-box-4 .product-image .quick-view-button-box {
    position: absolute;
    width: 100%;
    padding-inline: 19px;
    margin-top: 35px;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@media (max-width: 767.98px) {
    .product-box-4 .product-image .quick-view-button-box {
        top: unset;
        transform: unset;
        padding: 0;
        bottom: 6px;
        left: 6px;
        width: auto;
        opacity: 1;
        visibility: visible;
    }
}
.product-box-4 .product-image .quick-view-button-box .view-btn {
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(2px);
    padding: calc(7px + 3 * (100vw - 320px) / 1600)
        calc(8px + 2 * (100vw - 320px) / 1600)
        calc(5px + 3 * (100vw - 320px) / 1600);
    line-height: 1;
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    border-radius: calc(4px + 1 * (100vw - 320px) / 1600);
    width: 100%;
    color: #2242a3;
}
body.dark .product-box-4 .product-image .quick-view-button-box .view-btn {
    background-color: rgba(255, 255, 255, 0.6);
}
.product-box-4 .product-content {
    margin-top: calc(8px + 6 * (100vw - 320px) / 1600);
}
.product-box-4 .product-content .sub-name {
    color: rgba(var(--content-color), 0.8);
    font-size: 13px;
    margin-bottom: calc(0px + 2 * (100vw - 320px) / 1600);
    font-weight: 400;
}
.product-box-4 .product-content .name h5,
.product-box-4 .product-content .name .h5 {
    text-transform: capitalize;
    margin-bottom: 4px;
    color: rgba(var(--title-color), 1);
    margin-top: 6px;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
.product-box-4 .product-content .price {
    margin-top: 9px;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: calc(4px + 2 * (100vw - 320px) / 1600);
}
.product-box-4 .product-content .price del {
    color: rgba(var(--content-color), 0.8);
}
.product-box-4 .product-content .option-box {
    position: absolute;
    bottom: -30px;
    left: 0;
    background-color: rgba(var(--light-gray), 1);
    width: 100%;
    padding: 6px 12px 12px;
    transition: 0.5s;
    opacity: 0;
    gap: calc(7px + 8 * (100vw - 320px) / 1600);
    visibility: hidden;
    border-radius: 0 0 6px 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
body.dark .product-box-4 .product-content .option-box {
    background-color: rgba(var(--base-gray), 1);
}
@media (max-width: 767.98px) {
    .product-box-4 .product-content .option-box {
        position: relative;
        inset: unset;
        padding: 0;
        margin-top: 9px;
        box-shadow: unset;
        background-color: transparent;
        opacity: 1;
        visibility: visible;
    }
}
@media (max-width: 460px) {
    .product-box-4 .product-content .option-box {
        display: none;
    }
}
.product-box-4 .product-content .option-box .select-btn {
    width: 100%;
    font-size: 14px;
    color: #fff;
    background-color: rgba(var(--primary-color3), 1);
    padding: 10px;
    background-color: rgba(var(--theme-blue2), 1);
    line-height: 1;
    border-radius: 4px;
}
.product-box-4 .product-content .option-box .option-list {
    display: flex;
    align-items: center;
    gap: calc(7px + 8 * (100vw - 320px) / 1600);
}
@media (max-width: 420px) {
    .product-box-4 .product-content .option-box .option-list {
        margin-top: 6px;
    }
}
.product-box-4 .product-content .option-box .option-list li a {
    line-height: 1;
    color: rgba(var(--content-color), 1);
    font-size: calc(16px + 3 * (100vw - 320px) / 1600);
    transition: 0.5s;
}
.product-box-4 .product-content .option-box .option-list li a:hover {
    color: rgba(var(--title-color), 1);
}
.product-box-4.product-box-hover {
    width: 250px;
}
.product-box-4.product-box-hover:hover {
    background-color: #f5f6f9;
    box-shadow: unset;
}

.product-cols-box > div {
    border: 1px solid rgba(var(--content-color), 0.2);
    border-top: none;
    border-left: unset;
}
[dir="rtl"] .product-cols-box > div {
    border-right: unset;
    border-left: 1px solid rgba(var(--content-color), 0.2);
}
.product-cols-box > div:nth-child(5n-5) {
    border-right: unset;
}
[dir="rtl"] .product-cols-box > div:nth-child(5n-5) {
    border-inline: unset;
}
@media (max-width: 991.98px) {
    .product-cols-box > div:nth-child(5n-5) {
        border-right: 1px solid rgba(var(--content-color), 0.2);
    }
    [dir="rtl"] .product-cols-box > div:nth-child(5n-5) {
        border-right: unset;
        border-left: 1px solid rgba(var(--content-color), 0.2);
    }
}
@media (max-width: 991.98px) {
    .product-cols-box > div:nth-child(4n-7) {
        border-left: unset;
    }
    [dir="rtl"] .product-cols-box > div:nth-child(4n-7) {
        border-right: unset;
        border-left: 1px solid rgba(var(--content-color), 0.2);
    }
}
@media (max-width: 575.98px) {
    .product-cols-box > div:nth-child(4n-7) {
        border-right: unset;
    }
}
@media (max-width: 991.98px) {
    .product-cols-box > div:nth-child(4n-4) {
        border-right: unset;
    }
    [dir="rtl"] .product-cols-box > div:nth-child(4n-4) {
        border-inline: unset;
    }
}
@media (max-width: 767.98px) {
    .product-cols-box > div:nth-child(4n-4) {
        border-right: 1px solid rgba(var(--content-color), 0.2);
    }
    [dir="rtl"] .product-cols-box > div:nth-child(4n-4) {
        border-right: unset;
        border-left: 1px solid rgba(var(--content-color), 0.2);
    }
}
@media (max-width: 767.98px) {
    .product-cols-box > div:nth-child(3n-3) {
        border-right: unset;
    }
    [dir="rtl"] .product-cols-box > div:nth-child(3n-3) {
        border-inline: unset;
    }
}
.product-cols-box > div:nth-child(n + 6) {
    border-bottom: unset;
}
@media (max-width: 991.98px) {
    .product-cols-box > div:nth-child(n + 6) {
        border-bottom: 1px solid rgba(var(--content-color), 0.2);
    }
}
.product-cols-box > div:nth-child(n + 6) .product-box-5 {
    padding-top: 15px;
    padding-bottom: 0;
}
@media (max-width: 991.98px) {
    .product-cols-box > div:nth-child(n + 5) .product-box-5 {
        padding-top: 15px;
    }
}
@media (max-width: 767.98px) {
    .product-cols-box > div:nth-child(n + 5) .product-box-5 {
        padding-top: 0;
    }
}
@media (max-width: 767.98px) {
    .product-cols-box > div:nth-child(n + 4) {
        padding-top: 15px;
    }
}
@media (max-width: 575.98px) {
    .product-cols-box > div:nth-child(n + 3) {
        padding-top: 15px;
        border-right: unset;
    }
    [dir="rtl"] .product-cols-box > div:nth-child(n + 3) {
        border-left: 1px solid rgba(var(--content-color), 0.2);
    }
}
@media (max-width: 991.98px) {
    .product-cols-box > div:nth-child(n + 9) {
        border-bottom: unset;
    }
}
@media (max-width: 767.98px) {
    .product-cols-box > div:nth-child(n + 9) {
        border-bottom: 1px solid rgba(var(--content-color), 0.2);
    }
}
@media (max-width: 767.98px) {
    .product-cols-box > div:nth-child(n + 10) {
        border-bottom: unset;
    }
}
@media (max-width: 575.98px) {
    .product-cols-box > div:nth-child(even) {
        border-right: unset;
        border-left: 1px solid rgba(var(--content-color), 0.2);
    }
    [dir="rtl"] .product-cols-box > div:nth-child(even) {
        border-inline: unset;
    }
}

.product-l-border-box > div + div {
    border-left: 1px solid rgba(var(--content-color), 0.2);
}
[dir="rtl"] .product-l-border-box > div + div {
    border-left: unset;
    border-right: 1px solid rgba(var(--content-color), 0.2);
}
@media (max-width: 991.98px) {
    .product-l-border-box > div:nth-child(4n-7) {
        border-left: none;
    }
    [dir="rtl"] .product-l-border-box > div:nth-child(4n-7) {
        border-inline: unset;
    }
}
@media (max-width: 767.98px) {
    .product-l-border-box > div:nth-child(4n-7) {
        border-left: 1px solid rgba(var(--content-color), 0.2);
    }
    [dir="rtl"] .product-l-border-box > div:nth-child(4n-7) {
        border-inline: 1px solid rgba(var(--content-color), 0.2);
    }
    .product-l-border-box > div:nth-child(3n-2) {
        border-left: none;
    }
    [dir="rtl"] .product-l-border-box > div:nth-child(3n-2) {
        border-inline: unset;
    }
}
@media (max-width: 575.98px) {
    .product-l-border-box > div:nth-child(3n-2) {
        border-left: 1px solid rgba(var(--content-color), 0.2);
    }
    [dir="rtl"] .product-l-border-box > div:nth-child(3n-2) {
        border-right: 1px solid rgba(var(--content-color), 0.2);
        border-left: none;
    }
    .product-l-border-box > div:nth-child(odd) {
        border-left: unset;
    }
    [dir="rtl"] .product-l-border-box > div:nth-child(odd) {
        border-inline: unset;
    }
}

.product-box-5 {
    padding-bottom: 15px;
}
.product-box-5:hover .product-image .product-option {
    opacity: 1;
    transition: all 0.5s ease-in-out;
    visibility: visible;
}
.product-box-5:hover .product-image .product-option li:first-child {
    animation: fadeInUp 400ms ease-in-out;
}
@media (max-width: 575.98px) {
    .product-box-5:hover .product-image .product-option li:first-child {
        animation: none;
    }
}
.product-box-5:hover .product-image .product-option li:nth-child(2) {
    animation: fadeInUp 600ms ease-in-out;
}
@media (max-width: 575.98px) {
    .product-box-5:hover .product-image .product-option li:nth-child(2) {
        animation: none;
    }
}
.product-box-5:hover .product-image .product-option li:last-child {
    animation: fadeInUp 800ms ease-in-out;
}
@media (max-width: 575.98px) {
    .product-box-5:hover .product-image .product-option li:last-child {
        animation: none;
    }
}
.product-box-5 .product-image {
    aspect-ratio: 143/100;
    margin-block: calc(12px + 3 * (100vw - 320px) / 1600);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-box-5 .product-image a {
    height: 100%;
    transition: all 0.2s ease-in-out;
    display: block;
}
.product-box-5 .product-image .product-option {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    gap: 5px;
    transition: all 0.5s ease-in-out;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 575.98px) {
    .product-box-5 .product-image .product-option {
        opacity: 1;
        visibility: visible;
        transition: none;
    }
}
.product-box-5 .product-image .product-option li a {
    box-shadow: 0px 2.33333px 4.66667px rgba(68, 128, 103, 0.25);
    border-radius: 100%;
    font-size: calc(15px + 1 * (100vw - 320px) / 1600);
    color: rgba(var(--content-color), 1);
    background-color: rgba(var(--white), 1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(28px + 7 * (100vw - 320px) / 1600);
    height: calc(28px + 7 * (100vw - 320px) / 1600);
}
.product-box-5 .product-image .product-option li a i {
    line-height: 1;
}
.product-box-5 .product-content h4 {
    font-size: calc(13px + 1 * (100vw - 320px) / 1600);
    font-weight: 500;
    margin-bottom: 4px;
    color: rgba(var(--content-color), 0.8);
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
.product-box-5 .product-content .name {
    text-transform: capitalize;
    color: rgba(var(--primary-color3), 1);
    line-height: 1.4;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
body.dark .product-box-5 .product-content .name {
    color: #fff;
}
.product-box-5 .product-content .price {
    color: rgba(var(--theme-green), 1);
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.product-box-5 .product-content .price del {
    color: rgba(var(--content-color), 0.8);
    font-size: 14px;
    margin-top: -3px;
}
.product-box-5 .product-content .btn-box {
    position: absolute;
    bottom: -22px;
    visibility: hidden;
    opacity: 0;
    left: 0;
    width: 100%;
    padding: 0 10px 10px;
    background-color: rgba(var(--white), 1);
    z-index: 1;
    border-radius: 0 0 5px 5px;
    transition: all 0.15s ease-in-out;
}
@media (max-width: 767.98px) {
    .product-box-5 .product-content .btn-box {
        position: relative;
        width: 100%;
        inset: unset;
        padding: 0;
        margin-top: 14px;
        visibility: visible;
        opacity: 1;
    }
}
.product-box-5 .product-content .btn-box .btn {
    padding: 8px;
    gap: 6px;
    color: rgba(var(--title-color), 1);
    background-color: rgba(var(--primary-color), 1);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-box-5.no-hover {
    padding-block: 6px;
    padding-inline: 0;
}
.product-box-5.no-hover::before {
    content: none;
}
.product-box-5.no-hover:hover {
    box-shadow: none;
}

.latest-product-box h4 {
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    font-weight: 500;
}
.latest-product-box:hover a {
    border-color: rgba(var(--content-color), 0.5);
    background-color: rgba(var(--content-color), 0.05);
    box-shadow: 0 0 14px rgba(var(--title-color), 0.07);
}
.latest-product-box:hover a img {
    transform: scale(1.1) rotate(2deg);
}
.latest-product-box:hover h4 {
    color: rgba(var(--title-color), 1);
}
.latest-product-box a {
    height: calc(117px + 57 * (100vw - 320px) / 1600);
    background-color: rgba(var(--white), 1);
    border: 1px solid rgba(var(--content-color), 0.3);
    margin-bottom: calc(4px + 4 * (100vw - 320px) / 1600);
    padding: calc(13px + 15 * (100vw - 320px) / 1600)
        calc(13px + 10 * (100vw - 320px) / 1600);
    transition: all 0.15s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}
.latest-product-box a img {
    transition: all 0.15s ease-in-out;
}
.latest-product-box h5 {
    font-weight: 500;
    font-size: calc(14px + 1 * (100vw - 320px) / 1600);
    text-transform: capitalize;
    color: rgba(var(--content-color), 1);
    transition: all 0.15s ease-in-out;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}

.latest-product-list {
    display: grid;
    gap: 20px;
    grid-column: 1 / span 3;
    grid-template-columns: auto auto auto;
}
.latest-product-list li:last-child(-n + 2) {
    grid-area: 2 / span 2/3/4;
}
.latest-product-list li a .product-image {
    height: 174px;
    background-color: rgba(var(--white), 1);
    border: 1px solid rgba(var(--content-color), 0.3);
    margin-bottom: 8px;
    padding: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.latest-product-list li a h5 {
    font-weight: 500;
    font-size: 15px;
    text-transform: capitalize;
    color: rgba(var(--content-color), 1);
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}

.recommendations-product-list > li + li {
    margin-top: 10px;
}

.vertical-product-box {
    display: flex;
    position: relative;
    gap: calc(8px + 7 * (100vw - 320px) / 1600);
    align-items: center;
}
.vertical-product-box:hover .product-image img {
    transform: scale(1.09) rotate(-3deg);
}
.vertical-product-box:hover .product-content a .name {
    color: rgba(var(--primary-color), 1);
}
.vertical-product-box .product-image {
    width: calc(82px + 32 * (100vw - 320px) / 1600);
    height: calc(80px + 32 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
    justify-content: center;
}
.vertical-product-box .product-image img {
    transition: all 0.15s ease-in-out;
}
.vertical-product-box .product-content {
    width: calc(
        100% - (82px + 32 * (100vw - 320px) / 1600) -
            (8px + 7 * (100vw - 320px) / 1600)
    );
}
.vertical-product-box .product-content a .name {
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    transition: all 0.15s ease-in-out;
    margin-bottom: 5px;
    text-transform: capitalize;
    font-weight: 500;
    line-height: 1.3;
    color: rgba(var(--primary-color3), 1);
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
body.dark .vertical-product-box .product-content a .name {
    color: #fff;
}
.vertical-product-box .product-content .price {
    font-size: calc(13px + 1 * (100vw - 320px) / 1600);
    margin-top: 5px;
    color: rgba(var(--theme-green), 1);
    font-weight: 500;
}
.vertical-product-box .product-content .price del {
    color: rgba(var(--content-color), 0.8);
    margin-left: 3px;
}
.vertical-product-box .product-content .quantity-box {
    padding: 5px;
    width: 80px;
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 8px;
    right: 0;
    background-color: rgba(var(--content-color), 0.05);
}
.vertical-product-box .product-content .quantity-box .btn {
    padding: 0;
    border: none;
    width: 100%;
}
.vertical-product-box .product-content .quantity-box span {
    width: 100%;
    display: block;
    text-align: center;
}
.vertical-product-box .product-content .quantity-box .qty-btn-minus {
    display: none;
}
.vertical-product-box .product-content .cart-btn {
    padding: 7px 15px;
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 8px;
    right: 0;
    background-color: rgba(var(--content-color), 0.05);
    font-size: 14px;
    overflow: hidden;
}
.vertical-product-box .product-content .cart-btn::before {
    bottom: 0;
    left: 0;
    background-color: rgba(var(--content-color), 1);
    transition: 0.5s;
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
}
.vertical-product-box .product-content .cart-btn:hover {
    color: rgba(var(--title-color), 1);
}
.vertical-product-box .product-content .cart-btn:hover::before {
    width: 100%;
}

.recommendations-product-list-2 > li + li {
    margin-top: calc(14px + 11 * (100vw - 320px) / 1600);
}
.recommendations-product-list-2.recommendations-border li + li {
    padding-top: 11px;
    margin-top: 11px;
    border-top: 1px solid rgba(var(--content-color), 0.2);
}

.recommendations-tab-pane {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: calc(7px + 19 * (100vw - 320px) / 1600);
}
@media (max-width: 1460px) {
    .recommendations-tab-pane {
        grid-template-columns: auto auto;
    }
}
@media (max-width: 1399.98px) {
    .recommendations-tab-pane {
        grid-template-columns: auto auto auto;
    }
}
@media (max-width: 950px) {
    .recommendations-tab-pane {
        grid-template-columns: auto auto;
    }
}
@media (max-width: 585px) {
    .recommendations-tab-pane {
        grid-template-columns: auto;
        gap: calc(14px + 11 * (100vw - 320px) / 1600);
    }
}
.recommendations-tab-pane
    .recommendations-product-list-2
    + .recommendations-product-list-2 {
    border-left: 1px solid rgba(var(--content-color), 0.2);
    padding-left: calc(7px + 19 * (100vw - 320px) / 1600);
}
[dir="rtl"]
    .recommendations-tab-pane
    .recommendations-product-list-2
    + .recommendations-product-list-2 {
    border-right: 1px solid rgba(var(--content-color), 0.2);
    border-left: unset;
    padding-right: calc(7px + 19 * (100vw - 320px) / 1600);
    padding-left: unset;
}
@media (max-width: 1460px) {
    .recommendations-tab-pane
        .recommendations-product-list-2
        + .recommendations-product-list-2 {
        border-left: unset;
        padding-left: unset;
    }
}
@media (max-width: 1399.98px) {
    .recommendations-tab-pane
        .recommendations-product-list-2
        + .recommendations-product-list-2 {
        border-left: 1px solid rgba(var(--content-color), 0.2);
        padding-left: calc(7px + 19 * (100vw - 320px) / 1600);
    }
}
@media (max-width: 950px) {
    .recommendations-tab-pane
        .recommendations-product-list-2
        + .recommendations-product-list-2 {
        border-left: unset;
        padding-left: unset;
    }
}
@media (max-width: 585px) {
    .recommendations-tab-pane
        .recommendations-product-list-2
        + .recommendations-product-list-2 {
        padding: calc(7px + 19 * (100vw - 320px) / 265) 0 0;
        border-left: unset;
    }
    [dir="rtl"]
        .recommendations-tab-pane
        .recommendations-product-list-2
        + .recommendations-product-list-2 {
        padding: calc(7px + 19 * (100vw - 320px) / 265) 0 0;
        border: unset;
    }
}
@media (max-width: 950px) {
    .recommendations-tab-pane .recommendations-product-list-2:last-child {
        padding: calc(7px + 19 * (100vw - 320px) / 630) 0 0;
        border-left: unset;
    }
    [dir="rtl"]
        .recommendations-tab-pane
        .recommendations-product-list-2:last-child {
        padding-right: unset;
        border-right: unset;
    }
}
@media (max-width: 585px) {
    .recommendations-tab-pane .recommendations-product-list-2:last-child {
        margin: 0;
        padding: 0;
    }
    [dir="rtl"]
        .recommendations-tab-pane
        .recommendations-product-list-2:last-child {
        padding: 0;
        margin: 0;
    }
}
@media (max-width: 585px) {
    .recommendations-tab-pane .recommendations-product-list-2:nth-child(2) {
        padding: calc(7px + 19 * (100vw - 320px) / 265) 0 0;
        border-left: unset;
    }
    [dir="rtl"]
        .recommendations-tab-pane
        .recommendations-product-list-2:nth-child(2) {
        padding: calc(7px + 19 * (100vw - 320px) / 265) 0 0;
        border: unset;
    }
}
@media (max-width: 1460px) {
    .recommendations-tab-pane .recommendations-product-list-2:nth-child(even) {
        border-left: 1px solid rgba(var(--content-color), 0.2);
        padding-left: calc(7px + 19 * (100vw - 320px) / 1600);
    }
    [dir="rtl"]
        .recommendations-tab-pane
        .recommendations-product-list-2:nth-child(even) {
        border-right: 1px solid rgba(var(--content-color), 0.2);
        border-left: unset;
        padding-right: calc(7px + 19 * (100vw - 320px) / 1600);
        padding-left: unset;
    }
}
@media (max-width: 585px) {
    .recommendations-tab-pane .recommendations-product-list-2:nth-child(even) {
        border: unset;
        padding: unset;
    }
    [dir="rtl"]
        .recommendations-tab-pane
        .recommendations-product-list-2:nth-child(even) {
        padding: unset;
        border: unset;
    }
}

.vertical-sm-product {
    display: flex;
    position: relative;
    gap: calc(8px + 5 * (100vw - 1400px) / 520);
    align-items: center;
}
.vertical-sm-product:hover .product-image img {
    transform: scale(1.09) rotate(-3deg);
}
.vertical-sm-product:hover .product-content a .name {
    color: rgba(var(--primary-color), 1);
}
body.dark .vertical-sm-product:hover .product-content a .name {
    color: rgba(var(--primary-color), 1);
}
.vertical-sm-product .product-image {
    width: calc(63px + 25 * (100vw - 1400px) / 520);
    height: calc(63px + 25 * (100vw - 1400px) / 520);
    display: flex;
    align-items: center;
    justify-content: center;
}
.vertical-sm-product .product-image img {
    transition: all 0.15s ease-in-out;
}
.vertical-sm-product .product-content {
    width: calc(
        100% - (63px + 25 * (100vw - 1400px) / 520) -
            (8px + 5 * (100vw - 1400px) / 520)
    );
}
.vertical-sm-product .product-content h4 {
    font-size: calc(13px + 1 * (100vw - 320px) / 1600);
    font-weight: 500;
    color: rgba(var(--content-color), 1);
    margin-bottom: 3px;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
.vertical-sm-product .product-content a .name {
    font-size: calc(13px + 1 * (100vw - 320px) / 1600);
    transition: all 0.15s ease-in-out;
    margin-bottom: 5px;
    text-transform: capitalize;
    font-weight: 500;
    line-height: 1.3;
    color: rgba(var(--primary-color3), 1);
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
body.dark .vertical-sm-product .product-content a .name {
    color: #fff;
}
.vertical-sm-product .product-content .price {
    margin-top: 5px;
    color: rgba(var(--theme-green), 1);
    font-weight: 500;
    align-items: center;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}
.vertical-sm-product .product-content .price del {
    color: rgba(var(--content-color), 1);
    margin-left: 3px;
    font-size: 14px;
    margin-top: -3px;
}
.vertical-sm-product .product-content .price-sm del {
    font-size: 13px;
}

.vertical-sm-product-box {
    display: flex;
    position: relative;
    gap: calc(8px + 5 * (100vw - 320px) / 1600);
    align-items: center;
}
.vertical-sm-product-box:hover .product-image img {
    transform: scale(1.09) rotate(-3deg);
}
.vertical-sm-product-box:hover .product-content a .name {
    color: rgba(var(--primary-color), 1);
}
body.dark .vertical-sm-product-box:hover .product-content a .name {
    color: rgba(var(--primary-color), 1);
}
.vertical-sm-product-box .product-image {
    width: calc(63px + 25 * (100vw - 320px) / 1600);
    height: calc(63px + 25 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
    justify-content: center;
}
.vertical-sm-product-box .product-image img {
    transition: all 0.15s ease-in-out;
}
.vertical-sm-product-box .product-content {
    width: calc(
        100% - (63px + 25 * (100vw - 320px) / 1600) -
            (8px + 5 * (100vw - 320px) / 1600)
    );
}
.vertical-sm-product-box .product-content h4 {
    font-size: calc(13px + 1 * (100vw - 320px) / 1600);
    font-weight: 500;
    color: rgba(var(--content-color), 1);
    margin-bottom: 3px;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
.vertical-sm-product-box .product-content a .name {
    transition: all 0.15s ease-in-out;
    margin-bottom: 5px;
    text-transform: capitalize;
    font-weight: 500;
    line-height: 1.3;
    color: rgba(var(--primary-color3), 1);
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
body.dark .vertical-sm-product-box .product-content a .name {
    color: #fff;
}
.vertical-sm-product-box .product-content .price {
    margin-top: 5px;
    color: rgba(var(--theme-green), 1);
    font-weight: 500;
    align-items: center;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}
.vertical-sm-product-box .product-content .price del {
    color: rgba(var(--content-color), 1);
    margin-left: 3px;
    font-size: 14px;
    margin-top: -3px;
}
.vertical-sm-product-box .product-content .price-sm del {
    font-size: 13px;
}

.hot-deal-product-box .product-slider-box {
    position: relative;
    display: flex;
    align-items: center;
}
@media (max-width: 400px) {
    .hot-deal-product-box .product-slider-box {
        display: block;
    }
}
.hot-deal-product-box .product-slider-box .swiper-thumbnail,
.hot-deal-product-box .product-slider-box .swiper-thumbnail1 {
    position: absolute;
    left: 0;
    top: 0;
}
@media (max-width: 400px) {
    .hot-deal-product-box .product-slider-box .swiper-thumbnail,
    .hot-deal-product-box .product-slider-box .swiper-thumbnail1 {
        position: relative;
        inset: unset;
    }
}
@media (max-width: 400px) {
    .hot-deal-product-box
        .product-slider-box
        .swiper-thumbnail.swiper-free-mode
        > .swiper-wrapper,
    .hot-deal-product-box
        .product-slider-box
        .swiper-thumbnail1.swiper-free-mode
        > .swiper-wrapper {
        justify-content: center;
        margin-top: 11px;
    }
}
.hot-deal-product-box
    .product-slider-box
    .swiper-thumbnail
    .swiper-wrapper
    .swiper-slide,
.hot-deal-product-box
    .product-slider-box
    .swiper-thumbnail1
    .swiper-wrapper
    .swiper-slide {
    height: 100% !important;
    opacity: 0.5;
}
@media (max-width: 400px) {
    .hot-deal-product-box
        .product-slider-box
        .swiper-thumbnail
        .swiper-wrapper
        .swiper-slide,
    .hot-deal-product-box
        .product-slider-box
        .swiper-thumbnail1
        .swiper-wrapper
        .swiper-slide {
        width: auto !important;
    }
}
.hot-deal-product-box
    .product-slider-box
    .swiper-thumbnail
    .swiper-wrapper
    .swiper-slide
    .thumbnail-image,
.hot-deal-product-box
    .product-slider-box
    .swiper-thumbnail1
    .swiper-wrapper
    .swiper-slide
    .thumbnail-image {
    padding: 8px 10px;
    background-color: rgba(var(--light-gray), 1);
    border: 1px solid transparent;
    width: calc(53px + 12 * (100vw - 320px) / 1600);
    height: calc(53px + 12 * (100vw - 320px) / 1600);
}
.hot-deal-product-box
    .product-slider-box
    .swiper-thumbnail
    .swiper-wrapper
    .swiper-slide-thumb-active,
.hot-deal-product-box
    .product-slider-box
    .swiper-thumbnail1
    .swiper-wrapper
    .swiper-slide-thumb-active {
    opacity: 1;
}
.hot-deal-product-box
    .product-slider-box
    .swiper-thumbnail
    .swiper-wrapper
    .swiper-slide-thumb-active
    .thumbnail-image,
.hot-deal-product-box
    .product-slider-box
    .swiper-thumbnail1
    .swiper-wrapper
    .swiper-slide-thumb-active
    .thumbnail-image {
    border: 1px solid rgba(var(--primary-color), 1);
}
.hot-deal-product-box .product-slider-box .swiper-main,
.hot-deal-product-box .product-slider-box .swiper-main1 {
    text-align: center;
    margin-left: 65px;
    width: 100%;
    height: 35%;
}
@media (max-width: 400px) {
    .hot-deal-product-box .product-slider-box .swiper-main,
    .hot-deal-product-box .product-slider-box .swiper-main1 {
        width: 100%;
        margin: unset;
    }
}
.hot-deal-product-box .product-slider-box .swiper-main .main-image-box,
.hot-deal-product-box .product-slider-box .swiper-main1 .main-image-box {
    padding: 0 30px;
    display: block;
    height: 200px;
}
.hot-deal-product-box .product-slider-box .product-timer {
    position: absolute;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    left: 50%;
    transform: translateX(-50%);
}
.hot-deal-product-box .product-slider-box .product-timer li {
    background-color: rgba(var(--white), 0.7);
    box-shadow: 0px 8.89439px 16.1716px rgba(49, 90, 152, 0.07);
    backdrop-filter: blur(1.61716px);
    position: relative;
    padding: 8px;
    width: 52px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
body.dark .hot-deal-product-box .product-slider-box .product-timer li {
    background-color: rgba(19, 25, 33, 0.7);
}
.hot-deal-product-box .product-slider-box .product-timer li + li {
    margin-left: 10px;
}
.hot-deal-product-box .product-slider-box .product-timer li + li::before {
    left: -7px;
    font-weight: 700;
    font-size: 15px;
    color: rgba(var(--content-color), 0.5);
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.hot-deal-product-box .product-slider-box .product-timer li .counter > div {
    font-weight: 600;
    font-size: calc(19px + 5 * (100vw - 320px) / 1600);
    color: rgba(var(--primary-color2), 1);
    line-height: 1;
}
.hot-deal-product-box .product-slider-box .product-timer li span {
    font-weight: 400;
    font-size: 13px;
    color: rgba(var(--content-color), 1);
    text-transform: capitalize;
    word-break: break-all;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
.hot-deal-product-box .product-content {
    margin-top: 30px;
}
.hot-deal-product-box .product-content h3 {
    font-size: calc(18px + 4 * (100vw - 320px) / 1600);
    margin-bottom: 6px;
    color: rgba(var(--title-color), 1);
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
.hot-deal-product-box .product-content .price-stock {
    padding-bottom: calc(7px + 3 * (100vw - 320px) / 1600);
    margin-bottom: calc(9px + 6 * (100vw - 320px) / 1600);
    border-bottom: 1px solid rgba(var(--content-color), 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 480px) {
    .hot-deal-product-box .product-content .price-stock {
        display: block;
    }
}
.hot-deal-product-box .product-content .price-stock .price {
    line-height: 1;
    gap: 6px;
    color: rgba(var(--theme-green), 1);
    display: flex;
    align-items: center;
}
.hot-deal-product-box .product-content .price-stock .price del {
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    color: rgba(var(--content-color), 1);
}
.hot-deal-product-box .product-content .price-stock .product-rating {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-left: auto;
    justify-content: end;
    gap: calc(5px + 5 * (100vw - 320px) / 1600);
}
@media (max-width: 480px) {
    .hot-deal-product-box .product-content .price-stock .product-rating {
        margin-top: 3px;
    }
}
.hot-deal-product-box .product-content .price-stock .product-rating .rating {
    margin-top: -2px;
}
.hot-deal-product-box .product-content .price-stock .product-rating h5 {
    font-size: calc(13px + 1 * (100vw - 320px) / 1600);
    font-weight: 500;
    color: rgba(var(--content-color), 1);
    border-left: 1px solid rgba(var(--content-color), 0.2);
    padding-left: calc(5px + 5 * (100vw - 320px) / 1600);
}
[dir="rtl"]
    .hot-deal-product-box
    .product-content
    .price-stock
    .product-rating
    h5 {
    padding-left: unset;
    border-left: unset;
    border-right: 1px solid rgba(var(--content-color), 0.2);
    padding-right: calc(5px + 5 * (100vw - 320px) / 1600);
}
.hot-deal-product-box .product-content .price-stock .product-rating h5 span {
    color: rgba(var(--theme-green), 1);
}
.hot-deal-product-box .product-content .progress {
    height: 10px;
    background-color: rgba(var(--base-gray), 1);
    border-radius: 0;
    margin-bottom: calc(9px + 6 * (100vw - 320px) / 1600);
}
.hot-deal-product-box .product-content .progress .progress-bar {
    background-color: rgba(var(--primary-color), 1);
    width: 32%;
}
.hot-deal-product-box .product-content h5 {
    font-weight: 500;
    color: rgba(var(--content-color), 1);
}
.hot-deal-product-box .product-content h5 span {
    font-weight: 600;
    color: rgba(var(--theme-green), 1);
}

.hot-tag-list {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: calc(7px + 3 * (100vw - 320px) / 1600);
}
.hot-tag-list li a {
    font-weight: 400;
    font-size: calc(13px + 1 * (100vw - 320px) / 1600);
    padding: calc(7px + 2 * (100vw - 320px) / 1600)
        calc(14px + 9 * (100vw - 320px) / 1600);
    color: rgba(var(--content-color), 1);
    background-color: rgba(var(--content-color), 0.05);
    transition: 0.4s ease-in-out;
    display: block;
    border: 1px solid transparent;
}
.hot-tag-list li a:hover {
    color: rgba(var(--theme-blue2), 1);
    background-color: transparent;
    border-color: rgba(var(--theme-blue2), 1);
}

.small-product-box .product-content {
    text-align: center;
    margin-top: calc(11px + 9 * (100vw - 320px) / 1600);
    display: flex;
    flex-wrap: wrap;
    gap: calc(2px + 4 * (100vw - 320px) / 1600);
}
.small-product-box .product-content h4 {
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    font-weight: 500;
    line-height: 1.3;
    width: 100%;
    text-transform: capitalize;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
.small-product-box .product-content h4.name {
    color: rgba(var(--title-color), 1);
}
.small-product-box .product-content h4.price {
    color: rgba(var(--theme-green), 1);
}
.small-product-box .product-content h4.price del {
    color: rgba(var(--content-color), 1);
}
.small-product-box .product-image {
    position: relative;
    overflow: hidden;
}
.small-product-box .product-image a {
    aspect-ratio: 7/10;
    display: block;
}
.small-product-box .hover-box {
    position: absolute;
    width: 100%;
    bottom: -50px;
    left: 0;
    background-color: rgba(var(--white), 1);
    padding: 4px;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 575.98px) {
    .small-product-box .hover-box {
        bottom: 0;
        transition: none;
    }
}
.small-product-box .hover-box a {
    border-radius: 100%;
    background-color: rgba(var(--white), 1);
    color: rgba(var(--content-color), 1);
    font-size: 16px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}
.small-product-box .hover-box a::after {
    left: 0;
    top: 0;
    background-color: #ffe500;
    transform: scale(0);
    z-index: -1;
    border-radius: 100%;
    transition: all 0.5s ease;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
}
.small-product-box .hover-box a i {
    transition: all 0.2s ease;
}
.small-product-box .hover-box a:hover {
    color: #202326;
}
.small-product-box .hover-box a:hover.show i {
    color: rgba(var(--white), 1);
}
.small-product-box .hover-box a:hover::after {
    transform: scale(1);
}
.small-product-box:hover .hover-box {
    bottom: 0;
}

.product-white-box {
    padding: calc(10px + 14 * (100vw - 320px) / 1600)
        calc(10px + 5 * (100vw - 320px) / 1600);
    background-color: rgba(var(--white), 1);
    border-radius: 5px;
    position: relative;
    box-shadow: 7px 5px 10px transparent;
    margin: 1px;
}
.product-white-box::before {
    border-radius: 6px;
    background: linear-gradient(180deg, #07544f 0%, rgba(7, 84, 79, 0) 100%);
    mask-composite: exclude;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    left: -1px;
    top: -1px;
    z-index: -1;
    content: "";
    position: absolute;
    width: calc(100% + 2px);
    height: 100%;
}
.product-white-box:hover {
    box-shadow: 7px 5px 10px rgba(54, 97, 79, 0.1);
}
.product-white-box:hover::before {
    opacity: 1;
}
.product-white-box:hover .product-image .product-option {
    opacity: 1;
    transition: all 0.5s ease-in-out;
    visibility: visible;
}
.product-white-box:hover .product-image .product-option li:first-child {
    animation: fadeInUp 400ms ease-in-out;
}
@media (max-width: 575.98px) {
    .product-white-box:hover .product-image .product-option li:first-child {
        animation: none;
    }
}
.product-white-box:hover .product-image .product-option li:nth-child(2) {
    animation: fadeInUp 600ms ease-in-out;
}
@media (max-width: 575.98px) {
    .product-white-box:hover .product-image .product-option li:nth-child(2) {
        animation: none;
    }
}
.product-white-box:hover .product-image .product-option li:last-child {
    animation: fadeInUp 800ms ease-in-out;
}
@media (max-width: 575.98px) {
    .product-white-box:hover .product-image .product-option li:last-child {
        animation: none;
    }
}
.product-white-box:hover .product-image > a {
    transform: scale(1.09) rotate(-3deg);
}
.product-white-box:hover .product-content .name {
    color: rgba(var(--title-color), 1);
}
.product-white-box:hover .product-content .btn-box {
    bottom: -30px;
    visibility: visible;
    opacity: 1;
    box-shadow: 7px 5px 10px rgba(54, 97, 79, 0.1);
}
@media (max-width: 767.98px) {
    .product-white-box:hover .product-content .btn-box {
        inset: unset;
        box-shadow: unset;
    }
}
.product-white-box .product-image {
    margin-bottom: 14px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: calc(105px + 30 * (100vw - 320px) / 1600);
}
.product-white-box .product-image a {
    height: 100%;
    display: block;
    transition: all 0.15s ease-in-out;
}
.product-white-box .product-image .product-option {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    gap: 5px;
    transition: all 0.5s ease-in-out;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 575.98px) {
    .product-white-box .product-image .product-option {
        opacity: 1;
        visibility: visible;
    }
}
.product-white-box .product-image .product-option li a {
    box-shadow: 0px 2.33333px 4.66667px rgba(68, 128, 103, 0.25);
    border-radius: 100%;
    font-size: calc(15px + 1 * (100vw - 320px) / 1600);
    color: rgba(var(--content-color), 1);
    background-color: rgba(var(--white), 1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(28px + 7 * (100vw - 320px) / 1600);
    height: calc(28px + 7 * (100vw - 320px) / 1600);
}
.product-white-box .product-image .product-option li a i {
    line-height: 1;
}
.product-white-box .product-content h4 {
    margin-bottom: 4px;
    color: rgba(var(--content-color), 0.8);
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
.product-white-box .product-content .name {
    text-transform: capitalize;
    margin-bottom: 6px;
    height: calc(58px + 9 * (100vw - 320px) / 1600);
    color: rgba(var(--primary-color3), 1);
    line-height: 1.4;
    transition: color 0.15s ease-in-out;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
body.dark .product-white-box .product-content .name {
    color: #fff;
}
@media (max-width: 991.98px) {
    .product-white-box .product-content .name {
        height: auto;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        display: -webkit-box;
        overflow: hidden;
    }
}
.product-white-box .product-content .name.tow-line {
    height: auto;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
.product-white-box .product-content .price {
    margin-top: 9px;
    color: rgba(var(--primary-color2), 1);
    display: flex;
    align-items: center;
    gap: 6px;
}
.product-white-box .product-content .price del {
    color: rgba(var(--content-color), 0.8);
}
.product-white-box .product-content .btn-box {
    position: absolute;
    bottom: -22px;
    visibility: hidden;
    opacity: 0;
    left: 0;
    width: 100%;
    padding: 0 10px 10px;
    background-color: rgba(var(--white), 1);
    z-index: 1;
    border-radius: 0 0 5px 5px;
    transition: all 0.15s ease-in-out;
}
@media (max-width: 575.98px) {
    .product-white-box .product-content .btn-box {
        display: none;
    }
}
.product-white-box .product-content .btn-box .btn {
    padding: 8px;
    gap: 6px;
    color: rgba(var(--title-color), 1);
    background-color: rgba(var(--primary-color), 1);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-white-box.no-hover {
    padding-block: 6px;
    padding-inline: 0;
}
.product-white-box.no-hover::before {
    content: none;
}
.product-white-box.no-hover:hover {
    box-shadow: none;
}

.product-title-box {
    padding: calc(19px + 6 * (100vw - 320px) / 1600)
        calc(13px + 3 * (100vw - 320px) / 1600);
    background-position: left;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.product-title-box img {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
}
[dir="rtl"] .product-title-box img {
    transform: scaleX(-1);
}
.product-title-box h4 {
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 7px;
    text-transform: capitalize;
    color: #202326;
}
.product-title-box h4 a {
    font-size: 14px;
    text-transform: none;
    color: rgba(var(--primary-color3), 1);
}

.white-product-box-list {
    background-color: rgba(var(--white), 1);
    padding: calc(12px + 6 * (100vw - 320px) / 1600) 8px;
    display: flex;
    flex-wrap: wrap;
    gap: calc(10px + 6 * (100vw - 320px) / 1600);
}

.product-box-4-main {
    position: relative;
    height: 100%;
}
.product-box-4-main + .product-box-4-main {
    margin-top: 25px;
}
@media (max-width: 660px) {
    .product-box-4-main + .product-box-4-main {
        margin-top: 14px;
    }
}
.product-box-4-main .select-option-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    padding: 10px;
    text-align: center;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(var(--white), 1);
    z-index: 2;
    width: calc(100% - 15px);
    height: calc(100% - 15px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-box-4-main .select-option-box.show {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
}
.product-box-4-main .select-option-box .select-box {
    background-color: rgba(var(--white), 0.8);
    backdrop-filter: blur(2px);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-box-4-main .select-option-box .color-box {
    margin-bottom: 20px;
}
.product-box-4-main .select-option-box .color-box h4 {
    color: rgba(var(--content-color), 1);
}
.product-box-4-main .select-option-box .color-box .color-list {
    gap: 8px;
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-box-4-main .select-option-box .color-box .color-list li a {
    border-radius: 3px;
    display: block;
    width: 25px;
    height: 25px;
}
.product-box-4-main .select-option-box .size-box {
    margin-bottom: 20px;
}
.product-box-4-main .select-option-box .size-box h5 {
    color: rgba(var(--content-color), 1);
}
.product-box-4-main .select-option-box .size-box .size-list {
    gap: 5px;
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-box-4-main .select-option-box .size-box .size-list li a {
    border-radius: 3px;
    border: 1px solid rgba(var(--content-color), 1);
    color: rgba(var(--title-color), 1);
    font-weight: 400;
    opacity: 0.6;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-box-4-main .select-option-box .size-box .size-list li a.active {
    background-color: rgba(var(--primary-color), 1);
    opacity: 1;
    border-color: transparent;
    color: #fff;
}
.product-box-4-main .select-option-box .add-cart-btn {
    padding: 7px 22px;
    color: rgba(var(--primary-color), 1);
    background-color: transparent;
    font-size: 14px;
    text-transform: capitalize;
    border: 1px solid rgba(var(--primary-color), 1);
}
.product-box-4-main .select-option-box .add-cart-btn:hover,
.product-box-4-main .select-option-box .add-cart-btn.show {
    color: rgba(var(--white), 1);
    background-color: rgba(var(--primary-color), 1);
}
.product-box-4-main .select-option-box .close-btn {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0;
    font-size: 20px;
    line-height: 1;
}

.deal-day-box {
    background-color: rgba(var(--white), 1);
    border: 1px solid rgba(var(--content-color), 0.2);
    height: 100%;
    padding: calc(11px + 9 * (100vw - 320px) / 1600)
        calc(11px + 19 * (100vw - 320px) / 1600);
}
.deal-day-box .deal-thumbnail-slider .swiper-wrapper {
    justify-content: center;
}
.deal-day-box .deal-thumbnail-slider .swiper-wrapper .swiper-slide {
    width: auto !important;
    cursor: pointer;
}
.deal-day-box
    .deal-thumbnail-slider
    .swiper-wrapper
    .swiper-slide
    .thumbnail-image-box {
    background-color: rgba(var(--light-gray), 1);
    padding: calc(5px + 5 * (100vw - 1200px) / 720)
        calc(9px + 4 * (100vw - 1200px) / 720);
    margin-inline: auto;
    width: calc(63px + 12 * (100vw - 1200px) / 720);
    height: calc(63px + 12 * (100vw - 1200px) / 720);
}
@media (max-width: 1199.98px) {
    .deal-day-box
        .deal-thumbnail-slider
        .swiper-wrapper
        .swiper-slide
        .thumbnail-image-box {
        padding: 5px 9px;
    }
}
.deal-day-box .deal-main-slider .swiper-slide {
    height: 100% !important;
}
.deal-day-box .deal-main-slider .swiper-slide .thumbnail-image-box {
    width: 100%;
    height: calc(151px + 101 * (100vw - 1200px) / 720);
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 1199.98px) {
    .deal-day-box .deal-main-slider .swiper-slide .thumbnail-image-box {
        height: 151px;
    }
}
.deal-day-box .product-content-box {
    margin-top: 10px;
    width: 100%;
    height: 100%;
}
@media (max-width: 729px) {
    .deal-day-box .product-content-box {
        display: block;
        text-align: center;
    }
}
.deal-day-box .product-content-box .product-content {
    border-bottom: 1px solid rgba(var(--content-color), 0.2);
    padding-bottom: 14px;
    margin-bottom: 35px;
}
@media (max-width: 1399.98px) {
    .deal-day-box .product-content-box .product-content {
        padding-bottom: calc(0px + 7 * (100vw - 320px) / 1079);
        margin-bottom: calc(9px + 10 * (100vw - 320px) / 1079);
    }
}
.deal-day-box .product-content-box .product-content h4 {
    color: rgba(var(--content-color), 0.8);
    margin-bottom: 2px;
}
.deal-day-box .product-content-box .product-content h5 {
    font-size: calc(20px + 6 * (100vw - 320px) / 1600);
    text-transform: capitalize;
}
.deal-day-box .product-content-box .product-content h5 a {
    color: rgba(var(--title-color), 1);
}
.deal-day-box .product-content-box .product-content .rating-box {
    display: flex;
    align-items: center;
    margin-block: 1px 12px;
}
@media (max-width: 729px) {
    .deal-day-box .product-content-box .product-content .rating-box {
        justify-content: center;
    }
}
.deal-day-box .product-content-box .product-content .rating-box .rating li i {
    font-size: calc(14px + 6 * (100vw - 320px) / 1600);
}
.deal-day-box .product-content-box .product-content .rating-box h6 {
    padding-left: calc(4px + 4 * (100vw - 320px) / 1600);
    margin-left: calc(4px + 4 * (100vw - 320px) / 1600);
    border-left: 1px solid rgba(var(--content-color), 0.2);
    color: rgba(var(--content-color), 0.8);
    margin-bottom: 0;
}
[dir="rtl"] .deal-day-box .product-content-box .product-content .rating-box h6 {
    padding-right: calc(4px + 4 * (100vw - 320px) / 1600);
    margin-right: calc(4px + 4 * (100vw - 320px) / 1600);
    border-right: 1px solid rgba(var(--content-color), 0.2);
    padding-left: unset;
    margin-left: unset;
    border-left: unset;
}
.deal-day-box .product-content-box .product-content .rating-box h6 span {
    color: #219dab;
}
.deal-day-box .product-content-box .product-content .price {
    font-size: calc(19px + 7 * (100vw - 320px) / 1600);
    color: #2242a3;
    display: flex;
    align-items: center;
    gap: 6px;
}
@media (max-width: 729px) {
    .deal-day-box .product-content-box .product-content .price {
        justify-content: center;
    }
}
.deal-day-box .product-content-box .product-content .price del {
    font-size: 16px;
    color: rgba(var(--content-color), 0.8);
}
.deal-day-box .product-content-box .product-timer .product-timer {
    display: flex;
    align-items: center;
    gap: 6px;
}
@media (max-width: 729px) {
    .deal-day-box .product-content-box .product-timer .product-timer {
        justify-content: center;
    }
}
@media (max-width: 1199.98px) {
    .deal-day-box .product-content-box .product-timer .product-timer {
        gap: calc(4px + 2 * (100vw - 320px) / 879);
    }
}
.deal-day-box .product-content-box .product-timer .product-timer li.dots {
    font-weight: 700;
    font-size: 18px;
    color: rgba(var(--content-color), 0.5);
}
.deal-day-box .product-content-box .product-timer .product-timer li.time-list {
    position: relative;
    z-index: 0;
}
.deal-day-box
    .product-content-box
    .product-timer
    .product-timer
    li.time-list::before {
    z-index: -1;
    bottom: -7px;
    right: -7px;
    background-color: rgba(var(--white), 1);
    box-shadow: 0px 11px 20px rgba(49, 90, 152, 0.07);
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
}
[dir="rtl"]
    .deal-day-box
    .product-content-box
    .product-timer
    .product-timer
    li.time-list::before {
    right: unset;
    left: -7px;
}
body.dark
    .deal-day-box
    .product-content-box
    .product-timer
    .product-timer
    li.time-list::before {
    background-color: #0f162c;
}
@media (max-width: 1199.98px) {
    .deal-day-box
        .product-content-box
        .product-timer
        .product-timer
        li.time-list::before {
        bottom: calc(-2px + -5 * (100vw - 320px) / 880);
        right: calc(-2px + -5 * (100vw - 320px) / 880);
    }
    [dir="rtl"]
        .deal-day-box
        .product-content-box
        .product-timer
        .product-timer
        li.time-list::before {
        right: unset;
        left: calc(-2px + -5 * (100vw - 320px) / 880);
    }
}
.deal-day-box .product-content-box .product-timer .product-timer li > div {
    background-color: transparent;
    border: 1px solid rgba(var(--content-color), 0.5);
    padding: 12px;
    text-align: center;
    width: 62px;
}
@media (max-width: 1199.98px) {
    .deal-day-box .product-content-box .product-timer .product-timer li > div {
        width: calc(55px + 7 * (100vw - 320px) / 880);
        padding: calc(7px + 5 * (100vw - 320px) / 880);
    }
}
.deal-day-box
    .product-content-box
    .product-timer
    .product-timer
    li
    > div
    .counter {
    font-size: 30px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 2px;
    color: #2242a3;
}
@media (max-width: 1199.98px) {
    .deal-day-box
        .product-content-box
        .product-timer
        .product-timer
        li
        > div
        .counter {
        font-size: calc(19px + 11 * (100vw - 320px) / 879);
    }
}
.deal-day-box
    .product-content-box
    .product-timer
    .product-timer
    li
    > div
    .smalltext {
    color: rgba(var(--content-color), 1);
    line-height: 1;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
.deal-day-box .product-content-box .progress-box {
    margin-top: 38px;
}
@media (max-width: 1399.98px) {
    .deal-day-box .product-content-box .progress-box {
        margin-top: 25px;
    }
}
@media (max-width: 1199.98px) {
    .deal-day-box .product-content-box .progress-box {
        margin-top: calc(11px + 14 * (100vw - 320px) / 879);
    }
}
.deal-day-box .product-content-box .progress-box .progress {
    height: 10px;
    background-color: rgba(var(--light-gray), 1);
    border-radius: 0;
    margin-bottom: 15px;
}
@media (max-width: 1199.98px) {
    .deal-day-box .product-content-box .progress-box .progress {
        height: calc(7px + 3 * (100vw - 320px) / 879);
        margin-bottom: calc(9px + 6 * (100vw - 320px) / 879);
    }
}
.deal-day-box .product-content-box .progress-box .progress .progress-bar {
    width: 50%;
    background-color: rgba(var(--primary-color), 1);
}
.deal-day-box .product-content-box .progress-box h5 {
    color: #219dab;
    font-weight: 600;
}
.deal-day-box .product-content-box .progress-box h5 span {
    color: rgba(var(--content-color), 1);
    font-weight: 500;
}

.recent-product-section .recent-product-box {
    border-radius: 5px;
    overflow: hidden;
    height: calc(124px + 16 * (100vw - 320px) / 1600);
    background-color: rgba(var(--base-gray), 1);
    display: block;
}
.recent-product-section .recent-product-box img {
    padding: 0;
    display: block;
}

.deal-product-box .product-content {
    margin-top: 10px;
    text-align: center;
}
.deal-product-box .product-content .rating-box {
    gap: 7px;
    margin-bottom: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.deal-product-box .product-content .rating-box .rating li i {
    font-size: calc(15px + 3 * (100vw - 1400px) / 520);
}
.deal-product-box .product-content .rating-box h4 {
    color: rgba(var(--content-color), 1);
}
.deal-product-box .product-content h5 {
    text-transform: capitalize;
    line-height: 1.4;
    margin-bottom: 7px;
    font-size: calc(14px + 2 * (100vw - 1400px) / 520);
    color: rgba(var(--title-color), 1);
}
.deal-product-box .product-content h6 {
    gap: 5px;
    color: rgba(var(--theme-green), 1);
    font-size: calc(18px + 2 * (100vw - 1400px) / 520);
    display: flex;
    align-items: center;
    justify-content: center;
}
.deal-product-box .product-content h6 del {
    font-size: 14px;
    color: rgba(var(--content-color), 1);
}
.deal-product-box .product-content .product-timer {
    margin-top: calc(9px + 12 * (100vw - 1400px) / 520);
    gap: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.deal-product-box .product-content .product-timer li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    width: 100%;
}
.deal-product-box .product-content .product-timer li.clock-time {
    width: auto;
}
.deal-product-box .product-content .product-timer li.clock-time span {
    color: rgba(var(--content-color), 0.8);
    font-size: 20px;
}
.deal-product-box .product-content .product-timer li .counter-box {
    padding: 10px 5px;
    background-color: rgba(var(--primary-color2), 1);
    border-radius: 5px;
    width: 100%;
}
.deal-product-box .product-content .product-timer li .counter-box .counter {
    font-size: calc(15px + 3 * (100vw - 1400px) / 520);
    font-weight: 600;
    color: #fff;
    line-height: 1;
}
.deal-product-box .product-content .product-timer li .counter-box .smalltext {
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    margin-top: 5px;
}

.discover-product-box .product-image {
    border-radius: 10px;
    background-color: #f2f3f8;
    padding: calc(19px + 4 * (100vw - 320px) / 1600)
        calc(9px + 5 * (100vw - 320px) / 1600);
    width: 100%;
    height: calc(137px + 40 * (100vw - 320px) / 1600);
}
.discover-product-box .product-name {
    width: calc(100% - 15px);
    padding: calc(5px + 6 * (100vw - 320px) / 1600);
    background-color: rgba(var(--white), 1);
    line-height: 1;
    color: rgba(var(--title-color), 1);
    border-radius: 5px;
    text-align: center;
    margin-top: calc(-9px + -6 * (100vw - 320px) / 1600);
    margin-inline: auto;
}
.discover-product-box .product-name h4 {
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}

.product-kid-box {
    border-radius: 10px;
    border: 2px solid transparent;
    background: rgba(var(--white), 1);
    box-shadow: 0px 4px 10px 0px transparent;
    transition: all 0.15s ease-in-out;
    display: block;
}
.product-kid-box:hover .product-image-box::before {
    opacity: 0;
    visibility: hidden;
}
.product-kid-box:hover .product-image-box::after {
    opacity: 1;
    visibility: visible;
}
.product-kid-box:hover .product-image-box .product-option {
    top: 3px;
    opacity: 1;
    visibility: visible;
}
.product-kid-box:hover .product-image-box .p-shop-btn {
    bottom: 10px;
    opacity: 1;
    visibility: visible;
}
.product-kid-box .product-image-box {
    padding: 2px;
    position: relative;
    z-index: 0;
    border-radius: 10px;
    overflow: hidden;
    color: #ffd1de;
    background-color: #f0f9fe;
    transition: all 0.15s ease-in-out;
    width: 100%;
    height: calc(135px + 75 * (100vw - 320px) / 1600);
}
body.dark .product-kid-box .product-image-box {
    background-color: #303438;
}
.product-kid-box .product-image-box::before {
    transition: all 0.15s ease-in-out;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(26deg);
    z-index: -1;
    background: linear-gradient(
        to right,
        #f0f9fe 0%,
        #f0f9fe 0%,
        #ffa7bf 5%,
        #ffa7bf 5%,
        #c4d9ff 10%,
        #c4d9ff 10%,
        #a1d9ff 15%,
        #a1d9ff 15%,
        #ffd1de 20%,
        #ffd1de 20%,
        #a1d9ff 25%,
        #d1f0ff 25%,
        #d1f0ff 30%,
        #ffd1de 30%,
        #ffd1de 35%,
        #ffd1de 35%,
        #f0f9fe 40%,
        #f0f9fe 40%,
        #ffa7bf 45%,
        #ffa7bf 45%,
        #ffa7bf 50%,
        #a1d9ff 50%,
        #a1d9ff 55%,
        #ffa7bf 55%,
        #a1d9ff 60%,
        #a1d9ff 60%,
        #a1d9ff 65%,
        #d1f0ff 65%,
        #d1f0ff 70%,
        #ffd1de 70%,
        #ffd1de 75%,
        #ffd1de 75%,
        #a1d9ff 80%,
        #a1d9ff 80%,
        #a1d9ff 85%,
        #d1f0ff 85%,
        #d1f0ff 90%,
        #ffd1de 90%,
        #ffd1de 100%,
        #ffd1de 100%
    );
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
}
.product-kid-box .product-image-box:after {
    background-color: rgba(var(--primary-color), 1);
    z-index: -1;
    transition: all 0.15s ease-in-out;
    opacity: 0;
    visibility: hidden;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.product-kid-box .product-image-box .image-box {
    background-color: rgba(var(--white), 1);
    display: block;
    padding: 19px;
    border-radius: 8px;
    width: 100%;
    height: 100%;
}
body.dark .product-kid-box .product-image-box .image-box {
    background-color: #303438;
}
.product-kid-box .product-image-box .product-option {
    position: absolute;
    top: -67px;
    transition: all 0.15s ease-in-out;
    opacity: 0;
    visibility: visible;
    width: max-content;
    left: 50%;
    transform: translateX(-50%);
}
@media (max-width: 575.98px) {
    .product-kid-box .product-image-box .product-option {
        top: 3px;
        opacity: 1;
        visibility: visible;
    }
}
.product-kid-box .product-image-box .product-option li {
    position: relative;
    width: auto;
    display: inline-block;
}
.product-kid-box .product-image-box .product-option li + li {
    margin-left: 6px;
}
[dir="rtl"] .product-kid-box .product-image-box .product-option li + li {
    margin-left: unset;
    margin-right: 6px;
}
.product-kid-box .product-image-box .product-option li::before {
    background-color: rgba(var(--content-color), 1);
    content: "";
    position: absolute;
    width: 2px;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
body.dark .product-kid-box .product-image-box .product-option li::before {
    background-color: #5e6278;
}
.product-kid-box .product-image-box .product-option li::after {
    background-color: rgba(var(--content-color), 1);
    border-radius: 100%;
    top: 0;
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    left: 50%;
    transform: translateX(-50%);
}
body.dark .product-kid-box .product-image-box .product-option li::after {
    background-color: #5e6278;
}
.product-kid-box .product-image-box .product-option li a {
    background-color: #eef8fd;
    border-radius: 100%;
    font-size: calc(15px + 5 * (100vw - 320px) / 1600);
    color: rgba(var(--content-color), 1);
    margin-top: 25px;
    position: relative;
    width: calc(29px + 12 * (100vw - 320px) / 1600);
    height: calc(29px + 12 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
    justify-content: center;
}
body.dark .product-kid-box .product-image-box .product-option li a {
    color: #5e6278;
}
.product-kid-box .product-image-box .product-option li a::before {
    border-radius: 100%;
    background-color: rgba(var(--primary-color), 1);
    top: 1px;
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    left: 50%;
    transform: translateX(-50%);
}
.product-kid-box .product-image-box .p-shop-btn {
    position: absolute;
    bottom: -40px;
    width: max-content;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: calc(3px + 3 * (100vw - 320px) / 1600);
    padding: calc(5px + 3 * (100vw - 320px) / 1600)
        calc(10px + 8 * (100vw - 320px) / 1600);
    border: 1px solid rgba(var(--primary-color), 1);
    background: rgba(var(--white), 0.8);
    backdrop-filter: blur(2px);
    color: rgba(var(--primary-color), 1);
    transition: all 0.15s ease-in-out;
    opacity: 0;
    visibility: visible;
    left: 50%;
    transform: translateX(-50%);
}
@media (max-width: 575.98px) {
    .product-kid-box .product-image-box .p-shop-btn {
        bottom: 10px;
        opacity: 1;
        visibility: visible;
    }
}
.product-kid-box .product-image-box .p-shop-btn i {
    font-size: 17px;
    line-height: 1;
}
.product-kid-box .product-content {
    margin-top: 9px;
}
.product-kid-box .product-content .name {
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    text-transform: capitalize;
    margin-bottom: 4px;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
.product-kid-box .product-content .name a {
    color: rgba(var(--title-color), 1);
}
.product-kid-box .product-content .price {
    color: rgba(var(--theme-pink), 1);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}
.product-kid-box .product-content .price del {
    color: rgba(var(--content-color), 0.8);
}
.product-kid-box .product-content .rating li i {
    font-size: calc(14px + 4 * (100vw - 320px) / 1600);
}
.product-kid-box.product-s-box {
    text-align: center;
}
.product-kid-box.product-s-box .product-image-box {
    height: calc(133px + 57 * (100vw - 320px) / 1600);
}
.product-kid-box.product-s-box .product-image-box .image-box {
    padding: 0;
    overflow: hidden;
}
.product-kid-box.product-s-box .product-content {
    margin-top: calc(10px + 8 * (100vw - 320px) / 1600);
    color: rgba(var(--title-color), 1);
}
.product-kid-box.product-s-box .product-content h5 {
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}

.discover-product-box .product-image {
    border-radius: calc(6px + 4 * (100vw - 320px) / 1600);
    background-color: #f2f3f8;
    padding: calc(18px + 5 * (100vw - 320px) / 1600)
        calc(10px + 4 * (100vw - 320px) / 1600);
    height: unset;
    aspect-ratio: 99/100;
}
.discover-product-box .product-name {
    width: calc(100% - 15px);
    padding: 11px;
    background-color: rgba(var(--white), 1);
    line-height: 1;
    color: rgba(var(--title-color), 1);
    border-radius: 5px;
    text-align: center;
    margin-top: -15px;
    margin-inline: auto;
}
.discover-product-box .product-name h5 {
    line-height: 1.2;
}

.wishlistProduct.show {
    color: rgba(var(--primary-color), 1);
}
.wishlistProduct.show i {
    color: rgba(var(--primary-color), 1);
}
.wishlistProduct.show i:before {
    content: "\ee0a";
}

/* Mixin Files */
/**=====================
    3.10 Service CSS
==========================**/
.service-section {
    background-color: rgba(var(--title-color), 1);
    color: rgba(var(--white), 1);
}
body.dark .service-section {
    background-color: #202326;
}
.service-section .service-list {
    display: grid;
    grid-template-columns: auto auto auto auto;
    gap: calc(18px + 18 * (100vw - 320px) / 1600);
}
@media (max-width: 1199.98px) {
    .service-section .service-list {
        grid-template-columns: auto auto;
    }
}
@media (max-width: 664px) {
    .service-section .service-list {
        grid-template-columns: auto;
    }
}
.service-section .service-list li {
    position: relative;
    border-right: 1px solid rgba(var(--grey), 0.3);
    padding-right: calc(18px + 18 * (100vw - 320px) / 1600);
}
.service-section .service-list li:last-child {
    border-right: none;
    padding-right: unset;
}
@media (max-width: 1199.98px) {
    .service-section .service-list li:nth-child(2) {
        border-right: none;
        padding-right: unset;
    }
}
@media (max-width: 664px) {
    .service-section .service-list li {
        border-right: none;
        padding-right: 0;
    }
}
.service-section .service-box {
    display: flex;
    gap: calc(5px + 5 * (100vw - 320px) / 1600);
}
.service-section .service-box svg {
    fill: transparent;
    stroke: rgba(var(--primary-color), 1);
    width: 29px;
    height: 29px;
}
.service-section .service-box > div {
    width: calc(100% - 29px - 10px);
}
.service-section .service-box h4 {
    font-size: calc(15px + 3 * (100vw - 320px) / 1600);
    margin-bottom: calc(3px + 2 * (100vw - 320px) / 1600);
    font-weight: 500;
}
.service-section .service-box p {
    color: rgba(var(--white), 0.5);
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
}
body.dark .service-section .service-box p {
    color: rgba(255, 255, 255, 0.5);
}

.service-section-2 {
    background-color: #f4faf9;
    color: rgba(var(--title-color), 1);
    border-radius: 5px;
    padding: calc(14px + 11 * (100vw - 320px) / 1600)
        calc(14px + 16 * (100vw - 320px) / 1600);
}
body.dark .service-section-2 {
    background-color: #032a27;
}
.service-section-2 .service-list {
    display: grid;
    grid-template-columns: auto auto auto auto;
    gap: calc(14px + 22 * (100vw - 320px) / 1600);
}
@media (max-width: 1770px) {
    .service-section-2 .service-list {
        grid-template-columns: auto auto;
    }
}
@media (max-width: 664px) {
    .service-section-2 .service-list {
        grid-template-columns: auto;
    }
}
.service-section-2 .service-list li {
    position: relative;
    border-right: 1px solid rgba(var(--primary-color3), 0.2);
    padding-right: calc(18px + 18 * (100vw - 320px) / 1600);
}
[dir="rtl"] .service-section-2 .service-list li {
    border-left: 1px solid rgba(var(--primary-color3), 0.2);
    border-right: unset;
    padding-left: calc(18px + 18 * (100vw - 320px) / 1600);
    padding-right: unset;
}
@media (max-width: 1770px) {
    .service-section-2 .service-list li:nth-child(even) {
        border-right: none;
        padding-right: unset;
    }
    [dir="rtl"] .service-section-2 .service-list li:nth-child(even) {
        border-left: unset;
        padding-left: unset;
    }
}
.service-section-2 .service-list li:last-child {
    border-right: none;
    padding-right: unset;
}
[dir="rtl"] .service-section-2 .service-list li:last-child {
    border-left: unset;
    padding-left: unset;
}
@media (max-width: 664px) {
    .service-section-2 .service-list li {
        border-right: none;
        padding-right: 0;
    }
    [dir="rtl"] .service-section-2 .service-list li {
        border-left: unset;
        padding-left: unset;
    }
}
.service-section-2 .service-box {
    display: flex;
    gap: calc(7px + 3 * (100vw - 320px) / 1600);
}
.service-section-2 .service-box svg {
    color: rgba(var(--primary-color3), 1);
    fill: transparent;
    width: calc(28px + 9 * (100vw - 320px) / 1600);
    height: calc(28px + 9 * (100vw - 320px) / 1600);
}
body.dark .service-section-2 .service-box svg {
    fill: rgb(255, 255, 255);
}
.service-section-2 .service-box > div {
    width: calc(
        100% - (28px + 9 * (100vw - 320px) / 1600) -
            (7px + 3 * (100vw - 320px) / 1600)
    );
}
.service-section-2 .service-box h5 {
    font-size: calc(15px + 3 * (100vw - 320px) / 1600);
    margin-bottom: calc(3px + 2 * (100vw - 320px) / 1600);
    font-weight: 500;
}
.service-section-2 .service-box p {
    color: rgba(var(--content-color), 0.8);
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
}

.service-section-3 {
    background-color: rgba(var(--light-gray), 1);
    color: rgba(var(--title-color), 1);
    padding: calc(8px + 10 * (100vw - 320px) / 1600)
        calc(12px + 18 * (100vw - 320px) / 1600);
}
body.dark .service-section-3 {
    background-color: rgba(var(--white), 1);
}
.service-section-3 .service-box {
    background: linear-gradient(
        180deg,
        rgba(var(--white), 1) 0%,
        rgba(var(--white), 0) 100%
    );
    padding: calc(22px + 16 * (100vw - 320px) / 1600)
        calc(9px + 4 * (100vw - 320px) / 1600)
        calc(9px + 4 * (100vw - 320px) / 1600);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
body.dark .service-section-3 .service-box {
    background: linear-gradient(180deg, #0f162c 0%, rgba(var(--white), 0) 100%);
}
.service-section-3 .service-box svg {
    fill: rgba(var(--title-color), 1);
    width: calc(30px + 12 * (100vw - 320px) / 1600);
    height: calc(30px + 12 * (100vw - 320px) / 1600);
}
.service-section-3 .service-box .service-content {
    padding-top: calc(8px + 5 * (100vw - 320px) / 1600);
    text-transform: capitalize;
}
.service-section-3 .service-box .service-content h4 {
    font-size: calc(16px + 2 * (100vw - 320px) / 1600);
    font-weight: 500;
}
.service-section-3 .service-box .service-content h5 {
    margin-top: calc(2px + 3 * (100vw - 320px) / 1600);
    color: rgba(var(--content-color), 1);
}

/* Pages Files */
/* Mixin Files */
/**=====================
    4.1 Blog CSS
==========================**/
.custom-nav-pills {
    gap: 12px;
}
.custom-nav-pills .nav-item .nav-link {
    background-color: rgba(var(--base-gray), 1);
    color: rgba(var(--content-color), 1);
    border-radius: 0;
    font-size: 16px;
}
.custom-nav-pills .nav-item .nav-link.active {
    background-color: rgba(var(--primary-color), 1);
    color: rgba(var(--white), 1);
    font-weight: 600;
}

.blog-section .left-sidebar-box {
    position: sticky;
    top: 20px;
}
@media (min-width: 1200px) {
    .blog-section .left-sidebar-box .back-button {
        display: none;
    }
}
.blog-section .left-sidebar-box .left-search-box .search-box {
    position: relative;
    background-color: rgba(var(--base-gray), 1);
}
.blog-section .left-sidebar-box .left-search-box .search-box::after {
    right: 51px;
    opacity: 0.3;
    background-color: rgba(var(--border-color), 1);
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
}
[dir="rtl"]
    .blog-section
    .left-sidebar-box
    .left-search-box
    .search-box::after {
    right: unset;
    left: 51px;
}
@media (max-width: 1199.98px) {
    .blog-section .left-sidebar-box .left-search-box .search-box::after {
        content: none;
    }
}
.blog-section .left-sidebar-box .left-search-box .search-box .input-group-text {
    border: unset;
    background-color: rgba(var(--white), 1);
    padding: 17px 17px 17px 0px;
}
[dir="rtl"]
    .blog-section
    .left-sidebar-box
    .left-search-box
    .search-box
    .input-group-text {
    padding: 17px 0 17px 17px;
}
.blog-section
    .left-sidebar-box
    .left-search-box
    .search-box
    .input-group-text
    i {
    --Color: rgba(var(--content-color), 1);
}
.blog-section .left-sidebar-box .left-search-box .search-box input {
    color: rgba(var(--title-color), 1);
    background-color: rgba(var(--white), 1);
    border: none;
    padding-top: 11px;
    height: 53px;
}
@media (max-width: 1199.98px) {
    .blog-section .left-sidebar-box .left-search-box .search-box input {
        height: calc(44px + 9 * (100vw - 320px) / 880);
        background-color: transparent;
    }
}
.blog-section
    .left-sidebar-box
    .left-search-box
    .search-box
    input::placeholder {
    color: rgba(var(--content-color), 1);
}
.blog-section .left-sidebar-box .left-search-box .search-box input:focus {
    border-color: #ced4da;
}
.blog-section
    .left-sidebar-box
    .left-search-box
    .search-box
    input[type="search"]:enabled:read-write:-webkit-any(
        :focus,
        :hover
    )::-webkit-search-cancel-button {
    margin-left: 10px;
    cursor: pointer;
}
@media (min-width: 1200px) {
    .blog-section .left-sidebar-box .left-accordion-box {
        margin-top: 28px;
    }
}
.blog-section .left-sidebar-box .left-accordion-box .accordion-item {
    border-radius: 6px;
    border: unset;
    padding: 18px 23px;
    background-color: rgba(var(--white), 1);
}
@media (max-width: 1199.98px) {
    .blog-section .left-sidebar-box .left-accordion-box .accordion-item {
        padding: calc(6px + 12 * (100vw - 320px) / 880)
            calc(15px + 8 * (100vw - 320px) / 880) 0;
    }
}
.blog-section
    .left-sidebar-box
    .left-accordion-box
    .accordion-item
    + .accordion-item {
    margin-top: 30px;
}
@media (max-width: 1199.98px) {
    .blog-section
        .left-sidebar-box
        .left-accordion-box
        .accordion-item
        + .accordion-item {
        margin-top: calc(16px + 4 * (100vw - 320px) / 880);
        padding-top: calc(16px + 4 * (100vw - 320px) / 880);
        border-top: 1px solid rgba(var(--border-color), 1);
        border-radius: 0;
    }
}
@media (max-width: 1199.98px) {
    .blog-section
        .left-sidebar-box
        .left-accordion-box
        .accordion-item:last-child {
        margin-bottom: calc(16px + 4 * (100vw - 320px) / 880);
    }
}
.blog-section
    .left-sidebar-box
    .left-accordion-box
    .accordion-item
    .accordion-header
    .accordion-button {
    background-color: transparent;
    color: rgba(var(--title-color), 1);
    font-weight: 500;
    padding: 0;
    font-size: calc(17px + 2 * (100vw - 320px) / 1600);
    justify-content: space-between;
}
.blog-section
    .left-sidebar-box
    .left-accordion-box
    .accordion-item
    .accordion-header
    .accordion-button::after {
    content: unset;
}
.blog-section
    .left-sidebar-box
    .left-accordion-box
    .accordion-item
    .accordion-header
    .accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}
.blog-section
    .left-sidebar-box
    .left-accordion-box
    .accordion-item
    .accordion-header
    .accordion-button:not(.collapsed) {
    box-shadow: none;
}
.blog-section
    .left-sidebar-box
    .left-accordion-box
    .accordion-item
    .accordion-header
    .accordion-button:not(.collapsed)
    i {
    transform: rotate(180deg);
}
.blog-section
    .left-sidebar-box
    .left-accordion-box
    .accordion-item
    .accordion-header
    .accordion-button
    i {
    transition: all 0.15s ease-in-out;
    --Color: rgba(var(--title-color), 1);
}
.blog-section
    .left-sidebar-box
    .left-accordion-box
    .accordion-item
    .accordion-collapse {
    background-color: transparent;
}
.blog-section
    .left-sidebar-box
    .left-accordion-box
    .accordion-item
    .accordion-collapse
    .accordion-body {
    padding: calc(16px + 4 * (100vw - 320px) / 1600) 0 0;
    margin-top: 10px;
    border-top: 1px solid rgba(var(--content-color), 0.1);
}
.blog-section
    .left-sidebar-box
    .left-accordion-box
    .accordion-item
    .accordion-collapse
    .accordion-body
    .recent-post-box
    .recent-box {
    gap: calc(9px + 6 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
}
@media (min-width: 1400px) {
    .blog-section
        .left-sidebar-box
        .left-accordion-box
        .accordion-item
        .accordion-collapse
        .accordion-body
        .recent-post-box
        .recent-box {
        gap: calc(10px + 5 * (100vw - 1400px) / 520);
    }
}
.blog-section
    .left-sidebar-box
    .left-accordion-box
    .accordion-item
    .accordion-collapse
    .accordion-body
    .recent-post-box
    .recent-box
    + .recent-box {
    margin-top: 20px;
}
.blog-section
    .left-sidebar-box
    .left-accordion-box
    .accordion-item
    .accordion-collapse
    .accordion-body
    .recent-post-box
    .recent-box:hover
    .recent-image
    img {
    transform: scale(1.1) rotate(4deg);
}
.blog-section
    .left-sidebar-box
    .left-accordion-box
    .accordion-item
    .accordion-collapse
    .accordion-body
    .recent-post-box
    .recent-box:hover
    .recent-detail
    .recent-name {
    color: rgba(var(--primary-color), 1);
}
.blog-section
    .left-sidebar-box
    .left-accordion-box
    .accordion-item
    .accordion-collapse
    .accordion-body
    .recent-post-box
    .recent-box
    .recent-image {
    border-radius: 4px;
    overflow: hidden;
    width: 130px;
    height: 85px;
}
@media (min-width: 1400px) {
    .blog-section
        .left-sidebar-box
        .left-accordion-box
        .accordion-item
        .accordion-collapse
        .accordion-body
        .recent-post-box
        .recent-box
        .recent-image {
        width: calc(95px + 35 * (100vw - 1400px) / 520);
        height: calc(65px + 20 * (100vw - 1400px) / 520);
    }
}
@media (max-width: 1199.98px) {
    .blog-section
        .left-sidebar-box
        .left-accordion-box
        .accordion-item
        .accordion-collapse
        .accordion-body
        .recent-post-box
        .recent-box
        .recent-image {
        width: calc(95px + 35 * (100vw - 320px) / 1600);
        height: calc(65px + 20 * (100vw - 320px) / 1600);
    }
}
.blog-section
    .left-sidebar-box
    .left-accordion-box
    .accordion-item
    .accordion-collapse
    .accordion-body
    .recent-post-box
    .recent-box
    .recent-image
    img {
    transition: all 0.15s ease-in-out;
    width: 100%;
    height: 100%;
}
.blog-section
    .left-sidebar-box
    .left-accordion-box
    .accordion-item
    .accordion-collapse
    .accordion-body
    .recent-post-box
    .recent-box
    .recent-detail {
    width: calc(100% - 130px - (9px + 6 * (100vw - 320px) / 1600));
}
@media (min-width: 1400px) {
    .blog-section
        .left-sidebar-box
        .left-accordion-box
        .accordion-item
        .accordion-collapse
        .accordion-body
        .recent-post-box
        .recent-box
        .recent-detail {
        width: calc(
            100% - (95px + 35 * (100vw - 1400px) / 520) -
                (10px + 5 * (100vw - 1400px) / 520)
        );
    }
}
@media (max-width: 1199.98px) {
    .blog-section
        .left-sidebar-box
        .left-accordion-box
        .accordion-item
        .accordion-collapse
        .accordion-body
        .recent-post-box
        .recent-box
        .recent-detail {
        width: calc(
            100% - (95px + 35 * (100vw - 320px) / 1600) -
                (10px + 5 * (100vw - 320px) / 1600)
        );
    }
}
.blog-section
    .left-sidebar-box
    .left-accordion-box
    .accordion-item
    .accordion-collapse
    .accordion-body
    .recent-post-box
    .recent-box
    .recent-detail
    a {
    color: rgba(var(--title-color), 1);
}
.blog-section
    .left-sidebar-box
    .left-accordion-box
    .accordion-item
    .accordion-collapse
    .accordion-body
    .recent-post-box
    .recent-box
    .recent-detail
    a:hover {
    color: rgba(var(--title-color), 1);
}
.blog-section
    .left-sidebar-box
    .left-accordion-box
    .accordion-item
    .accordion-collapse
    .accordion-body
    .recent-post-box
    .recent-box
    .recent-detail
    a
    h3 {
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    line-height: 1.2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
.blog-section
    .left-sidebar-box
    .left-accordion-box
    .accordion-item
    .accordion-collapse
    .accordion-body
    .recent-post-box
    .recent-box
    .recent-detail
    p {
    color: rgba(var(--content-color), 1);
    margin-top: 6px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
.blog-section
    .left-sidebar-box
    .left-accordion-box
    .accordion-item
    .accordion-collapse
    .accordion-body
    .recent-post-box
    .recent-box
    .recent-detail
    h6 {
    margin-top: 8px;
    color: rgba(var(--content-color), 1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.blog-section
    .left-sidebar-box
    .left-accordion-box
    .accordion-item
    .accordion-collapse
    .accordion-body
    .recent-post-box
    .recent-box
    .recent-detail
    h6
    .feather {
    stroke-width: 1;
    width: 18px;
    height: 18px;
}
.blog-section
    .left-sidebar-box
    .left-accordion-box
    .accordion-item
    .accordion-collapse
    .accordion-body
    .category-list-box
    ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.blog-section
    .left-sidebar-box
    .left-accordion-box
    .accordion-item
    .accordion-collapse
    .accordion-body
    .category-list-box
    ul
    li {
    display: block;
    position: relative;
    transition: all 0.15s ease-in-out;
    z-index: 0;
    overflow: hidden;
    width: 100%;
}
.blog-section
    .left-sidebar-box
    .left-accordion-box
    .accordion-item
    .accordion-collapse
    .accordion-body
    .category-list-box
    ul
    li:first-child {
    padding-top: 0;
}
.blog-section
    .left-sidebar-box
    .left-accordion-box
    .accordion-item
    .accordion-collapse
    .accordion-body
    .category-list-box
    ul
    li
    a {
    display: block;
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    color: rgba(var(--title-color), 1);
}
.blog-section
    .left-sidebar-box
    .left-accordion-box
    .accordion-item
    .accordion-collapse
    .accordion-body
    .category-list-box
    ul
    li
    a:hover
    h5,
.blog-section
    .left-sidebar-box
    .left-accordion-box
    .accordion-item
    .accordion-collapse
    .accordion-body
    .category-list-box
    ul
    li
    a:hover
    span {
    color: rgba(var(--primary-color), 1);
}
.blog-section
    .left-sidebar-box
    .left-accordion-box
    .accordion-item
    .accordion-collapse
    .accordion-body
    .category-list-box
    ul
    li
    a.category-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.blog-section
    .left-sidebar-box
    .left-accordion-box
    .accordion-item
    .accordion-collapse
    .accordion-body
    .category-list-box
    ul
    li
    a.category-name:hover
    h5,
.blog-section
    .left-sidebar-box
    .left-accordion-box
    .accordion-item
    .accordion-collapse
    .accordion-body
    .category-list-box
    ul
    li
    a.category-name:hover
    span {
    color: rgba(var(--primary-color), 1);
}
.blog-section
    .left-sidebar-box
    .left-accordion-box
    .accordion-item
    .accordion-collapse
    .accordion-body
    .category-list-box
    ul
    li
    a.category-name
    h3 {
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    color: rgba(var(--content-color), 1);
}
.blog-section
    .left-sidebar-box
    .left-accordion-box
    .accordion-item
    .accordion-collapse
    .accordion-body
    .category-list-box
    ul
    li
    a.category-name
    h3,
.blog-section
    .left-sidebar-box
    .left-accordion-box
    .accordion-item
    .accordion-collapse
    .accordion-body
    .category-list-box
    ul
    li
    a.category-name
    span {
    transition: all 0.15s ease-in-out;
}
.blog-section
    .left-sidebar-box
    .left-accordion-box
    .accordion-item
    .accordion-collapse
    .accordion-body
    .category-list-box
    ul
    li
    a.category-name
    span {
    font-size: 14px;
    color: rgba(var(--content-color), 1);
}
.blog-section
    .left-sidebar-box
    .left-accordion-box
    .accordion-item
    .accordion-collapse
    .accordion-body
    .product-tags-box
    ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.blog-section
    .left-sidebar-box
    .left-accordion-box
    .accordion-item
    .accordion-collapse
    .accordion-body
    .product-tags-box
    ul
    li
    a {
    font-size: 14px;
    color: rgba(var(--content-color), 1);
    text-transform: capitalize;
    transition: all 0.15s ease-in-out;
    padding: 6px calc(8px + 1 * (100vw - 320px) / 1600) 4px;
    display: flex;
    border-radius: 3px;
    background-color: rgba(var(--base-gray), 1);
}
.blog-section
    .left-sidebar-box
    .left-accordion-box
    .accordion-item
    .accordion-collapse
    .accordion-body
    .product-tags-box
    ul
    li
    a:hover {
    background-color: rgba(var(--primary-color), 1);
    color: #fff;
}
.blog-section
    .left-sidebar-box
    .left-accordion-box
    .accordion-item
    .accordion-collapse
    .accordion-body
    .product-tags-box
    ul
    li
    a:hover::after {
    opacity: 1;
}
.blog-section
    .left-sidebar-box
    .left-accordion-box
    .accordion-item
    .accordion-collapse
    .accordion-body
    .product-list-2
    li
    + li {
    margin-top: 30px;
}
.blog-section
    .left-sidebar-box
    .left-accordion-box
    .accordion-item
    .accordion-collapse
    .accordion-body
    .product-list-2
    li
    + li::after {
    top: -16px;
    width: calc(100% - 80px - (12px + 11 * (100vw - 320px) / 1600));
}
.blog-section
    .left-sidebar-box
    .left-accordion-box
    .accordion-item
    .accordion-collapse
    .accordion-body
    .product-list-2
    li
    .offer-product
    .offer-detail
    a {
    color: rgba(var(--title-color), 1);
}
.blog-section .left-sidebar-box .blog-user-box {
    width: 100%;
    padding: 20px 24px;
    background-color: rgba(var(--white), 1);
    border-radius: 6px;
}
.blog-section .left-sidebar-box .blog-user-box .user-image {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 15px;
}
.blog-section .left-sidebar-box .blog-user-box .user-image img {
    border-radius: 4px;
    object-fit: cover;
    width: calc(54px + 20 * (100vw - 320px) / 1600);
    height: calc(54px + 20 * (100vw - 320px) / 1600);
}
.blog-section .left-sidebar-box .blog-user-box .user-content h5 {
    text-transform: capitalize;
    font-size: 16px;
    color: rgba(var(--title-color), 0.8);
    font-weight: 400;
}
.blog-section .left-sidebar-box .blog-user-box .user-content p {
    text-transform: capitalize;
    font-size: calc(14px + 1 * (100vw - 320px) / 1600);
    color: rgba(var(--title-color), 0.8);
    font-weight: 400;
    margin-top: 12px;
    line-height: 1.3;
}
.blog-section .left-sidebar-box .blog-user-box .user-content p a {
    text-transform: none;
    display: inline-block;
}
.blog-section .left-sidebar-box .blog-user-box .user-content .user-social-link {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: calc(8px + 5 * (100vw - 320px) / 1600);
}
.blog-section
    .left-sidebar-box
    .blog-user-box
    .user-content
    .user-social-link
    li
    a {
    font-size: 17px;
    border-radius: 3px;
    color: rgba(var(--content-color), 1);
    transition: all 0.25s ease-in-out;
    background-color: rgba(var(--base-gray), 1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(34px + 4 * (100vw - 320px) / 1600);
    height: calc(34px + 4 * (100vw - 320px) / 1600);
}
.blog-section
    .left-sidebar-box
    .blog-user-box
    .user-content
    .user-social-link
    li
    a:hover {
    background-color: rgba(var(--theme-blue), 1);
    color: rgba(var(--white), 1);
}
.blog-section
    .left-sidebar-box
    .blog-user-box
    .user-content
    .user-social-link
    li
    a
    i {
    line-height: 1;
    font-size: calc(15px + 2 * (100vw - 320px) / 1600);
}
.blog-section .left-sidebar-box.show {
    left: 0;
}
[dir="rtl"] .blog-section .left-sidebar-box.show {
    left: unset;
    right: 0;
}
@media (max-width: 1199.98px) {
    .blog-section .left-sidebar-box {
        border-right: unset;
        position: fixed;
        top: 0;
        left: calc(-320px + -50 * (100vw - 320px) / 879);
        background-color: rgba(var(--white), 1);
        z-index: 1041;
        overflow-y: auto;
        transition: all 0.15s ease-in-out;
        width: calc(300px + 50 * (100vw - 320px) / 879);
        height: 100%;
    }
    [dir="rtl"] .blog-section .left-sidebar-box {
        left: unset;
        right: calc(-320px + -50 * (100vw - 320px) / 879);
    }
    .blog-section .left-sidebar-box .back-button {
        color: rgba(var(--title-color), 1);
        margin-bottom: calc(8px + 18 * (100vw - 320px) / 1600);
        padding: 18px 20px 15px;
        background-color: rgba(var(--base-gray), 1);
        border-bottom: 1px solid rgba(var(--light-gray), 1);
        width: 100%;
        border-inline: unset;
        border-top: unset;
        font-size: 18px;
        display: flex;
        align-items: center;
        gap: 6px;
        line-height: 1;
    }
    .blog-section .left-sidebar-box .back-button i {
        margin-top: -3px;
        font-size: 18px;
    }
    .blog-section .left-sidebar-box .left-search-box {
        padding: 18px calc(15px + 8 * (100vw - 320px) / 880);
    }
    .blog-section .left-sidebar-box .left-search-box .search-box {
        background-color: rgba(var(--light-gray), 1);
        border-bottom: none;
        border-radius: 6px;
    }
    .blog-section
        .left-sidebar-box
        .left-search-box
        .search-box
        .input-group-text {
        background-color: transparent;
        padding: 10px;
        border-left: 1px solid rgba(var(--border-color), 1);
    }
    [dir="rtl"]
        .blog-section
        .left-sidebar-box
        .left-search-box
        .search-box
        .input-group-text {
        border-right: 1px solid rgba(var(--border-color), 1);
        border-left: unset;
        padding: 10px;
    }
    .blog-section
        .left-sidebar-box
        .left-search-box
        .search-box
        .input-group-text
        i {
        --size: calc(18px + (20 - 18) * ((100vw - 320px) / (1200 - 320)));
    }
}
.blog-section .blog-box {
    background-color: rgba(var(--white), 1);
    border-radius: calc(5px + 1 * (100vw - 320px) / 1600);
    overflow: hidden;
    padding: calc(10px + 4 * (100vw - 320px) / 1600);
    position: relative;
    border: 1px solid rgba(var(--content-color), 0.1);
}
.blog-section .blog-box.sticky-blog-box .pinned {
    position: absolute;
    -webkit-font-smoothing: antialiased;
    color: #fff;
    top: 8px;
    right: 8px;
    background-color: rgba(var(--primary-color), 1);
    z-index: 1;
    border-radius: 6px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 33px;
    height: 33px;
}
.blog-section
    .blog-box:hover
    .blog-image
    a:not(.blog-box .blog-name a, .blog-profile-box .blog-image) {
    transform: scale(1.1) rotate(4deg);
}
.blog-section .blog-box:hover .blog-contain h3,
.blog-section .blog-box:hover .blog-contain i {
    color: rgba(var(--primary-color), 1);
}
.blog-section .blog-box .blog-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    border-radius: 4px;
}
.blog-section .blog-box .blog-image a {
    transition: all 0.15s ease-in-out;
}
.blog-section .blog-box .blog-image a img {
    aspect-ratio: 3/2;
}
.blog-section .blog-box .blog-image label {
    position: absolute;
    top: 8px;
    left: 8px;
    border-radius: 4px;
    background-color: rgba(var(--primary-color), 1);
    color: #fff;
    padding: 8px 8px 5px 6px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    gap: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}
[dir="rtl"] .blog-section .blog-box .blog-image label {
    left: unset;
    right: 8px;
}
.blog-section .blog-box .blog-image label i {
    margin-top: -3px;
    margin-right: 3px;
    color: #fff;
    font-size: 16px;
    line-height: 1;
}
[dir="rtl"] .blog-section .blog-box .blog-image label i {
    margin-right: unset;
    margin-left: 3px;
}
.blog-section .blog-box .blog-image .blog-profile-box {
    display: flex;
    align-items: center;
    gap: calc(6px + 5 * (100vw - 320px) / 1600);
    padding: 10px 12px;
    background-color: rgba(var(--title-color), 0.4);
    position: absolute;
    bottom: 0;
    backdrop-filter: blur(2px);
    width: 100%;
}
.blog-section .blog-box .blog-image .blog-profile-box .blog-name a {
    transform: unset;
}
.blog-section .blog-box .blog-image .blog-profile-box .blog-name .name {
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    color: rgba(var(--white), 1);
}
.blog-section .blog-box .blog-image .blog-profile-box .blog-name h4 {
    font-size: calc(13px + 1 * (100vw - 320px) / 1600);
    color: rgba(var(--white), 0.8);
    font-weight: 400;
    margin-top: 4px;
}
.blog-section .blog-box .blog-image .blog-profile-box .blog-name .date {
    font-size: 15px;
}
.blog-section .blog-box .blog-image .blog-profile-box .blog-image {
    border-radius: 4px;
    margin: 0;
    border: 1px solid rgba(var(--content-color), 0.1);
    transform: unset;
    width: 50px;
    height: 50px;
}
.blog-section .blog-box .blog-image .blog-profile-box .blog-image img {
    aspect-ratio: unset;
}
.blog-section .blog-box .blog-contain-2 {
    padding: 0;
}
.blog-section .blog-box .blog-contain a {
    gap: 8px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.blog-section .blog-box .blog-contain a h3 {
    font-weight: 500;
    color: rgba(var(--title-color), 1);
    font-size: calc(16px + 2 * (100vw - 320px) / 1600);
    transition: all 0.15s ease-in-out;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
.blog-section .blog-box .blog-contain a i {
    color: rgba(var(--title-color), 1);
    font-size: calc(16px + 2 * (100vw - 320px) / 1600);
    line-height: normal;
}
.blog-section .blog-box .blog-contain p {
    color: rgba(var(--content-color), 1);
    margin-bottom: 0;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
@media (max-width: 1399.98px) {
    .blog-section .blog-box .blog-contain p {
        -webkit-line-clamp: 2;
    }
}
.blog-section .blog-box .blog-contain .blog-button {
    background-color: rgba(var(--primary-color), 0.1);
    position: relative;
    z-index: 0;
    border-radius: 5px;
    padding: calc(8px + 2 * (100vw - 320px) / 1600)
        calc(14px + 4 * (100vw - 320px) / 1600)
        calc(6px + 2 * (100vw - 320px) / 1600);
    color: rgba(var(--primary-color), 1);
    transition: all 0.15s ease-in-out;
    margin-top: calc(8px + 14 * (100vw - 320px) / 1600);
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    --size: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
    display: inline-flex;
    gap: 5px;
    align-items: center;
}
.blog-section .blog-box .blog-contain .blog-button:hover {
    background-color: rgba(var(--primary-color), 1);
    color: #fff;
}
.blog-section .blog-box .blog-contain .blog-button:hover i {
    --Color: #fff;
}
.blog-section .blog-box .blog-contain .blog-button i {
    --Color: rgba(var(--primary-color), 1);
    margin-top: -3px;
    transition: all 0.15s ease-in-out;
}
.blog-section .blog-box .blog-contain .blog-desc {
    font-size: calc(14px + 1 * (100vw - 320px) / 1600);
    line-height: 1.4;
    margin-block: 5px 0;
}
.blog-section .blog-box .blog-contain .product-tag {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.blog-section .blog-box .blog-contain .product-tag span {
    padding: 5px 10px 2px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 400;
}
.blog-section .blog-box.blog-list-box {
    display: flex;
    align-items: flex-start;
    gap: calc(15px + 10 * (100vw - 320px) / 1600);
    border: 1px solid rgba(var(--content-color), 0.1);
}
@media (max-width: 575.98px) {
    .blog-section .blog-box.blog-list-box {
        flex-direction: column;
        align-items: unset;
    }
}
.blog-section .blog-box.blog-list-box:hover .blog-image img {
    transform: scale(1.02);
}
.blog-section .blog-box.blog-list-box .blog-image {
    margin: 0;
    width: calc(244px + 194 * (100vw - 1199px) / 721);
    height: calc(236px + 57 * (100vw - 1199px) / 721);
}
@media (max-width: 1199.98px) {
    .blog-section .blog-box.blog-list-box .blog-image {
        width: calc(198px + 138 * (100vw - 574px) / 626);
        height: calc(222px + 14 * (100vw - 574px) / 626);
    }
}
@media (max-width: 575.98px) {
    .blog-section .blog-box.blog-list-box .blog-image {
        width: 100%;
        height: calc(176px + 46 * (100vw - 320px) / 256);
    }
}
.blog-section .blog-box.blog-list-box .blog-image img {
    transition: all 0.25s ease-in-out;
}
.blog-section .blog-box.blog-list-box .blog-contain {
    width: calc(100% - (244px + 194 * (100vw - 1199px) / 721) - 15px);
    padding: 0;
}
@media (max-width: 1199.98px) {
    .blog-section .blog-box.blog-list-box .blog-contain {
        width: calc(100% - (198px + 138 * (100vw - 574px) / 626) - 15px);
    }
}
@media (max-width: 575.98px) {
    .blog-section .blog-box.blog-list-box .blog-contain {
        width: 100%;
        padding: 0;
    }
}
.blog-section .blog-box.blog-list-box .blog-contain .blog-button {
    margin-top: calc(12px + 6 * (100vw - 320px) / 1600);
}
.blog-section .blog-box.blog-list-box .blog-contain p {
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    margin-top: 5px;
}
.blog-section .blog-box.blog-list-box .blog-contain a h3 {
    line-height: 1.4;
    margin-bottom: 0;
    font-size: calc(18px + 4 * (100vw - 320px) / 1600);
}
.blog-section .blog-box.blog-list-box .blog-contain .blog-profile-box {
    display: flex;
    align-items: center;
    gap: calc(6px + 5 * (100vw - 320px) / 1600);
    padding-top: calc(8px + 6 * (100vw - 320px) / 1600);
    margin-top: calc(8px + 6 * (100vw - 320px) / 1600);
    border-top: 1px solid rgba(var(--border-color), 1);
    width: 100%;
}
.blog-section
    .blog-box.blog-list-box
    .blog-contain
    .blog-profile-box
    .blog-name
    a {
    transform: unset;
    flex-direction: column;
    gap: 5px;
}
.blog-section
    .blog-box.blog-list-box
    .blog-contain
    .blog-profile-box
    .blog-name
    .name {
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    color: rgba(var(--title-color), 1);
}
.blog-section
    .blog-box.blog-list-box
    .blog-contain
    .blog-profile-box
    .blog-name
    h4 {
    font-size: calc(13px + 1 * (100vw - 320px) / 1600);
    color: rgba(var(--content-color), 0.68);
    font-weight: 400;
}
.blog-section
    .blog-box.blog-list-box
    .blog-contain
    .blog-profile-box
    .blog-name
    .date {
    font-size: 15px;
}
.blog-section
    .blog-box.blog-list-box
    .blog-contain
    .blog-profile-box
    .blog-image {
    border-radius: 4px;
    margin: 0;
    border: 1px solid rgba(var(--content-color), 0.1);
    transform: unset;
    width: 50px;
    height: 50px;
}
.blog-section
    .blog-box.blog-list-box
    .blog-contain
    .blog-profile-box
    .blog-image
    img {
    aspect-ratio: unset;
}
.blog-section .blog-box.sticky-blog-box {
    border-color: rgba(var(--primary-color), 1);
}
.blog-section .blog-box.sticky-blog-box > .blog-image {
    position: relative;
}
.blog-section .blog-box.sticky-blog-box > .blog-image::before {
    top: 8px;
    right: 8px;
    color: #fff;
    background-color: rgba(var(--primary-color), 1);
    z-index: 1;
    border-radius: calc(4px + 2 * (100vw - 320px) / 1600);
    font-size: calc(16px + 2 * (100vw - 320px) / 1600);
    content: "\f038";
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(29px + 4 * (100vw - 320px) / 1600);
    height: calc(29px + 4 * (100vw - 320px) / 1600);
    font-family: remixicon;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
}
.blog-section .blog-list {
    display: flex;
    align-items: center;
    transition: all 0.15s ease-in-out;
}
@media (max-width: 1199.98px) {
    .blog-section .blog-list {
        display: block;
    }
}
@media (max-width: 991.98px) {
    .blog-section .blog-list {
        display: flex;
    }
}
@media (max-width: 767.98px) {
    .blog-section .blog-list {
        display: block;
    }
}
.blog-section .blog-list:hover {
    box-shadow: 0 4px 9px rgba(var(--title-color), 1);
}
.blog-section .blog-list:hover .blog-image img {
    transform: scale(1.1);
}
.blog-section .blog-list:hover .blog-contain a h3 {
    color: rgba(var(--primary-color), 1);
}
.blog-section .blog-list:hover .blog-contain .blog-button {
    background-color: rgba(var(--primary-color), 1);
    color: rgba(var(--white), 1);
}
.blog-section .blog-list .blog-image {
    margin-bottom: -1px;
    width: 38%;
    transition: all 0.15s ease-in-out;
}
@media (max-width: 1399.98px) {
    .blog-section .blog-list .blog-image {
        width: 45%;
    }
}
@media (max-width: 1199.98px) {
    .blog-section .blog-list .blog-image {
        width: 100%;
    }
}
@media (max-width: 991.98px) {
    .blog-section .blog-list .blog-image {
        width: 45%;
    }
}
@media (max-width: 767.98px) {
    .blog-section .blog-list .blog-image {
        margin-bottom: 8px;
        text-align: center;
        width: 100%;
        height: auto;
    }
}
.blog-section .blog-list .blog-image img {
    transition: all 0.15s ease-in-out;
}
@media (max-width: 1199.98px) {
    .blog-section .blog-list .blog-image img {
        width: 100%;
    }
}
@media (max-width: 991.98px) {
    .blog-section .blog-list .blog-image img {
        width: auto;
    }
}
@media (max-width: 767.98px) {
    .blog-section .blog-list .blog-image img {
        width: 100%;
    }
}
.blog-section .blog-list .blog-contain {
    padding: calc(10px + 15 * (100vw - 320px) / 1600);
    width: 62%;
}
@media (max-width: 1399.98px) {
    .blog-section .blog-list .blog-contain {
        width: 55%;
    }
}
@media (max-width: 1199.98px) {
    .blog-section .blog-list .blog-contain {
        width: 100%;
    }
}
@media (max-width: 991.98px) {
    .blog-section .blog-list .blog-contain {
        width: 55%;
    }
}
@media (max-width: 767.98px) {
    .blog-section .blog-list .blog-contain {
        width: 100%;
    }
}
.blog-section .blog-deatils-box {
    background-color: rgba(var(--white), 1);
    padding: calc(12px + 21 * (100vw - 320px) / 1600);
    border-radius: calc(6px + 2 * (100vw - 320px) / 1600);
    box-shadow: 0 2px 4px rgba(var(--black), 0.075);
}
.blog-section .review-people {
    background-color: rgba(var(--white), 1);
    padding: calc(12px + 21 * (100vw - 320px) / 1600);
    border-radius: calc(6px + 2 * (100vw - 320px) / 1600);
    box-shadow: 0 2px 4px rgba(var(--black), 0.075);
}
.blog-section .blog-detail-image {
    position: relative;
    border-radius: 8px;
}
.blog-section .blog-detail-image img {
    aspect-ratio: 3/2;
}
.blog-section .blog-image-contain {
    margin-bottom: 12px;
}
.blog-section .blog-image-contain .contain-list li {
    text-transform: capitalize;
    position: relative;
}
.blog-section .blog-image-contain .contain-list li + li {
    margin-left: 30px;
}
.blog-section .blog-image-contain .contain-list li + li::before {
    background-color: rgba(var(--title-color), 1);
    left: -24px;
    content: "";
    position: absolute;
    width: 15px;
    height: 1px;
    top: 50%;
    transform: translateY(-50%);
}
.blog-section .blog-image-contain h2 {
    margin: calc(10px + 4 * (100vw - 320px) / 1600) 0 6px;
    font-weight: 500;
    font-size: calc(22px + 12 * (100vw - 320px) / 1600);
}
.blog-section .blog-image-contain .contain-comment-list {
    justify-content: unset;
    flex-wrap: wrap;
    gap: calc(10px + 13 * (100vw - 320px) / 1600);
    color: rgba(var(--content-color), 1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-section .blog-image-contain .contain-comment-list.user-list {
    display: flex;
    align-items: center;
}
.blog-section .blog-image-contain .contain-comment-list.user-list .iconsax {
    --size: 18px;
    margin-right: 3px;
}
.blog-section .blog-image-contain .blog-list-box {
    gap: 14px;
    display: flex;
    align-items: center;
}
@media (max-width: 575.98px) {
    .blog-section .blog-image-contain .blog-list-box {
        flex-direction: column;
        gap: calc(4px + 4 * (100vw - 320px) / 256);
        align-items: unset;
    }
}
.blog-section .blog-image-contain .blog-list-box li {
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    color: rgba(var(--content-color), 1);
    font-weight: 400;
}
.blog-section .blog-image-contain .blog-list-box li:first-child {
    color: rgba(var(--primary-color), 1);
    font-weight: 500;
}
.blog-section .blog-image-contain .blog-list-box li:last-child {
    margin-left: auto;
}
@media (max-width: 575.98px) {
    .blog-section .blog-image-contain .blog-list-box li:last-child {
        margin-left: unset;
    }
}
.blog-section .blog-image-contain .blog-list-box li form {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}
.blog-section .blog-image-contain .blog-list-box li form .form-check-input {
    cursor: pointer;
    position: relative;
    margin-top: 0;
    line-height: 1;
    border: unset;
    background-color: transparent;
    width: auto;
    height: auto;
}
.blog-section
    .blog-image-contain
    .blog-list-box
    li
    form
    .form-check-input:before {
    content: "\ee0f";
    font-size: 18px;
    color: rgba(var(--content-color), 1);
    font-weight: 400;
    font-family: remixicon;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
}
.blog-section
    .blog-image-contain
    .blog-list-box
    li
    form
    .form-check-input:checked {
    background-color: transparent;
}
.blog-section
    .blog-image-contain
    .blog-list-box
    li
    form
    .form-check-input:checked:before {
    content: "\ee0e";
    color: rgba(var(--primary-color), 1);
}
.blog-section .blog-image-contain .blog-list-box li form .form-label {
    margin: 0;
    cursor: pointer;
}
.blog-section .blog-detail-contain {
    padding-top: 10px;
}
.blog-section .blog-detail-contain p {
    color: rgba(var(--content-color), 1);
    font-size: calc(15px + 2 * (100vw - 320px) / 1600);
    line-height: 1.4;
    margin-bottom: calc(12px + 8 * (100vw - 320px) / 1600);
}
.blog-section .blog-detail-contain p:first-child::first-letter {
    color: rgba(var(--title-color), 1);
    margin-right: calc(3px + 3 * (100vw - 320px) / 1600);
    font-size: calc(46px + 6 * (100vw - 320px) / 1600);
    line-height: 1;
    font-weight: 600;
}
.blog-section .blog-detail-contain p:last-child {
    margin-bottom: 0;
}
.blog-section .blog-detail-contain p .first {
    font-size: calc(55px + 15 * (100vw - 320px) / 1600);
    color: rgba(var(--content-color), 1);
    float: left;
    margin-right: calc(8px + 12 * (100vw - 320px) / 1600);
    margin-top: 8px;
    width: calc(38px + 12 * (100vw - 320px) / 1600);
    height: calc(38px + 12 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-section .blog-detail-contain .blog-quote {
    padding: calc(17px + 28 * (100vw - 320px) / 1600);
    border-radius: 6px;
    margin-bottom: calc(12px + 8 * (100vw - 320px) / 1600);
    background-color: rgba(var(--theme-blue), 1);
    position: relative;
    color: rgba(var(--white), 1);
    overflow: hidden;
    z-index: 0;
}
body.dark .blog-section .blog-detail-contain .blog-quote {
    background-color: #1a232e;
}
.blog-section .blog-detail-contain .blog-quote h3 {
    font-size: calc(16px + 6 * (100vw - 320px) / 1600);
    line-height: 1.5;
    margin-bottom: calc(10px + 6 * (100vw - 320px) / 1600);
    color: rgba(var(--white), 1);
}
body.dark .blog-section .blog-detail-contain .blog-quote h3 {
    color: #fff;
}
.blog-section .blog-detail-contain .blog-quote h4 {
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    letter-spacing: calc(2.1px + 0.9 * (100vw - 320px) / 1600);
    color: rgba(var(--white), 0.6);
    text-transform: uppercase;
}
body.dark .blog-section .blog-detail-contain .blog-quote h4 {
    color: rgba(255, 255, 255, 0.6);
}
.blog-section .blog-detail-contain .blog-quote::before {
    font-size: calc(142px + 58 * (100vw - 320px) / 1600);
    color: rgba(var(--white), 0.06);
    top: calc(-42px + -4 * (100vw - 320px) / 1600);
    right: calc(-36px + 4 * (100vw - 320px) / 1600);
    line-height: 1;
    transform: rotate(-6deg);
    z-index: -1;
    content: "\ec52";
    position: absolute;
    font-family: remixicon;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
}
body.dark .blog-section .blog-detail-contain .blog-quote::before {
    color: rgba(255, 255, 255, 0.06);
}
[dir="rtl"] .blog-section .blog-detail-contain .blog-quote::before {
    right: unset;
    left: calc(-36px + 4 * (100vw - 320px) / 1600);
    transform: scaleX(-1) rotate(6deg);
}
.blog-section .leave-title {
    margin-bottom: 16px;
}
.blog-section .leave-title h3 {
    z-index: 0;
    position: relative;
    color: rgba(var(--title-color), 1);
    font-size: 22px;
}
.blog-section .user-comment-box {
    margin-top: 24px;
}
.blog-section .user-comment-box ul {
    display: flex;
    flex-wrap: wrap;
}
.blog-section .user-comment-box ul li {
    padding: 0px 0 50px;
    width: 100%;
    position: relative;
}
.blog-section .user-comment-box ul li.li-padding {
    padding-left: calc(28px + 52 * (100vw - 320px) / 1600);
}
@media (max-width: 480px) {
    .blog-section .user-comment-box ul li {
        padding: 0;
    }
}
.blog-section .user-comment-box ul li .user-box {
    display: flex;
    align-items: flex-start;
}
@media (max-width: 480px) {
    .blog-section .user-comment-box ul li .user-box {
        display: block;
    }
}
.blog-section .user-comment-box ul li .user-box .reply-button {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
}
.blog-section .user-comment-box ul li .user-box .reply-button i {
    margin: -3px 9px 0 0;
    color: rgba(var(--content-color), 1);
    font-size: 16px;
}
.blog-section .user-comment-box ul li .user-box .user-image {
    position: relative;
}
.blog-section .user-comment-box ul li .user-box .user-image img {
    object-fit: cover;
    border-radius: 100%;
    overflow: hidden;
    width: 60px;
    height: 60px;
}
.blog-section .user-comment-box ul li .user-box .user-image .name {
    font-size: 18px;
}
.blog-section .user-comment-box ul li .user-box .user-contain {
    width: calc(100% - 70px);
    padding-left: 20px;
}
@media (max-width: 480px) {
    .blog-section .user-comment-box ul li .user-box .user-contain {
        width: 100%;
        padding: 0;
        margin-top: 14px;
    }
}
.blog-section .user-comment-box ul li .user-box .user-contain p {
    font-size: calc(13px + 2 * (100vw - 320px) / 1600);
    line-height: 1.6;
    color: rgba(var(--content-color), 1);
    margin-bottom: 0;
    margin-top: 50px;
    width: 85%;
}
@media (max-width: 575.98px) {
    .blog-section .user-comment-box ul li .user-box .user-contain p {
        width: 100%;
    }
}
@media (max-width: 480px) {
    .blog-section .user-comment-box ul li .user-box .user-contain p {
        margin: 0 0 35px;
    }
}
.blog-section .leave-box {
    margin-top: calc(15px + 25 * (100vw - 320px) / 1600);
}
.blog-section .leave-box .leave-comment .comment-notes p {
    line-height: 1.6;
}
.blog-section .leave-box .leave-comment .save-comment-box {
    margin: 20px 0 0;
    display: flex;
    align-items: center;
}
.blog-section .leave-box .leave-comment .save-comment-box .form-check {
    display: flex;
    align-items: center;
}
.blog-section .leave-box .leave-comment .save-comment-box .form-check input {
    margin-top: -5px;
}
@media (max-width: 659px) {
    .blog-section
        .leave-box
        .leave-comment
        .save-comment-box
        .form-check
        input {
        margin-top: -21px;
    }
}
@media (max-width: 341px) {
    .blog-section
        .leave-box
        .leave-comment
        .save-comment-box
        .form-check
        input {
        margin-top: -44px;
    }
}
.blog-section
    .leave-box
    .leave-comment
    .save-comment-box
    .form-check
    .form-check-label {
    font-size: 15px;
    font-weight: 400;
    color: rgba(var(--content-color), 1);
}
.blog-section .leave-box .leave-comment .blog-input .form-control {
    border: none;
}
.blog-section .leave-box .leave-comment .blog-input .form-control:focus {
    background-color: rgba(var(--white), 1);
}
.blog-section .form-section {
    padding: calc(18px + 8 * (100vw - 320px) / 1600);
    background-color: rgba(var(--white), 1);
    border-radius: calc(6px + 2 * (100vw - 320px) / 1600);
    box-shadow: 0 2px 4px rgba(var(--black), 0.075);
}
.blog-section .form-section form .form-box .form-control {
    padding: calc(13px + 2 * (100vw - 320px) / 1600)
        calc(11px + 2 * (100vw - 320px) / 1600)
        calc(11px + 2 * (100vw - 320px) / 1600);
    border: unset;
    border-radius: calc(4px + 2 * (100vw - 320px) / 1600);
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    background-color: rgba(var(--base-gray), 1);
    color: rgba(var(--title-color), 1);
}
.blog-section .form-section form .form-box .form-control::placeholder {
    color: rgba(var(--content-color), 1);
}
[dir="rtl"] .blog-section .form-section form .form-box .form-control {
    text-align: right;
}
.blog-section .filter-button a {
    font-size: calc(14px + 1 * (100vw - 320px) / 1600);
    font-weight: 500;
    padding: calc(6px + 4 * (100vw - 320px) / 1600)
        calc(10px + 5 * (100vw - 320px) / 1600);
    background-color: rgba(var(--primary-color), 1);
    color: #fff;
    border-radius: 5px;
    display: inline-block;
}
.blog-section.masonary-blog-section .blog-box .blog-image a img {
    aspect-ratio: unset;
}

.recent-blog-slider .swiper-wrapper {
    margin-bottom: 1px;
}

/* Mixin Files */
/**=====================
    4.2 Checkout CSS
==========================**/
.return-login-section .return-box {
    padding: calc(12px + -4 * (100vw - 320px) / 1600)
        calc(12px + -4 * (100vw - 320px) / 1600)
        calc(12px + -4 * (100vw - 320px) / 1600)
        calc(12px + 7 * (100vw - 320px) / 1600);
    background-color: rgba(var(--white), 1);
    overflow: hidden;
    border-radius: 5px;
    position: relative;
    flex-wrap: wrap;
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
[dir="rtl"] .return-login-section .return-box {
    padding-left: calc(12px + -4 * (100vw - 320px) / 1600);
    padding-right: calc(12px + 7 * (100vw - 320px) / 1600);
}
.return-login-section .return-box::before {
    top: 0;
    left: 0;
    background-color: rgba(var(--primary-color), 1);
    content: "";
    position: absolute;
    width: 2px;
    height: 100%;
}
[dir="rtl"] .return-login-section .return-box::before {
    left: unset;
    right: 0;
}
.return-login-section .return-box h3 {
    font-size: calc(16px + 2 * (100vw - 320px) / 1600);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.3px;
}
.return-login-section .return-box .btn {
    background-color: rgba(var(--primary-color), 1);
    color: #fff;
    padding: calc(8px + 5 * (100vw - 320px) / 1600)
        calc(14px + 9 * (100vw - 320px) / 1600)
        calc(5px + 5 * (100vw - 320px) / 1600);
    font-size: calc(15px + 3 * (100vw - 320px) / 1600);
}

/*-----------------------------------------------------------------------------------
Template Name: Kartify - 
Template URI: https://themes.pixelstrap.com/kartify/
Description: This is E-commerce website
Author: Pixelstrap
Author URI: https://themeforest.net/user/pixelstrap
-----------------------------------------------------------------------------------

1. Base Files
	1.1 Reset CSS
	1.2 Typography CSS

2. Components Files
	2.1 Accordion CSS
	2.2 Brand CSS
	2.3 Breadcrumb CSS
	2.4 Buttons CSS
	2.5 Dropdown CSS
	2.6 Form CSS 
	2.7 Layzload CSS
	2.8 Light Gallery CSS
	2.9 Modal CSS
	2.10 Nav-tabs CSS
	2.11 Offcanvas CSS
	2.12 Pagination CSS
	2.13 Rating CSS
	2.14 Ratio CSS
	2.15 Sidebar Category CSS
	2.16 Slider CSS
	2.17 Table CSS
	2.18 Title CSS

3. Layout Files
    3.1 Banner CSS
    3.2 Category CSS
    3.3 Cookie Bar CSS
    3.4 Footer CSS
    3.5 Header CSS
    3.6 Hone CSS
    3.7 Mobile Menu CSS
    3.8 Nav CSS
    3.9 Newsletter CSS
    3.10 Product CSS
    3.11 Service CSS

4. Pages Files
    4.1 Blog Page CSS
    4.2 Checkout CSS
    4.3 Inner Page CSS
    4.4 Portfolio CSS
    4.5 Product Page CSS
    4.6 Shop Page CSS
    4.7 Vendor Page CSS

5. Templates Files
    5.1 Dark CSS

6. Utils Files
    6.1 Mixin Files
        6.1.1 Animation CSS
        6.1.2 Common CSS
    6.2 Variables CSS */
/* Util Files */
/* Mixin Files */
/**=====================
    4.3 Inner Pages CSS
==========================**/
/* 404 Error Scss */
.page-error-section .page-error-box {
    text-align: center;
}
.page-error-section .page-error-box .page-error-image {
    width: 30%;
    margin: 0 auto calc(22px + 10 * (100vw - 320px) / 1600);
}
@media (max-width: 1199.98px) {
    .page-error-section .page-error-box .page-error-image {
        width: 37%;
    }
}
@media (max-width: 991.98px) {
    .page-error-section .page-error-box .page-error-image {
        width: 60%;
    }
}
@media (max-width: 500.98px) {
    .page-error-section .page-error-box .page-error-image {
        width: 80%;
    }
}
.page-error-section .page-error-box .page-error-contain h3 {
    font-size: calc(20px + 14 * (100vw - 320px) / 1600);
    font-weight: 600;
}
.page-error-section .page-error-box .page-error-contain p {
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    width: 60%;
    margin: 3px auto 20px;
    color: rgba(var(--content-color), 1);
}
@media (max-width: 1199.98px) {
    .page-error-section .page-error-box .page-error-contain p {
        width: 75%;
    }
}
@media (max-width: 991.98px) {
    .page-error-section .page-error-box .page-error-contain p {
        width: 90%;
    }
}
@media (max-width: 767.98px) {
    .page-error-section .page-error-box .page-error-contain p {
        width: 100%;
    }
}

.maintenance-section > div {
    min-height: calc(
        100vh - (15px + 25 * (100vw - 320px) / 1600) -
            (15px + 25 * (100vw - 320px) / 1600)
    );
}
.maintenance-section .page-error-box {
    flex-direction: column;
    min-height: calc(
        100vh - (15px + 25 * (100vw - 320px) / 1600) -
            (15px + 25 * (100vw - 320px) / 1600)
    );
    display: flex;
    align-items: center;
    justify-content: center;
}
.maintenance-section .page-error-contain {
    width: 100%;
}

/* FAQs Scss */
.top-faqs-section .top-faq-box {
    background-color: rgba(var(--base-gray), 1);
    padding-inline: 60px;
    padding-bottom: 20px;
}
.top-faqs-section .top-faqs-image {
    margin: -40px 0;
}
.top-faqs-section .top-faqs-contain {
    text-align: center;
}
.top-faqs-section .top-faqs-contain h2 {
    font-size: 52px;
    margin-bottom: 14px;
}
.top-faqs-section .top-faqs-contain h5 {
    font-size: 20px;
    color: rgba(var(--content-color), 1);
    font-weight: 400;
    width: 80%;
    margin: 0 auto;
    line-height: 1.4;
}
.top-faqs-section .top-faqs-contain p {
    font-size: 16px;
    color: rgba(var(--content-color), 1);
    font-weight: 400;
    margin-top: 18px;
    margin-bottom: 8px;
}
.top-faqs-section .top-faqs-contain .button-group {
    display: flex;
    gap: 11px;
    margin-top: 30px;
}

.faqs-section .faq-wrapper,
.faqs-section .contact-wrapper,
.contact-section .faq-wrapper,
.contact-section .contact-wrapper {
    padding: calc(20px + 14 * (100vw - 320px) / 1600)
        calc(18px + 12 * (100vw - 320px) / 1600);
    background-color: rgba(var(--theme-blue), 1);
    color: rgba(var(--white), 0.6);
    border-radius: 6px;
    overflow: hidden;
    position: sticky;
    top: 50px;
}
.faqs-section .faq-wrapper h3,
.faqs-section .contact-wrapper h3,
.contact-section .faq-wrapper h3,
.contact-section .contact-wrapper h3 {
    color: rgba(var(--white), 1);
    font-size: calc(28px + 7 * (100vw - 320px) / 1600);
    font-weight: 600;
    line-height: 1.3;
}
body.dark .faqs-section .faq-wrapper h3,
body.dark .faqs-section .contact-wrapper h3,
body.dark .contact-section .faq-wrapper h3,
body.dark .contact-section .contact-wrapper h3 {
    color: #fff;
}
.faqs-section .faq-wrapper p,
.faqs-section .contact-wrapper p,
.contact-section .faq-wrapper p,
.contact-section .contact-wrapper p {
    font-size: calc(16px + 2 * (100vw - 320px) / 1600);
    color: rgba(var(--white), 0.6);
}
body.dark .faqs-section .faq-wrapper p,
body.dark .faqs-section .contact-wrapper p,
body.dark .contact-section .faq-wrapper p,
body.dark .contact-section .contact-wrapper p {
    color: rgba(255, 255, 255, 0.6);
}
.faqs-section .faq-wrapper p.faq-desc,
.faqs-section .faq-wrapper p.contact-desc,
.faqs-section .contact-wrapper p.faq-desc,
.faqs-section .contact-wrapper p.contact-desc,
.contact-section .faq-wrapper p.faq-desc,
.contact-section .faq-wrapper p.contact-desc,
.contact-section .contact-wrapper p.faq-desc,
.contact-section .contact-wrapper p.contact-desc {
    margin-top: calc(8px + 17 * (100vw - 320px) / 1600);
}
.faqs-section .faq-wrapper p + p,
.faqs-section .contact-wrapper p + p,
.contact-section .faq-wrapper p + p,
.contact-section .contact-wrapper p + p {
    margin-top: calc(15px + 12 * (100vw - 320px) / 1600);
}
.faqs-section .faq-wrapper p:last-child,
.faqs-section .contact-wrapper p:last-child,
.contact-section .faq-wrapper p:last-child,
.contact-section .contact-wrapper p:last-child {
    margin-top: 20px;
}
.faqs-section .faq-wrapper .faq-title,
.faqs-section .faq-wrapper .contact-title,
.faqs-section .contact-wrapper .faq-title,
.faqs-section .contact-wrapper .contact-title,
.contact-section .faq-wrapper .faq-title,
.contact-section .faq-wrapper .contact-title,
.contact-section .contact-wrapper .faq-title,
.contact-section .contact-wrapper .contact-title {
    margin-block: calc(27px + 17 * (100vw - 320px) / 1600) -11px;
    margin-left: calc(19px + 42 * (100vw - 320px) / 1600);
    font-size: calc(88px + 42 * (100vw - 320px) / 1600);
    font-weight: 700;
    color: rgba(var(--white), 0.03);
    transition: all 0.8s ease-in-out;
    line-height: 1;
}
body.dark .faqs-section .faq-wrapper .faq-title,
body.dark .faqs-section .faq-wrapper .contact-title,
body.dark .faqs-section .contact-wrapper .faq-title,
body.dark .faqs-section .contact-wrapper .contact-title,
body.dark .contact-section .faq-wrapper .faq-title,
body.dark .contact-section .faq-wrapper .contact-title,
body.dark .contact-section .contact-wrapper .faq-title,
body.dark .contact-section .contact-wrapper .contact-title {
    color: rgba(255, 255, 255, 0.03);
}
[dir="rtl"] .faqs-section .faq-wrapper .faq-title,
[dir="rtl"] .faqs-section .faq-wrapper .contact-title,
[dir="rtl"] .faqs-section .contact-wrapper .faq-title,
[dir="rtl"] .faqs-section .contact-wrapper .contact-title,
[dir="rtl"] .contact-section .faq-wrapper .faq-title,
[dir="rtl"] .contact-section .faq-wrapper .contact-title,
[dir="rtl"] .contact-section .contact-wrapper .faq-title,
[dir="rtl"] .contact-section .contact-wrapper .contact-title {
    margin-left: unset;
    margin-right: calc(19px + 42 * (100vw - 320px) / 1600);
}
.faqs-section .faq-wrapper .contact-title,
.faqs-section .contact-wrapper .contact-title,
.contact-section .faq-wrapper .contact-title,
.contact-section .contact-wrapper .contact-title {
    left: 12%;
    right: unset;
}
[dir="rtl"] .faqs-section .faq-wrapper .contact-title,
[dir="rtl"] .faqs-section .contact-wrapper .contact-title,
[dir="rtl"] .contact-section .faq-wrapper .contact-title,
[dir="rtl"] .contact-section .contact-wrapper .contact-title {
    left: unset;
    right: -12%;
}
.faqs-section .faq-wrapper:hover .faq-title,
.faqs-section .faq-wrapper:hover .contact-title,
.faqs-section .contact-wrapper:hover .faq-title,
.faqs-section .contact-wrapper:hover .contact-title,
.contact-section .faq-wrapper:hover .faq-title,
.contact-section .faq-wrapper:hover .contact-title,
.contact-section .contact-wrapper:hover .faq-title,
.contact-section .contact-wrapper:hover .contact-title {
    color: rgba(var(--white), 0.07);
    margin-left: 38px;
    transition: all 0.8s ease-in-out;
}
body.dark .faqs-section .faq-wrapper:hover .faq-title,
body.dark .faqs-section .faq-wrapper:hover .contact-title,
body.dark .faqs-section .contact-wrapper:hover .faq-title,
body.dark .faqs-section .contact-wrapper:hover .contact-title,
body.dark .contact-section .faq-wrapper:hover .faq-title,
body.dark .contact-section .faq-wrapper:hover .contact-title,
body.dark .contact-section .contact-wrapper:hover .faq-title,
body.dark .contact-section .contact-wrapper:hover .contact-title {
    color: rgba(255, 255, 255, 0.07);
}
[dir="rtl"] .faqs-section .faq-wrapper:hover .faq-title,
[dir="rtl"] .faqs-section .faq-wrapper:hover .contact-title,
[dir="rtl"] .faqs-section .contact-wrapper:hover .faq-title,
[dir="rtl"] .faqs-section .contact-wrapper:hover .contact-title,
[dir="rtl"] .contact-section .faq-wrapper:hover .faq-title,
[dir="rtl"] .contact-section .faq-wrapper:hover .contact-title,
[dir="rtl"] .contact-section .contact-wrapper:hover .faq-title,
[dir="rtl"] .contact-section .contact-wrapper:hover .contact-title {
    margin-left: unset;
    margin-right: 38px;
}
.faqs-section .faq-accordion .accordion-item,
.contact-section .faq-accordion .accordion-item {
    border: unset;
    padding: calc(16px + 6 * (100vw - 320px) / 1600)
        calc(16px + 12 * (100vw - 320px) / 1600);
    background-color: rgba(var(--white), 1);
    border-radius: 6px;
}
.faqs-section .faq-accordion .accordion-item + .accordion-item,
.contact-section .faq-accordion .accordion-item + .accordion-item {
    margin-top: calc(16px + 8 * (100vw - 320px) / 1600);
}
.faqs-section
    .faq-accordion
    .accordion-item
    .accordion-header
    .accordion-button,
.contact-section
    .faq-accordion
    .accordion-item
    .accordion-header
    .accordion-button {
    background-color: transparent;
    color: rgba(var(--title-color), 1);
    z-index: 0;
    padding: 0;
    box-shadow: unset;
    justify-content: space-between;
    letter-spacing: 0.5px;
    line-height: 1.3;
    font-weight: 400;
    letter-spacing: 0.5px;
    gap: 10px;
    font-size: calc(16px + 4 * (100vw - 320px) / 1600);
    transition: all 0.25s ease-in-out;
}
.faqs-section
    .faq-accordion
    .accordion-item
    .accordion-header
    .accordion-button:not(.collapsed),
.contact-section
    .faq-accordion
    .accordion-item
    .accordion-header
    .accordion-button:not(.collapsed) {
    font-weight: 500;
}
.faqs-section
    .faq-accordion
    .accordion-item
    .accordion-header
    .accordion-button:not(.collapsed)
    i,
.contact-section
    .faq-accordion
    .accordion-item
    .accordion-header
    .accordion-button:not(.collapsed)
    i {
    transform: rotate(-180deg);
}
.faqs-section
    .faq-accordion
    .accordion-item
    .accordion-header
    .accordion-button::after,
.contact-section
    .faq-accordion
    .accordion-item
    .accordion-header
    .accordion-button::after {
    content: unset;
}
.faqs-section
    .faq-accordion
    .accordion-item
    .accordion-header
    .accordion-button
    i,
.contact-section
    .faq-accordion
    .accordion-item
    .accordion-header
    .accordion-button
    i {
    transition: transform 0.2s ease-in-out;
    font-size: 28px;
    color: rgba(var(--title-color), 1);
    font-weight: 100;
    --Size: 28px;
    --Color: rgba(var(--title-color), 1);
}
.faqs-section
    .faq-accordion
    .accordion-item
    .accordion-collapse
    .accordion-body,
.contact-section
    .faq-accordion
    .accordion-item
    .accordion-collapse
    .accordion-body {
    padding: calc(10px + 4 * (100vw - 320px) / 1600) 0 0;
    margin-top: calc(10px + 4 * (100vw - 320px) / 1600);
    position: relative;
    border-top: 1px solid rgba(var(--content-color), 0.1);
}
.faqs-section
    .faq-accordion
    .accordion-item
    .accordion-collapse
    .accordion-body
    p,
.contact-section
    .faq-accordion
    .accordion-item
    .accordion-collapse
    .accordion-body
    p {
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    color: rgba(var(--content-color), 1);
}
.faqs-section
    .faq-accordion
    .accordion-item
    .accordion-collapse
    .accordion-body
    p
    + p,
.contact-section
    .faq-accordion
    .accordion-item
    .accordion-collapse
    .accordion-body
    p
    + p {
    margin-top: calc(8px + 6 * (100vw - 320px) / 1600);
}
.faqs-section
    .faq-accordion
    .accordion-item
    .accordion-collapse
    .accordion-body
    .help-box,
.contact-section
    .faq-accordion
    .accordion-item
    .accordion-collapse
    .accordion-body
    .help-box {
    margin-top: calc(16px + 7 * (100vw - 320px) / 1600);
    gap: calc(10px + 2 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.faqs-section
    .faq-accordion
    .accordion-item
    .accordion-collapse
    .accordion-body
    .help-box
    span,
.contact-section
    .faq-accordion
    .accordion-item
    .accordion-collapse
    .accordion-body
    .help-box
    span {
    font-size: calc(14px + 1 * (100vw - 320px) / 1600);
    color: rgba(var(--content-color), 1);
    line-height: 1;
}
.faqs-section
    .faq-accordion
    .accordion-item
    .accordion-collapse
    .accordion-body
    .help-box
    .button-group
    .help-button,
.contact-section
    .faq-accordion
    .accordion-item
    .accordion-collapse
    .accordion-body
    .help-box
    .button-group
    .help-button {
    background-color: rgba(var(--content-color), 0.1);
    padding: 9px 14px 7px;
    font-size: calc(14px + 1 * (100vw - 320px) / 1600);
    color: rgba(var(--content-color), 1);
    line-height: 1;
}
.faqs-section
    .faq-accordion
    .accordion-item
    .accordion-collapse
    .accordion-body
    .help-box
    .button-group
    .help-button:hover,
.contact-section
    .faq-accordion
    .accordion-item
    .accordion-collapse
    .accordion-body
    .help-box
    .button-group
    .help-button:hover {
    background-color: rgba(var(--primary-color), 1);
    color: #fff;
}

/* Cart Scss */
.cart-section .quick-box {
    flex-wrap: wrap;
    gap: calc(3px + 5 * (100vw - 320px) / 1600);
    background-color: rgba(var(--white), 1);
    border-radius: 6px;
    margin-bottom: 17px;
    padding: 18px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-section .quick-box p {
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    color: rgba(var(--content-color), 1);
}
.cart-section .quick-box .quick-timer li {
    color: rgba(var(--title-color), 1);
    font-weight: 600;
    position: relative;
}
.cart-section .quick-box .quick-timer li + li::before {
    content: ":";
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
}
.cart-section .cart-table2 {
    height: 100%;
    padding: calc(15px + 10 * (100vw - 320px) / 1600)
        calc(15px + 10 * (100vw - 320px) / 1600);
    background-color: rgba(var(--white), 1);
    border-radius: 6px;
}
.cart-section .cart-table2 .table-title {
    margin-bottom: calc(6px + 4 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cart-section .cart-table2 .table-title h2 {
    font-size: calc(22px + 6 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
    gap: calc(6px + 2 * (100vw - 320px) / 1600);
}
.cart-section .cart-table2 .table-title h2 span {
    font-size: calc(16px + 2 * (100vw - 320px) / 1600);
    font-weight: 500;
    color: rgba(var(--content-color), 1);
}
.cart-section .cart-table2 .table-title .clear-btn {
    padding: 0;
    color: rgba(var(--primary-color2), 1);
    font-size: calc(15px + 3 * (100vw - 320px) / 1600);
}
.cart-section .cart-table2 .table-title .clear-btn span {
    text-decoration: underline;
}
.cart-section .cart-table2 .cart-table-box tbody tr:first-child td {
    border-top: 1px solid rgba(var(--content-color), 0.1);
}
.cart-section .cart-table2 .cart-table-box tbody tr:nth-last-child(2) td {
    border-bottom: none;
    padding-bottom: 0;
}
.cart-section .cart-table2 .cart-table-box tbody tr:last-child td {
    padding-bottom: 0;
    border: unset;
}
.cart-section .cart-table2 .cart-table-box tbody tr.table-row:last-child td {
    padding-bottom: 0;
    border: unset;
}
.cart-section
    .cart-table2
    .cart-table-box
    tbody
    tr.table-row:hover
    .cart-contain
    h4 {
    color: rgba(var(--primary-color), 1);
}
.cart-section .cart-table2 .cart-table-box tbody tr td {
    background-color: transparent;
    border-bottom: 1px solid rgba(var(--content-color), 0.1);
    padding: calc(10px + 10 * (100vw - 320px) / 1600) 10px;
    vertical-align: middle;
    color: rgba(var(--title-color), 1);
}
.cart-section .cart-table2 .cart-table-box tbody tr td:last-child {
    padding-right: 0;
    text-align: center;
}
.cart-section .cart-table2 .cart-table-box tbody tr td:first-child {
    padding-left: 0;
    max-width: 250px;
    min-width: 280px;
}
.cart-section .cart-table2 .cart-table-box tbody tr td .quantity-box {
    min-width: 104px;
    display: flex;
    background-color: rgba(var(--base-gray), 1);
    padding: 6px;
    border-radius: 4px;
    max-width: 155px;
    margin: 0 auto;
}
.cart-section .cart-table2 .cart-table-box tbody tr td .quantity-box button {
    border: none;
    padding: 0;
    width: calc(29px + 6 * (100vw - 320px) / 1600);
    height: calc(29px + 6 * (100vw - 320px) / 1600);
    display: flex !important;
    align-items: center;
    justify-content: center;
}
.cart-section .cart-table2 .cart-table-box tbody tr td .quantity-box button i {
    line-height: 1;
}
.cart-section .cart-table2 .cart-table-box tbody tr td .quantity-box input {
    width: calc(
        100% - (29px + 6 * (100vw - 320px) / 1600) -
            (29px + 6 * (100vw - 320px) / 1600)
    );
    padding: 0;
    text-align: center;
    background-color: transparent;
    border: unset;
    color: rgba(var(--title-color), 1);
    padding-top: 3px;
}
.cart-section .cart-table2 .cart-table-box tbody tr td .price {
    font-weight: 500;
    color: rgba(var(--title-color), 1);
    gap: calc(6px + 2 * (100vw - 320px) / 1600);
    font-size: calc(16px + 2 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-section .cart-table2 .cart-table-box tbody tr td .del-price {
    color: rgba(var(--content-color), 1);
    opacity: 0.8;
    font-size: calc(15px + 1 * (100vw - 320px) / 1600);
    display: flex;
    justify-content: center;
}
.cart-section .cart-table2 .cart-box {
    display: flex;
    align-items: center;
    gap: 10px;
}
.cart-section .cart-table2 .cart-box .cart-image {
    position: relative;
}
.cart-section .cart-table2 .cart-box .cart-image a {
    background-color: rgba(var(--base-gray), 1);
    padding: 10px;
    display: block;
    border-radius: 6px;
    width: calc(94px + 26 * (100vw - 320px) / 1600);
    height: calc(94px + 26 * (100vw - 320px) / 1600);
}
.cart-section .cart-table2 .cart-box .cart-image i {
    position: absolute;
    top: calc(6px + 2 * (100vw - 320px) / 1600);
    right: calc(6px + 2 * (100vw - 320px) / 1600);
    line-height: normal;
    color: rgba(var(--content-color), 1);
    cursor: pointer;
    font-size: calc(15px + 1 * (100vw - 320px) / 1600);
}
[dir="rtl"] .cart-section .cart-table2 .cart-box .cart-image i {
    right: unset;
    left: calc(6px + 2 * (100vw - 320px) / 1600);
}
.cart-section .cart-table2 .cart-box .cart-image i.ri-heart-3-fill {
    display: none;
    color: rgba(var(--danger-color), 1);
}
.cart-section .cart-table2 .cart-box .cart-contain {
    width: calc(100% - (94px + 26 * (100vw - 320px) / 1600) - 10px);
}
.cart-section .cart-table2 .cart-box .cart-contain a h3 {
    color: rgba(var(--title-color), 1);
    font-weight: 500;
    font-size: calc(16px + 2 * (100vw - 320px) / 1600);
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
.cart-section .cart-table2 .cart-box .cart-contain span {
    color: rgba(var(--title-color), 0.8);
    font-weight: 400;
    margin-top: 2px;
    display: block;
}

.cart-table-box tbody tr:first-child td {
    border-top: 1px solid rgba(var(--content-color), 0.1);
}
.cart-table-box tbody tr:nth-last-child(2) td {
    border-bottom: none;
    padding-bottom: 0;
}
.cart-table-box tbody tr:last-child td {
    padding-bottom: 0;
    border: unset;
}
.cart-table-box tbody tr.table-row:last-child td {
    padding-bottom: 0;
    border: unset;
}
.cart-table-box tbody tr.table-row:hover .cart-contain h4 {
    color: rgba(var(--primary-color), 1);
}
.cart-table-box tbody tr td {
    background-color: transparent;
    border-bottom: 1px solid rgba(var(--content-color), 0.1);
    padding: 20px 10px;
    vertical-align: middle;
    color: rgba(var(--title-color), 1);
}
.cart-table-box tbody tr td:last-child {
    padding-right: 0;
    text-align: center;
}
.cart-table-box tbody tr td:first-child {
    padding-left: 0;
    max-width: 250px;
}
.cart-table-box tbody tr td .quantity-box {
    display: flex;
    background-color: rgba(var(--base-gray), 1);
    padding: 6px;
    border-radius: 4px;
    max-width: 155px;
    margin: 0 auto;
}
.cart-table-box tbody tr td .quantity-box button {
    border: none;
    padding: 0;
    width: calc(29px + 6 * (100vw - 320px) / 1600);
    height: calc(29px + 6 * (100vw - 320px) / 1600);
    display: flex !important;
    align-items: center;
    justify-content: center;
}
.cart-table-box tbody tr td .quantity-box button i {
    line-height: 1;
}
.cart-table-box tbody tr td .quantity-box input {
    width: calc(
        100% - (29px + 6 * (100vw - 320px) / 1600) -
            (29px + 6 * (100vw - 320px) / 1600)
    );
    padding: 0;
    text-align: center;
    background-color: transparent;
    border: unset;
    padding-top: 3px;
    font-size: calc(15px + 1 * (100vw - 320px) / 1600);
}
.cart-table-box tbody tr td .price {
    font-weight: 500;
    color: rgba(var(--title-color), 1);
    gap: 8px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-table-box tbody tr td .del-price {
    color: rgba(var(--content-color), 1);
    opacity: 0.8;
    font-size: 16px;
    display: flex;
    justify-content: center;
}

/* Checkout Scss */
.cart-table {
    background-color: rgba(var(--base-gray), 1);
    padding: calc(18px + 17 * (100vw - 320px) / 1600)
        calc(12px + 13 * (100vw - 320px) / 1600);
}
.cart-table table {
    margin-bottom: 0;
}
.cart-table table tbody tr:last-child td {
    border: none;
    padding-bottom: 0;
}
.cart-table table tbody tr:first-child td {
    padding-top: 0;
}
.cart-table table tbody tr td {
    padding: calc(16px + 6 * (100vw - 320px) / 1600) 16px;
    min-width: calc(135px + 35 * (100vw - 320px) / 1600);
    background-color: transparent;
    border-bottom: 1px solid rgba(var(--content-color), 0.1);
    color: rgba(var(--title-color), 1);
}
.cart-table table tbody tr td .table-title {
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 500;
}
.cart-table table tbody tr td.product-detail:hover .product .product-image img {
    transform: scale(1.1);
}
.cart-table table tbody tr td.product-detail ul li + li {
    margin-bottom: 2px;
}
.cart-table table tbody tr td.product-detail .product {
    display: flex;
    align-items: center;
    overflow: hidden;
}
@media (max-width: 1366px) {
    .cart-table table tbody tr td.product-detail .product {
        align-items: flex-start;
    }
}
.cart-table table tbody tr td.product-detail .product .product-image {
    width: 70px;
}
@media (max-width: 1366px) {
    .cart-table table tbody tr td.product-detail .product .product-image {
        width: 80px;
    }
}
@media (max-width: 575.98px) {
    .cart-table table tbody tr td.product-detail .product .product-image {
        width: 90px;
    }
}
@media (max-width: 480px) {
    .cart-table table tbody tr td.product-detail .product .product-image {
        width: 100px;
    }
}
@media (max-width: 360.98px) {
    .cart-table table tbody tr td.product-detail .product .product-image {
        width: 70px;
    }
}
.cart-table table tbody tr td.product-detail .product .product-image img {
    transition: all 0.15s ease-in-out;
}
.cart-table table tbody tr td.product-detail .product .product-detail {
    margin-left: calc(16px + 9 * (100vw - 320px) / 1600);
    margin-top: 0;
}
.cart-table table tbody tr td.product-detail .product .product-detail ul li {
    display: block;
    white-space: nowrap;
    margin-bottom: 8px;
    font-size: 14px;
}
.cart-table
    table
    tbody
    tr
    td.product-detail
    .product
    .product-detail
    ul
    li
    + li {
    margin-bottom: calc(0px + 2 * (100vw - 320px) / 1600);
}
.cart-table
    table
    tbody
    tr
    td.product-detail
    .product
    .product-detail
    ul
    li
    .saving {
    font-weight: 500;
}
.cart-table
    table
    tbody
    tr
    td.product-detail
    .product
    .product-detail
    ul
    li
    span {
    font-weight: 500;
}
.cart-table
    table
    tbody
    tr
    td.product-detail
    .product
    .product-detail
    ul
    li.name
    a {
    font-weight: 500;
    font-size: 16px;
    color: rgba(var(--title-color), 1);
}
.cart-table
    table
    tbody
    tr
    td.product-detail
    .product
    .product-detail
    ul
    li.name
    a:hover {
    color: rgba(var(--title-color), 1);
}
.cart-table
    table
    tbody
    tr
    td.product-detail
    .product
    .product-detail
    ul
    li:nth-child(n + 4) {
    display: none;
}
.cart-table
    table
    tbody
    tr
    td.product-detail
    .product
    .product-detail
    ul
    li
    .price {
    display: flex;
    align-items: center;
}
.cart-table
    table
    tbody
    tr
    td.product-detail
    .product
    .product-detail
    ul
    li
    .price
    h6 {
    margin-left: 8px;
    text-decoration: line-through;
}
.cart-table
    table
    tbody
    tr
    td.product-detail
    .product
    .product-detail
    ul
    li.quantity-price-box {
    border: 1px solid rgba(var(--content-color), 0.1);
    border-radius: 5px;
    width: 62%;
}
@media (max-width: 575.98px) {
    .cart-table
        table
        tbody
        tr
        td.product-detail
        .product
        .product-detail
        ul
        li.quantity-price-box {
        width: 80%;
    }
}
@media (max-width: 360.98px) {
    .cart-table
        table
        tbody
        tr
        td.product-detail
        .product
        .product-detail
        ul
        li.quantity-price-box {
        width: 90%;
    }
}
.cart-table
    table
    tbody
    tr
    td.product-detail
    .product
    .product-detail
    ul
    li.quantity-price-box
    .cart_qty
    button {
    padding: calc(3px + 7 * (100vw - 320px) / 1600)
        calc(10px + 8 * (100vw - 320px) / 1600);
    border: none;
}
.cart-table
    table
    tbody
    tr
    td.product-detail
    .product
    .product-detail
    ul
    li.quantity-price-box
    .cart_qty
    button
    input {
    padding: 10px 18px;
    border: none;
    text-align: center;
}
.cart-table
    table
    tbody
    tr
    td.product-detail
    .product
    .product-detail
    ul
    li.quantity {
    margin: 6px 0;
}
.cart-table
    table
    tbody
    tr
    td.product-detail
    .product
    .product-detail
    ul
    li.quantity
    .quantity-price {
    width: 50%;
}
@media (max-width: 480px) {
    .cart-table
        table
        tbody
        tr
        td.product-detail
        .product
        .product-detail
        ul
        li.quantity
        .quantity-price {
        width: 60%;
    }
}
.cart-table
    table
    tbody
    tr
    td.product-detail
    .product
    .product-detail
    ul
    li.quantity
    .quantity-price
    .cart_qty
    button {
    border: none;
    background-color: #e3e0e0;
    border-radius: 100% !important;
    padding: 0;
    width: calc(26px + 9 * (100vw - 320px) / 1600);
    height: calc(26px + 9 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-table
    table
    tbody
    tr
    td.product-detail
    .product
    .product-detail
    ul
    li.quantity
    .quantity-price
    .cart_qty
    button
    i {
    margin-top: 2px;
}
.cart-table
    table
    tbody
    tr
    td.product-detail
    .product
    .product-detail
    ul
    li.quantity
    .quantity-price
    .cart_qty
    input {
    padding: 0;
    border: none;
    text-align: center;
    background-color: transparent;
}
.cart-table table tbody tr td.price h5 {
    font-weight: 500;
    font-size: calc(15px + 1 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
}
.cart-table table tbody tr td.price h5 del {
    font-size: calc(13px + 3 * (100vw - 320px) / 1600);
    margin-left: 4px;
}
.cart-table table tbody tr td.price h6 {
    margin-top: 5px;
    white-space: nowrap;
    font-size: calc(15px + 1 * (100vw - 320px) / 1600);
    font-weight: 500;
}
.cart-table table tbody tr td.saving {
    font-size: 16px;
    font-weight: 500;
    color: rgba(var(--primary-color), 1);
}
.cart-table table tbody tr td.quantity {
    width: 20%;
}
.cart-table table tbody tr td .quantity-box {
    display: flex;
}
.cart-table table tbody tr td .quantity-box button {
    border: none;
    background-color: rgba(var(--content-color), 0.1);
    border-radius: 100% !important;
    padding: 0;
    width: calc(29px + 6 * (100vw - 320px) / 1600);
    height: calc(29px + 6 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-table table tbody tr td .quantity-box button i {
    line-height: 1;
}
.cart-table table tbody tr td .quantity-box input {
    width: 51px;
    padding: 0;
    text-align: center;
    background-color: transparent;
    border: unset;
}
.cart-table table tbody tr td .quantity-price {
    width: 62%;
}
@media (max-width: 1400px) {
    .cart-table table tbody tr td .quantity-price {
        width: 80%;
    }
}
@media (max-width: 1199.98px) {
    .cart-table table tbody tr td .quantity-price {
        width: 90%;
    }
}
@media (max-width: 991.98px) {
    .cart-table table tbody tr td .quantity-price {
        width: 100%;
    }
}
.cart-table table tbody tr td .quantity-price .cart_qty button {
    border: none;
    background-color: #e3e0e0;
    border-radius: 100% !important;
    padding: 0;
    width: calc(29px + 6 * (100vw - 320px) / 1600);
    height: calc(29px + 6 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-table table tbody tr td .quantity-price .cart_qty button i {
    font-size: 17px;
    line-height: 1;
}
.cart-table table tbody tr td .quantity-price .cart_qty input {
    padding: 0;
    border: none;
    text-align: center;
    background-color: transparent;
}
.cart-table table tbody tr td.subtotal h5 {
    font-size: calc(16px + 2 * (100vw - 320px) / 1600);
    font-weight: 500;
    display: inline-block;
}
.cart-table table tbody tr td.subtotal .btn-close {
    margin-left: 50px;
}
.cart-table table tbody tr td.save-remove .save {
    font-weight: 400;
    white-space: nowrap;
    font-size: 16px;
    display: block;
    text-decoration: underline;
}
.cart-table table tbody tr td.save-remove .save:hover {
    color: rgba(var(--primary-color), 1);
}
.cart-table table tbody tr td.save-remove .remove {
    font-weight: 400;
    font-size: 15px;
    color: #bf2020;
    text-decoration: underline;
}
.cart-table table tfoot {
    border-top: 1px solid rgba(var(--content-color), 0.1);
}
.cart-table table tfoot tr td:first-child {
    border: none;
}
.cart-table table tfoot tr td:nth-child(2) {
    font-size: 16px;
    font-weight: 500;
    padding: 16px;
    border-left: 1px solid rgba(var(--content-color), 0.1);
}
.cart-table table tfoot tr td:last-child {
    font-size: 16px;
    font-weight: 500;
    border-right: 1px solid rgba(var(--content-color), 0.1);
}

/* Summery cart box */
.right-summery-box {
    position: sticky;
    top: 100px;
}
.right-summery-box .summery-box {
    padding: calc(15px + 6 * (100vw - 320px) / 1600)
        calc(15px + 13 * (100vw - 320px) / 1600);
    border-radius: 6px;
    background-color: rgba(var(--white), 1);
}
.right-summery-box .summery-box .summery-header {
    padding-bottom: calc(12px + 4 * (100vw - 320px) / 1600);
    border-bottom: 1px solid rgba(var(--content-color), 0.1);
}
.right-summery-box .summery-box .summery-header h3 {
    font-weight: 600;
    font-size: calc(20px + 2 * (100vw - 320px) / 1600);
    margin-bottom: calc(-3px + -2 * (100vw - 320px) / 1600);
}
.right-summery-box .summery-box .summery-header a {
    font-weight: 500;
    margin-left: auto;
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
}
.right-summery-box .summery-box .summery-header a:hover {
    color: rgba(var(--primary-color), 1);
}
.right-summery-box .summery-box .summery-contain {
    padding: 10px 0;
    border-bottom: 1px solid rgba(var(--content-color), 0.1);
}
.right-summery-box .summery-box .summery-contain::-webkit-scrollbar-track {
    background-color: rgba(var(--content-color), 1);
}
.right-summery-box .summery-box .summery-contain::-webkit-scrollbar {
    width: 3px;
}
.right-summery-box .summery-box .summery-contain::-webkit-scrollbar-thumb {
    background-color: rgba(var(--primary-color), 1);
    border-radius: 4px;
}
.right-summery-box .summery-box .summery-contain .coupon-cart .coupon-box {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}
.right-summery-box
    .summery-box
    .summery-contain
    .coupon-cart
    .coupon-box
    .btn-apply {
    background: rgba(var(--primary-color), 1);
    color: rgba(var(--white), 1);
    padding: 0 calc(16px + 14 * (100vw - 320px) / 1600);
    font-weight: 700;
    border: none;
}
.right-summery-box
    .summery-box
    .summery-contain
    .coupon-cart
    .coupon-box
    .form-control {
    border: 2px solid rgba(var(--primary-color), 1);
    padding: 10px;
}
.right-summery-box .summery-box .summery-contain ul li {
    padding: calc(4px + 6 * (100vw - 320px) / 1600) 0;
    display: flex;
    align-items: center;
}
.right-summery-box .summery-box .summery-contain ul li:first-child {
    padding-top: 0;
}
.right-summery-box .summery-box .summery-contain ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    display: block;
    padding-top: 18px;
}
.right-summery-box .summery-box .summery-contain ul li h4 {
    font-size: calc(16px + 2 * (100vw - 320px) / 1600);
    color: rgba(var(--content-color), 1);
}
.right-summery-box .summery-box .summery-contain ul li h4.price {
    color: rgba(var(--content-color), 1);
    margin-left: auto;
}
[dir="rtl"] .right-summery-box .summery-box .summery-contain ul li h4.price {
    margin-left: unset;
    margin-right: auto;
}
.right-summery-box
    .summery-box
    .summery-contain
    ul
    li
    h4.price
    .shipping-contain {
    display: block;
    font-weight: 400;
    font-size: 13px;
    margin-top: 3px;
}
.right-summery-box .summery-box .summery-contain ul li h4 span {
    font-weight: 600;
}
.right-summery-box
    .summery-box
    .summery-contain
    ul
    li
    .promo-code-accordion
    .accordion-item {
    background-color: transparent;
    border: unset;
}
.right-summery-box
    .summery-box
    .summery-contain
    ul
    li
    .promo-code-accordion
    .accordion-item
    .accordion-header
    .accordion-button {
    padding: 0;
    background-color: transparent;
    box-shadow: unset;
    font-size: 16px;
    color: rgba(var(--title-color), 1);
    font-weight: 500;
}
.right-summery-box
    .summery-box
    .summery-contain
    ul
    li
    .promo-code-accordion
    .accordion-item
    .accordion-header
    .accordion-button::after {
    content: "\ea6e";
    background: unset;
    font-size: 16px;
    width: unset;
    height: unset;
    font-family: remixicon;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
}
.right-summery-box
    .summery-box
    .summery-contain
    ul
    li
    .promo-code-accordion
    .accordion-item
    .accordion-header
    .accordion-button:not(.collapsed)::after {
    transform: rotate(90deg);
}
.right-summery-box
    .summery-box
    .summery-contain
    ul
    li
    .promo-code-accordion
    .accordion-item
    .accordion-body {
    padding: calc(8px + 8 * (100vw - 320px) / 1600) 0 0;
}
.right-summery-box
    .summery-box
    .summery-contain
    ul
    li
    .promo-code-accordion
    .accordion-item
    .accordion-body
    input {
    border: 1px solid rgba(var(--border-color), 1);
    padding: calc(9px + 2 * (100vw - 320px) / 1600) 15px;
    font-weight: 400;
    font-size: calc(15px + 1 * (100vw - 320px) / 1600);
    color: rgba(var(--title-color), 1);
    background-color: rgba(var(--base-gray), 1);
}
.right-summery-box
    .summery-box
    .summery-contain
    ul
    li
    .promo-code-accordion
    .accordion-item
    .accordion-body
    input::placeholder {
    color: rgba(var(--content-color), 1);
}
.right-summery-box
    .summery-box
    .summery-contain
    ul
    li
    .promo-code-accordion
    .accordion-item
    .accordion-body
    .input-group-text {
    background-color: rgba(var(--border-color), 1);
    padding: calc(11px + 3 * (100vw - 320px) / 1600)
        calc(13px + 2 * (100vw - 320px) / 1600);
    line-height: 1;
    font-size: calc(14px + 1 * (100vw - 320px) / 1600);
    font-weight: 500;
    color: rgba(var(--title-color), 0.8);
    z-index: 1;
    border: 1px solid rgba(var(--border-color), 1);
}
.right-summery-box .summery-box .summery-contain {
    padding: calc(11px + 5 * (100vw - 320px) / 1600) 0;
    border-bottom: 1px solid rgba(var(--content-color), 0.1);
}
.right-summery-box .summery-box .summery-contain::-webkit-scrollbar-track {
    background-color: transparent;
}
.right-summery-box .summery-box .summery-contain::-webkit-scrollbar {
    width: 3px;
}
.right-summery-box .summery-box .summery-contain::-webkit-scrollbar-thumb {
    background-color: rgba(var(--primary-color), 1);
    border-radius: 4px;
}
.right-summery-box .summery-box .summery-contain li {
    padding: calc(6px + 4 * (100vw - 320px) / 1600) 0;
    display: flex;
    align-items: center;
}
.right-summery-box .summery-box .summery-contain li p {
    font-size: calc(14px + 1 * (100vw - 320px) / 1600);
    line-height: 1.6;
    margin: 0;
}
.right-summery-box .summery-box .summery-contain li h4 {
    font-size: 15px;
    color: rgba(var(--content-color), 1);
}
.right-summery-box .summery-box .summery-contain li h4.price {
    color: rgba(var(--content-color), 1);
    margin-left: auto;
}
.right-summery-box .summery-box .summery-contain li h4.price .shipping-contain {
    display: block;
    font-weight: 400;
    font-size: 13px;
    margin-top: 3px;
}
.right-summery-box .summery-box .summery-contain li h4 span {
    font-weight: 600;
}
.right-summery-box .summery-box .summery-total li {
    padding-top: 12px;
    display: flex;
    align-items: center;
}
.right-summery-box .summery-box .summery-total li h4 {
    font-size: calc(16px + 1 * (100vw - 320px) / 1600);
    color: rgba(var(--title-color), 1);
}
.right-summery-box .summery-box .summery-total li h4.price {
    margin-left: auto;
}
[dir="rtl"] .right-summery-box .summery-box .summery-total li h4.price {
    margin-left: unset;
    margin-right: auto;
}
.right-summery-box .summery-box .summery-total li h4 span {
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    font-weight: 600;
}
.right-summery-box .summery-box .summery-total li:nth-child(4) {
    padding: calc(12px + 4 * (100vw - 320px) / 1600) 0;
}
.right-summery-box .summery-box .summery-total li:nth-child(4) h4 {
    font-weight: 600;
    color: rgba(var(--primary-color), 1);
}
.right-summery-box .summery-box .summery-total li:last-child {
    border-top: 1px solid rgba(var(--content-color), 0.1);
    padding-top: calc(12px + 4 * (100vw - 320px) / 1600);
}
.right-summery-box .summery-box .summery-total li:last-child h3 {
    font-weight: 600;
    font-size: calc(18px + 2 * (100vw - 320px) / 1600);
}

.proceed-btn {
    margin-top: calc(12px + 8 * (100vw - 320px) / 1600);
    width: 100%;
    font-size: calc(16px + 2 * (100vw - 320px) / 1600);
    font-weight: 600;
    border-radius: calc(4px + 2 * (100vw - 320px) / 1600);
    letter-spacing: calc(0.4px + 0.4 * (100vw - 320px) / 1600);
    padding: calc(8px + 4 * (100vw - 320px) / 1600)
        calc(14px + 6 * (100vw - 320px) / 1600);
    background-color: rgba(var(--primary-color), 1);
    color: #fff;
}
.proceed-btn:hover {
    background-color: rgba(var(--primary-color), 1);
    color: #fff;
}

.checkout-section-new {
    padding-top: 22px;
}
.checkout-section-new .checkout-title {
    border-bottom: 1px solid rgba(var(--border-color), 1);
    padding-bottom: calc(8px + 5 * (100vw - 320px) / 1600);
    margin-bottom: calc(10px + 6 * (100vw - 320px) / 1600);
}
.checkout-section-new .checkout-title h4 {
    font-size: calc(20px + 6 * (100vw - 320px) / 1600);
}
.checkout-section-new .checkout-information {
    padding: 14px;
    border: 1px solid rgba(var(--border-color), 1);
    border-radius: 8px;
}
.checkout-section-new .checkout-information p {
    font-size: calc(15px + 2 * (100vw - 320px) / 1600);
    color: rgba(var(--content-color), 0.8);
}
.checkout-section-new .checkout-information p a {
    text-decoration: underline;
    text-transform: capitalize;
    font-weight: 500;
}
.checkout-section-new .checkout-information .form-check {
    border-top: 1px solid rgba(var(--border-color), 1);
    padding-top: calc(10px + 5 * (100vw - 320px) / 1600);
    margin-top: calc(5px + 3 * (100vw - 320px) / 1600);
}
.checkout-section-new .checkout-information .form-check span {
    color: rgba(var(--danger-color), 1);
}
.checkout-section-new .checkbox-bg-color {
    background-color: rgba(var(--white), 1);
    border-radius: calc(6px + 4 * (100vw - 320px) / 1600);
    padding: calc(16px + 12 * (100vw - 320px) / 1600);
}
.checkout-section-new .checkout-left-box .billing-box .checkout-list {
    display: flex;
    flex-direction: column;
    gap: calc(8px + 4 * (100vw - 320px) / 1600);
}
.checkout-section-new
    .checkout-left-box
    .billing-box
    .checkout-list
    .form-check {
    min-height: unset;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 7px;
}
.checkout-section-new
    .checkout-left-box
    .billing-box
    .checkout-list
    .form-check
    .form-check-input {
    float: unset;
    margin: 0;
    border: 0;
    margin-top: -2px;
    width: 18px;
    height: 18px;
}
.checkout-section-new
    .checkout-left-box
    .billing-box
    .checkout-list
    .form-check
    .form-check-input:after {
    transition: all 0.2s ease-in-out;
}
.checkout-section-new
    .checkout-left-box
    .billing-box
    .checkout-list
    .form-check
    .form-check-input:checked::after {
    border-color: rgba(var(--primary-color), 1);
}
.checkout-section-new
    .checkout-left-box
    .billing-box
    .checkout-list
    .form-check
    .form-check-input:checked
    ~ .form-check-label {
    color: rgba(var(--title-color), 1);
}
.checkout-section-new
    .checkout-left-box
    .billing-box
    .checkout-list
    .form-check
    .form-check-label {
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    color: rgba(var(--content-color), 1);
    font-weight: 400;
    cursor: pointer;
}
.checkout-section-new .checkout-left-box .billing-box .theme-form .form-label {
    font-size: calc(15px + 3 * (100vw - 320px) / 1600);
    margin-bottom: calc(2px + 2 * (100vw - 320px) / 1600);
}
.checkout-section-new .checkout-left-box .billing-box .theme-form .form-control,
.checkout-section-new .checkout-left-box .billing-box .theme-form .form-select {
    background-color: rgba(var(--base-gray), 1);
    border: 1px solid rgba(var(--border-color), 1);
    padding: calc(8px + 4 * (100vw - 320px) / 1600)
        calc(12px + 2 * (100vw - 320px) / 1600);
    font-size: calc(15px + 1 * (100vw - 320px) / 1600);
}
body.dark
    .checkout-section-new
    .checkout-left-box
    .billing-box
    .theme-form
    .form-control,
body.dark
    .checkout-section-new
    .checkout-left-box
    .billing-box
    .theme-form
    .form-select {
    background-color: rgba(19, 25, 33, 0.45);
}
.checkout-section-new
    .checkout-left-box
    .billing-box
    .theme-form
    .form-control::placeholder,
.checkout-section-new
    .checkout-left-box
    .billing-box
    .theme-form
    .form-select::placeholder {
    font-weight: 400;
}
.checkout-section-new .checkout-left-box,
.checkout-section-new .checkout-right-box {
    position: sticky;
    top: 95px;
}

/* Contact Us Scss */
.contact-section .contact-main-box .contact-right-box {
    background-color: rgba(var(--white), 1);
    border-radius: 6px;
    padding: calc(18px + 8 * (100vw - 320px) / 1600);
}
.contact-section .contact-main-box .contact-right-box h3 {
    font-weight: 600;
    font-size: calc(24px + 4 * (100vw - 320px) / 1600);
    margin-bottom: -6px;
}
.contact-section .contact-main-box .contact-right-box p {
    margin-top: calc(8px + 4 * (100vw - 320px) / 1600);
    margin-bottom: calc(14px + 6 * (100vw - 320px) / 1600);
}
.contact-section .contact-main-box .contact-right-box p span {
    font-size: 15px;
    font-weight: 500;
}
.contact-section .contact-main-box .contact-right-box .theme-form .form-control,
.contact-section .contact-main-box .contact-right-box .theme-form .form-select {
    background-color: rgba(var(--base-gray), 1);
}

/* About Us Scss */
.review-title h4 {
    font-size: calc(16px + 2 * (100vw - 320px) / 1600);
    margin-bottom: calc(7px + 6 * (100vw - 320px) / 1600);
    color: rgba(var(--title-color), 1);
    font-weight: 400;
}
.review-title h2 {
    font-size: calc(26px + 14 * (100vw - 320px) / 1600);
    margin-bottom: calc(12px + 18 * (100vw - 320px) / 1600);
    width: 80%;
    line-height: 1.3;
    position: relative;
}
@media (max-width: 480px) {
    .review-title h2 {
        width: 100%;
    }
}
.review-title h2.center::before {
    color: rgba(var(--primary-color), 1);
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-title {
    margin-top: 15px;
}
.testimonial-title h2 {
    font-size: 44px;
    font-weight: 600;
    line-height: 1.2;
    color: rgba(var(--title-color), 1);
}
.testimonial-title p {
    margin-top: 8px;
    color: rgba(var(--content-color), 0.8);
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
}

.team-section {
    background-color: rgba(var(--white), 1);
}
.team-section .testimonial-title {
    margin-block: 0 42px;
}
.team-section .testimonial-title h2 {
    font-size: calc(32px + 12 * (100vw - 320px) / 1600);
}
.team-section .testimonial-title p {
    width: 70%;
    margin-inline: auto;
    font-size: calc(15px + 3 * (100vw - 320px) / 1600);
    margin-top: calc(4px + 4 * (100vw - 320px) / 1600);
}
@media (max-width: 1110.98px) {
    .team-section .testimonial-title p {
        width: 90%;
    }
}
@media (max-width: 860.98px) {
    .team-section .testimonial-title p {
        width: 100%;
    }
}
.team-section .team-box .team-image {
    position: relative;
    overflow: hidden;
    height: calc(150px + 130 * (100vw - 320px) / 1600);
    border-radius: calc(8px + 9 * (100vw - 320px) / 1600);
}
.team-section .team-box .team-image img {
    object-position: top;
}
.team-section .team-box .team-name {
    margin-top: calc(13px + 11 * (100vw - 320px) / 1600);
    text-align: center;
}
.team-section .team-box .team-name h3 {
    font-weight: 500;
    line-height: 1.4;
    word-break: break-all;
    font-size: calc(16px + 4 * (100vw - 320px) / 1600);
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
.team-section .team-box .team-name p {
    color: rgba(var(--content-color), 1);
    font-size: calc(13px + 3 * (100vw - 320px) / 1600);
    font-weight: 400;
}
.team-section .team-box .team-media {
    background-color: rgba(var(--theme-blue), 1);
    padding: 10px 16px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}
@media (max-width: 575.98px) {
    .team-section .team-box .team-media {
        background-color: rgba(var(--theme-blue), 0.7);
        backdrop-filter: blur(2px);
        border-radius: 0;
        justify-content: space-between;
        padding: 5px 14px;
    }
}
.team-section .team-box .team-media li a {
    background-color: rgba(var(--content-color), 1);
    border-radius: 50%;
    color: #fff;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 575.98px) {
    .team-section .team-box .team-media li a {
        background-color: transparent;
        width: unset;
        height: unset;
    }
    .team-section .team-box .team-media li a i {
        font-size: calc(16px + 2 * (100vw - 320px) / 1600);
    }
}
.team-section .team-box ul {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%) scale(0.4);
    opacity: 0;
    transition: all 0.4s ease-in-out;
}
@media (max-width: 575.98px) {
    .team-section .team-box ul {
        bottom: 0;
        transform: translateX(-50%) scale(1);
        opacity: 1;
        width: 100%;
    }
}
.team-section .team-box ul li a {
    width: 30px;
    height: 30px;
}
.team-section .team-box:hover ul {
    display: flex;
    bottom: 18px;
    transition: all 0.4s ease-in-out;
    transform: translateX(-50%) scale(1);
    opacity: 1;
}
@media (max-width: 575.98px) {
    .team-section .team-box:hover ul {
        bottom: 0;
    }
}

.about-us-section .top-about-content {
    display: flex;
    justify-content: space-between;
    gap: calc(18px + 89 * (100vw - 1200px) / 720);
    margin-bottom: calc(0px + -74 * (100vw - 320px) / 1600);
}
@media (max-width: 1199.98px) {
    .about-us-section .top-about-content {
        flex-direction: column;
        gap: 18px;
    }
}
.about-us-section .top-about-content h2 {
    font-size: calc(32px + 18 * (100vw - 320px) / 1600);
    font-weight: 700;
    line-height: calc(34px + 36 * (100vw - 320px) / 1600);
}
.about-us-section .top-about-content p {
    font-size: calc(15px + 3 * (100vw - 320px) / 1600);
    color: #606060;
    line-height: 1.5;
    width: calc(100% - (15px + 145 * (100vw - 320px) / 1600));
}
body.dark .about-us-section .top-about-content p {
    color: rgba(255, 255, 255, 0.7);
}
.about-us-section .business-agenda {
    background-color: rgba(var(--theme-blue), 1);
    padding: calc(98px + 107 * (100vw - 320px) / 1600)
        calc(15px + 145 * (100vw - 320px) / 1600)
        calc(24px + 58 * (100vw - 320px) / 1600)
        calc(15px + 145 * (100vw - 320px) / 1600);
}
.about-us-section .business-agenda h3 {
    color: rgba(var(--white), 1);
    font-size: calc(22px + 4 * (100vw - 320px) / 1600);
    line-height: 1.3;
    font-weight: 600;
}
body.dark .about-us-section .business-agenda h3 {
    color: #fff;
}
.about-us-section .business-agenda p {
    margin-top: calc(2px + 4 * (100vw - 320px) / 1600);
    color: rgba(var(--white), 0.6);
    font-size: calc(16px + 2 * (100vw - 320px) / 1600);
    width: calc(100% - 30px);
    line-height: 1.5;
}
body.dark .about-us-section .business-agenda p {
    color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 767.98px) {
    .about-us-section .business-agenda p {
        width: 100%;
    }
}
.about-us-section img {
    position: relative;
    margin-block: calc(26px + 110 * (100vw - 320px) / 1600)
        calc(-68px + -67 * (100vw - 320px) / 1600);
    border-radius: calc(14px + 6 * (100vw - 320px) / 1600);
    aspect-ratio: 131/50;
    width: 100%;
    object-fit: cover;
}

/* Compare Scss */
.compare-section .compare-table {
    padding: calc(14px + 6 * (100vw - 320px) / 1600);
    background-color: rgba(var(--white), 1);
    margin-bottom: 0;
}
.compare-section .compare-table tr td,
.compare-section .compare-table tr th {
    color: rgba(var(--title-color), 1);
    min-width: 200px;
    vertical-align: middle;
    padding: calc(10px + 6 * (100vw - 320px) / 1600) 10px;
    text-align: center;
    border-right: 1px solid rgba(var(--border-color), 1);
    border-bottom: 1px solid rgba(var(--border-color), 1);
}
[dir="rtl"] .compare-section .compare-table tr td,
[dir="rtl"] .compare-section .compare-table tr th {
    border-right: none;
    border-left: 1px solid rgba(var(--border-color), 1);
}
.compare-section .compare-table tr td:first-child,
.compare-section .compare-table tr th:first-child {
    min-width: 134px;
}
.compare-section .compare-table tr td:last-child,
.compare-section .compare-table tr th:last-child {
    border-right: unset;
}
[dir="rtl"] .compare-section .compare-table tr td:last-child,
[dir="rtl"] .compare-section .compare-table tr th:last-child {
    border-left: none;
}
.compare-section .compare-table tr:first-child td,
.compare-section .compare-table tr:first-child th {
    padding-top: 0;
}
.compare-section .compare-table tr:last-child td,
.compare-section .compare-table tr:last-child th {
    border-bottom: unset;
}
.compare-section .compare-table tr th {
    font-size: 16px;
    font-weight: 500;
    color: rgba(var(--title-color), 1);
    border-right: 1px solid rgba(var(--content-color), 0.1);
}
.compare-section .compare-table tr .compare-details-box h3 {
    margin-top: calc(16px + 4 * (100vw - 320px) / 1600);
    font-size: calc(16px + 3 * (100vw - 320px) / 1600);
}
.compare-section .compare-table tr .compare-details-box .cart-button {
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    font-weight: 500;
    width: auto;
    padding: calc(11px + 3 * (100vw - 320px) / 1600)
        calc(18px + 8 * (100vw - 320px) / 1600)
        calc(8px + 4 * (100vw - 320px) / 1600);
    background-color: rgba(var(--primary-color), 1);
    border-radius: 4px;
    margin-top: calc(6px + 5 * (100vw - 320px) / 1600);
    color: #fff;
    border: 1px solid rgba(var(--primary-color), 1);
    line-height: 1;
}
.compare-section .compare-table tr .compare-details-box .cart-button:hover {
    background-color: transparent;
    color: rgba(var(--primary-color), 1);
}
.compare-section .compare-table tr .compare-details-box .close-compare {
    border: unset;
    position: absolute;
    top: calc(8px + 2 * (100vw - 320px) / 1600);
    right: calc(8px + 12 * (100vw - 320px) / 1600);
    padding: 0;
    line-height: 1;
    font-size: calc(18px + 2 * (100vw - 320px) / 1600);
    color: rgba(var(--content-color), 1);
    border-radius: 4px;
    background-color: rgba(var(--white), 1);
    width: calc(26px + 4 * (100vw - 320px) / 1600);
    height: calc(26px + 4 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
    justify-content: center;
}
[dir="rtl"]
    .compare-section
    .compare-table
    tr
    .compare-details-box
    .close-compare {
    right: unset;
    left: calc(8px + 12 * (100vw - 320px) / 1600);
}
.compare-section .compare-table tr .compare-details-box .close-compare i {
    font-size: calc(18px + 2 * (100vw - 320px) / 1600);
}
.compare-section .compare-table tr td {
    font-size: calc(15px + 1 * (100vw - 320px) / 1600);
    position: relative;
}
.compare-section .compare-table tr td.title a {
    font-weight: 700;
    color: rgba(var(--title-color), 1);
}
.compare-section .compare-table tr td a {
    font-weight: 600;
}
.compare-section .compare-table tr td a:hover {
    color: rgba(var(--title-color), 1);
}
.compare-section .compare-table tr td .compare-image {
    margin: 0 auto;
    position: relative;
}
.compare-section .compare-table tr td .compare-image a {
    padding-block: calc(22px + 13 * (100vw - 320px) / 1600);
    text-align: center;
    border-radius: 5px;
    background-color: rgba(var(--base-gray), 1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.compare-section .compare-table tr td .compare-image img {
    object-fit: contain;
    width: 100%;
    height: calc(120px + 100 * (100vw - 320px) / 1600);
}
.compare-section .compare-table tr td .price h5 {
    font-weight: 600;
    color: rgba(var(--title-color), 1);
}
.compare-section .compare-table tr td .price h5 del {
    font-weight: 400;
    font-size: 15px;
    margin-left: 4px;
    color: #777;
}
.compare-section .compare-table tr td .price h5 span {
    margin-left: 4px;
    color: rgba(var(--primary-color), 1);
}
.compare-section .compare-table tr td .compare-rating {
    flex-wrap: wrap;
    gap: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.compare-section .compare-table tr td .compare-rating .rating {
    gap: calc(1px + 1 * (100vw - 320px) / 1600);
}
.compare-section .compare-table tr td .compare-rating .rating li i {
    font-size: 16px;
}
.compare-section .compare-table tr td .compare-rating span {
    font-size: calc(14px + 1 * (100vw - 320px) / 1600);
    line-height: 1;
    margin-top: 2px;
    font-weight: 400;
    color: rgba(var(--content-color), 1);
}
.compare-section .compare-table tr td .summary {
    color: #777;
    line-height: 1.5;
    margin-bottom: 0;
    font-size: 15px;
}

/* User Dashboard Scss */
.user-dashboard-section .dashboard-left-sidebar {
    background-color: rgba(var(--white), 1);
    border-radius: 7px;
    overflow: hidden;
    position: sticky;
    top: 10px;
    z-index: 0;
}
@media (max-width: 991.98px) {
    .user-dashboard-section .dashboard-left-sidebar {
        position: fixed;
        top: 0;
        left: -320px;
        border-radius: 0;
        z-index: 21;
        overflow: hidden auto;
        transition: all 0.15s ease-in-out;
        width: 300px;
        height: 100vh;
    }
    [dir="rtl"] .user-dashboard-section .dashboard-left-sidebar {
        left: unset;
        right: -320px;
    }
    .user-dashboard-section .dashboard-left-sidebar.show {
        left: 0;
    }
    [dir="rtl"] .user-dashboard-section .dashboard-left-sidebar.show {
        right: 0;
        left: unset;
    }
}
.user-dashboard-section .dashboard-left-sidebar .sidebar-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
    background-color: rgba(var(--base-gray), 1);
    border-radius: 100%;
    border: none;
    color: rgba(var(--content-color), 1);
    padding: 2px 0 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
[dir="rtl"] .user-dashboard-section .dashboard-left-sidebar .sidebar-close {
    right: unset;
    left: 10px;
}
.user-dashboard-section .dashboard-left-sidebar .sidebar-close i {
    font-size: 17px;
}
.user-dashboard-section .dashboard-left-sidebar .profile-box {
    position: relative;
}
.user-dashboard-section .dashboard-left-sidebar .profile-box .cover-image {
    position: relative;
    overflow: hidden;
}
.user-dashboard-section .dashboard-left-sidebar .profile-box .cover-image img {
    object-fit: cover;
    width: 100%;
    height: 150px;
}
@media (max-width: 991.98px) {
    .user-dashboard-section
        .dashboard-left-sidebar
        .profile-box
        .cover-image
        img {
        height: 120px;
    }
}
.user-dashboard-section
    .dashboard-left-sidebar
    .profile-box
    .cover-image:before {
    top: 0;
    left: 0;
    background-color: rgba(var(--title-color), 1);
    opacity: 0.15;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
}
.user-dashboard-section
    .dashboard-left-sidebar
    .profile-box
    .cover-image
    .cover-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 1;
    background-color: rgba(var(--white), 1);
    border-radius: 100%;
    color: rgba(var(--content-color), 1);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.user-dashboard-section .dashboard-left-sidebar .profile-box .profile-contain {
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 13px;
    border-bottom: 1px solid rgba(var(--border-color), 1);
}
.user-dashboard-section
    .dashboard-left-sidebar
    .profile-box
    .profile-contain
    .profile-image {
    object-fit: contain;
    background-color: #ecf3fa;
    border-radius: calc(6px + 2 * (100vw - 320px) / 1600);
    overflow: hidden;
    border: 1px solid rgba(var(--border-color), 1);
    width: calc(62px + 14 * (100vw - 320px) / 1600);
    height: calc(62px + 14 * (100vw - 320px) / 1600);
}
.user-dashboard-section
    .dashboard-left-sidebar
    .profile-box
    .profile-contain
    .profile-name {
    width: calc(100% - 76px - 13px);
}
.user-dashboard-section
    .dashboard-left-sidebar
    .profile-box
    .profile-contain
    .profile-name
    h3 {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.user-dashboard-section
    .dashboard-left-sidebar
    .profile-box
    .profile-contain
    .profile-name
    h4 {
    font-size: calc(14px + 1 * (100vw - 320px) / 1600);
    margin-top: 4px;
    font-weight: 400;
    color: rgba(var(--content-color), 1);
}
.user-dashboard-section .dashboard-left-sidebar .user-nav-pills {
    display: block;
    margin: calc(10px + 10 * (100vw - 320px) / 1600) 0 0;
    overflow: auto;
    height: calc(
        100% - (98px + 8 * (100vw - 320px) / 1600) - 78px -
            (10px + 10 * (100vw - 320px) / 1600)
    );
}
.user-dashboard-section .dashboard-left-sidebar .user-nav-pills .nav-item {
    width: 100%;
    display: block;
}
.user-dashboard-section
    .dashboard-left-sidebar
    .user-nav-pills
    .nav-item
    + .nav-item {
    margin-top: calc(2px + 5 * (100vw - 320px) / 1600);
}
.user-dashboard-section
    .dashboard-left-sidebar
    .user-nav-pills
    .nav-item
    .nav-link {
    box-shadow: unset;
    font-size: calc(17px + 1 * (100vw - 320px) / 1600);
    position: relative;
    color: rgba(var(--content-color), 1);
    width: 100%;
    text-align: left;
    padding: calc(10px + 3 * (100vw - 320px) / 1600)
        calc(10px + 3 * (100vw - 320px) / 1600)
        calc(10px + 3 * (100vw - 320px) / 1600)
        calc(19px + 4 * (100vw - 320px) / 1600);
    font-weight: 500;
    z-index: 0;
    overflow: hidden;
    border-radius: 0;
    display: flex;
    align-items: center;
}
.user-dashboard-section
    .dashboard-left-sidebar
    .user-nav-pills
    .nav-item
    .nav-link.active,
.user-dashboard-section
    .dashboard-left-sidebar
    .user-nav-pills
    .nav-item
    .nav-link
    .show
    > .nav-link {
    border-left: 3px solid rgba(var(--primary-color), 1);
    font-weight: 600;
    color: rgba(var(--primary-color), 1);
    background: rgba(var(--primary-color), 1);
    background: linear-gradient(
        90deg,
        rgba(var(--primary-color), 0.15) 0%,
        rgba(var(--primary-color), 0) 100%
    );
}
[dir="rtl"]
    .user-dashboard-section
    .dashboard-left-sidebar
    .user-nav-pills
    .nav-item
    .nav-link.active,
[dir="rtl"]
    .user-dashboard-section
    .dashboard-left-sidebar
    .user-nav-pills
    .nav-item
    .nav-link
    .show
    > .nav-link {
    background: linear-gradient(
        -90deg,
        rgba(var(--primary-color), 0.15) 0%,
        rgba(var(--primary-color), 0) 100%
    );
    border-left: unset;
    border-right: 3px solid rgba(var(--primary-color), 1);
}
.user-dashboard-section
    .dashboard-left-sidebar
    .user-nav-pills
    .nav-item
    .nav-link
    i {
    font-size: 20px;
    margin-right: 10px;
    line-height: 1;
    margin-top: -4px;
    font-weight: normal;
}
[dir="rtl"]
    .user-dashboard-section
    .dashboard-left-sidebar
    .user-nav-pills
    .nav-item
    .nav-link
    i {
    margin-right: unset;
    margin-left: 10px;
}
.user-dashboard-section .dashboard-left-sidebar .logout-box {
    border-top: 1px solid rgba(var(--border-color), 1);
    margin-top: 8px;
    width: 100%;
    padding: 14px calc(10px + 3 * (100vw - 320px) / 1600)
        calc(10px + 3 * (100vw - 320px) / 1600);
}
.user-dashboard-section .dashboard-left-sidebar .logout-box .logout-btn {
    box-shadow: unset;
    font-size: calc(17px + 1 * (100vw - 320px) / 1600);
    position: relative;
    color: rgba(var(--content-color), 1);
    width: 100%;
    text-align: left;
    padding: calc(10px + 3 * (100vw - 320px) / 1600)
        calc(10px + 3 * (100vw - 320px) / 1600)
        calc(10px + 3 * (100vw - 320px) / 1600)
        calc(19px + 4 * (100vw - 320px) / 1600);
    font-weight: 500;
    z-index: 0;
    overflow: hidden;
    border-radius: 0;
    display: flex;
    align-items: center;
    padding: 14px calc(10px + 3 * (100vw - 320px) / 1600)
        calc(10px + 3 * (100vw - 320px) / 1600);
    width: 100%;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.user-dashboard-section .dashboard-left-sidebar .logout-box .logout-btn i {
    margin-top: -2px;
}
.user-dashboard-section .profile-form {
    margin-top: calc(10px + 15 * (100vw - 320px) / 1600);
    padding-top: calc(10px + 15 * (100vw - 320px) / 1600);
    border-top: 1px solid rgba(var(--border-color), 1);
}
.user-dashboard-section .profile-form .theme-form .form-label {
    line-height: 1.2;
    font-size: calc(15px + 3 * (100vw - 320px) / 1600);
    margin-bottom: calc(2px + 2 * (100vw - 320px) / 1600);
}
.user-dashboard-section .profile-form .theme-form .form-control,
.user-dashboard-section .profile-form .theme-form .form-select {
    background-color: rgba(var(--base-gray), 1);
    border: 1px solid rgba(var(--border-color), 1);
    padding: calc(8px + 4 * (100vw - 320px) / 1600)
        calc(12px + 2 * (100vw - 320px) / 1600);
    font-size: calc(15px + 1 * (100vw - 320px) / 1600);
}
.user-dashboard-section .dashboard-right-sidebar .dashboard-bg-box {
    background-color: rgba(var(--white), 1);
    padding: calc(19px + 14 * (100vw - 320px) / 1600);
    border-radius: calc(6px + 2 * (100vw - 320px) / 1600);
    height: 100%;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-bg-box
    + .dashboard-bg-box {
    margin-top: calc(16px + 14 * (100vw - 320px) / 1600);
}
.user-dashboard-section .dashboard-right-sidebar .profile-title {
    margin-bottom: 12px;
}
.user-dashboard-section .dashboard-right-sidebar .profile-title h4 {
    font-size: calc(18px + 4 * (100vw - 320px) / 1600);
}
.user-dashboard-section .dashboard-right-sidebar .profile-title p {
    color: rgba(var(--content-color), 1);
    font-weight: 400;
    margin-top: calc(2px + 2 * (100vw - 320px) / 1600);
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
}
.user-dashboard-section .dashboard-right-sidebar .dashboard-title button {
    padding: calc(9px + 2 * (100vw - 320px) / 1600)
        calc(10px + 4 * (100vw - 320px) / 1600)
        calc(6px + 2 * (100vw - 320px) / 1600);
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}
@media (max-width: 991.98px) {
    .user-dashboard-section .dashboard-right-sidebar {
        height: auto;
    }
}
.user-dashboard-section .dashboard-right-sidebar .profile-contain {
    padding: 15px;
    display: flex;
    gap: 13px;
    border-bottom: 1px solid rgba(var(--border-color), 1);
}
.user-dashboard-section
    .dashboard-right-sidebar
    .profile-contain
    .profile-image {
    object-fit: contain;
    width: 94px;
    height: 94px;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .profile-contain
    .profile-name {
    width: calc(100% - 94px - 13px);
    position: relative;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .profile-contain
    .profile-name
    h3 {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.7px;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .profile-contain
    .profile-name
    h6 {
    font-size: 17px;
    margin-top: 3px;
    color: rgba(var(--content-color), 1);
    font-weight: 400;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .profile-contain
    .profile-name
    .profile-name-detail {
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
}
@media (max-width: 575.98px) {
    .user-dashboard-section
        .dashboard-right-sidebar
        .profile-contain
        .profile-name
        .profile-name-detail {
        display: block;
    }
}
.user-dashboard-section
    .dashboard-right-sidebar
    .profile-contain
    .profile-name
    .profile-name-detail
    a {
    margin-left: auto;
    padding: 8px 14px;
    position: relative;
    z-index: 0;
    border-radius: 5px;
    overflow: hidden;
    display: inline-block;
}
@media (max-width: 575.98px) {
    .user-dashboard-section
        .dashboard-right-sidebar
        .profile-contain
        .profile-name
        .profile-name-detail
        a {
        margin-top: 10px;
    }
}
.user-dashboard-section
    .dashboard-right-sidebar
    .profile-contain
    .profile-name
    .profile-name-detail
    a::after {
    top: 0;
    left: 0;
    background: rgba(var(--primary-color), 1);
    opacity: 0.08;
    z-index: -1;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .profile-contain
    .profile-name
    .profile-name-detail
    a:hover {
    color: rgba(var(--primary-color), 1);
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-home
    .dashboard-setting {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: calc(22px + 14 * (100vw - 320px) / 1600);
    gap: calc(12px + 6 * (100vw - 320px) / 1600);
}
@media (max-width: 1399.98px) {
    .user-dashboard-section
        .dashboard-right-sidebar
        .dashboard-home
        .dashboard-setting {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600.98px) {
    .user-dashboard-section
        .dashboard-right-sidebar
        .dashboard-home
        .dashboard-setting {
        grid-template-columns: 1fr;
    }
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-home
    .dashboard-setting
    li
    .personal-detail {
    text-align: center;
    color: rgba(var(--title-color), 1);
    border-radius: calc(5px + 2 * (100vw - 320px) / 1600);
    display: block;
    padding: calc(15px + 10 * (100vw - 320px) / 1600);
    background-color: rgba(var(--base-gray), 1);
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-home
    .dashboard-setting
    li
    .personal-detail:hover
    h4 {
    color: rgba(var(--primary-color), 1);
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-home
    .dashboard-setting
    li
    .personal-detail
    svg {
    width: calc(146px + 34 * (100vw - 320px) / 1600);
    height: calc(128px + 52 * (100vw - 320px) / 1600);
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-home
    .dashboard-setting
    li
    .personal-detail
    h4 {
    margin-top: 7px;
    transition: all 0.15s ease-in-out;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-home
    .dashboard-setting
    li
    .personal-detail
    p {
    color: rgba(var(--content-color), 1);
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    transition: all 0.15s ease-in-out;
    margin-top: calc(1px + 2 * (100vw - 320px) / 1600);
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-order
    .order-contain
    .dashboard-order-table {
    border: 1px solid rgba(var(--border-color), 1);
    padding: calc(6px + 5 * (100vw - 320px) / 1600);
    border-radius: calc(6px + 2 * (100vw - 320px) / 1600);
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-order
    .order-contain
    .dashboard-order-table
    .table
    thead
    tr
    th {
    font-size: calc(17px + 3 * (100vw - 320px) / 1600);
    text-align: center;
    font-weight: 500;
    background-color: rgba(var(--base-gray), 1);
    padding: calc(9px + 2 * (100vw - 320px) / 1600)
        calc(10px + 2 * (100vw - 320px) / 1600)
        calc(6px + 2 * (100vw - 320px) / 1600);
    white-space: nowrap;
    border-radius: 0;
    border: unset;
    color: rgba(var(--title-color), 1);
    min-width: 80px;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-order
    .order-contain
    .dashboard-order-table
    .table
    thead
    tr
    th:nth-child(2) {
    min-width: 190px;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-order
    .order-contain
    .dashboard-order-table
    .table
    thead
    tr
    th:nth-child(3) {
    min-width: 120px;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-order
    .order-contain
    .dashboard-order-table
    .table
    thead
    tr
    th:first-child {
    border-top-left-radius: calc(4px + 2 * (100vw - 320px) / 1600);
    border-bottom-left-radius: calc(4px + 2 * (100vw - 320px) / 1600);
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-order
    .order-contain
    .dashboard-order-table
    .table
    thead
    tr
    th:last-child {
    border-top-right-radius: calc(4px + 2 * (100vw - 320px) / 1600);
    border-bottom-right-radius: calc(4px + 2 * (100vw - 320px) / 1600);
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-order
    .order-contain
    .dashboard-order-table
    .table
    tbody
    tr
    td {
    text-align: center;
    vertical-align: middle;
    font-size: calc(15px + 1 * (100vw - 320px) / 1600);
    color: rgba(var(--content-color), 1);
    box-shadow: unset;
    font-weight: normal;
    border-bottom: 1px solid rgba(var(--border-color), 1);
    padding: calc(12px + 7 * (100vw - 320px) / 1600)
        calc(10px + 4 * (100vw - 320px) / 1600)
        calc(10px + 7 * (100vw - 320px) / 1600);
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-order
    .order-contain
    .dashboard-order-table
    .table
    a {
    color: rgba(var(--title-color), 1);
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-order
    .order-contain
    .dashboard-order-table
    .table
    tbody
    tr:last-child
    td {
    border-bottom: unset;
    padding-bottom: 0;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-address
    .address-box {
    border-radius: 6px;
    padding: calc(12px + 7 * (100vw - 320px) / 1600);
    background-color: rgba(var(--base-gray), 1);
    position: relative;
    height: 100%;
    overflow: hidden;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-address
    .address-box
    > div {
    display: flex;
    position: relative;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-address
    .address-box
    > div
    .label {
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgba(var(--primary-color), 1);
    padding: 4px 8px 2px;
    border-radius: 3px;
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.8px;
}
[dir="rtl"]
    .user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-address
    .address-box
    > div
    .label {
    right: unset;
    left: 0;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-address
    .address-box
    > div
    .form-check {
    min-height: unset;
    padding: 0;
    margin: 0;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-address
    .address-box
    > div
    .form-check
    .form-check-input {
    float: unset;
    margin: 3px 0 0;
    border: 1px solid rgba(var(--border-color), 1);
    position: relative;
    background-image: unset;
    filter: unset;
    transition: all 0.15s ease-in;
    width: calc(14px + 4 * (100vw - 320px) / 1600);
    height: calc(14px + 4 * (100vw - 320px) / 1600);
}
body.dark
    .user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-address
    .address-box
    > div
    .form-check
    .form-check-input {
    background-color: #202c3b;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-address
    .address-box
    > div
    .form-check
    .form-check-input::before {
    transition: all 0.15s ease-in;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background-color: rgba(var(--primary-color), 1);
    border-radius: 100%;
    content: "";
    position: absolute;
    width: calc(10px + 3 * (100vw - 320px) / 1600);
    height: calc(10px + 3 * (100vw - 320px) / 1600);
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-address
    .address-box
    > div
    .form-check
    .form-check-input:checked {
    background-color: rgba(var(--white), 1);
    border-color: rgba(var(--primary-color), 1);
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-address
    .address-box
    > div
    .form-check
    .form-check-input:checked::before {
    transform: translate(-50%, -50%) scale(1);
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-address
    .address-box
    > div
    .form-check
    .form-check-input:focus {
    box-shadow: none;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-address
    .address-box
    > div
    .address-table
    table {
    margin-bottom: 0;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-address
    .address-box
    > div
    .address-table
    table
    tr:first-child
    td {
    padding-top: 0;
    font-weight: 600;
    font-size: calc(15px + 3 * (100vw - 320px) / 1600);
    color: rgba(var(--title-color), 1);
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-address
    .address-box
    > div
    .address-table
    table
    tr
    td {
    border: none;
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    padding: calc(2px + 2 * (100vw - 320px) / 1600) 0;
    color: rgba(var(--content-color), 1);
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-address
    .address-box
    > div
    .address-table
    table
    tr
    td:first-child {
    min-width: calc(72px + 18 * (100vw - 320px) / 1600);
    padding-left: calc(6px + 2 * (100vw - 320px) / 1600);
}
[dir="rtl"]
    .user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-address
    .address-box
    > div
    .address-table
    table
    tr
    td:first-child {
    padding-left: unset;
    padding-right: calc(6px + 2 * (100vw - 320px) / 1600);
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-address
    .address-box
    > div
    .address-table
    table
    tr
    td:last-child
    p {
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    margin-bottom: 0;
    line-height: 1.5;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-address
    .address-box
    > div
    .address-table
    table
    tr
    td
    h4 {
    align-items: center;
    font-weight: 500;
    color: rgba(var(--title-color), 1);
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-address
    .address-box
    > div
    .address-table
    table
    tr
    td
    h4
    span {
    background-color: rgba(var(--primary-color), 1);
    padding: 4px 8px;
    border-radius: 4px;
    color: rgba(var(--white), 1);
    font-size: 12px;
    letter-spacing: 0.8px;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-address
    .address-box
    .button-group {
    align-items: center;
    margin-top: 7px;
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-address
    .address-box
    .button-group
    button {
    background-color: rgba(var(--white), 1);
    font-weight: 500;
    padding: 9px 20px 7px;
    display: flex;
    font-size: 15px;
    border-radius: 5px;
    gap: 4px;
    justify-content: center;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-address
    .address-box
    .button-group
    button:hover {
    background-color: rgba(var(--primary-color), 1);
    color: #fff;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-address
    .address-box
    .button-group
    button
    i {
    line-height: 1;
    margin-top: 1px;
    font-size: calc(14px + 1 * (100vw - 320px) / 1600);
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-address
    .add-address
    .address-link {
    height: 100%;
    color: rgba(var(--title-color), 1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.user-dashboard-section .dashboard-right-sidebar .dashboard-card .card-title,
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-card
    .address-title {
    flex-wrap: wrap;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-card
    .card-title
    .btn,
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-card
    .address-title
    .btn {
    display: flex;
    align-items: center;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-card
    .card-title
    .btn
    i,
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-card
    .address-title
    .btn
    i {
    margin-top: -5px;
    line-height: 1;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-card
    .payment-card-detail {
    position: relative;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-card
    .payment-card-detail:hover
    .edit-card {
    opacity: 1;
    transition: all 0.15s ease-in-out;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-card
    .payment-card-detail.add-card {
    background-color: rgb(249, 249, 249);
    cursor: pointer;
    padding: 0;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-card
    .payment-card-detail.add-card
    .card-details {
    min-height: 130px;
    background: rgb(210, 210, 210);
    color: rgba(var(--title-color), 1);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-card
    .payment-card-detail.add-card
    .card-details
    h5 {
    margin-bottom: 0;
    text-transform: capitalize;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-card
    .payment-card-detail
    .card-details {
    height: 100%;
    color: rgba(var(--white), 1);
    padding: calc(12px + 8 * (100vw - 320px) / 1600);
    overflow: hidden;
    border-radius: 5px;
    background-color: #4b77a0;
    z-index: 0;
    position: relative;
    background: linear-gradient(-90deg, #4b77a0 0%, #7fa9d7 100%);
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-card
    .payment-card-detail
    .card-details.card-visa {
    background: #da4453;
    background: linear-gradient(to right, #89216b, #da4453);
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-card
    .payment-card-detail
    .card-details.debit-card {
    background: #4e54c8;
    background: linear-gradient(to right, #8f94fb, #4e54c8);
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-card
    .payment-card-detail
    .card-details::before {
    background-image: url(../images/inner-page/user-dashboard/card-bg.png);
    background-position: center center;
    transform: scale(-1);
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.2;
    z-index: -1;
    filter: invert(1);
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-card
    .payment-card-detail
    .card-details
    .card-number {
    margin-bottom: calc(18px + 12 * (100vw - 320px) / 1600);
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-card
    .payment-card-detail
    .card-details
    .card-number
    h4 {
    color: rgba(var(--white), 1);
    font-size: calc(18px + 2 * (100vw - 320px) / 1600);
}
body.dark
    .user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-card
    .payment-card-detail
    .card-details
    .card-number
    h4 {
    color: #fff;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-card
    .payment-card-detail
    .card-details
    .valid-detail {
    display: flex;
    align-items: center;
    margin-top: calc(10px + 10 * (100vw - 320px) / 1600);
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-card
    .payment-card-detail
    .card-details
    .valid-detail
    .title {
    margin-bottom: 0;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-card
    .payment-card-detail
    .card-details
    .valid-detail
    .title
    span {
    display: block;
    color: rgba(var(--white), 0.7);
    text-transform: uppercase;
    font-size: 12px;
    line-height: 1.3;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-card
    .payment-card-detail
    .card-details
    .valid-detail
    .date
    h3 {
    margin-bottom: 0;
    color: rgba(var(--white), 1);
    margin-left: 15px;
    font-size: calc(16px + 2 * (100vw - 320px) / 1600);
    font-weight: normal;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-card
    .payment-card-detail
    .card-details
    .valid-detail
    .primary {
    margin-left: auto;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-card
    .payment-card-detail
    .card-details
    .valid-detail
    .primary
    span {
    font-size: calc(12px + 2 * (100vw - 320px) / 1600);
    padding: 0;
    font-weight: 400;
    text-transform: capitalize;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-card
    .payment-card-detail
    .card-details
    .name-detail {
    margin-top: calc(10px + 15 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-card
    .payment-card-detail
    .card-details
    .name-detail
    .name
    h5 {
    font-size: calc(13px + 1 * (100vw - 320px) / 1600);
    font-weight: 400;
    margin-bottom: calc(4px + 2 * (100vw - 320px) / 1600);
    color: rgba(var(--white), 0.8);
}
body.dark
    .user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-card
    .payment-card-detail
    .card-details
    .name-detail
    .name
    h5 {
    color: rgba(255, 255, 255, 0.8);
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-card
    .payment-card-detail
    .card-details
    .name-detail
    .name
    h6 {
    text-transform: uppercase;
    font-size: calc(16px + 2 * (100vw - 320px) / 1600);
    margin-bottom: 0;
    color: rgba(var(--white), 1);
}
body.dark
    .user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-card
    .payment-card-detail
    .card-details
    .name-detail
    .name
    h6 {
    color: #fff;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-card
    .payment-card-detail
    .card-details
    .name-detail
    .card-img {
    width: auto;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-card
    .payment-card-detail
    .card-details
    .top-box {
    margin-bottom: calc(20px + 13 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-card
    .payment-card-detail
    .card-details
    .top-box
    .card-chip {
    width: auto;
    height: calc(40px + 8 * (100vw - 320px) / 1600);
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-card
    .payment-card-detail
    .card-details
    .top-box
    .bank-name {
    text-align: center;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-card
    .payment-card-detail
    .card-details
    .top-box
    .bank-name
    .bank-img {
    width: auto;
    height: calc(22px + 2 * (100vw - 320px) / 1600);
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-card
    .payment-card-detail
    .card-details
    .top-box
    .bank-name
    span {
    display: block;
    line-height: 1;
    margin-top: 7px;
    color: rgba(var(--white), 0.78);
}
body.dark
    .user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-card
    .payment-card-detail
    .card-details
    .top-box
    .bank-name
    span {
    color: rgba(255, 255, 255, 0.78);
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-card
    .payment-card-detail
    .edit-card {
    position: absolute;
    text-align: center;
    top: 0;
    left: 0;
    background-color: rgba(var(--title-color), 0.8);
    border-radius: 5px;
    opacity: 0;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
@media (max-width: 767.98px) {
    .user-dashboard-section
        .dashboard-right-sidebar
        .dashboard-card
        .payment-card-detail
        .edit-card {
        position: relative;
        inset: unset;
        margin-top: 10px;
        opacity: 1;
        transform: unset;
        background-color: transparent;
    }
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-card
    .payment-card-detail
    .edit-card
    a,
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-card
    .payment-card-detail
    .edit-card
    .btn {
    padding: 0 10px;
    text-transform: capitalize;
    color: rgba(var(--white), 1);
    font-size: 19px;
    display: flex;
    align-items: center;
    line-height: 1;
    gap: 5px;
}
@media (max-width: 767.98px) {
    .user-dashboard-section
        .dashboard-right-sidebar
        .dashboard-card
        .payment-card-detail
        .edit-card
        a,
    .user-dashboard-section
        .dashboard-right-sidebar
        .dashboard-card
        .payment-card-detail
        .edit-card
        .btn {
        color: rgba(var(--title-color), 1);
        font-size: 14px;
    }
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-card
    .payment-card-detail
    .edit-card
    a
    i,
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-card
    .payment-card-detail
    .edit-card
    .btn
    i {
    margin-top: -4px;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-card
    .edit-card-mobile {
    display: none;
}
@media (max-width: 767.98px) {
    .user-dashboard-section
        .dashboard-right-sidebar
        .dashboard-card
        .edit-card-mobile {
        margin-top: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .user-dashboard-section
        .dashboard-right-sidebar
        .dashboard-card
        .edit-card-mobile
        a {
        padding: 0 10px;
        text-transform: capitalize;
        color: rgba(var(--title-color), 1);
    }
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-profile
    .profile-detail
    .profile-name-detail {
    display: flex;
    align-items: center;
}
@media (max-width: 575.98px) {
    .user-dashboard-section
        .dashboard-right-sidebar
        .dashboard-profile
        .profile-detail
        .profile-name-detail {
        display: block;
    }
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-profile
    .profile-detail
    .profile-name-detail
    h3 {
    font-weight: 400;
    font-size: 16px;
    margin-right: 10px;
    display: flex;
    align-items: center;
}
@media (max-width: 360.98px) {
    .user-dashboard-section
        .dashboard-right-sidebar
        .dashboard-profile
        .profile-detail
        .profile-name-detail
        h3 {
        margin-right: 0;
    }
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-profile
    .profile-detail
    .profile-name-detail
    h3
    span {
    background: rgba(var(--primary-color), 1);
    color: rgba(var(--white), 1);
    padding: 3px 8px;
    margin-left: 10px;
    border-radius: 5px;
    font-size: 13px;
}
@media (max-width: 575.98px) {
    .user-dashboard-section
        .dashboard-right-sidebar
        .dashboard-profile
        .profile-detail
        .profile-name-detail
        .profile-rating {
        margin-top: 3px;
    }
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-profile
    .profile-detail
    a {
    margin-left: auto;
    padding: 8px 14px;
    position: relative;
    z-index: 0;
    border-radius: 5px;
    overflow: hidden;
    display: inline-block;
}
@media (max-width: 575.98px) {
    .user-dashboard-section
        .dashboard-right-sidebar
        .dashboard-profile
        .profile-detail
        a {
        margin-top: 10px;
    }
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-profile
    .profile-detail
    a::after {
    top: 0;
    left: 0;
    background: rgba(var(--primary-color), 1);
    opacity: 0.08;
    z-index: -1;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-profile
    .profile-detail
    a:hover {
    color: rgba(var(--primary-color), 1);
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-profile
    .profile-detail
    .location-profile {
    margin-top: 20px;
    border-bottom: 1px solid rgba(var(--border-color), 1);
    padding-bottom: 15px;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-profile
    .profile-detail
    .location-profile
    ul {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: calc(10px + 16 * (100vw - 320px) / 1600);
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-profile
    .profile-detail
    .location-profile
    ul
    li
    .location-box {
    align-items: center;
    color: rgba(var(--content-color), 1);
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-profile
    .profile-detail
    .location-profile
    ul
    li
    .location-box
    i {
    font-size: calc(18px + 2 * (100vw - 320px) / 1600);
    line-height: 1;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-profile
    .profile-detail
    .location-profile
    ul
    li
    .location-box
    h6 {
    font-size: calc(15px + 1 * (100vw - 320px) / 1600);
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-profile
    .profile-detail
    .profile-description
    p {
    margin-top: 20px;
    color: rgba(var(--content-color), 1);
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    line-height: 1.6;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-profile
    .profile-box {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 12px;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-profile
    .profile-box
    .profile-image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    width: calc(76px + 14 * (100vw - 320px) / 1600);
    height: calc(76px + 14 * (100vw - 320px) / 1600);
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-profile
    .profile-box
    .profile-image
    .profile-icon {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: rgba(34, 34, 34, 0.588);
    color: #fff;
    font-size: 23px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-profile
    .profile-box
    .profile-image
    .profile-icon
    input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-profile
    .profile-box
    .profile-content {
    width: calc(100% - (76px + 14 * (100vw - 320px) / 1600) - 11px);
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-profile
    .profile-box
    .profile-content
    h5 {
    margin-top: calc(3px + 3 * (100vw - 320px) / 1600);
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    font-weight: 400;
    color: rgba(var(--content-color), 1);
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-profile
    .profile-about {
    margin-top: 20px;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-profile
    .profile-about
    .table {
    margin-bottom: 36px;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-profile
    .profile-about
    .table
    tbody
    tr
    td {
    vertical-align: middle;
    border: none;
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    white-space: nowrap;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-profile
    .profile-about
    .table
    tbody
    tr
    td:first-child {
    color: rgba(var(--content-color), 1);
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-profile
    .profile-about
    .table
    tbody
    tr
    td
    a {
    display: flex;
    align-items: center;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-profile
    .profile-about
    .table
    tbody
    tr
    td
    a:hover {
    color: rgba(var(--primary-color), 1);
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-profile
    .profile-about
    .table
    tbody
    tr
    td
    a
    span {
    margin-left: calc(8px + 12 * (100vw - 320px) / 1600);
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 5px;
    position: relative;
    font-weight: 600;
    overflow: hidden;
    z-index: 0;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-profile
    .profile-about
    .table
    tbody
    tr
    td
    a
    span::before {
    top: 0;
    left: 0;
    background: rgba(var(--primary-color), 1);
    opacity: 0.08;
    z-index: -1;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-privacy
    .privacy-box
    + .privacy-box {
    margin-top: 15px;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-privacy
    .privacy-box
    h6 {
    font-size: calc(15px + 3 * (100vw - 320px) / 1600);
    margin-bottom: 6px;
    line-height: 1.5;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-privacy
    .privacy-box
    p {
    margin: 0;
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    line-height: 1.6;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-privacy
    .privacy-box
    .switch-radio
    .switch {
    position: absolute;
    clip-path: circle(0%);
    opacity: 0;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-privacy
    .privacy-box
    .switch-radio
    .switch
    + label {
    position: relative;
    border-radius: 50px;
    cursor: pointer;
    background-color: rgba(14, 153, 126, 0.1490196078);
    border: 1px solid #ddd;
    width: 62px;
    height: 25px;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-privacy
    .privacy-box
    .switch-radio
    .switch
    + label:before,
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-privacy
    .privacy-box
    .switch-radio
    .switch
    + label:after {
    display: inline-block;
    position: absolute;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-privacy
    .privacy-box
    .switch-radio
    .switch
    + label:before {
    content: "";
    border-radius: 100%;
    left: 2px;
    top: 2px;
    background: rgba(var(--primary-color), 1);
    transition: all 0.15s ease-in-out;
    width: 19px;
    height: 19px;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .dashboard-privacy
    .privacy-box
    .switch-radio
    .switch:checked
    + label:before {
    left: 39px;
}
.user-dashboard-section .dashboard-right-sidebar .delete-account-box {
    background-color: rgba(var(--bs-danger-rgb), 0.1);
    border: 1px solid rgba(var(--bs-danger-rgb), 1);
}
.user-dashboard-section
    .dashboard-right-sidebar
    .delete-account-box
    .delete-detail-link {
    color: rgba(var(--content-color), 1);
    padding-left: 1rem;
    list-style-type: decimal;
    display: grid;
    gap: 5px;
}
[dir="rtl"]
    .user-dashboard-section
    .dashboard-right-sidebar
    .delete-account-box
    .delete-detail-link {
    padding-left: unset;
    padding-right: 1rem;
}
.user-dashboard-section
    .dashboard-right-sidebar
    .delete-account-box
    .delete-detail-link
    li {
    color: rgba(var(--content-color), 1);
    display: list-item;
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    font-weight: 400;
}
@media (max-width: 991.98px) {
    .user-dashboard-section .dashboard-right-sidebar .title p {
        display: block;
    }
}

/* Order Tracking & Success Scss */
.tracking-section .tacking-left-box {
    background-color: rgba(var(--white), 1);
    border-radius: calc(6px + 4 * (100vw - 320px) / 1600);
    padding: calc(15px + 13 * (100vw - 320px) / 1600);
}
.tracking-section .tracking-right-box {
    position: sticky;
    top: 70px;
    left: 0;
}
.tracking-section .tracking-right-box .price-details {
    background-color: rgba(var(--white), 1);
    border-radius: 8px;
}
.tracking-section .tracking-right-box .price-details .order-title {
    padding: calc(15px + 7 * (100vw - 320px) / 1600)
        calc(15px + 7 * (100vw - 320px) / 1600)
        calc(12px + 7 * (100vw - 320px) / 1600);
    margin: 0;
    border-bottom: 1px solid rgba(var(--border-color), 1);
}
.tracking-section .tracking-right-box .price-details .order-title h4 {
    font-size: calc(19px + 4 * (100vw - 320px) / 1600);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.tracking-section .tracking-right-box .price-details .order-title h4 span {
    font-size: calc(17px + 2 * (100vw - 320px) / 1600);
    font-weight: 400;
}
.tracking-section .tracking-right-box .price-details .order-details-box {
    padding: calc(12px + 4 * (100vw - 320px) / 1600)
        calc(15px + 7 * (100vw - 320px) / 1600);
    display: grid;
    gap: calc(2px + 6 * (100vw - 320px) / 1600);
}
.tracking-section .tracking-right-box .price-details .order-details-box li {
    font-size: calc(15px + 3 * (100vw - 320px) / 1600);
    font-weight: 400;
    color: rgba(var(--content-color), 0.8);
    flex-wrap: wrap;
    gap: calc(2px + 8 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.tracking-section
    .tracking-right-box
    .price-details
    .order-details-box
    li
    span {
    color: rgba(var(--title-color), 0.8);
}
.tracking-section
    .tracking-right-box
    .price-details
    .order-details-box
    li.total-price {
    font-weight: 600;
    color: rgba(var(--title-color), 1);
    padding: 0;
    font-size: calc(17px + 2 * (100vw - 320px) / 1600);
    border: none;
}
.tracking-section .tracking-right-box .price-details .order-details-box p {
    color: rgba(var(--content-color), 1);
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    font-weight: 400;
}
.tracking-section .tracking-right-box .price-details .total-price {
    padding: calc(12px + 4 * (100vw - 320px) / 1600)
        calc(15px + 7 * (100vw - 320px) / 1600);
    border-top: 1px solid rgba(var(--border-color), 1);
}
.tracking-section .tracking-right-box .price-details .total-price h5 {
    font-size: calc(18px + 3 * (100vw - 320px) / 1600);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.tracking-section .order-tracking-table {
    width: 100%;
}
.tracking-section .order-tracking-table thead tr th:nth-child(3),
.tracking-section .order-tracking-table thead tr th:last-child,
.tracking-section .order-tracking-table thead tr td:nth-child(3),
.tracking-section .order-tracking-table thead tr td:last-child,
.tracking-section .order-tracking-table tbody tr th:nth-child(3),
.tracking-section .order-tracking-table tbody tr th:last-child,
.tracking-section .order-tracking-table tbody tr td:nth-child(3),
.tracking-section .order-tracking-table tbody tr td:last-child {
    text-align: center;
}
.tracking-section .order-tracking-table thead tr th {
    color: rgba(var(--title-color), 1);
    font-size: calc(18px + 2 * (100vw - 320px) / 1600);
    padding: calc(10px + 4 * (100vw - 320px) / 1600);
    background-color: rgba(var(--border-color), 0.6);
    font-weight: 500;
    border-bottom: 1px solid rgba(var(--border-color), 1);
    text-align: center;
}
.tracking-section .order-tracking-table thead tr th:first-child {
    text-align: left;
    border-top-left-radius: calc(6px + 2 * (100vw - 320px) / 1600);
    max-width: 250px;
}
[dir="rtl"] .tracking-section .order-tracking-table thead tr th:first-child {
    text-align: right;
    border-top-left-radius: unset;
    border-top-right-radius: calc(6px + 2 * (100vw - 320px) / 1600);
}
.tracking-section .order-tracking-table thead tr th:last-child {
    border-top-right-radius: calc(6px + 2 * (100vw - 320px) / 1600);
}
[dir="rtl"] .tracking-section .order-tracking-table thead tr th:last-child {
    border-top-left-radius: calc(6px + 2 * (100vw - 320px) / 1600);
    border-top-right-radius: unset;
}
.tracking-section .order-tracking-table tr:last-child td {
    padding-bottom: 0;
    border-bottom: 0;
}
.tracking-section .order-tracking-table tr td {
    color: rgba(var(--title-color), 1);
    padding: calc(10px + 4 * (100vw - 320px) / 1600);
    border-bottom: 1px solid rgba(var(--border-color), 1);
    font-size: calc(15px + 1 * (100vw - 320px) / 1600);
}
.tracking-section .order-tracking-table tr td:first-child {
    min-width: 310px;
    max-width: 400px;
}
.tracking-section .order-tracking-table tr td .tracking-order-box {
    display: flex;
    gap: 10px;
}
.tracking-section .order-tracking-table tr td .tracking-order-box h4 {
    color: rgba(var(--title-color), 1);
    font-weight: 500;
    font-size: calc(16px + 2 * (100vw - 320px) / 1600);
}
.tracking-section .order-tracking-table tr td .tracking-order-box span {
    color: rgba(var(--title-color), 0.8);
    font-weight: 400;
    margin-top: 2px;
    display: block;
}
.tracking-section
    .order-tracking-table
    tr
    td
    .tracking-order-box
    .tracking-product-details {
    width: calc(100% - (98px + 22 * (100vw - 320px) / 1600) - 10px);
}
.tracking-section
    .order-tracking-table
    tr
    td
    .tracking-order-box
    a.order-images {
    background-color: rgba(var(--base-gray), 1);
    padding: 10px;
    border-radius: 6px;
    width: calc(98px + 22 * (100vw - 320px) / 1600);
    height: calc(98px + 22 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
    justify-content: center;
}
.tracking-section .order-tracking-table tr td .tracking-order-box .order-list {
    display: flex;
    flex-direction: column;
    padding-top: 4px;
    margin-top: 4px;
    gap: 3px;
}
.tracking-section
    .order-tracking-table
    tr
    td
    .tracking-order-box
    .order-list
    li {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(var(--content-color), 0.8);
}
@media (max-width: 575.98px) {
    .tracking-section
        .order-tracking-table
        tr
        td
        .tracking-order-box
        .order-list
        li {
        line-height: 1;
    }
}
.tracking-section
    .order-tracking-table
    tr
    td
    .tracking-order-box
    .order-list
    li
    span {
    font-weight: 500;
    margin: 0;
    color: rgba(var(--title-color), 0.8);
}
.tracking-section .order-tracking-table .price {
    font-weight: 500;
    color: rgba(var(--title-color), 1);
    gap: calc(6px + 2 * (100vw - 320px) / 1600);
    font-size: calc(16px + 2 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
    justify-content: center;
}
.tracking-section .order-tracking-table .price .del-price {
    color: rgba(var(--content-color), 1);
    opacity: 0.8;
    font-size: calc(15px + 1 * (100vw - 320px) / 1600);
    display: flex;
    justify-content: center;
}

.order-title {
    margin-bottom: 2px;
    border-bottom: 1px solid rgba(var(--border-color), 1);
    padding-bottom: calc(6px + 4 * (100vw - 320px) / 1600);
}
.order-title h4 {
    font-size: calc(20px + 4 * (100vw - 320px) / 1600);
    font-weight: 500;
    line-height: 1;
}

.order-details {
    background: rgba(var(--white), 1);
    padding: calc(17px + 10 * (100vw - 320px) / 1600);
    border-radius: calc(6px + 4 * (100vw - 320px) / 1600);
}
.order-details .order-details-box {
    padding: calc(10px + 6 * (100vw - 320px) / 1600) 0 0;
    display: grid;
    gap: calc(10px + 4 * (100vw - 320px) / 1600);
}
.order-details .order-details-box li {
    display: flex;
    align-items: center;
    gap: calc(6px + 2 * (100vw - 320px) / 1600);
}
.order-details .order-details-box li .iconsax {
    --size: calc(18px + (20 - 18) * ((100vw - 320px) / (1920 - 320)));
    --Color: rgba(var(--title-color), 1);
}
.order-details .order-details-box li h5 {
    line-height: 1;
    font-size: calc(15px + 1 * (100vw - 320px) / 1600);
    font-weight: 400;
}
.order-details .address-list {
    padding-top: 24px;
}
.order-details .address-list .address-box {
    width: 100%;
}
.order-details .address-list .address-box h5 {
    letter-spacing: calc(0.6px + 0.2 * (100vw - 320px) / 1600);
    font-size: calc(18px + 2 * (100vw - 320px) / 1600);
    font-weight: 500;
}
.order-details .address-list .address-box p {
    margin-top: calc(6px + 2 * (100vw - 320px) / 1600);
    color: rgba(var(--content-color), 1);
    line-height: 1.6;
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
}
.order-details .address-list .address-box p + p {
    margin-top: 0;
}
.order-details .address-list .address-box + .address-box {
    border-top: 1px solid rgba(var(--border-color), 1);
    margin-top: calc(5px + 4 * (100vw - 320px) / 1600);
    padding-top: calc(9px + 6 * (100vw - 320px) / 1600);
}

.payment-details {
    background: rgba(var(--white), 1);
    padding: calc(17px + 10 * (100vw - 320px) / 1600);
    border-radius: calc(6px + 4 * (100vw - 320px) / 1600);
}
.payment-details .payment-summary {
    padding-top: 16px;
    display: grid;
    gap: calc(10px + 6 * (100vw - 320px) / 1600);
}
.payment-details .payment-summary li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.payment-details .payment-summary li h5 {
    font-size: calc(16px + 2 * (100vw - 320px) / 1600);
}
.payment-details .payment-summary li p,
.payment-details .payment-summary li span {
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
}
.payment-details .payment-summary li h4 {
    display: flex;
    align-items: center;
    gap: calc(5px + 2 * (100vw - 320px) / 1600);
    font-size: calc(16px + 2 * (100vw - 320px) / 1600);
}
.payment-details .payment-summary li h4 span {
    color: rgba(var(--title-color), 0.5);
}
.payment-details .payment-summary li > span {
    font-weight: 600;
}
.payment-details .total-price {
    padding: 17px 0 0;
    border-top: 1px solid rgba(var(--border-color), 1);
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.payment-details .total-price p {
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
}
.payment-details .total-price span {
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
}

.tracking-order-number {
    margin-bottom: 24px;
}
.tracking-order-number h3 {
    font-weight: 600;
    font-size: calc(21px + 4 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
    gap: calc(5px + 2 * (100vw - 320px) / 1600);
}
.tracking-order-number h3 span {
    font-weight: 400;
    color: rgba(var(--content-color), 1);
    line-height: 1;
    font-size: calc(17px + 4 * (100vw - 320px) / 1600);
}
.tracking-order-number h3 .badge {
    font-size: calc(13px + 1 * (100vw - 320px) / 1600);
    background-color: rgba(var(--theme-green), 0.15);
    font-weight: 500;
    line-height: 1;
    padding: calc(6px + 2 * (100vw - 320px) / 1600)
        calc(9px + 6 * (100vw - 320px) / 1600)
        calc(4px + 2 * (100vw - 320px) / 1600);
    border-radius: calc(2px + 2 * (100vw - 320px) / 1600);
    letter-spacing: calc(0.2px + 0.2 * (100vw - 320px) / 1600);
    color: rgba(var(--theme-green), 1);
}
.tracking-order-number h4 {
    margin-top: 10px;
    color: rgba(var(--content-color), 1);
    font-size: calc(16px + 2 * (100vw - 320px) / 1600);
}

.order-success-box {
    background-color: rgba(var(--white), 1);
    padding: calc(16px + 12 * (100vw - 320px) / 1600);
    text-align: center;
    border-radius: calc(6px + 4 * (100vw - 320px) / 1600);
}
.order-success-box .order-image {
    margin: 0 auto calc(16px + 12 * (100vw - 320px) / 1600);
    width: calc(170px + 80 * (100vw - 320px) / 1600);
    height: auto;
}
.order-success-box .order-image .checkmark {
    position: relative;
    padding: calc(18px + 12 * (100vw - 320px) / 1600);
    animation: checkmark 5s cubic-bezier(0.42, 0, 0.275, 1.155) both;
    display: inline-block;
    transform: scale(0.8);
    margin: -20px;
}
.order-success-box .order-image .checkmark__check {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10;
    transform: translate3d(-50%, -50%, 0);
    fill: #fff;
    width: 48px;
    height: calc(28px + 8 * (100vw - 320px) / 1600);
}
.order-success-box .order-image .checkmark__background {
    fill: rgba(var(--primary-color), 1);
    animation: rotate 35s linear both infinite;
    width: calc(96px + 19 * (100vw - 320px) / 1600);
    height: calc(96px + 19 * (100vw - 320px) / 1600);
}
.order-success-box .order-image .star {
    position: absolute;
    animation: grow 3s infinite;
    fill: rgba(var(--primary-color), 1);
    opacity: 0;
}
.order-success-box .order-image .star:nth-child(1) {
    left: calc(-11px + 23 * (100vw - 320px) / 1600);
    top: calc(88px + -72 * (100vw - 320px) / 1600);
    animation-delay: 0.3s;
    width: 12px;
    height: 12px;
}
.order-success-box .order-image .star:nth-child(2) {
    left: calc(132px + 36 * (100vw - 320px) / 1600);
    top: calc(88px + -4 * (100vw - 320px) / 1600);
    animation-delay: 0.7s;
    width: 18px;
    height: 18px;
}
.order-success-box .order-image .star:nth-child(3) {
    left: calc(21px + 11 * (100vw - 320px) / 1600);
    top: calc(122px + 40 * (100vw - 320px) / 1600);
    animation-delay: 0.6s;
    width: 10px;
    height: 10px;
}
.order-success-box .order-image .star:nth-child(4) {
    left: 82px;
    animation-delay: 0.3s;
    top: calc(-2px + -10 * (100vw - 320px) / 1600);
    width: 20px;
    height: 20px;
}
.order-success-box .order-image .star:nth-child(5) {
    left: calc(93px + 32 * (100vw - 320px) / 1600);
    top: calc(122px + 40 * (100vw - 320px) / 1600);
    animation-delay: 0.5s;
    width: 14px;
    height: 14px;
}
.order-success-box .order-image .star:nth-child(6) {
    animation-delay: 0.9s;
    left: 16px;
    top: 16px;
    width: 10px;
    height: 10px;
}
.order-success-box .order-image i {
    font-size: 50px;
    color: #4ead4e;
}
.order-success-box .order-image h2 {
    margin-top: 10px;
    margin-bottom: 15px;
}
.order-success-box .order-image p {
    font-size: 18px;
    text-transform: capitalize;
}
.order-success-box .order-image.order-fail i {
    color: rgba(var(--primary-color), 1);
}
.order-success-box .order-contain h3 {
    font-size: calc(24px + 6 * (100vw - 320px) / 1600);
    font-weight: 700;
    margin-bottom: calc(4px + 2 * (100vw - 320px) / 1600);
}
.order-success-box .order-contain h4 {
    font-size: calc(16px + 4 * (100vw - 320px) / 1600);
    margin-bottom: calc(6px + 2 * (100vw - 320px) / 1600);
    color: rgba(var(--title-color), 1);
    line-height: 1.4;
}
.order-success-box .order-contain h6 {
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    color: rgba(var(--content-color), 1);
    font-weight: 400;
}

.delivery-details {
    background-color: rgba(var(--white), 1);
    padding: calc(17px + 10 * (100vw - 320px) / 1600);
    border-radius: calc(6px + 4 * (100vw - 320px) / 1600);
}
.delivery-details .delivery-timeline li {
    padding-left: calc(30px + 10 * (100vw - 320px) / 1600);
    position: relative;
    width: 100%;
    padding-block: calc(10px + 14 * (100vw - 320px) / 1600);
}
[dir="rtl"] .delivery-details .delivery-timeline li {
    padding-right: calc(30px + 10 * (100vw - 320px) / 1600);
    padding-left: unset;
}
.delivery-details .delivery-timeline li:first-child::before {
    top: 26px;
    height: calc(100% - 26px);
}
.delivery-details .delivery-timeline li:last-child::before {
    height: calc(100% - 26px);
}
.delivery-details .delivery-timeline li::before {
    background-color: transparent;
    border: calc(1px + 1 * (100vw - 320px) / 1600) solid #d4d5d9;
    top: 0;
    left: calc(10px + 6 * (100vw - 320px) / 1600);
    content: "";
    position: absolute;
    width: 0;
    height: 100%;
}
[dir="rtl"] .delivery-details .delivery-timeline li::before {
    left: unset;
    right: calc(10px + 6 * (100vw - 320px) / 1600);
}
body.dark .delivery-details .delivery-timeline li::before {
    border-color: #374658;
}
.delivery-details .delivery-timeline li::after {
    background-color: #d4d5d9;
    border-radius: 100%;
    outline: 2px solid rgba(var(--white), 1);
    left: calc(3px + 5 * (100vw - 320px) / 1600);
    color: rgba(var(--white), 1);
    font-weight: 900;
    content: "\eb7b";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: remixicon;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    width: calc(18px + 2 * (100vw - 320px) / 1600);
    height: calc(18px + 2 * (100vw - 320px) / 1600);
}
[dir="rtl"] .delivery-details .delivery-timeline li::after {
    left: unset;
    right: calc(3px + 5 * (100vw - 320px) / 1600);
}
body.dark .delivery-details .delivery-timeline li::after {
    background-color: #374658;
    color: #fff;
}
.delivery-details .delivery-timeline li:nth-child(even)::after {
    content: "";
    left: calc(6px + 6 * (100vw - 320px) / 1600);
    outline: calc(2px + 1 * (100vw - 320px) / 1600) solid #fff;
    width: calc(10px + 2 * (100vw - 320px) / 1600);
    height: calc(10px + 2 * (100vw - 320px) / 1600);
}
[dir="rtl"] .delivery-details .delivery-timeline li:nth-child(even)::after {
    left: unset;
    right: calc(6px + 6 * (100vw - 320px) / 1600);
}
body.dark .delivery-details .delivery-timeline li:nth-child(even)::after {
    outline: calc(2px + 1 * (100vw - 320px) / 1600) solid #374658;
}
.delivery-details .delivery-timeline li:nth-child(even) h5 {
    font-size: 16px;
    color: rgba(var(--content-color), 1);
    display: flex;
    align-items: center;
    gap: 4px;
}
.delivery-details .delivery-timeline li:nth-child(even) h5 span {
    font-weight: 400;
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
}
.delivery-details .delivery-timeline li h6 {
    font-size: calc(16px + 2 * (100vw - 320px) / 1600);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}
.delivery-details .delivery-timeline li h6 span {
    font-weight: 500;
    color: rgba(var(--content-color), 1);
    font-size: calc(15px + 2 * (100vw - 320px) / 1600);
}
.delivery-details .delivery-timeline li.complete:before {
    border-color: rgba(var(--primary-color), 1);
}
body.dark .delivery-details .delivery-timeline li.complete:before {
    border-color: rgba(var(--primary-color), 1);
}
.delivery-details .delivery-timeline li.complete:after {
    background-color: rgba(var(--primary-color), 1);
    color: #fff;
}
body.dark .delivery-details .delivery-timeline li.complete:after {
    background-color: rgba(var(--primary-color), 1);
}
.delivery-details .delivery-timeline li.complete h6 {
    color: rgba(var(--primary-color), 1);
    display: flex;
    align-items: center;
    gap: 4px;
}
.delivery-details .delivery-timeline li.complete h6 span {
    color: rgba(var(--content-color), 1);
}

/* Search Scss */
.search-section .title h3 {
    font-size: calc(20px + 6 * (100vw - 320px) / 1600);
}
.search-section .search-box {
    border: 1px solid rgba(var(--border-color), 1);
    background-color: rgba(var(--white), 1);
    border-radius: 5px;
    overflow: hidden;
}
.search-section .search-box .input-group-text {
    background-color: transparent;
    border: unset;
    border-radius: unset;
    padding-inline: calc(12px + 4 * (100vw - 320px) / 1600) 0;
    line-height: 1;
    color: rgba(var(--title-color), 1);
}
.search-section .search-box .input-group-text i {
    font-size: calc(16px + 2 * (100vw - 320px) / 1600);
}
.search-section .search-box .form-control {
    background-color: transparent;
    border: unset;
    border-radius: unset;
    opacity: 1;
}
.search-section .search-suggestion-list {
    gap: calc(6px + 4 * (100vw - 320px) / 1600);
    margin-block: calc(8px + 5 * (100vw - 320px) / 1600)
        calc(28px + 32 * (100vw - 320px) / 1600);
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-section .search-suggestion-list li {
    color: rgba(var(--content-color), 1);
    font-size: calc(15px + 1 * (100vw - 320px) / 1600);
    font-weight: 400;
    line-height: 1;
}
.search-section .search-suggestion-list a {
    font-size: calc(15px + 1 * (100vw - 320px) / 1600);
    transition: color 0.15s ease-in-out;
    color: rgba(var(--title-color), 1);
    font-weight: 400;
}
.search-section .search-suggestion-list a:hover {
    color: rgba(var(--primary-color), 1);
}

.empty-card {
    display: none;
    padding-block: 55px;
}
.empty-card.show {
    display: block;
}
.empty-card td {
    display: block !important;
    margin-inline: auto !important;
    max-width: unset !important;
    min-width: auto !important;
}
.empty-card td svg {
    width: calc(232px + 88 * (100vw - 320px) / 1600);
    height: calc(148px + 119 * (100vw - 320px) / 1600);
}

.row-remove {
    display: none;
}

/* Testimonial Scss */
.testimonial-section {
    padding-top: 74px;
    overflow: hidden;
}
@media (max-width: 1199.98px) {
    .testimonial-section {
        padding-top: calc(15px + 59 * (100vw - 320px) / 880);
    }
}
.testimonial-section .testimonial-card {
    border: 1px solid rgba(var(--border-color), 1);
    background-color: rgba(var(--white), 1);
    border-radius: calc(8px + 7 * (100vw - 320px) / 1600);
    overflow: hidden;
    z-index: 0;
    position: relative;
    padding: calc(20px + 11 * (100vw - 320px) / 1600)
        calc(15px + 29 * (100vw - 320px) / 1600)
        calc(14px + 19 * (100vw - 320px) / 1600)
        calc(15px + 25 * (100vw - 320px) / 1600);
}
.testimonial-section .testimonial-card svg {
    width: 60px;
    height: 46px;
}
@media (max-width: 767.98px) {
    .testimonial-section .testimonial-card svg {
        position: absolute;
        top: -28px;
        left: -15px;
        z-index: -1;
        opacity: 0.08;
        transform: rotate(-16deg);
        width: 100px;
        height: 106px;
    }
}
.testimonial-section .testimonial-card p {
    padding-top: 27px;
    font-size: calc(15px + 1 * (100vw - 320px) / 1600);
    color: rgba(var(--content-color), 0.8);
}
@media (max-width: 767.98px) {
    .testimonial-section .testimonial-card p {
        padding: 0;
    }
}
.testimonial-section .testimonial-card .testimonial-user {
    padding-top: calc(10px + 6 * (100vw - 320px) / 1600);
    margin-top: calc(10px + 6 * (100vw - 320px) / 1600);
    border-top: 1px solid rgba(var(--border-color), 1);
    gap: calc(16px + 12 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.testimonial-section .testimonial-card .testimonial-user img {
    border-radius: 100%;
    width: calc(60px + 16 * (100vw - 320px) / 1600);
    height: calc(60px + 16 * (100vw - 320px) / 1600);
}
.testimonial-section .testimonial-card .testimonial-user h3 {
    color: rgba(var(--title-color), 1);
    font-weight: 500;
    letter-spacing: 0.4px;
    font-size: calc(16px + 4 * (100vw - 320px) / 1600);
}
.testimonial-section .testimonial-card .testimonial-user h4 {
    color: rgba(var(--content-color), 1);
    font-size: calc(14px + 3 * (100vw - 320px) / 1600);
    font-weight: 300;
    line-height: 1.3;
    margin-top: 4px;
    letter-spacing: 0.4px;
}
.testimonial-section .swiper-slide + .swiper-slide .swiper-slide-next {
    bottom: -40px;
}
.testimonial-section .testimonial-title h2 {
    font-size: calc(28px + 16 * (100vw - 320px) / 1600);
}
.testimonial-section .testimonial-title > div {
    display: flex;
    gap: 16px;
    padding-top: 30px;
}
[dir="rtl"] .testimonial-section .testimonial-title > div {
    flex-direction: row-reverse;
    justify-content: flex-end;
}
@media (max-width: 767.98px) {
    .testimonial-section .testimonial-title > div {
        padding: 0;
    }
}
.testimonial-section .testimonial-title p {
    font-size: calc(16px + 2 * (100vw - 320px) / 1600);
}
.testimonial-section .slider-btn {
    background-color: rgba(var(--white), 1);
    border-radius: 100%;
    transition: all 0.2s ease-in-out;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 767.98px) {
    .testimonial-section .slider-btn {
        display: none;
    }
}
.testimonial-section .slider-btn i {
    font-size: 24px;
}
.testimonial-section .slider-btn:hover {
    background-color: rgba(var(--primary-color), 1);
    color: #fff;
}
.testimonial-section .slider-btn.swiper-button-disabled {
    opacity: 0.6;
    user-select: none;
    cursor: inherit;
}
.testimonial-section .slider-btn.swiper-button-disabled:hover {
    background-color: rgba(var(--white), 1);
    color: rgba(var(--title-color), 1);
}
.testimonial-section .swiper {
    direction: rtl;
    transform: scaleX(-1);
    width: 100%;
    height: 360px;
}
.testimonial-section .swiper .swiper-slide {
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease-in-out;
}
.testimonial-section .swiper .swiper-slide > * {
    direction: ltr;
    transform: scaleX(-1);
}
.testimonial-section .swiper .swiper-slide.swiper-slide-prev,
.testimonial-section .swiper .swiper-slide.swiper-slide-next {
    opacity: 0.6;
    visibility: visible;
}
.testimonial-section .swiper .swiper-slide-active {
    opacity: 1;
    visibility: visible;
}
.testimonial-section .swiper .swiper-slide .swiper-slide-shadow {
    background-color: transparent;
}

/* Coming Soon Scss */
.coming-soon-section {
    height: 100vh;
    background-color: rgba(var(--white), 1);
    overflow: hidden;
}
.coming-soon-section .coming-soon-contain {
    padding: calc(22px + 72 * (100vw - 320px) / 1600)
        calc(15px + 131 * (100vw - 320px) / 1600);
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}
@media (max-width: 1199.98px) {
    .coming-soon-section .coming-soon-contain {
        width: 80%;
        margin: auto;
    }
}
@media (max-width: 750.98px) {
    .coming-soon-section .coming-soon-contain {
        width: 90%;
    }
}
@media (max-width: 575.98px) {
    .coming-soon-section .coming-soon-contain {
        width: 100%;
    }
}
.coming-soon-section .coming-soon-contain .coming-soon-logo {
    width: calc(124px + 14 * (100vw - 320px) / 1600);
}
.coming-soon-section .coming-soon-contain h2 {
    font-size: calc(30px + 15 * (100vw - 320px) / 1600);
    font-weight: 600;
    margin-top: calc(22px + 46 * (100vw - 320px) / 1600);
    width: 60%;
}
@media (max-width: 1513.98px) {
    .coming-soon-section .coming-soon-contain h2 {
        width: 78%;
    }
}
@media (max-width: 575.98px) {
    .coming-soon-section .coming-soon-contain h2 {
        width: 100%;
    }
}
.coming-soon-section .coming-soon-contain p {
    font-size: calc(18px + 3 * (100vw - 320px) / 1600);
    color: rgba(var(--content-color), 1);
    font-weight: 400;
    margin-top: 10px;
}
.coming-soon-section .coming-soon-contain .counter-box {
    margin-top: calc(22px + 25 * (100vw - 320px) / 1600);
}
.coming-soon-section .coming-soon-contain .counter-box .timer-list {
    display: flex;
    align-items: center;
    gap: calc(3px + 12 * (100vw - 320px) / 1600);
}
.coming-soon-section .coming-soon-contain .counter-box .timer-list li {
    background-color: rgba(var(--light-gray), 1);
    flex-direction: column;
    border-radius: calc(7px + 2 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(70px + 30 * (100vw - 320px) / 1600);
    height: calc(70px + 30 * (100vw - 320px) / 1600);
}
body.dark
    .coming-soon-section
    .coming-soon-contain
    .counter-box
    .timer-list
    li {
    background-color: rgba(19, 25, 33, 0.45);
}
.coming-soon-section .coming-soon-contain .counter-box .timer-list li.dots {
    background-color: transparent;
    font-size: calc(20px + 3 * (100vw - 320px) / 1600);
    color: rgba(var(--content-color), 1);
    display: block;
    width: unset;
    height: unset;
}
body.dark
    .coming-soon-section
    .coming-soon-contain
    .counter-box
    .timer-list
    li.dots {
    background-color: transparent;
}
.coming-soon-section .coming-soon-contain .counter-box .timer-list li h3 {
    font-size: calc(23px + 6 * (100vw - 320px) / 1600);
    font-weight: 600;
    color: rgba(var(--primary-color), 1);
}
.coming-soon-section .coming-soon-contain .counter-box .timer-list li span {
    font-size: calc(14px + 3 * (100vw - 320px) / 1600);
    text-transform: capitalize;
    font-weight: 400;
    color: rgba(var(--content-color), 1);
}
.coming-soon-section .coming-soon-contain .form-group {
    margin-top: calc(30px + 44 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
@media (max-width: 1199.98px) {
    .coming-soon-section .coming-soon-contain .form-group {
        flex-wrap: nowrap;
        gap: calc(9px + 6 * (100vw - 320px) / 880);
        align-items: unset;
    }
}
.coming-soon-section .coming-soon-contain .form-group .form-control {
    padding: calc(13px + 3 * (100vw - 320px) / 1600)
        calc(17px + 3 * (100vw - 320px) / 1600);
    font-size: calc(15px + 1 * (100vw - 320px) / 1600);
    color: rgba(var(--title-color), 1);
}
body.dark .coming-soon-section .coming-soon-contain .form-group .form-control {
    background-color: rgba(19, 25, 33, 0.45);
}
[dir="rtl"]
    .coming-soon-section
    .coming-soon-contain
    .form-group
    .form-control {
    text-align: right;
}
.coming-soon-section
    .coming-soon-contain
    .form-group
    .form-control::placeholder {
    color: rgba(var(--content-color), 1);
}
.coming-soon-section .coming-soon-contain .form-group .btn {
    width: 100%;
    background-color: rgba(var(--primary-color), 1);
    color: #fff;
    padding: calc(11px + 4 * (100vw - 320px) / 1600)
        calc(11px + 4 * (100vw - 320px) / 1600)
        calc(9px + 4 * (100vw - 320px) / 1600);
    margin-top: calc(10px + 4 * (100vw - 320px) / 1600);
    border: 1px solid rgba(var(--primary-color), 1);
}
@media (max-width: 1199.98px) {
    .coming-soon-section .coming-soon-contain .form-group .btn {
        margin-top: 0;
        width: max-content;
        white-space: nowrap;
        padding-inline: calc(13px + 25 * (100vw - 320px) / 880);
    }
}
.coming-soon-section .coming-soon-contain .form-group .btn:hover {
    background-color: transparent;
    color: rgba(var(--primary-color), 1);
}
.coming-soon-section .coming-soon-image {
    height: 100%;
}
/* Mixin Files */
/**=====================
    4.4 Portfolio CSS
==========================**/
.portfolio-section .filters-button-list {
    gap: calc(10px + 4 * (100vw - 320px) / 1600);
    margin-bottom: calc(12px + 12 * (100vw - 320px) / 1600);
    flex-wrap: nowrap;
    overflow: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 575.98px) {
    .portfolio-section .filters-button-list {
        justify-content: flex-start;
    }
}
.portfolio-section .filters-button-list button {
    color: rgba(var(--content-color), 1);
    border: 1px solid rgba(var(--border-color), 0.7);
    background-color: rgba(var(--white), 0.55);
    font-size: calc(15px + 1 * (100vw - 320px) / 1600);
    white-space: nowrap;
}
.portfolio-section .filters-button-list button:hover,
.portfolio-section .filters-button-list button.active {
    color: #ffffff;
    background-color: rgba(var(--primary-color), 1);
    border-color: transparent;
}
.portfolio-section .portfolio-images-box .portfolio-box {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}
.portfolio-section
    .portfolio-images-box
    .portfolio-box:hover
    .portfolio-content {
    bottom: 0;
}
.portfolio-section .portfolio-images-box .portfolio-box img {
    width: 100%;
}
.portfolio-section .portfolio-images-box .portfolio-box .portfolio-content {
    position: absolute;
    bottom: -83px;
    transition: all 0.2s ease-in-out;
    left: 0;
    width: 100%;
    background-color: rgba(var(--border-color), 1);
    padding: calc(10px + 9 * (100vw - 320px) / 1600)
        calc(12px + 11 * (100vw - 320px) / 1600);
}
@media (max-width: 767.98px) {
    .portfolio-section .portfolio-images-box .portfolio-box .portfolio-content {
        bottom: 0;
        padding: 10px 12px;
    }
}
.portfolio-section .portfolio-images-box .portfolio-box .portfolio-content h3 {
    color: rgba(var(--content-color), 1);
    font-size: calc(16px + 3 * (100vw - 320px) / 1600);
    font-weight: 400;
}
.portfolio-section .portfolio-images-box .portfolio-box .portfolio-content h4 {
    margin-top: 3px;
    margin-bottom: calc(-5px + -4 * (100vw - 320px) / 1600);
    font-size: calc(18px + 5 * (100vw - 320px) / 1600);
}
.portfolio-section .portfolio-images-box .portfolio-box .m-p-g__thumbs-img {
    transition: all 0.5s ease-in-out;
}
.portfolio-section
    .portfolio-images-box
    .portfolio-box
    .m-p-g__thumbs-img:hover {
    filter: unset;
    transform: scale(1.1);
}
.portfolio-section .portfolio-images-box.grid-portfolio-box .portfolio-box img {
    aspect-ratio: 7/5;
    width: 100%;
}
.portfolio-section .m-p-g .m-p-g__fullscreen.active {
    margin: 0 !important;
}
.portfolio-section .m-p-g .m-p-g__fullscreen .m-p-g__fullscreen-img {
    border-radius: 8px;
}
.portfolio-section .m-p-g .m-p-g__controls .m-p-g__controls-close {
    left: unset;
    right: 3vw;
}
.portfolio-section .m-p-g .m-p-g__controls .m-p-g__controls-arrow {
    opacity: 1;
}
.portfolio-section .m-p-g .m-p-g__controls .m-p-g__controls-arrow .m-p-g__btn {
    width: calc(35px + 15 * (100vw - 320px) / 1600);
    height: calc(35px + 15 * (100vw - 320px) / 1600);
}
@media (max-width: 850px) {
    .portfolio-section
        .m-p-g
        .m-p-g__controls
        .m-p-g__controls-arrow
        .m-p-g__btn {
        background: rgb(0, 0, 0);
    }
}
.portfolio-section
    .m-p-g
    .m-p-g__controls
    .m-p-g__controls-arrow
    .m-p-g__btn
    svg {
    width: calc(18px + 6 * (100vw - 320px) / 1600);
    height: calc(18px + 6 * (100vw - 320px) / 1600);
}

/* Mixin Files */
/**=====================
    4.5 Product Page CSS
==========================**/
.pt-25 {
    padding-top: 25px;
}

.product-load-more .col-grid-box {
    display: none;
}

.border-top-space {
    border-top: 1px solid rgba(var(--content-color), 0.1);
    padding-top: calc(10px + 6 * (100vw - 320px) / 1600);
}

.product-spacing {
    margin-top: calc(14px + 6 * (100vw - 320px) / 1600);
}

.product-title {
    margin-bottom: calc(6px + 8 * (100vw - 320px) / 1600);
}
.product-title h4 {
    font-size: calc(16px + 4 * (100vw - 320px) / 1600);
    font-weight: 500;
}
@media (max-width: 767.98px) {
    .product-title h4 {
        text-align: center;
    }
}

.product-category {
    gap: 25px;
    padding: calc(12px + 21 * (100vw - 320px) / 1600);
}

.product-section .product-left-box,
.product-right-box .product-left-box {
    position: sticky;
    top: 86px;
}
.product-section .product-left-box .product-original-box .slider-image,
.product-right-box .product-left-box .product-original-box .slider-image {
    display: block;
    padding: calc(18px + 2 * (100vw - 320px) / 1600);
    background-color: rgba(var(--base-gray), 1);
    height: calc(287px + 333 * (100vw - 320px) / 1600);
    border-radius: 6px;
}
.product-section
    .product-left-box
    .product-original-box.full-width-img
    .slider-image,
.product-right-box
    .product-left-box
    .product-original-box.full-width-img
    .slider-image {
    padding: 0;
    height: 100%;
}
.product-section .product-left-box .product-original-box-sm .slider-image,
.product-right-box .product-left-box .product-original-box-sm .slider-image {
    height: calc(138px + 192 * (100vw - 320px) / 1600);
}
.product-section
    .product-left-box
    .product-thumbnail-box
    .swiper-wrapper
    .swiper-slide,
.product-right-box
    .product-left-box
    .product-thumbnail-box
    .swiper-wrapper
    .swiper-slide {
    opacity: 0.5;
    transition: all 0.3s ease-in-out;
}
.product-section
    .product-left-box
    .product-thumbnail-box
    .swiper-wrapper
    .swiper-slide-thumb-active,
.product-right-box
    .product-left-box
    .product-thumbnail-box
    .swiper-wrapper
    .swiper-slide-thumb-active {
    opacity: 1;
}
.product-section .product-left-box .product-thumbnail-box .sidebar-image,
.product-right-box .product-left-box .product-thumbnail-box .sidebar-image {
    padding: 9px;
    background-color: rgba(var(--base-gray), 1);
    height: calc(88px + 52 * (100vw - 320px) / 1600);
    border-radius: 6px;
}
.product-section .review-tabs,
.product-right-box .review-tabs {
    gap: 7px;
    border-color: rgba(var(--content-color), 0.1);
    margin-bottom: 12px;
}
.product-section .review-tabs .nav-item .nav-link,
.product-right-box .review-tabs .nav-item .nav-link {
    color: rgba(var(--content-color), 1);
    background-color: transparent;
    border: none;
    margin: 0;
    font-size: calc(18px + 2 * (100vw - 320px) / 1600);
    padding: 0 20px 8px;
    position: relative;
}
.product-section .review-tabs .nav-item .nav-link:after,
.product-right-box .review-tabs .nav-item .nav-link:after {
    bottom: 0;
    left: 0;
    background-color: rgba(var(--primary-color), 1);
    transition: all 0.15s ease-in-out;
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
}
.product-section .review-tabs .nav-item .nav-link.active,
.product-right-box .review-tabs .nav-item .nav-link.active {
    color: rgba(var(--title-color), 1);
}
.product-section .review-tabs .nav-item .nav-link.active::after,
.product-right-box .review-tabs .nav-item .nav-link.active::after {
    width: 100%;
}
.product-section .review-tabs-content,
.product-right-box .review-tabs-content {
    border-bottom: 1px solid rgba(var(--content-color), 0.1);
    padding-bottom: 16px;
}
.product-section .review-tabs-content .product-category-list,
.product-right-box .review-tabs-content .product-category-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 0;
}
.product-section .review-tabs-content .product-category-list li,
.product-right-box .review-tabs-content .product-category-list li {
    color: rgba(var(--content-color), 1);
    font-weight: 400;
    font-size: 16px;
}
.product-section .review-tabs-content .product-category-list li span,
.product-right-box .review-tabs-content .product-category-list li span {
    color: rgba(var(--title-color), 1);
    font-weight: 500;
}
.product-section .about-item-list,
.product-right-box .about-item-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px 0;
    text-align: left;
}
@media (max-width: 767.98px) {
    .product-section .about-item-list,
    .product-right-box .about-item-list {
        gap: 0;
    }
}
.product-section .about-item-list li,
.product-right-box .about-item-list li {
    display: flex;
    gap: 5px;
    color: rgba(var(--content-color), 1);
    font-weight: 400;
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
}
@media (max-width: 767.98px) {
    .product-section .about-item-list li,
    .product-right-box .about-item-list li {
        text-align: center;
        flex-direction: column;
        justify-content: center;
        border-top: 1px solid rgba(var(--border-color), 1);
        padding-block: calc(6px + 4 * (100vw - 320px) / 448);
    }
    .product-section .about-item-list li:nth-child(2),
    .product-section .about-item-list li:first-child,
    .product-right-box .about-item-list li:nth-child(2),
    .product-right-box .about-item-list li:first-child {
        padding-top: 0;
        border-top: unset;
    }
    .product-section .about-item-list li:nth-last-child(-n + 2),
    .product-right-box .about-item-list li:nth-last-child(-n + 2) {
        padding-bottom: 0;
    }
    .product-section .about-item-list li:nth-child(even),
    .product-right-box .about-item-list li:nth-child(even) {
        border-left: 1px solid rgba(var(--border-color), 1);
    }
    [dir="rtl"] .product-section .about-item-list li:nth-child(even),
    [dir="rtl"] .product-right-box .about-item-list li:nth-child(even) {
        border-left: unset;
        border-right: 1px solid rgba(var(--border-color), 1);
    }
}
@media (max-width: 575.98px) {
    .product-section .about-item-list li,
    .product-right-box .about-item-list li {
        line-height: 1.2;
    }
}
.product-section .about-item-list li span,
.product-right-box .about-item-list li span {
    color: rgba(var(--title-color), 1);
    font-weight: 500;
}
[dir="rtl"] .product-section .about-item-list li span,
[dir="rtl"] .product-right-box .about-item-list li span {
    text-align: right;
}
@media (max-width: 767.98px) {
    .product-section .about-item-list li span,
    .product-right-box .about-item-list li span {
        display: block;
        text-align: center;
    }
    [dir="rtl"] .product-section .about-item-list li span,
    [dir="rtl"] .product-right-box .about-item-list li span {
        text-align: center;
    }
}
.product-section .description-list,
.product-right-box .description-list {
    list-style: disc;
    padding-left: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
[dir="rtl"] .product-section .description-list,
[dir="rtl"] .product-right-box .description-list {
    padding-left: unset;
    padding-right: 22px;
}
@media (max-width: 767.98px) {
    .product-section .description-list,
    .product-right-box .description-list {
        padding-left: unset;
    }
    [dir="rtl"] .product-section .description-list,
    [dir="rtl"] .product-right-box .description-list {
        padding-right: unset;
    }
}
.product-section .description-list li,
.product-right-box .description-list li {
    color: rgba(var(--content-color), 1);
    display: list-item;
    width: 100%;
    font-weight: 400;
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
}
@media (max-width: 767.98px) {
    .product-section .description-list li,
    .product-right-box .description-list li {
        display: block;
        text-align: center;
    }
}
.product-section .description-list li::marker,
.product-right-box .description-list li::marker {
    color: rgba(var(--title-color), 1);
}
.product-section .shipping-info-list,
.product-right-box .shipping-info-list {
    list-style: disc;
    padding-left: 22px;
    display: grid;
    flex-wrap: wrap;
    gap: 5px;
}
[dir="rtl"] .product-section .shipping-info-list,
[dir="rtl"] .product-right-box .shipping-info-list {
    padding-left: unset;
    padding-right: 22px;
}
@media (max-width: 767.98px) {
    .product-section .shipping-info-list,
    .product-right-box .shipping-info-list {
        padding-left: unset;
    }
    [dir="rtl"] .product-section .shipping-info-list,
    [dir="rtl"] .product-right-box .shipping-info-list {
        padding-right: unset;
    }
}
.product-section .shipping-info-list li,
.product-right-box .shipping-info-list li {
    display: list-item;
    color: rgba(var(--content-color), 1);
    font-weight: 400;
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    width: 100%;
}
@media (max-width: 767.98px) {
    .product-section .shipping-info-list li,
    .product-right-box .shipping-info-list li {
        display: block;
        text-align: center;
    }
}
.product-section .shipping-info-list li::marker,
.product-right-box .shipping-info-list li::marker {
    color: rgba(var(--title-color), 1);
}
.product-section .shipping-info-list li span,
.product-right-box .shipping-info-list li span {
    color: rgba(var(--title-color), 1);
    font-weight: 500;
    margin-left: calc(3px + 2 * (100vw - 320px) / 1600);
}
.product-section .left-slider-image .sidebar-image,
.product-right-box .left-slider-image .sidebar-image {
    border-radius: 8px;
    overflow: hidden;
}
.product-section .left-slider-image .sidebar-image img,
.product-right-box .left-slider-image .sidebar-image img {
    cursor: pointer;
    object-fit: contain;
    width: auto;
    height: auto;
}
.product-section .right-box-contain,
.product-right-box .right-box-contain {
    position: sticky;
    top: 10px;
    left: 0;
    background-color: rgba(var(--white), 1);
}
.product-section .right-box-contain.custom-padding,
.product-right-box .right-box-contain.custom-padding {
    padding: 18px;
    border-radius: 6px;
}
.product-section .right-box-contain .hurry-up-box,
.product-right-box .right-box-contain .hurry-up-box {
    margin-top: calc(16px + 4 * (100vw - 320px) / 1600);
}
.product-section .right-box-contain .hurry-up-box h4,
.product-right-box .right-box-contain .hurry-up-box h4 {
    color: rgba(var(--title-color), 1);
}
@media (max-width: 767.98px) {
    .product-section .right-box-contain .hurry-up-box h4,
    .product-right-box .right-box-contain .hurry-up-box h4 {
        text-align: center;
    }
}
.product-section .right-box-contain .hurry-up-box .progress,
.product-right-box .right-box-contain .hurry-up-box .progress {
    margin-top: 6px;
    height: calc(6px + 4 * (100vw - 320px) / 1600);
    border-radius: 3px;
    background-color: rgba(var(--base-gray), 1);
}
.product-section .right-box-contain .hurry-up-box .progress .progress-bar,
.product-right-box .right-box-contain .hurry-up-box .progress .progress-bar {
    background-color: rgba(var(--primary-color), 1);
}
.product-section .right-box-contain .button-group,
.product-right-box .right-box-contain .button-group {
    margin-top: calc(16px + 4 * (100vw - 320px) / 1600);
    display: flex;
    gap: calc(8px + 8 * (100vw - 320px) / 1600);
}
@media (max-width: 575.98px) {
    .product-section .right-box-contain .button-group,
    .product-right-box .right-box-contain .button-group {
        flex-direction: column;
    }
}
.product-section .right-box-contain .button-group .buy-btn,
.product-right-box .right-box-contain .button-group .buy-btn {
    width: 50%;
}
@media (max-width: 575.98px) {
    .product-section .right-box-contain .button-group .buy-btn,
    .product-right-box .right-box-contain .button-group .buy-btn {
        width: 100%;
    }
}
.product-section .right-box-contain .button-group .buy-btn-2,
.product-right-box .right-box-contain .button-group .buy-btn-2 {
    width: calc(50% - 16px);
}
@media (max-width: 575.98px) {
    .product-section .right-box-contain .button-group .buy-btn-2,
    .product-right-box .right-box-contain .button-group .buy-btn-2 {
        width: 100%;
    }
}
.product-section .right-box-contain .size-delivery-info,
.product-right-box .right-box-contain .size-delivery-info {
    border-top: 1px solid rgba(var(--content-color), 0.1);
    padding-top: calc(10px + 6 * (100vw - 320px) / 1600);
    margin-top: calc(10px + 6 * (100vw - 320px) / 1600);
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: calc(6px + 12 * (100vw - 320px) / 1600);
}
@media (max-width: 767.98px) {
    .product-section .right-box-contain .size-delivery-info,
    .product-right-box .right-box-contain .size-delivery-info {
        justify-content: center;
    }
}
.product-section .right-box-contain .size-delivery-info li button,
.product-right-box .right-box-contain .size-delivery-info li button {
    padding: 0;
    display: flex;
    align-items: center;
    gap: calc(5px + 5 * (100vw - 320px) / 1600);
    color: rgba(var(--title-color), 1);
    font-weight: 400;
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
}
.product-section .right-box-contain .size-delivery-info li button i,
.product-right-box .right-box-contain .size-delivery-info li button i {
    margin-top: -2px;
}
.product-section .right-box-contain .delivery-info ul,
.product-right-box .right-box-contain .delivery-info ul {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}
.product-section .right-box-contain .delivery-info ul li,
.product-right-box .right-box-contain .delivery-info ul li {
    font-size: calc(15px + 5 * (100vw - 320px) / 1600);
    color: rgba(var(--content-color), 1);
    width: 100%;
}
@media (max-width: 767.98px) {
    .product-section .right-box-contain .delivery-info ul li,
    .product-right-box .right-box-contain .delivery-info ul li {
        text-align: center;
    }
}
.product-section .right-box-contain .delivery-info ul li i,
.product-right-box .right-box-contain .delivery-info ul li i {
    font-size: calc(18px + 2 * (100vw - 320px) / 1600);
    line-height: 1;
}
.product-section .right-box-contain .delivery-info ul li span,
.product-right-box .right-box-contain .delivery-info ul li span {
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
}
@media (max-width: 767.98px) {
    .product-section .right-box-contain .delivery-info ul li span,
    .product-right-box .right-box-contain .delivery-info ul li span {
        text-align: center;
    }
}
@media (max-width: 767.98px) {
    .product-section .right-box-contain .product-count,
    .product-right-box .right-box-contain .product-count {
        text-align: center;
    }
}
.product-section .right-box-contain .product-count ul,
.product-right-box .right-box-contain .product-count ul {
    align-items: center;
    margin-bottom: calc(8px + 8 * (100vw - 320px) / 1600);
    display: inline-flex;
    flex-wrap: wrap;
    gap: 3px 15px;
}
@media (max-width: 767.98px) {
    .product-section .right-box-contain .product-count ul,
    .product-right-box .right-box-contain .product-count ul {
        justify-content: center;
    }
}
.product-section .right-box-contain .product-count ul li,
.product-right-box .right-box-contain .product-count ul li {
    display: flex;
    align-items: center;
    gap: calc(8px + 2 * (100vw - 320px) / 1600);
}
.product-section .right-box-contain .product-count ul li i,
.product-right-box .right-box-contain .product-count ul li i {
    color: rgba(var(--primary-color), 1);
    font-size: calc(16px + 4 * (100vw - 320px) / 1600);
}
@media (max-width: 991.98px) {
    .product-section .right-box-contain .product-count ul li i,
    .product-right-box .right-box-contain .product-count ul li i {
        line-height: 1;
    }
}
.product-section .right-box-contain .product-count ul li h3,
.product-right-box .right-box-contain .product-count ul li h3 {
    font-size: calc(14px + 1 * (100vw - 320px) / 1600);
}
.product-section .right-box-contain .offer-top,
.product-right-box .right-box-contain .offer-top {
    font-weight: 500;
    color: rgba(var(--primary-color2), 1);
    display: inline-block;
    margin-bottom: calc(6px + 2 * (100vw - 320px) / 1600);
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
}
@media (max-width: 767.98px) {
    .product-section .right-box-contain .offer-top,
    .product-right-box .right-box-contain .offer-top {
        text-align: center;
        display: block;
    }
}
.product-section .right-box-contain .rating-review-sold-box,
.product-right-box .right-box-contain .rating-review-sold-box {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: calc(6px + 4 * (100vw - 320px) / 1600);
}
@media (max-width: 767.98px) {
    .product-section .right-box-contain .rating-review-sold-box,
    .product-right-box .right-box-contain .rating-review-sold-box {
        justify-content: center;
    }
}
@media (max-width: 575.98px) {
    .product-section .right-box-contain .rating-review-sold-box li,
    .product-right-box .right-box-contain .rating-review-sold-box li {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
.product-section .right-box-contain .rating-review-sold-box li h3,
.product-right-box .right-box-contain .rating-review-sold-box li h3 {
    display: flex;
    align-items: center;
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    font-weight: 400;
    line-height: 1;
    gap: 3px;
    color: rgba(var(--content-color), 1);
}
.product-section .right-box-contain .rating-review-sold-box li h3 i,
.product-right-box .right-box-contain .rating-review-sold-box li h3 i {
    font-size: 15px;
    margin-top: -4px;
    color: rgba(var(--rating), 1);
}
.product-section .right-box-contain .rating-review-sold-box li:nth-child(even),
.product-right-box
    .right-box-contain
    .rating-review-sold-box
    li:nth-child(even) {
    border-radius: 100%;
    margin-top: -4px;
    background-color: rgba(var(--content-color), 0.4);
    width: 5px;
    height: 5px;
}
@media (max-width: 575.98px) {
    .product-section
        .right-box-contain
        .rating-review-sold-box
        li:nth-child(even),
    .product-right-box
        .right-box-contain
        .rating-review-sold-box
        li:nth-child(even) {
        display: none;
    }
}
.product-section .right-box-contain .name,
.product-right-box .right-box-contain .name {
    font-weight: 700;
    margin-bottom: 7px;
    font-size: calc(22px + 14 * (100vw - 320px) / 1600);
}
@media (max-width: 991.98px) {
    .product-section .right-box-contain .name,
    .product-right-box .right-box-contain .name {
        margin-bottom: 4px;
    }
}
@media (max-width: 767.98px) {
    .product-section .right-box-contain .name,
    .product-right-box .right-box-contain .name {
        text-align: center;
    }
}
.product-section .right-box-contain .qty-box,
.product-right-box .right-box-contain .qty-box {
    display: none;
    border-radius: 4px;
    align-items: center;
    padding: 6px;
    background-color: rgba(var(--base-gray), 1);
}
@media (max-width: 991.98px) {
    .product-section .right-box-contain .qty-box,
    .product-right-box .right-box-contain .qty-box {
        display: inline-flex;
        margin-top: calc(14px + 6 * (100vw - 320px) / 672);
    }
}
.product-section .right-box-contain .qty-box .qty-btn,
.product-right-box .right-box-contain .qty-box .qty-btn {
    padding: 0;
    border-radius: calc(2px + 2 * (100vw - 320px) / 672);
    background-color: rgba(var(--white), 1);
    color: rgba(var(--content-color), 1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(30px + 5 * (100vw - 320px) / 672);
    height: calc(30px + 5 * (100vw - 320px) / 672);
}
.product-section .right-box-contain .qty-box .qty-btn:hover,
.product-right-box .right-box-contain .qty-box .qty-btn:hover {
    background-color: rgba(var(--primary-color), 1);
    color: #fff;
}
.product-section .right-box-contain .qty-box .qty-input,
.product-right-box .right-box-contain .qty-box .qty-input {
    width: calc(72px + 88 * (100vw - 320px) / 672);
    line-height: 1;
    padding: 0;
    border: none;
    text-align: center;
    outline: unset;
    padding-top: 3px;
    color: rgba(var(--title-color), 1);
    background-color: transparent;
    font-size: calc(16px + 2 * (100vw - 320px) / 672);
}
.product-section .right-box-contain .qty-box .qty-input[type="number"],
.product-right-box .right-box-contain .qty-box .qty-input[type="number"] {
    appearance: textfield;
}
.product-section
    .right-box-contain
    .qty-box
    .qty-input[type="number"]::-webkit-inner-spin-button,
.product-section
    .right-box-contain
    .qty-box
    .qty-input[type="number"]::-webkit-outer-spin-button,
.product-right-box
    .right-box-contain
    .qty-box
    .qty-input[type="number"]::-webkit-inner-spin-button,
.product-right-box
    .right-box-contain
    .qty-box
    .qty-input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
}
.product-section .right-box-contain .qty-box-2,
.product-right-box .right-box-contain .qty-box-2 {
    border-radius: 4px;
    align-items: center;
    padding: 6px;
    background-color: rgba(var(--base-gray), 1);
    display: inline-flex;
    margin-top: calc(14px + 6 * (100vw - 320px) / 1600);
}
.product-section .right-box-contain .qty-box-2 .qty-btn,
.product-right-box .right-box-contain .qty-box-2 .qty-btn {
    padding: 0;
    border-radius: calc(2px + 2 * (100vw - 320px) / 1600);
    background-color: rgba(var(--white), 1);
    color: rgba(var(--content-color), 1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(30px + 5 * (100vw - 320px) / 1600);
    height: calc(30px + 5 * (100vw - 320px) / 1600);
}
.product-section .right-box-contain .qty-box-2 .qty-btn:hover,
.product-right-box .right-box-contain .qty-box-2 .qty-btn:hover {
    background-color: rgba(var(--primary-color), 1);
    color: #fff;
}
.product-section .right-box-contain .qty-box-2 .qty-input,
.product-right-box .right-box-contain .qty-box-2 .qty-input {
    width: calc(72px + 88 * (100vw - 320px) / 1600);
    line-height: 1;
    padding: 0;
    border: none;
    text-align: center;
    outline: unset;
    padding-top: 3px;
    color: rgba(var(--title-color), 1);
    background-color: transparent;
    font-size: calc(16px + 2 * (100vw - 320px) / 1600);
}
.product-section .right-box-contain .qty-box-2 .qty-input[type="number"],
.product-right-box .right-box-contain .qty-box-2 .qty-input[type="number"] {
    appearance: textfield;
}
.product-section
    .right-box-contain
    .qty-box-2
    .qty-input[type="number"]::-webkit-inner-spin-button,
.product-section
    .right-box-contain
    .qty-box-2
    .qty-input[type="number"]::-webkit-outer-spin-button,
.product-right-box
    .right-box-contain
    .qty-box-2
    .qty-input[type="number"]::-webkit-inner-spin-button,
.product-right-box
    .right-box-contain
    .qty-box-2
    .qty-input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
}
.product-section .right-box-contain .product-price,
.product-right-box .right-box-contain .product-price {
    display: none;
}
@media (max-width: 991.98px) {
    .product-section .right-box-contain .product-price,
    .product-right-box .right-box-contain .product-price {
        font-size: calc(21px + 5 * (100vw - 320px) / 672);
        margin-bottom: calc(10px + 4 * (100vw - 320px) / 672);
        font-weight: 600;
        color: rgba(var(--primary-color), 1);
        display: block;
    }
}
@media (max-width: 767.98px) {
    .product-section .right-box-contain .product-price,
    .product-right-box .right-box-contain .product-price {
        text-align: center;
    }
}
.product-section .right-box-contain .product-price del,
.product-right-box .right-box-contain .product-price del {
    color: rgba(var(--content-color), 0.8);
    font-weight: 400;
    font-size: 22px;
}
@media (max-width: 991.98px) {
    .product-section .right-box-contain .product-price del,
    .product-right-box .right-box-contain .product-price del {
        font-size: calc(19px + 3 * (100vw - 320px) / 672);
    }
}
.product-section .right-box-contain .product-price-2,
.product-right-box .right-box-contain .product-price-2 {
    font-size: calc(21px + 5 * (100vw - 320px) / 1600);
    margin-bottom: calc(10px + 4 * (100vw - 320px) / 1600);
    font-weight: 600;
    color: rgba(var(--primary-color), 1);
}
@media (max-width: 767.98px) {
    .product-section .right-box-contain .product-price-2,
    .product-right-box .right-box-contain .product-price-2 {
        text-align: center;
    }
}
.product-section .right-box-contain .product-price-2 del,
.product-right-box .right-box-contain .product-price-2 del {
    color: rgba(var(--content-color), 0.8);
    font-weight: 400;
    font-size: calc(19px + 3 * (100vw - 320px) / 1600);
}
.product-section .right-box-contain .price-rating,
.product-right-box .right-box-contain .price-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 767.98px) {
    .product-section .right-box-contain .price-rating,
    .product-right-box .right-box-contain .price-rating {
        display: block;
    }
}
@media (max-width: 767.98px) {
    .product-section .right-box-contain .price-rating .custom-rate,
    .product-right-box .right-box-contain .price-rating .custom-rate {
        margin-top: 10px;
        justify-content: center;
    }
}
.product-section .right-box-contain .price-rating .price,
.product-right-box .right-box-contain .price-rating .price {
    font-weight: 600;
    font-size: calc(19px + 3 * (100vw - 320px) / 1600);
}
.product-section .right-box-contain .price-rating .price del,
.product-right-box .right-box-contain .price-rating .price del {
    font-weight: 400;
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    margin: 0 calc(0px + 2 * (100vw - 320px) / 1600);
}
.product-section .right-box-contain .price-rating .price span,
.product-right-box .right-box-contain .price-rating .price span {
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    font-weight: 500;
}
.product-section .right-box-contain .price-rating .custom-rate ul li i,
.product-right-box .right-box-contain .price-rating .custom-rate ul li i {
    font-size: 16px;
    width: 16px;
    height: 16px;
}
.product-section .right-box-contain .price-rating .custom-rate .review,
.product-right-box .right-box-contain .price-rating .custom-rate .review {
    font-size: 13px;
    margin-left: 12px;
}
.product-section .right-box-contain .product-contain,
.product-right-box .right-box-contain .product-contain {
    border-bottom: 1px solid rgba(var(--content-color), 0.1);
    padding-bottom: calc(9px + 7 * (100vw - 320px) / 1600);
}
.product-section .right-box-contain .product-contain p,
.product-right-box .right-box-contain .product-contain p {
    color: rgba(var(--content-color), 1);
    line-height: 1.7;
    margin: calc(14px + 2 * (100vw - 320px) / 1600) 0 0;
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
}
@media (max-width: 991.98px) {
    .product-section .right-box-contain .product-contain p,
    .product-right-box .right-box-contain .product-contain p {
        border-top: 1px solid rgba(var(--border-color), 1);
        margin-top: calc(14px + 6 * (100vw - 320px) / 1600);
        padding-top: calc(14px + 6 * (100vw - 320px) / 1600);
    }
}
@media (max-width: 767.98px) {
    .product-section .right-box-contain .product-contain p,
    .product-right-box .right-box-contain .product-contain p {
        text-align: center;
    }
}
@media (max-width: 575.98px) {
    .product-section .right-box-contain .product-contain p,
    .product-right-box .right-box-contain .product-contain p {
        line-height: 1.5;
    }
}
.product-section .right-box-contain .product-package .select-package,
.product-right-box .right-box-contain .product-package .select-package {
    display: flex;
    flex-wrap: wrap;
    gap: calc(5px + 8 * (100vw - 320px) / 1600);
}
@media (max-width: 767.98px) {
    .product-section .right-box-contain .product-package .select-package,
    .product-right-box .right-box-contain .product-package .select-package {
        justify-content: center;
    }
}
.product-section .right-box-contain .product-package .select-package .disabled,
.product-right-box
    .right-box-contain
    .product-package
    .select-package
    .disabled {
    overflow: hidden;
    position: relative;
    user-select: none;
    cursor: default;
    opacity: 0.6;
    pointer-events: none;
}
.product-section
    .right-box-contain
    .product-package
    .select-package
    .disabled::after,
.product-right-box
    .right-box-contain
    .product-package
    .select-package
    .disabled::after {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    left: 0;
    background-color: #ff7272;
    cursor: default;
    user-select: none;
    z-index: 1;
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
}
.product-section
    .right-box-contain
    .product-package
    .select-package
    .form-check,
.product-right-box
    .right-box-contain
    .product-package
    .select-package
    .form-check {
    position: relative;
    min-height: unset;
    margin: 0;
    padding: 0;
}
.product-section
    .right-box-contain
    .product-package
    .select-package
    .form-check:has(.form-check-label.disabled),
.product-right-box
    .right-box-contain
    .product-package
    .select-package
    .form-check:has(.form-check-label.disabled) {
    cursor: not-allowed;
}
.product-section
    .right-box-contain
    .product-package
    .select-package
    .form-check:has(.form-check-label.disabled)
    .form-check-input,
.product-right-box
    .right-box-contain
    .product-package
    .select-package
    .form-check:has(.form-check-label.disabled)
    .form-check-input {
    pointer-events: none;
}
.product-section
    .right-box-contain
    .product-package
    .select-package
    .form-check
    .form-check-input,
.product-right-box
    .right-box-contain
    .product-package
    .select-package
    .form-check
    .form-check-input {
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    opacity: 0;
    float: unset;
    width: 100%;
    height: 100%;
}
body.dark
    .product-section
    .right-box-contain
    .product-package
    .select-package
    .form-check
    .form-check-input,
body.dark
    .product-right-box
    .right-box-contain
    .product-package
    .select-package
    .form-check
    .form-check-input {
    background-color: rgba(var(--base-gray), 1);
}
.product-section
    .right-box-contain
    .product-package
    .select-package
    .form-check
    .form-check-input:checked
    ~ .form-check-label,
.product-right-box
    .right-box-contain
    .product-package
    .select-package
    .form-check
    .form-check-input:checked
    ~ .form-check-label {
    border: 1px solid rgba(var(--primary-color), 1);
    background-color: rgba(var(--primary-color), 1);
    color: #fff;
}
.product-section
    .right-box-contain
    .product-package
    .select-package
    .form-check
    .form-check-label,
.product-right-box
    .right-box-contain
    .product-package
    .select-package
    .form-check
    .form-check-label {
    cursor: pointer;
    position: relative;
    min-height: unset;
    margin: 0;
    padding: calc(6px + 4 * (100vw - 320px) / 1600)
        calc(12px + 4 * (100vw - 320px) / 1600)
        calc(4px + 4 * (100vw - 320px) / 1600);
    border: 1px solid rgba(var(--border-color), 1);
    border-radius: 3px;
    display: block;
    color: rgba(var(--content-color), 1);
    font-size: 14px;
    transition: all 0.15s ease-in-out;
    background-color: rgba(var(--white), 1);
}
.product-section
    .right-box-contain
    .product-package
    .select-package.radio-package
    .form-check,
.product-right-box
    .right-box-contain
    .product-package
    .select-package.radio-package
    .form-check {
    display: flex;
    gap: calc(5px + 2 * (100vw - 320px) / 1600);
    align-items: center;
}
.product-section
    .right-box-contain
    .product-package
    .select-package.radio-package
    .form-check
    .form-check-input,
.product-right-box
    .right-box-contain
    .product-package
    .select-package.radio-package
    .form-check
    .form-check-input {
    position: relative;
    inset: unset;
    opacity: 1;
    border: 1px solid rgba(var(--content-color), 0.1);
    transition: all 0.15s ease-in-out;
    width: calc(16px + 2 * (100vw - 320px) / 1600);
    height: calc(16px + 2 * (100vw - 320px) / 1600);
}
.product-section
    .right-box-contain
    .product-package
    .select-package.radio-package
    .form-check
    .form-check-input::before,
.product-right-box
    .right-box-contain
    .product-package
    .select-package.radio-package
    .form-check
    .form-check-input::before {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background-color: rgba(var(--primary-color), 1);
    border-radius: 100%;
    transition: all 0.15s ease-in-out;
    content: "";
    position: absolute;
    width: calc(100% - (3px + 1 * (100vw - 320px) / 1600));
    height: calc(100% - (3px + 1 * (100vw - 320px) / 1600));
}
.product-section
    .right-box-contain
    .product-package
    .select-package.radio-package
    .form-check
    .form-check-input:checked,
.product-right-box
    .right-box-contain
    .product-package
    .select-package.radio-package
    .form-check
    .form-check-input:checked {
    border-color: rgba(var(--primary-color), 1);
}
.product-section
    .right-box-contain
    .product-package
    .select-package.radio-package
    .form-check
    .form-check-input:checked::before,
.product-right-box
    .right-box-contain
    .product-package
    .select-package.radio-package
    .form-check
    .form-check-input:checked::before {
    transform: translate(-50%, -50%) scale(1);
}
.product-section
    .right-box-contain
    .product-package
    .select-package.radio-package
    .form-check
    .form-check-input:checked
    ~ .form-check-label,
.product-right-box
    .right-box-contain
    .product-package
    .select-package.radio-package
    .form-check
    .form-check-input:checked
    ~ .form-check-label {
    border: unset;
    background-color: transparent;
    color: rgba(var(--title-color), 1);
}
.product-section
    .right-box-contain
    .product-package
    .select-package.radio-package
    .form-check
    .form-check-label,
.product-right-box
    .right-box-contain
    .product-package
    .select-package.radio-package
    .form-check
    .form-check-label {
    padding: 0;
    line-height: 1;
    transform: translateY(1px);
    font-size: calc(14px + 1 * (100vw - 320px) / 1600);
    border: unset;
}
.product-section
    .right-box-contain
    .product-package
    .select-package.rectangle-package
    .form-check,
.product-right-box
    .right-box-contain
    .product-package
    .select-package.rectangle-package
    .form-check {
    display: flex;
    gap: 7px;
    align-items: center;
}
.product-section
    .right-box-contain
    .product-package
    .select-package.rectangle-package
    .form-check
    .form-check-input:checked
    ~ .form-check-label,
.product-right-box
    .right-box-contain
    .product-package
    .select-package.rectangle-package
    .form-check
    .form-check-input:checked
    ~ .form-check-label {
    border: 1px solid rgba(var(--primary-color), 1);
    background-color: transparent;
    color: rgba(var(--title-color), 1);
}
.product-section
    .right-box-contain
    .product-package
    .select-package.rectangle-package
    .form-check
    .form-check-input:checked
    ~ .form-check-label
    span,
.product-right-box
    .right-box-contain
    .product-package
    .select-package.rectangle-package
    .form-check
    .form-check-input:checked
    ~ .form-check-label
    span {
    background-color: rgba(var(--primary-color), 1);
    color: rgba(var(--white), 1);
}
.product-section
    .right-box-contain
    .product-package
    .select-package.rectangle-package
    .form-check
    .form-check-label,
.product-right-box
    .right-box-contain
    .product-package
    .select-package.rectangle-package
    .form-check
    .form-check-label {
    line-height: 1;
    border: 1px solid rgba(var(--content-color), 0.1);
    font-size: 15px;
    position: relative;
    padding: 3px;
    width: calc(38px + 4 * (100vw - 320px) / 1600);
    height: calc(38px + 4 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-section
    .right-box-contain
    .product-package
    .select-package.rectangle-package
    .form-check
    .form-check-label
    span,
.product-right-box
    .right-box-contain
    .product-package
    .select-package.rectangle-package
    .form-check
    .form-check-label
    span {
    transition: all 0.15s ease-in-out;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-section
    .right-box-contain
    .product-package
    .select-package.image-package
    .form-check,
.product-right-box
    .right-box-contain
    .product-package
    .select-package.image-package
    .form-check {
    display: flex;
    gap: 7px;
    align-items: center;
}
.product-section
    .right-box-contain
    .product-package
    .select-package.image-package
    .form-check
    .form-check-input,
.product-right-box
    .right-box-contain
    .product-package
    .select-package.image-package
    .form-check
    .form-check-input {
    border: 1px solid rgba(var(--content-color), 0.1);
    transition: all 0.15s ease-in-out;
}
.product-section
    .right-box-contain
    .product-package
    .select-package.image-package
    .form-check
    .form-check-input:checked,
.product-right-box
    .right-box-contain
    .product-package
    .select-package.image-package
    .form-check
    .form-check-input:checked {
    border-color: rgba(var(--primary-color), 1);
}
.product-section
    .right-box-contain
    .product-package
    .select-package.image-package
    .form-check
    .form-check-input:checked
    ~ .form-check-label,
.product-right-box
    .right-box-contain
    .product-package
    .select-package.image-package
    .form-check
    .form-check-input:checked
    ~ .form-check-label {
    border: 1px solid rgba(var(--primary-color), 1);
    background-color: transparent;
    color: rgba(var(--title-color), 1);
}
.product-section
    .right-box-contain
    .product-package
    .select-package.image-package
    .form-check
    .form-check-input:checked
    ~ .form-check-label
    span,
.product-right-box
    .right-box-contain
    .product-package
    .select-package.image-package
    .form-check
    .form-check-input:checked
    ~ .form-check-label
    span {
    background-color: rgba(var(--primary-color), 1);
    color: rgba(var(--white), 1);
}
.product-section
    .right-box-contain
    .product-package
    .select-package.image-package
    .form-check
    .form-check-label,
.product-right-box
    .right-box-contain
    .product-package
    .select-package.image-package
    .form-check
    .form-check-label {
    line-height: 1;
    border: 1px solid rgba(var(--content-color), 0.1);
    font-size: 15px;
    position: relative;
    padding: calc(2px + 1 * (100vw - 320px) / 1600);
    width: calc(54px + 21 * (100vw - 320px) / 1600);
    height: calc(54px + 21 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-section
    .right-box-contain
    .product-package
    .select-package.image-package
    .form-check
    .form-check-label
    span,
.product-right-box
    .right-box-contain
    .product-package
    .select-package.image-package
    .form-check
    .form-check-label
    span {
    transition: all 0.15s ease-in-out;
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-section
    .right-box-contain
    .product-package
    .select-package.image-package
    .form-check
    .form-check-label
    span
    img,
.product-right-box
    .right-box-contain
    .product-package
    .select-package.image-package
    .form-check
    .form-check-label
    span
    img {
    object-position: top;
}
.product-section
    .right-box-contain
    .product-package
    .select-package.circle-package
    .form-check,
.product-right-box
    .right-box-contain
    .product-package
    .select-package.circle-package
    .form-check {
    display: flex;
    gap: 7px;
    align-items: center;
}
.product-section
    .right-box-contain
    .product-package
    .select-package.circle-package
    .form-check
    .form-check-input:checked,
.product-right-box
    .right-box-contain
    .product-package
    .select-package.circle-package
    .form-check
    .form-check-input:checked {
    border-color: rgba(var(--primary-color), 1);
}
.product-section
    .right-box-contain
    .product-package
    .select-package.circle-package
    .form-check
    .form-check-input:checked::before,
.product-right-box
    .right-box-contain
    .product-package
    .select-package.circle-package
    .form-check
    .form-check-input:checked::before {
    transform: translate(-50%, -50%) scale(1);
}
.product-section
    .right-box-contain
    .product-package
    .select-package.circle-package
    .form-check
    .form-check-input:checked
    ~ .form-check-label,
.product-right-box
    .right-box-contain
    .product-package
    .select-package.circle-package
    .form-check
    .form-check-input:checked
    ~ .form-check-label {
    border: 1px solid rgba(var(--primary-color), 1);
    background-color: transparent;
    color: rgba(var(--title-color), 1);
}
.product-section
    .right-box-contain
    .product-package
    .select-package.circle-package
    .form-check
    .form-check-input:checked
    ~ .form-check-label
    span,
.product-right-box
    .right-box-contain
    .product-package
    .select-package.circle-package
    .form-check
    .form-check-input:checked
    ~ .form-check-label
    span {
    background-color: rgba(var(--primary-color), 1);
    color: #fff;
}
.product-section
    .right-box-contain
    .product-package
    .select-package.circle-package
    .form-check
    .form-check-label,
.product-right-box
    .right-box-contain
    .product-package
    .select-package.circle-package
    .form-check
    .form-check-label {
    line-height: 1;
    border: 1px solid rgba(var(--content-color), 0.1);
    font-size: calc(14px + 1 * (100vw - 320px) / 1600);
    padding: calc(2px + 1 * (100vw - 320px) / 1600);
    border-radius: 100%;
    width: calc(38px + 4 * (100vw - 320px) / 1600);
    height: calc(38px + 4 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-section
    .right-box-contain
    .product-package
    .select-package.circle-package
    .form-check
    .form-check-label
    span,
.product-right-box
    .right-box-contain
    .product-package
    .select-package.circle-package
    .form-check
    .form-check-label
    span {
    transition: all 0.15s ease-in-out;
    border-radius: 100%;
    padding-top: 1px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-section
    .right-box-contain
    .product-package
    .select-package.form-select-package
    .form-select,
.product-right-box
    .right-box-contain
    .product-package
    .select-package.form-select-package
    .form-select {
    background-color: rgba(var(--base-gray), 1);
    border-radius: calc(4px + 2 * (100vw - 320px) / 1600);
    border: 1px solid rgba(var(--content-color), 0.1);
    color: rgba(var(--content-color), 1);
    font-size: calc(15px + 1 * (100vw - 320px) / 1600);
    font-weight: 500;
    padding: calc(9px + 3 * (100vw - 320px) / 1600) 36px
        calc(6px + 3 * (100vw - 320px) / 1600)
        calc(11px + 4 * (100vw - 320px) / 1600);
}
[dir="rtl"]
    .product-section
    .right-box-contain
    .product-package
    .select-package.form-select-package
    .form-select,
[dir="rtl"]
    .product-right-box
    .right-box-contain
    .product-package
    .select-package.form-select-package
    .form-select {
    padding: calc(9px + 3 * (100vw - 320px) / 1600)
        calc(11px + 4 * (100vw - 320px) / 1600)
        calc(6px + 3 * (100vw - 320px) / 1600) 36px;
}
.product-section .right-box-contain .product-package .color-product,
.product-right-box .right-box-contain .product-package .color-product {
    display: flex;
    flex-wrap: wrap;
    gap: calc(5px + 8 * (100vw - 320px) / 1600);
}
.product-section .right-box-contain .product-package .color-product .form-check,
.product-right-box
    .right-box-contain
    .product-package
    .color-product
    .form-check {
    position: relative;
    min-height: unset;
    margin: 0;
    padding: 0;
}
.product-section
    .right-box-contain
    .product-package
    .color-product
    .form-check
    .form-check-input,
.product-right-box
    .right-box-contain
    .product-package
    .color-product
    .form-check
    .form-check-input {
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    border-radius: 4px;
    opacity: 1;
    float: unset;
    width: 100%;
    height: 100%;
}
.product-section
    .right-box-contain
    .product-package
    .color-product
    .form-check
    .form-check-input:active,
.product-right-box
    .right-box-contain
    .product-package
    .color-product
    .form-check
    .form-check-input:active {
    filter: unset;
}
.product-section
    .right-box-contain
    .product-package
    .color-product
    .form-check
    .form-check-input:focus,
.product-right-box
    .right-box-contain
    .product-package
    .color-product
    .form-check
    .form-check-input:focus {
    box-shadow: unset;
}
.product-section
    .right-box-contain
    .product-package
    .color-product
    .form-check
    .form-check-input:checked,
.product-right-box
    .right-box-contain
    .product-package
    .color-product
    .form-check
    .form-check-input:checked {
    background: unset;
    border-color: transparent;
}
.product-section
    .right-box-contain
    .product-package
    .color-product
    .form-check
    .form-check-input:checked
    ~ .form-check-label,
.product-right-box
    .right-box-contain
    .product-package
    .color-product
    .form-check
    .form-check-input:checked
    ~ .form-check-label {
    border: 4px solid rgba(var(--white), 1);
    background-color: transparent;
}
.product-section
    .right-box-contain
    .product-package
    .color-product
    .form-check
    .form-check-input:checked
    ~ .form-check-label::before,
.product-right-box
    .right-box-contain
    .product-package
    .color-product
    .form-check
    .form-check-input:checked
    ~ .form-check-label::before {
    opacity: 1;
}
.product-section
    .right-box-contain
    .product-package
    .color-product
    .form-check
    .form-check-input:checked
    ~ .form-check-label::after,
.product-right-box
    .right-box-contain
    .product-package
    .color-product
    .form-check
    .form-check-input:checked
    ~ .form-check-label::after {
    opacity: 1;
    border-color: rgba(var(--primary-color), 1);
}
.product-section
    .right-box-contain
    .product-package
    .color-product
    .form-check
    .form-check-input:checked
    ~ .form-check-label::after:hover,
.product-right-box
    .right-box-contain
    .product-package
    .color-product
    .form-check
    .form-check-input:checked
    ~ .form-check-label::after:hover {
    border-color: rgba(var(--primary-color), 1);
}
.product-section
    .right-box-contain
    .product-package
    .color-product
    .form-check
    .form-check-input:checked:hover
    ~ .form-check-label::after,
.product-right-box
    .right-box-contain
    .product-package
    .color-product
    .form-check
    .form-check-input:checked:hover
    ~ .form-check-label::after {
    border-color: rgba(var(--primary-color), 0.5);
}
.product-section
    .right-box-contain
    .product-package
    .color-product
    .form-check
    .form-check-input:hover,
.product-right-box
    .right-box-contain
    .product-package
    .color-product
    .form-check
    .form-check-input:hover {
    background: unset;
    border-color: transparent;
}
.product-section
    .right-box-contain
    .product-package
    .color-product
    .form-check
    .form-check-input:hover
    ~ .form-check-label,
.product-right-box
    .right-box-contain
    .product-package
    .color-product
    .form-check
    .form-check-input:hover
    ~ .form-check-label {
    border: 4px solid rgba(var(--white), 1);
    background-color: transparent;
}
.product-section
    .right-box-contain
    .product-package
    .color-product
    .form-check
    .form-check-input:hover
    ~ .form-check-label::after,
.product-right-box
    .right-box-contain
    .product-package
    .color-product
    .form-check
    .form-check-input:hover
    ~ .form-check-label::after {
    opacity: 1;
    border-color: rgba(var(--content-color), 0.5);
}
.product-section
    .right-box-contain
    .product-package
    .color-product
    .form-check
    .form-check-label,
.product-right-box
    .right-box-contain
    .product-package
    .color-product
    .form-check
    .form-check-label {
    cursor: pointer;
    position: relative;
    min-height: unset;
    margin: 0;
    padding: 0;
    border-radius: 0;
    display: block;
    color: rgba(var(--content-color), 1);
    font-size: 14px;
    border: 4px solid rgba(var(--white), 1);
    transition: all 0.15s ease-in-out;
    width: calc(36px + 4 * (100vw - 320px) / 1600);
    height: calc(36px + 4 * (100vw - 320px) / 1600);
}
.product-section
    .right-box-contain
    .product-package
    .color-product
    .form-check
    .form-check-label::after,
.product-right-box
    .right-box-contain
    .product-package
    .color-product
    .form-check
    .form-check-label::after {
    transition: all 0.15s ease-in-out;
    border-radius: 0;
    border: 1px solid #efeff1;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 7px + 1 * (100vw - 320px) / 1600);
    height: calc(100% + 7px + 1 * (100vw - 320px) / 1600);
}
body.dark
    .product-section
    .right-box-contain
    .product-package
    .color-product
    .form-check
    .form-check-label::after,
body.dark
    .product-right-box
    .right-box-contain
    .product-package
    .color-product
    .form-check
    .form-check-label::after {
    border-color: #374658;
}
.product-section
    .right-box-contain
    .product-package
    .color-product.radio-package
    .form-check,
.product-right-box
    .right-box-contain
    .product-package
    .color-product.radio-package
    .form-check {
    position: relative;
    min-height: unset;
    margin: 0;
    padding: 0;
}
.product-section
    .right-box-contain
    .product-package
    .color-product.radio-package
    .form-check
    .form-check-input,
.product-right-box
    .right-box-contain
    .product-package
    .color-product.radio-package
    .form-check
    .form-check-input {
    position: relative;
    inset: unset;
    opacity: 1;
    margin-top: -3px;
    border: 1px solid rgba(var(--content-color), 0.1);
    transition: all 0.15s ease-in-out;
    border-radius: 100%;
    width: calc(16px + 2 * (100vw - 320px) / 1600);
    height: calc(16px + 2 * (100vw - 320px) / 1600);
}
.product-section
    .right-box-contain
    .product-package
    .color-product.radio-package
    .form-check
    .form-check-input:active,
.product-right-box
    .right-box-contain
    .product-package
    .color-product.radio-package
    .form-check
    .form-check-input:active {
    filter: unset;
}
.product-section
    .right-box-contain
    .product-package
    .color-product.radio-package
    .form-check
    .form-check-input:focus,
.product-right-box
    .right-box-contain
    .product-package
    .color-product.radio-package
    .form-check
    .form-check-input:focus {
    box-shadow: unset;
}
.product-section
    .right-box-contain
    .product-package
    .color-product.radio-package
    .form-check
    .form-check-input:checked,
.product-right-box
    .right-box-contain
    .product-package
    .color-product.radio-package
    .form-check
    .form-check-input:checked {
    background: unset;
    border-color: rgba(var(--primary-color), 1);
}
.product-section
    .right-box-contain
    .product-package
    .color-product.radio-package
    .form-check
    .form-check-input:hover,
.product-right-box
    .right-box-contain
    .product-package
    .color-product.radio-package
    .form-check
    .form-check-input:hover {
    background: unset;
    border-color: rgba(var(--primary-color), 1);
}
.product-section
    .right-box-contain
    .product-package
    .color-product.radio-package
    .form-check
    .form-check-input:hover
    ~ .form-check-label,
.product-right-box
    .right-box-contain
    .product-package
    .color-product.radio-package
    .form-check
    .form-check-input:hover
    ~ .form-check-label {
    border: unset;
    background-color: transparent;
}
.product-section
    .right-box-contain
    .product-package
    .color-product.radio-package
    .form-check
    .form-check-label,
.product-right-box
    .right-box-contain
    .product-package
    .color-product.radio-package
    .form-check
    .form-check-label {
    border: unset;
    width: unset;
    height: unset;
}
.product-section
    .right-box-contain
    .product-package
    .color-product.radio-package
    .form-check
    .form-check-label::after,
.product-right-box
    .right-box-contain
    .product-package
    .color-product.radio-package
    .form-check
    .form-check-label::after {
    content: unset;
}
.product-section .right-box-contain .timer .product-title h5,
.product-right-box .right-box-contain .timer .product-title h5 {
    font-size: 15px;
    font-weight: 400;
    color: rgba(var(--primary-color2), 1);
}
.product-section .right-box-contain .timer .product-timer,
.product-right-box .right-box-contain .timer .product-timer {
    background-color: rgba(var(--base-gray), 1);
    border-radius: 7px;
    padding: 12px 18px;
    text-align: center;
    display: inline-flex;
    gap: 10px;
}
.product-section .right-box-contain .timer .product-timer li,
.product-right-box .right-box-contain .timer .product-timer li {
    display: flex;
    gap: 10px;
}
.product-section .right-box-contain .timer .product-timer li + li::before,
.product-right-box .right-box-contain .timer .product-timer li + li::before {
    content: ":";
    color: rgba(var(--primary-color2), 1);
    margin-top: 5px;
    font-size: 19px;
}
.product-section .right-box-contain .timer .product-timer li .counter,
.product-right-box .right-box-contain .timer .product-timer li .counter {
    font-weight: 600;
    font-size: calc(19px + 5 * (100vw - 320px) / 1600);
    color: rgba(var(--primary-color2), 1);
    line-height: 1;
}
.product-section .right-box-contain .timer .product-timer li .smalltext,
.product-right-box .right-box-contain .timer .product-timer li .smalltext {
    font-weight: 400;
    font-size: 13px;
    color: rgba(var(--content-color), 1);
    text-transform: capitalize;
}
.product-section .right-box-contain .note-box,
.product-right-box .right-box-contain .note-box {
    align-items: center;
    margin-top: 20px;
    display: flex;
    flex-wrap: nowrap;
    gap: calc(7px + 8 * (100vw - 320px) / 1600);
}
@media (max-width: 767.98px) {
    .product-section .right-box-contain .note-box,
    .product-right-box .right-box-contain .note-box {
        justify-content: center;
    }
}
.product-section .right-box-contain .note-box .compare-button,
.product-right-box .right-box-contain .note-box .compare-button {
    background-color: #f8f8f8;
}
.product-section .right-box-contain .note-box .cart-button,
.product-right-box .right-box-contain .note-box .cart-button {
    animation: shake 150ms 2 linear;
}
.product-section .right-box-contain .note-box .product-qty,
.product-right-box .right-box-contain .note-box .product-qty {
    width: auto;
    margin-top: 0;
}
@media (max-width: 360.98px) {
    .product-section .right-box-contain .note-box .product-qty,
    .product-right-box .right-box-contain .note-box .product-qty {
        width: 160px;
    }
}
.product-section .right-box-contain .note-box .product-qty .input-group,
.product-right-box .right-box-contain .note-box .product-qty .input-group {
    background-color: rgba(var(--base-gray), 1);
    border-radius: 7px;
    padding: 4px;
    text-align: center;
    z-index: 0;
}
.product-section .right-box-contain .note-box .product-qty .input-group .btn,
.product-right-box .right-box-contain .note-box .product-qty .input-group .btn {
    border: none;
    padding: 0;
    background-color: rgba(var(--white), 1);
    z-index: 0;
    border-radius: 4px !important;
    width: calc(26px + 9 * (100vw - 320px) / 1600);
    height: calc(26px + 9 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-section
    .right-box-contain
    .note-box
    .product-qty
    .input-group
    .form-control,
.product-right-box
    .right-box-contain
    .note-box
    .product-qty
    .input-group
    .form-control {
    height: auto;
    background-color: transparent;
    border: none;
    padding: 0;
    text-align: center;
    font-size: 14px;
    color: rgba(var(--content-color), 1);
}
.product-section .right-box-contain .note-box .product-qty .qty-box,
.product-right-box .right-box-contain .note-box .product-qty .qty-box {
    margin-top: 10px;
    width: 100%;
    max-width: 250px;
}
.product-section
    .right-box-contain
    .note-box
    .product-qty
    .qty-box
    .input-group,
.product-right-box
    .right-box-contain
    .note-box
    .product-qty
    .qty-box
    .input-group {
    background-color: rgba(var(--light-gray), 1);
    border-radius: 7px;
    padding: 4px;
    text-align: center;
    z-index: 0;
}
.product-section
    .right-box-contain
    .note-box
    .product-qty
    .qty-box
    .input-group
    button,
.product-right-box
    .right-box-contain
    .note-box
    .product-qty
    .qty-box
    .input-group
    button {
    border: none;
    padding: 0;
    background-color: rgba(var(--white), 1);
    z-index: 0;
    border-radius: 4px !important;
    width: calc(26px + 9 * (100vw - 320px) / 1600);
    height: calc(26px + 9 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-section
    .right-box-contain
    .note-box
    .product-qty
    .qty-box
    .input-group
    button
    i,
.product-right-box
    .right-box-contain
    .note-box
    .product-qty
    .qty-box
    .input-group
    button
    i {
    font-size: 13px;
    color: var(--primary-color);
    margin-top: 1px;
}
.product-section
    .right-box-contain
    .note-box
    .product-qty
    .qty-box
    .input-group
    button:focus,
.product-right-box
    .right-box-contain
    .note-box
    .product-qty
    .qty-box
    .input-group
    button:focus {
    box-shadow: none;
}
.product-section
    .right-box-contain
    .note-box
    .product-qty
    .qty-box
    .input-group
    input,
.product-right-box
    .right-box-contain
    .note-box
    .product-qty
    .qty-box
    .input-group
    input {
    height: auto;
    background-color: transparent;
    border: none;
    padding: 0;
    text-align: center;
    font-size: 14px;
    color: rgba(var(--content-color), 1);
}
.product-section .right-box-contain .buy-now-button,
.product-right-box .right-box-contain .buy-now-button {
    margin-top: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(var(--border-color), 1);
}
.product-section .right-box-contain .buy-now-button button,
.product-right-box .right-box-contain .buy-now-button button {
    background-color: #ff7272;
}
.product-section .right-box-contain .buy-box,
.product-right-box .right-box-contain .buy-box {
    align-items: center;
    margin-top: 20px;
    border-bottom: 1px solid #ececec;
    padding-bottom: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
}
.product-section .right-box-contain .buy-box .team-box,
.product-right-box .right-box-contain .buy-box .team-box {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}
.product-section .right-box-contain .buy-box .team-box input,
.product-right-box .right-box-contain .buy-box .team-box input {
    margin-top: -7px;
    display: block;
}
.product-section .right-box-contain .buy-box .team-box .form-check-label span,
.product-right-box
    .right-box-contain
    .buy-box
    .team-box
    .form-check-label
    span {
    display: flex;
    align-items: center;
}
.product-section .right-box-contain .buy-box .team-box .form-check-label span a,
.product-right-box
    .right-box-contain
    .buy-box
    .team-box
    .form-check-label
    span
    a {
    text-decoration: underline;
    margin-left: 3px;
    color: rgba(var(--title-color), 1);
}
@media (max-width: 767.98px) {
    .product-section .right-box-contain .buy-box,
    .product-right-box .right-box-contain .buy-box {
        justify-content: center;
    }
}
.product-section .right-box-contain .buy-box a,
.product-right-box .right-box-contain .buy-box a {
    align-items: center;
    color: #777;
    display: flex;
    flex-wrap: wrap;
    gap: calc(5px + 3 * (100vw - 320px) / 1600);
}
.product-section .right-box-contain .buy-box a i,
.product-right-box .right-box-contain .buy-box a i {
    font-size: 17px;
    width: 17px;
    height: auto;
}
.product-section .right-box-contain .pickup-box,
.product-right-box .right-box-contain .pickup-box {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(var(--border-color), 1);
}
.product-section .right-box-contain .pickup-box .product-info,
.product-right-box .right-box-contain .pickup-box .product-info {
    margin-top: 20px;
}
.product-section
    .right-box-contain
    .pickup-box
    .product-info
    .product-info-list,
.product-right-box
    .right-box-contain
    .pickup-box
    .product-info
    .product-info-list {
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
}
@media (max-width: 480px) {
    .product-section
        .right-box-contain
        .pickup-box
        .product-info
        .product-info-list,
    .product-right-box
        .right-box-contain
        .pickup-box
        .product-info
        .product-info-list {
        column-count: 1;
        padding: 15px;
    }
}
.product-section
    .right-box-contain
    .pickup-box
    .product-info
    .product-info-list
    li,
.product-right-box
    .right-box-contain
    .pickup-box
    .product-info
    .product-info-list
    li {
    padding-left: 13px;
    width: 100%;
    font-size: calc(14px + 1 * (100vw - 320px) / 1600);
    position: relative;
    color: #777;
}
@media (max-width: 575.98px) {
    .product-section
        .right-box-contain
        .pickup-box
        .product-info
        .product-info-list
        li,
    .product-right-box
        .right-box-contain
        .pickup-box
        .product-info
        .product-info-list
        li {
        width: auto;
        margin-left: 18px;
    }
}
@media (max-width: 480px) {
    .product-section
        .right-box-contain
        .pickup-box
        .product-info
        .product-info-list
        li,
    .product-right-box
        .right-box-contain
        .pickup-box
        .product-info
        .product-info-list
        li {
        margin-left: unset;
        width: 100%;
        padding-left: unset;
    }
    .product-section
        .right-box-contain
        .pickup-box
        .product-info
        .product-info-list
        li::after,
    .product-right-box
        .right-box-contain
        .pickup-box
        .product-info
        .product-info-list
        li::after {
        content: none !important;
    }
}
.product-section
    .right-box-contain
    .pickup-box
    .product-info
    .product-info-list
    li::after,
.product-right-box
    .right-box-contain
    .pickup-box
    .product-info
    .product-info-list
    li::after {
    left: 0;
    background-color: rgba(var(--content-color), 1);
    border-radius: 100%;
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
}
.product-section
    .right-box-contain
    .pickup-box
    .product-info
    .product-info-list
    li
    a,
.product-right-box
    .right-box-contain
    .pickup-box
    .product-info
    .product-info-list
    li
    a {
    margin-left: 5px;
    color: rgba(var(--title-color), 1);
    font-weight: 500;
    display: inline-block;
}
.product-section
    .right-box-contain
    .pickup-box
    .product-info
    .product-info-list
    li
    a
    + a,
.product-right-box
    .right-box-contain
    .pickup-box
    .product-info
    .product-info-list
    li
    a
    + a {
    margin-left: 0;
}
.product-section .right-box-contain .pickup-box .pickup-icon i,
.product-right-box .right-box-contain .pickup-box .pickup-icon i {
    font-size: 20px;
    color: rgba(var(--primary-color), 1);
}
.product-section .right-box-contain .pickup-box .pickup-detail h4,
.product-right-box .right-box-contain .pickup-box .pickup-detail h4 {
    font-weight: 400;
    color: rgba(var(--content-color), 1);
    line-height: 1.7;
    margin: calc(14px + 2 * (100vw - 320px) / 1600) 0 0;
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
}
.product-section .right-box-contain .pickup-box .pickup-detail h6,
.product-right-box .right-box-contain .pickup-box .pickup-detail h6 {
    margin-top: 4px;
}
.product-section .right-box-contain .pickup-box .pickup-detail a,
.product-right-box .right-box-contain .pickup-box .pickup-detail a {
    margin-top: 0;
    color: rgba(var(--primary-color), 1);
    display: inline-block;
}
.product-section .right-box-contain .payment-option ul,
.product-right-box .right-box-contain .payment-option ul {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: calc(3px + 5 * (100vw - 320px) / 1600);
}
@media (max-width: 767.98px) {
    .product-section .right-box-contain .payment-option ul,
    .product-right-box .right-box-contain .payment-option ul {
        justify-content: center;
    }
}
.product-section .right-box-contain .payment-option ul li a i,
.product-right-box .right-box-contain .payment-option ul li a i {
    font-size: 19px;
    color: rgba(var(--content-color), 1);
}
.product-section .right-box-contain .social-option ul,
.product-right-box .right-box-contain .social-option ul {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: calc(8px + 12 * (100vw - 320px) / 1600);
}
@media (max-width: 767.98px) {
    .product-section .right-box-contain .social-option ul,
    .product-right-box .right-box-contain .social-option ul {
        justify-content: center;
    }
}
.product-section .right-box-contain .social-option ul li,
.product-right-box .right-box-contain .social-option ul li {
    transition: all 0.15s ease-in-out;
}
.product-section .right-box-contain .social-option ul li:hover,
.product-right-box .right-box-contain .social-option ul li:hover {
    transform: translateY(-6px);
}
.product-section .right-box-contain .social-option ul li:hover a,
.product-right-box .right-box-contain .social-option ul li:hover a {
    color: rgba(var(--primary-color), 1);
}
.product-section .right-box-contain .social-option ul li a,
.product-right-box .right-box-contain .social-option ul li a {
    font-size: 19px;
    color: rgba(var(--content-color), 1);
    transition: all 0.15s ease-in-out;
}
.product-section .right-box-contain .share-option,
.product-right-box .right-box-contain .share-option {
    padding-bottom: 20px;
}
.product-section .right-box-contain .share-option ul,
.product-right-box .right-box-contain .share-option ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.product-section .right-box-contain .share-option ul li,
.product-right-box .right-box-contain .share-option ul li {
    display: block;
}
.product-section .right-box-contain .share-option ul li a,
.product-right-box .right-box-contain .share-option ul li a {
    display: block;
    text-align: center;
    font-size: 17px;
    color: rgba(var(--content-color), 1);
}
.product-section .product-main .slider-image img,
.product-right-box .product-main .slider-image img {
    width: 100%;
}
.product-section .right-sidebar-box,
.product-right-box .right-sidebar-box {
    position: sticky;
    top: 100px;
}
.product-section .right-sidebar-box .banner-box,
.product-right-box .right-sidebar-box .banner-box {
    border-radius: 8px;
    display: block;
    margin-top: calc(15px + 25 * (100vw - 320px) / 1600);
}
.product-section .right-sidebar-box .banner-box img,
.product-right-box .right-sidebar-box .banner-box img {
    width: 100%;
    height: 100%;
}
.product-section .right-sidebar-box .product-offer-box,
.product-right-box .right-sidebar-box .product-offer-box {
    padding: 18px 27px;
    background-color: rgba(var(--primary-color2), 1);
    color: rgba(var(--white), 1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.product-section .right-sidebar-box .product-offer-box > div h3,
.product-right-box .right-sidebar-box .product-offer-box > div h3 {
    font-size: 27px;
    font-weight: 600;
}
.product-section .right-sidebar-box .product-offer-box > div h5,
.product-right-box .right-sidebar-box .product-offer-box > div h5 {
    color: rgba(var(--white), 0.7);
    font-weight: 400;
}
.product-section .right-sidebar-box .product-offer-box > div h5 span,
.product-right-box .right-sidebar-box .product-offer-box > div h5 span {
    color: rgba(var(--white), 1);
    font-weight: 500;
}
.product-section .right-sidebar-box .product-offer-box .offer-box,
.product-right-box .right-sidebar-box .product-offer-box .offer-box {
    background-color: rgba(var(--white), 0.3);
    padding: 13px 22px;
    text-transform: capitalize;
}
.product-section .right-sidebar-box .side-product-detail,
.product-right-box .right-sidebar-box .side-product-detail {
    padding: calc(18px + 8 * (100vw - 990px) / 930);
    border-radius: calc(6px + 2 * (100vw - 990px) / 930);
    background-color: rgba(var(--white), 1);
}
.product-section .right-sidebar-box .side-product-detail .side-title,
.product-right-box .right-sidebar-box .side-product-detail .side-title {
    margin-bottom: calc(12px + 4 * (100vw - 990px) / 930);
    padding-bottom: calc(6px + 5 * (100vw - 990px) / 930);
    border-bottom: 1px solid rgba(var(--content-color), 0.1);
}
.product-section .right-sidebar-box .side-product-detail .side-title h4,
.product-right-box .right-sidebar-box .side-product-detail .side-title h4 {
    font-size: calc(20px + 4 * (100vw - 990px) / 930);
    font-weight: 600;
}
.product-section .right-sidebar-box .side-product-detail .side-product-box,
.product-right-box .right-sidebar-box .side-product-detail .side-product-box {
    display: flex;
    align-items: center;
    gap: 15px;
}
.product-section
    .right-sidebar-box
    .side-product-detail
    .side-product-box
    .product-image,
.product-right-box
    .right-sidebar-box
    .side-product-detail
    .side-product-box
    .product-image {
    background-color: rgba(var(--base-gray), 1);
    padding: calc(8px + 2 * (100vw - 990px) / 930);
    border-radius: 4px;
    width: calc(78px + 12 * (100vw - 990px) / 930);
    height: calc(78px + 12 * (100vw - 990px) / 930);
}
.product-section
    .right-sidebar-box
    .side-product-detail
    .side-product-box
    .product-contain
    h5,
.product-right-box
    .right-sidebar-box
    .side-product-detail
    .side-product-box
    .product-contain
    h5 {
    color: rgba(var(--content-color), 0.7);
    margin-bottom: 6px;
}
.product-section
    .right-sidebar-box
    .side-product-detail
    .side-product-box
    .product-contain
    h4,
.product-right-box
    .right-sidebar-box
    .side-product-detail
    .side-product-box
    .product-contain
    h4 {
    font-weight: 600;
}
.product-section .right-sidebar-box .side-product-detail .qty-stock-box,
.product-right-box .right-sidebar-box .side-product-detail .qty-stock-box {
    margin-top: calc(12px + 6 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.product-section
    .right-sidebar-box
    .side-product-detail
    .qty-stock-box
    .qty-box,
.product-right-box
    .right-sidebar-box
    .side-product-detail
    .qty-stock-box
    .qty-box {
    display: flex;
    border-radius: 4px;
    align-items: center;
    padding: 6px;
    background-color: rgba(var(--base-gray), 1);
}
.product-section
    .right-sidebar-box
    .side-product-detail
    .qty-stock-box
    .qty-box
    .qty-btn,
.product-right-box
    .right-sidebar-box
    .side-product-detail
    .qty-stock-box
    .qty-box
    .qty-btn {
    padding: 0;
    border-radius: calc(2px + 2 * (100vw - 991px) / 929);
    background-color: rgba(var(--white), 1);
    color: rgba(var(--content-color), 1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(30px + 5 * (100vw - 991px) / 929);
    height: calc(30px + 5 * (100vw - 991px) / 929);
}
.product-section
    .right-sidebar-box
    .side-product-detail
    .qty-stock-box
    .qty-box
    .qty-btn:hover,
.product-right-box
    .right-sidebar-box
    .side-product-detail
    .qty-stock-box
    .qty-box
    .qty-btn:hover {
    background-color: rgba(var(--primary-color), 1);
    color: #fff;
}
.product-section
    .right-sidebar-box
    .side-product-detail
    .qty-stock-box
    .qty-box
    .qty-input,
.product-right-box
    .right-sidebar-box
    .side-product-detail
    .qty-stock-box
    .qty-box
    .qty-input {
    width: calc(45px + 15 * (100vw - 991px) / 929);
    line-height: 1;
    padding: 0;
    border: none;
    text-align: center;
    outline: unset;
    padding-top: 3px;
    color: rgba(var(--title-color), 1);
    background-color: transparent;
    font-size: calc(16px + 2 * (100vw - 991px) / 929);
}
.product-section
    .right-sidebar-box
    .side-product-detail
    .qty-stock-box
    .qty-box
    .qty-input[type="number"],
.product-right-box
    .right-sidebar-box
    .side-product-detail
    .qty-stock-box
    .qty-box
    .qty-input[type="number"] {
    appearance: textfield;
}
.product-section
    .right-sidebar-box
    .side-product-detail
    .qty-stock-box
    .qty-box
    .qty-input[type="number"]::-webkit-inner-spin-button,
.product-section
    .right-sidebar-box
    .side-product-detail
    .qty-stock-box
    .qty-box
    .qty-input[type="number"]::-webkit-outer-spin-button,
.product-right-box
    .right-sidebar-box
    .side-product-detail
    .qty-stock-box
    .qty-box
    .qty-input[type="number"]::-webkit-inner-spin-button,
.product-right-box
    .right-sidebar-box
    .side-product-detail
    .qty-stock-box
    .qty-box
    .qty-input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
}
.product-section
    .right-sidebar-box
    .side-product-detail
    .qty-stock-box
    .stock-box
    h5,
.product-right-box
    .right-sidebar-box
    .side-product-detail
    .qty-stock-box
    .stock-box
    h5 {
    font-size: calc(16px + 2 * (100vw - 320px) / 1600);
    color: rgba(var(--content-color), 0.8);
    text-transform: capitalize;
    font-weight: 400;
}
.product-section
    .right-sidebar-box
    .side-product-detail
    .qty-stock-box
    .stock-box
    h5
    span,
.product-right-box
    .right-sidebar-box
    .side-product-detail
    .qty-stock-box
    .stock-box
    h5
    span {
    font-weight: 500;
    color: rgba(var(--title-color), 1);
}
.product-section .right-sidebar-box .side-product-detail .total-price-box,
.product-right-box .right-sidebar-box .side-product-detail .total-price-box {
    margin-top: calc(14px + 8 * (100vw - 990px) / 930);
    padding-top: calc(14px + 8 * (100vw - 990px) / 930);
    border-top: 1px solid rgba(var(--content-color), 0.1);
}
.product-section .right-sidebar-box .side-product-detail .total-price-box h4,
.product-right-box .right-sidebar-box .side-product-detail .total-price-box h4 {
    font-weight: 600;
    font-size: calc(20px + 5 * (100vw - 990px) / 930);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.product-section
    .right-sidebar-box
    .side-product-detail
    .total-price-box
    h4
    span,
.product-right-box
    .right-sidebar-box
    .side-product-detail
    .total-price-box
    h4
    span {
    color: rgba(var(--content-color), 1);
    font-size: calc(15px + 1 * (100vw - 990px) / 930);
    font-weight: 500;
}
.product-section .right-sidebar-box .side-product-detail .button-group,
.product-right-box .right-sidebar-box .side-product-detail .button-group {
    margin-top: calc(16px + 11 * (100vw - 990px) / 930);
    display: grid;
    gap: calc(10px + 2 * (100vw - 990px) / 930);
    margin-bottom: calc(14px + 8 * (100vw - 990px) / 930);
    padding-bottom: calc(14px + 8 * (100vw - 990px) / 930);
    border-bottom: 1px solid rgba(var(--content-color), 0.1);
}
.product-section .right-sidebar-box .side-product-detail .button-group button,
.product-right-box
    .right-sidebar-box
    .side-product-detail
    .button-group
    button {
    border-radius: 6px;
    font-weight: 500;
    gap: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-section .right-sidebar-box .side-product-detail .button-group button i,
.product-right-box
    .right-sidebar-box
    .side-product-detail
    .button-group
    button
    i {
    line-height: 1;
    font-weight: normal;
    font-size: 22px;
    margin-top: -4px;
}
.product-section
    .right-sidebar-box
    .side-product-detail
    .button-group
    button.fw-500,
.product-right-box
    .right-sidebar-box
    .side-product-detail
    .button-group
    button.fw-500 {
    font-weight: 500;
}
.product-section
    .right-sidebar-box
    .side-product-detail
    .button-group
    button.buy-btn,
.product-right-box
    .right-sidebar-box
    .side-product-detail
    .button-group
    button.buy-btn {
    animation: shake 150ms 2 linear;
}
.product-section .right-sidebar-box .side-product-detail .seller-product,
.product-right-box .right-sidebar-box .side-product-detail .seller-product {
    gap: 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.product-section .right-sidebar-box .side-product-detail .seller-product h5,
.product-right-box .right-sidebar-box .side-product-detail .seller-product h5 {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: calc(16px + 2 * (100vw - 990px) / 930);
}
.product-section .right-sidebar-box .side-product-detail .seller-product h5 a,
.product-right-box
    .right-sidebar-box
    .side-product-detail
    .seller-product
    h5
    a {
    color: rgba(var(--content-color), 1);
    display: flex;
    align-items: center;
    gap: 4px;
}
.product-section .right-sidebar-box .side-product-detail .seller-product h5 i,
.product-right-box
    .right-sidebar-box
    .side-product-detail
    .seller-product
    h5
    i {
    line-height: 1;
    font-size: calc(18px + 2 * (100vw - 990px) / 930);
    font-weight: normal;
}

.product-slider-section .product-left-box .product-original-box .slider-image {
    background-color: rgba(var(--white), 1);
}

.sticky-bottom-cart {
    position: sticky;
    bottom: -50px;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    z-index: 3;
    background-color: rgba(var(--white), 1);
    padding: calc(11px + -5 * (100vw - 320px) / 1600) 0;
    box-shadow: 0 0 3px 1px rgba(var(--title-color), 0.06);
    transition: all 0.15s ease-in-out;
}
.sticky-bottom-cart .cart-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 575.98px) {
    .sticky-bottom-cart .cart-content {
        flex-direction: column;
        gap: calc(9px + 6 * (100vw - 320px) / 256);
    }
}
.sticky-bottom-cart .product-image {
    display: flex;
    align-items: center;
}
@media (max-width: 575.98px) {
    .sticky-bottom-cart .product-image {
        width: 100%;
    }
}
.sticky-bottom-cart .product-image img {
    object-fit: contain;
    width: calc(50px + 10 * (100vw - 320px) / 1600);
    height: calc(62px + 8 * (100vw - 320px) / 1600);
}
.sticky-bottom-cart .product-image .content {
    margin-left: calc(8px + 4 * (100vw - 320px) / 1600);
    color: rgba(var(--title-color), 1);
    margin-top: 0;
}
[dir="rtl"] .sticky-bottom-cart .product-image .content {
    margin-left: unset;
    margin-right: calc(8px + 4 * (100vw - 320px) / 1600);
}
@media (max-width: 991.98px) {
    .sticky-bottom-cart .product-image .content {
        display: none;
    }
}
@media (max-width: 767.98px) {
    .sticky-bottom-cart .product-image .content {
        display: block;
        width: calc(100% - 12px);
    }
}
.sticky-bottom-cart .product-image .content h5,
.sticky-bottom-cart .product-image .content h6 {
    margin-bottom: 0;
}
.sticky-bottom-cart .product-image .content h4 {
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    font-weight: 500;
    text-transform: capitalize;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
.sticky-bottom-cart .product-image .content h5 {
    font-size: calc(13px + 1 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
    font-size: 15px;
    margin-top: 6px;
}
.sticky-bottom-cart .product-image .content h5 del {
    margin-left: calc(4px + 3 * (100vw - 320px) / 1600);
    color: rgba(var(--content-color), 1);
}
[dir="rtl"] .sticky-bottom-cart .product-image .content h5 del {
    margin-left: unset;
    margin-right: calc(4px + 3 * (100vw - 320px) / 1600);
}
.sticky-bottom-cart .product-image .content h5 span {
    color: rgba(var(--primary-color), 1);
    margin-left: 5px;
}
[dir="rtl"] .sticky-bottom-cart .product-image .content h5 span {
    margin-left: unset;
    margin-right: 5px;
}
.sticky-bottom-cart .selection-section {
    display: flex;
    align-items: center;
    margin: 0 calc(9px + 16 * (100vw - 576px) / 1344) 0 auto;
}
[dir="rtl"] .sticky-bottom-cart .selection-section {
    margin: 0 auto 0 calc(9px + 16 * (100vw - 576px) / 1344);
}
@media (max-width: 991.98px) {
    .sticky-bottom-cart .selection-section {
        margin-inline: auto;
    }
    [dir="rtl"] .sticky-bottom-cart .selection-section {
        margin-inline: auto;
    }
}
@media (max-width: 767.98px) {
    .sticky-bottom-cart .selection-section {
        display: none;
    }
}
.sticky-bottom-cart .selection-section .product-qty {
    height: calc(42px + 9 * (100vw - 320px) / 1600);
}
.sticky-bottom-cart .selection-section .product-qty .qty-container {
    max-width: calc(145px + 15 * (100vw - 576px) / 1344);
    flex-wrap: nowrap;
    display: flex;
    border-radius: 4px;
    align-items: center;
    padding: 6px;
    background-color: rgba(var(--base-gray), 1);
}
.sticky-bottom-cart .selection-section .product-qty .qty-container button {
    border: unset;
    background-color: rgba(var(--white), 1);
    padding: 0;
    border-radius: calc(3px + 2 * (100vw - 320px) / 1600) !important;
    color: rgba(var(--title-color), 1);
    font-size: calc(15px + 2 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(30px + 5 * (100vw - 320px) / 1600);
    height: 100%;
}
.sticky-bottom-cart .selection-section .product-qty .qty-container button i {
    line-height: 1;
}
.sticky-bottom-cart
    .selection-section
    .product-qty
    .qty-container
    .form-control {
    color: rgba(var(--title-color), 1);
    width: calc(
        100% - (30px + 5 * (100vw - 320px) / 1600) -
            (30px + 5 * (100vw - 320px) / 1600)
    );
    padding: 0;
    text-align: center;
    border: unset;
}
.sticky-bottom-cart .selection-section .form-control {
    background-color: transparent;
}
.sticky-bottom-cart .selection-section .form-control:focus {
    box-shadow: none;
}
.sticky-bottom-cart .selection-section .form-group {
    margin-inline: 10px;
    height: calc(42px + 9 * (100vw - 320px) / 1600);
    border-radius: 0;
}
.sticky-bottom-cart .selection-section .form-group .form-control {
    color: rgba(var(--title-color), 1);
    background-color: rgba(var(--base-gray), 1);
    padding: 7px calc(12px + 7 * (100vw - 320px) / 1600) 4px;
    height: 100%;
    padding-right: calc(26px + 13 * (100vw - 320px) / 1600);
    border-radius: 4px;
    background-position: right calc(8px + 4 * (100vw - 320px) / 1600) center;
    border: 1px solid rgba(var(--content-color), 0.1);
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
}
[dir="rtl"] .sticky-bottom-cart .selection-section .form-group .form-control {
    background-position: left calc(8px + 4 * (100vw - 320px) / 1600) center;
    padding-right: calc(12px + 7 * (100vw - 320px) / 1600);
    padding-left: calc(26px + 13 * (100vw - 320px) / 1600);
}
@media (max-width: 575.98px) {
    .sticky-bottom-cart .add-btn {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
.sticky-bottom-cart .add-btn a {
    padding: 12px calc(12px + 6 * (100vw - 320px) / 1600) 8px;
    font-size: calc(16px + 2 * (100vw - 320px) / 1600);
    border-radius: 4px;
}
@media (max-width: 575.98px) {
    .sticky-bottom-cart .add-btn a {
        padding-block: calc(8px + 2 * (100vw - 320px) / 256);
        width: 100%;
    }
}
@media (max-width: 575.98px) {
    .sticky-bottom-cart .add-btn a + a {
        margin-left: 8px;
    }
}
.sticky-bottom-cart .add-btn a i {
    margin-right: 7px;
}

.stickyCart .sticky-bottom-cart {
    bottom: 0;
    visibility: visible;
    opacity: 1;
}
@media (max-width: 575.98px) {
    .stickyCart .sticky-bottom-cart {
        bottom: 66px;
    }
}
.stickyCart .tap-top-button.show {
    bottom: 95px;
}
@media (max-width: 575.98px) {
    .stickyCart .tap-top-button.show {
        bottom: calc(208px + 10 * (100vw - 320px) / 448);
    }
}
.stickyCart .recently-product-box.active {
    bottom: 100px;
    opacity: 1;
    visibility: visible;
}
@media (max-width: 630.98px) {
    .stickyCart .recently-product-box.active {
        bottom: 80px;
    }
}
@media (max-width: 575.98px) {
    .stickyCart .recently-product-box.active {
        bottom: calc(210px + 12 * (100vw - 320px) / 256);
    }
}

.product-frequently-section .frequently-box {
    display: flex;
    align-items: center;
    gap: calc(18px + 7 * (100vw - 320px) / 1600);
    background-color: rgba(var(--white), 1);
    padding: calc(15px + 5 * (100vw - 320px) / 1600)
        calc(15px + 11 * (100vw - 320px) / 1600);
    border-radius: calc(4px + 2 * (100vw - 320px) / 1600);
}
@media (max-width: 1000.98px) {
    .product-frequently-section .frequently-box {
        display: grid;
    }
}
.product-frequently-section .frequently-box .frequently-image {
    display: flex;
    align-items: center;
    gap: 9px;
    overflow: auto;
}
.product-frequently-section .frequently-box .frequently-image i {
    font-size: calc(15px + 3 * (100vw - 320px) / 1600);
}
.product-frequently-section .frequently-box .frequently-image > li {
    display: flex;
    align-items: center;
    gap: 9px;
    position: relative;
}
.product-frequently-section
    .frequently-box
    .frequently-image
    > li
    .product-box-4 {
    background-color: rgba(var(--light-gray), 1);
    width: calc(176px + 74 * (100vw - 320px) / 1600);
}
.product-frequently-section
    .frequently-box
    .frequently-image
    > li
    .product-box-4
    .product-image {
    aspect-ratio: unset;
}
.product-frequently-section
    .frequently-box
    .frequently-image
    > li
    .product-box-4
    .product-image
    img {
    aspect-ratio: 13/10;
}
.product-frequently-section .frequently-box .frequently-image > li .image-box {
    padding: 22px;
    background-color: rgba(var(--base-gray), 1);
    height: 180px;
}
.product-frequently-section .frequently-box .frequently-detail {
    display: grid;
    gap: calc(5px + 3 * (100vw - 320px) / 1600);
}
.product-frequently-section .frequently-box .frequently-detail .form-check {
    min-height: unset;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: calc(10px + 3 * (100vw - 320px) / 1600);
}
.product-frequently-section
    .frequently-box
    .frequently-detail
    .form-check
    .form-check-input {
    cursor: pointer;
    background-color: transparent;
    border: none;
    float: unset;
    margin: 0;
    margin-top: -5px;
    position: relative;
    width: 20px;
    height: 20px;
}
.product-frequently-section
    .frequently-box
    .frequently-detail
    .form-check
    .form-check-input:checked::after {
    transform: rotate(40deg) scale(1);
}
.product-frequently-section
    .frequently-box
    .frequently-detail
    .form-check
    .form-check-input:checked::before {
    border-color: rgba(var(--primary-color), 1);
}
.product-frequently-section
    .frequently-box
    .frequently-detail
    .form-check
    .form-check-input::before {
    background-color: rgba(var(--white), 1);
    border: 1px solid rgba(var(--border-color), 1);
    transition: all 0.15s ease-in-out;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}
.product-frequently-section
    .frequently-box
    .frequently-detail
    .form-check
    .form-check-input::after {
    top: 3px;
    left: 7px;
    transform: rotate(40deg) scale(0);
    border: 2px solid rgba(var(--primary-color), 1);
    border-top: unset;
    border-left: unset;
    transition: all 0.15s ease-in-out;
    content: "";
    position: absolute;
    width: 6px;
    height: 10px;
}
.product-frequently-section
    .frequently-box
    .frequently-detail
    .form-check
    .form-check-label {
    cursor: pointer;
    gap: 6px;
    display: flex;
    align-items: center;
    font-size: calc(15px + 3 * (100vw - 320px) / 1600);
    font-weight: 400;
    color: rgba(var(--content-color), 1);
    transition: all 0.15s ease-in-out;
    line-height: 1.4;
}
.product-frequently-section
    .frequently-box
    .frequently-detail
    .form-check
    .form-check-label
    span {
    color: rgba(var(--title-color), 1);
    transition: all 0.15s ease-in-out;
    font-weight: 500;
}
.product-frequently-section .frequently-box .frequently-detail button {
    width: fit-content;
    padding: calc(8px + 2 * (100vw - 320px) / 1600)
        calc(18px + 5 * (100vw - 320px) / 1600)
        calc(4px + 2 * (100vw - 320px) / 1600);
    border-radius: 5px;
}
.product-frequently-section
    .frequently-box
    .frequently-detail
    .info-price-parent {
    margin-block: 5px;
}
.product-frequently-section
    .frequently-box
    .frequently-detail
    .info-price-parent
    h4 {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: calc(16px + 4 * (100vw - 320px) / 1600);
}
.product-frequently-section
    .frequently-box
    .frequently-detail
    .info-price-parent
    h3 {
    margin-top: calc(3px + 2 * (100vw - 320px) / 1600);
    font-size: calc(18px + 4 * (100vw - 320px) / 1600);
    font-weight: 500;
    color: rgba(var(--primary-color), 1);
}

.left-card {
    padding: calc(12px + 8 * (100vw - 320px) / 1600);
    background-color: rgba(var(--white), 1);
    border-radius: 8px;
}
.left-card .border-left-cls {
    border-left: 1px dashed rgba(var(--border-color), 1);
}
[dir="rtl"] .left-card .border-left-cls {
    border-left: unset;
    border-right: 1px dashed rgba(var(--border-color), 1);
}
@media (max-width: 1399.98px) {
    .left-card .border-left-cls {
        border: none;
    }
    [dir="rtl"] .left-card .border-left-cls {
        border: none;
    }
}

.zoomable {
    position: relative;
    overflow: hidden;
}

.zoomable__img {
    transform-origin: var(--zoom-pos-x, 0%) var(--zoom-pos-y, 0%);
    transition: transform 0.15s linear;
}

.zoomable--zoomed .zoomable__img {
    cursor: zoom-in;
    transform: scale(var(--zoom, 2));
}

.lg-container .lg-prev {
    margin: 0;
    transform: translateY(-50%);
}
.lg-container .lg-prev::after {
    content: "\ea60";
    font-family: remixicon;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
}
.lg-container .lg-prev::before {
    content: unset;
}
.lg-container .lg-next {
    transform: translateY(-50%);
    margin: 0;
}
.lg-container .lg-next::after {
    content: "\ea6c";
    font-family: remixicon;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
}
.lg-container .lg-next::before {
    content: unset;
}
.lg-container .lg-outer .lg-thumb {
    padding: 10px 0 13px;
    gap: 15px;
    flex-wrap: nowrap;
    width: 100% !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lg-container .lg-outer .lg-thumb-item {
    border: 1px solid rgba(var(--content-color), 0.1);
    margin: 0 !important;
}
.lg-container .lg-outer .lg-thumb-item.active,
.lg-container .lg-outer .lg-thumb-item:hover {
    border-color: rgba(var(--primary-color), 1);
}
.lg-container .lg-outer .lg-thumb-item img {
    object-fit: contain;
}

/* Mixin Files */
/**=====================
    4.6 Shop Page CSS
==========================**/
.custom-padding {
    padding-right: 10px;
}
[dir="rtl"] .custom-padding {
    padding-right: unset;
    padding-left: 10px;
}

.col-custom-3 {
    width: 22%;
}
@media (max-width: 1399.98px) {
    .col-custom-3 {
        width: 25%;
    }
}
@media (max-width: 1199.98px) {
    .col-custom-3 {
        width: 30%;
    }
}
@media (max-width: 991.98px) {
    .col-custom-3 {
        width: 0;
    }
}

.col-custom-9 {
    width: 78%;
}
@media (max-width: 1399.98px) {
    .col-custom-9 {
        width: 75%;
    }
}
@media (max-width: 1199.98px) {
    .col-custom-9 {
        width: 70%;
    }
}
@media (max-width: 991.98px) {
    .col-custom-9 {
        width: 100%;
    }
}

.custom-height {
    max-height: 190px;
    overflow-y: auto;
    height: 100%;
}
.custom-height::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: rgba(var(--base-gray), 0.14);
}
.custom-height::-webkit-scrollbar {
    width: 4px;
    background-color: #f5f5f5;
    border-radius: 50px;
}
body.dark .custom-height::-webkit-scrollbar {
    background-color: #1a232e;
}
.custom-height::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgba(85, 85, 85, 0.5);
}
body.dark .custom-height::-webkit-scrollbar-thumb {
    background-color: #374658;
}

.category-title h3 {
    display: inline-block;
    padding-bottom: 4px;
    margin-bottom: 18px;
    font-weight: 600;
    font-size: calc(16px + 2 * (100vw - 320px) / 1600);
    color: rgba(var(--primary-color), 1);
}

.color-box-list {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: calc(6px + 3 * (100vw - 320px) / 1600);
}
.color-box-list li .btn {
    position: relative;
    display: block;
    border-radius: 100%;
    padding: 0;
    width: calc(26px + 4 * (100vw - 320px) / 1600);
    height: calc(26px + 4 * (100vw - 320px) / 1600);
}
.color-box-list li .btn.active::after {
    opacity: 1;
    width: calc(100% - 3px);
    height: calc(100% - 3px);
}
.color-box-list li .btn::after {
    border-radius: 100%;
    border: 2px solid rgba(var(--white), 1);
    opacity: 0;
    transition: all 0.15s ease-in-out;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}
.color-box-list li .btn.color-1 {
    background-color: #ebdfd1;
}
.color-box-list li .btn.color-2 {
    background-color: #ddebcf;
}
.color-box-list li .btn.color-3 {
    background-color: #e7c6bc;
}
.color-box-list li .btn.color-4 {
    background-color: #d4cfb9;
}
.color-box-list li .btn.color-5 {
    background-color: #e7c6bc;
}
.color-box-list li .btn.color-6 {
    background-color: #dfdfde;
}
.color-box-list li .btn.color-7 {
    background-color: #ced1e2;
}
.color-box-list li .btn.color-8 {
    background-color: #8c9dc0;
}

.category-list {
    display: flex;
    flex-wrap: wrap;
    gap: calc(6px + 6 * (100vw - 320px) / 1600);
}
.category-list li {
    display: block;
    width: 100%;
}
.category-list li .category-list-box {
    display: flex;
    align-items: center;
    gap: calc(9px + 2 * (100vw - 320px) / 1600);
    min-height: unset;
    padding: 0;
    margin: 0;
}
.category-list li .category-list-box input {
    margin: 0;
    width: 17px;
    height: 17px;
}
.category-list li .category-list-box input:checked::after {
    border-color: rgba(var(--primary-color), 1);
}
.category-list li .category-list-box input:checked ~ .form-check-label .name {
    color: rgba(var(--primary-color), 1);
}
.category-list li .category-list-box input:checked ~ .form-check-label .number,
.category-list
    li
    .category-list-box
    input:checked
    ~ .form-check-label
    .text-content {
    background-color: rgba(var(--primary-color), 0.1);
    color: rgba(var(--primary-color), 1);
}
.category-list li .category-list-box .form-check-label {
    cursor: pointer;
    width: calc(100% - 17px - 11px);
    line-height: 1;
    transition: all 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.category-list li .category-list-box .form-check-label .name {
    font-size: calc(15px + 1 * (100vw - 320px) / 1600);
    text-transform: capitalize;
    color: rgba(var(--content-color), 1);
    font-weight: 400;
    padding-top: 3px;
    transition: all 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
.category-list li .category-list-box .form-check-label .number {
    color: rgba(var(--content-color), 1);
    font-weight: 400;
    background-color: rgba(var(--light-gray), 1);
    font-size: 12px;
    padding: 5px 5px 3px;
    line-height: 1;
    border-radius: 2px;
    margin-top: 3px;
    transition: all 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
}
.category-list li .category-list-box .form-check-label .text-content {
    color: rgba(var(--content-color), 1);
    font-weight: 400;
    background-color: rgba(var(--light-gray), 1);
    font-size: 12px;
    padding: 3px 5px;
    transition: all 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    line-height: 1;
    border-radius: 2px;
}
.category-list li .category-list-box .rating li i {
    font-size: calc(15px + 2 * (100vw - 320px) / 1600);
}

.offcanvas-button {
    margin-bottom: 14px;
}
.offcanvas-button button {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    border: none;
    gap: calc(5px + 4 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
    line-height: 1;
    position: relative;
    padding: calc(12px + 1 * (100vw - 320px) / 1600) 11px
        calc(8px + 2 * (100vw - 320px) / 1600);
    border-radius: calc(5px + 1 * (100vw - 320px) / 1600);
    background-color: rgba(var(--primary-color), 1);
}
.offcanvas-button button i {
    font-weight: normal;
    margin-top: -5px;
}
.offcanvas-button button:hover,
.offcanvas-button button:first-child:active {
    color: #fff;
    background-color: rgba(var(--primary-color), 1);
}

.filter-category-2 {
    background-color: rgba(var(--white), 1);
    border-radius: 5px;
}
.filter-category-2 .filter-title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
    padding: 17px 21px 14px;
    border-bottom: 1px solid rgba(var(--border-color), 1);
}
@media (max-width: 991.98px) {
    .filter-category-2 .filter-title {
        padding: 0 0 14px;
    }
}
.filter-category-2 .filter-title h2 {
    font-size: 18px;
    font-weight: 500;
    color: rgba(var(--title-color), 1);
}
.filter-category-2 .filter-title .btn {
    display: block;
    color: rgba(var(--danger-color), 1);
    padding: 0;
    font-size: 14px;
    text-decoration: underline;
}
.filter-category-2 ul {
    padding-top: 15px;
    border-top: 1px solid rgba(var(--border-color), 1);
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}
.filter-category-2 ul li {
    padding: calc(5px + 4 * (100vw - 320px) / 1600)
        calc(5px + 6 * (100vw - 320px) / 1600);
    background-color: rgba(var(--base-gray), 1);
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 6px;
}
.filter-category-2 ul li:after {
    color: rgba(var(--content-color), 1);
    cursor: pointer;
    line-height: 1;
    margin-top: -2px;
    content: "\eb99";
    position: relative;
    font-family: remixicon;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
}
.filter-category-2 ul li a {
    color: rgba(var(--content-color), 1);
}

.left-box {
    position: sticky;
    top: 94px;
}
@media (max-width: 991.98px) {
    .left-box {
        border-right: unset;
        position: fixed;
        top: 0;
        left: calc(-330px + -50 * (100vw - 320px) / 672);
        background-color: rgba(var(--white), 1);
        z-index: 1041;
        overflow: hidden auto;
        transition: all 0.3s ease-in-out;
        width: calc(310px + 50 * (100vw - 320px) / 672);
        height: 100%;
    }
    [dir="rtl"] .left-box {
        right: -350px;
        left: unset;
    }
}
.left-box.right-box {
    border-right: unset;
    border-left: 1px solid rgba(var(--content-color), 0.3);
}
@media (max-width: 991.98px) {
    .left-box.right-box {
        border-left: unset;
        left: unset;
        right: -350px;
    }
}
.left-box.right-box.show {
    left: unset;
    right: 0;
}
[dir="rtl"] .left-box.right-box.show {
    right: 0;
}
.left-box.show {
    left: 0;
}
[dir="rtl"] .left-box.show {
    right: unset;
    right: 0;
}
@media (max-width: 991.98px) {
    .left-box .shop-left-sidebar {
        padding: calc(16px + 10 * (100vw - 320px) / 1600);
    }
}
.left-box .shop-left-sidebar .filter-category-2 {
    padding: 20px;
    margin-bottom: 20px;
}
@media (max-width: 991.98px) {
    .left-box .shop-left-sidebar .filter-category-2 {
        padding: 0;
    }
}
.left-box .shop-left-sidebar .filter-category-2 .filter-title {
    padding: 0 0 calc(11px + 4 * (100vw - 320px) / 1600) 0;
}
.left-box .shop-left-sidebar .filter-category-2 .filter-title a {
    color: rgba(var(--danger-color), 1);
    text-decoration: underline;
}
.left-box .shop-left-sidebar .filter-category-2 ul {
    border-top: none;
    padding: 0;
    margin-top: calc(12px + 8 * (100vw - 320px) / 1600);
}
.left-box .shop-left-sidebar.shop-right-sidebar {
    padding-left: calc(16px + 10 * (100vw - 320px) / 1600);
    padding-right: unset;
}
@media (max-width: 991.98px) {
    .left-box .shop-left-sidebar.shop-right-sidebar {
        padding: calc(16px + 10 * (100vw - 320px) / 1600);
    }
}
.left-box .shop-left-sidebar.shop-right-sidebar .back-button h3 i {
    margin-right: auto;
    margin-left: 0;
}
.left-box .shop-left-sidebar .back-button {
    display: none;
}
@media (max-width: 991.98px) {
    .left-box .shop-left-sidebar .back-button {
        position: sticky;
        z-index: 2;
        top: 0;
        text-align: unset;
        display: block;
        margin-bottom: 26px;
        background-color: rgba(var(--base-gray), 1);
        margin-top: calc(-16px + -10 * (100vw - 320px) / 880);
        width: calc(
            100% + 16px + 10 * (100vw - 320px) / 880 + 16px + 10 *
                (100vw - 320px) / 880
        );
        margin-left: calc(-16px + -10 * (100vw - 320px) / 880);
        padding: 15px 15px 11px;
    }
    [dir="rtl"] .left-box .shop-left-sidebar .back-button {
        margin-left: unset;
        margin-right: calc(-16px + -10 * (100vw - 320px) / 880);
    }
}
.left-box .shop-left-sidebar .back-button h3 {
    display: flex;
    align-items: center;
    font-weight: 600;
}
.left-box .shop-left-sidebar .back-button h3 i {
    margin-right: 10px;
}
.left-box .shop-left-sidebar .search-box {
    position: relative;
    margin-bottom: 20px;
}
.left-box .shop-left-sidebar .search-box .search-button {
    position: absolute;
    right: 0;
    border-left: 1px solid rgba(var(--border-color), 1);
    font-size: 15px;
    padding: 0 10px;
    height: 60%;
    display: flex;
    align-items: center;
    color: rgba(var(--content-color), 1);
    border-radius: 0;
    top: 50%;
    transform: translateY(-50%);
}
.left-box .shop-left-sidebar .search-box .form-control {
    padding: 11px 46px 11px 11px;
    border: 1px solid rgba(var(--border-color), 1);
    border-radius: 6px;
    color: rgba(var(--title-color), 1);
    background-color: rgba(var(--white), 1);
}
.left-box .shop-left-sidebar .search-box .form-control::placeholder {
    color: rgba(var(--content-color), 1);
}
.left-box .shop-left-sidebar .custom-accordion-2 {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}
@media (max-width: 991.98px) {
    .left-box .shop-left-sidebar .custom-accordion-2 {
        gap: 0;
    }
}
.left-box .shop-left-sidebar .custom-accordion-2 .accordion-item {
    background-color: rgba(var(--white), 1);
    border: none;
    width: 100%;
    border-radius: 6px;
    padding: 20px;
}
.left-box
    .shop-left-sidebar
    .custom-accordion-2
    .accordion-item:has(.accordion-collapse.collapse:not(.show))
    .accordion-header {
    padding-bottom: 0;
}
@media (max-width: 991.98px) {
    .left-box .shop-left-sidebar .custom-accordion-2 .accordion-item {
        padding: 0;
        border-radius: 0;
    }
    .left-box
        .shop-left-sidebar
        .custom-accordion-2
        .accordion-item
        + .accordion-item {
        margin-top: 14px;
        padding-top: 14px;
        border-top: 1px solid rgba(var(--border-color), 1);
    }
}
.left-box
    .shop-left-sidebar
    .custom-accordion-2
    .accordion-item
    .accordion-header {
    padding-bottom: calc(6px + 9 * (100vw - 320px) / 1600);
    transition: padding-bottom 0.35s ease;
}
.left-box
    .shop-left-sidebar
    .custom-accordion-2
    .accordion-item
    .accordion-header
    .accordion-button {
    font-size: calc(16px + 2 * (100vw - 320px) / 1600);
    color: rgba(var(--title-color), 1);
    padding: 0;
    font-weight: 500;
    margin: 0;
    background-color: transparent;
    justify-content: space-between;
}
.left-box
    .shop-left-sidebar
    .custom-accordion-2
    .accordion-item
    .accordion-header
    .accordion-button.collapsed::before {
    content: "\ea13";
    transform: rotate(180deg);
}
.left-box
    .shop-left-sidebar
    .custom-accordion-2
    .accordion-item
    .accordion-header
    .accordion-button:focus {
    border-color: unset;
    box-shadow: none;
}
.left-box
    .shop-left-sidebar
    .custom-accordion-2
    .accordion-item
    .accordion-header
    .accordion-button::after {
    content: none;
}
.left-box
    .shop-left-sidebar
    .custom-accordion-2
    .accordion-item
    .accordion-header
    .accordion-button::before {
    order: 1;
    inset: unset;
    background-color: rgba(var(--base-gray), 1);
    font-size: calc(14px + 1 * (100vw - 320px) / 1600);
    border-radius: 100%;
    transition: all 0.3s ease-in-out;
    content: "\f1af";
    position: relative;
    font-family: remixicon;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    width: calc(22px + 4 * (100vw - 320px) / 1600);
    height: calc(22px + 4 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
    justify-content: center;
}
.left-box
    .shop-left-sidebar
    .custom-accordion-2
    .accordion-item
    .accordion-header
    .accordion-button:not(.collapsed) {
    color: rgba(var(--title-color), 1);
    background-color: transparent;
    box-shadow: none;
}
.left-box
    .shop-left-sidebar
    .custom-accordion-2
    .accordion-item
    .accordion-collapse {
    border-top: 1px solid rgba(var(--border-color), 1);
}
.left-box
    .shop-left-sidebar
    .custom-accordion-2
    .accordion-item
    .accordion-collapse
    .accordion-body {
    padding: calc(12px + 8 * (100vw - 320px) / 1600) 0 0;
}
.left-box
    .shop-left-sidebar
    .custom-accordion-2
    .accordion-item
    .price-range-slider
    .price-values {
    display: flex;
    margin-top: calc(16px + 4 * (100vw - 320px) / 1600);
}
.left-box
    .shop-left-sidebar
    .custom-accordion-2
    .accordion-item
    .price-range-slider
    .price-values
    span {
    color: rgba(var(--title-color), 1);
    width: 100%;
    font-weight: 500;
    font-size: calc(15px + 2 * (100vw - 320px) / 1600);
    text-align: center;
    border: none;
    border-bottom: 1px solid rgba(var(--border-color), 1);
    background-color: transparent;
    outline: none;
}
.left-box
    .shop-left-sidebar
    .custom-accordion-2
    .accordion-item
    .price-range-slider
    .price-values
    span.dash {
    width: 70px;
    border: none;
}
.left-box
    .shop-left-sidebar
    .custom-accordion-2
    .accordion-item
    .price-range-slider
    .range-slider {
    position: relative;
    height: calc(3px + 2 * (100vw - 320px) / 1600);
    background: rgba(var(--base-gray), 1);
    border-radius: 5px;
}
.left-box
    .shop-left-sidebar
    .custom-accordion-2
    .accordion-item
    .price-range-slider
    .range-slider
    input {
    position: absolute;
    top: -6px;
    background: none;
    pointer-events: none;
    appearance: none;
    width: 100%;
    height: calc(3px + 2 * (100vw - 320px) / 1600);
}
.left-box
    .shop-left-sidebar
    .custom-accordion-2
    .accordion-item
    .price-range-slider
    .range-slider
    input::-webkit-slider-thumb {
    appearance: none;
    pointer-events: all;
    margin-top: 11px;
    border-radius: 100%;
    background: rgba(var(--dark-blue), 1);
    cursor: pointer;
    width: calc(12px + 4 * (100vw - 320px) / 1600);
    height: calc(12px + 4 * (100vw - 320px) / 1600);
}
body.dark
    .left-box
    .shop-left-sidebar
    .custom-accordion-2
    .accordion-item
    .price-range-slider
    .range-slider
    input::-webkit-slider-thumb {
    background: #fff;
}
.left-box
    .shop-left-sidebar
    .custom-accordion-2
    .accordion-item
    .price-range-slider
    .range-fill {
    position: absolute;
    height: calc(3px + 2 * (100vw - 320px) / 1600);
    background: rgba(var(--dark-blue), 1);
    border-radius: 5px;
    top: 0;
    left: 0;
    right: 0;
}
body.dark
    .left-box
    .shop-left-sidebar
    .custom-accordion-2
    .accordion-item
    .price-range-slider
    .range-fill {
    background: #fff;
}
.left-box .shop-left-sidebar .left-title {
    margin-bottom: 20px;
    margin-top: 32px;
}
.left-box .shop-left-sidebar .left-title h3 {
    font-weight: 700;
}
.left-box .shop-left-sidebar .custom-nav-tab {
    gap: calc(11px + 9 * (100vw - 320px) / 1600);
}
.left-box .shop-left-sidebar .custom-nav-tab .nav-item {
    background-color: #f7f6f3;
    border-radius: 6px;
    display: flex;
    overflow: hidden;
    width: 100%;
    height: 60px;
}
.left-box .shop-left-sidebar .custom-nav-tab .nav-item .nav-link {
    width: 100%;
    text-align: left;
    font-size: 18px;
    font-weight: 500;
    color: rgba(var(--title-color), 1);
    border-radius: unset;
    position: relative;
    text-align: left;
}
[dir="rtl"] .left-box .shop-left-sidebar .custom-nav-tab .nav-item .nav-link {
    text-align: right;
}
.left-box
    .shop-left-sidebar
    .custom-nav-tab
    .nav-item
    .nav-link:hover(not)
    img {
    transform: translateY(-50%) rotate(-4deg);
    right: -12px;
    opacity: 0.45;
    width: 75px;
    height: 75px;
}
.left-box .shop-left-sidebar .custom-nav-tab .nav-item .nav-link:hover img {
    transform: translateY(-50%) rotate(-4deg);
    right: -12px;
    opacity: 0.29;
    width: 75px;
    height: 75px;
}
.left-box .shop-left-sidebar .custom-nav-tab .nav-item .nav-link.active {
    color: rgba(var(--white), 1);
    background: linear-gradient(
        90.56deg,
        rgba(var(--primary-color1), 1) 8.46%,
        rgba(var(--primary-color), 1) 62.97%
    );
    font-size: 19px;
    font-weight: 600;
}
.left-box .shop-left-sidebar .custom-nav-tab .nav-item .nav-link.active img {
    position: absolute;
    right: -10px;
    filter: invert(1);
    opacity: 0.4;
    top: 50%;
    transform: translateY(-50%);
    width: 90px;
    height: 90px;
}
.left-box .shop-left-sidebar .custom-nav-tab .nav-item .nav-link img {
    position: absolute;
    right: -10px;
    opacity: 0.1;
    transition: all 0.15s ease-in-out;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
}
.left-box .special-offer-box {
    margin-top: 20px;
    padding: 15px;
    height: auto;
    background-color: rgba(var(--white), 1);
}

.shop-section {
    z-index: unset;
    position: relative;
}
.shop-section .banner-main-box {
    position: relative;
    border-radius: calc(7px + 4 * (100vw - 320px) / 1600);
    overflow: hidden;
    display: block;
}
.shop-section .banner-main-box .banner-image {
    display: block;
}
.shop-section .banner-main-box .banner-image img {
    height: calc(270px + 80 * (100vw - 320px) / 1600);
    object-position: center;
}
.shop-section .banner-main-box .banner-contain {
    position: absolute;
    top: 0;
    margin-left: auto;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: rgba(var(--white), 1);
    text-align: center;
    width: 100%;
    height: 100%;
}
.shop-section .banner-main-box .banner-contain h2 {
    font-size: calc(40px + 27 * (100vw - 320px) / 1600);
    margin-bottom: calc(-6px + -8 * (100vw - 320px) / 1600);
    text-transform: capitalize;
}
.shop-section .banner-main-box .banner-contain h3 {
    font-size: calc(18px + 3 * (100vw - 320px) / 1600);
    font-weight: 400;
    margin-top: 13px;
    text-transform: capitalize;
    color: rgba(255, 255, 255, 0.6);
}
.shop-section .banner-main-box .sale-box {
    position: absolute;
    top: calc(8px + 7 * (100vw - 320px) / 1600);
    right: calc(8px + 7 * (100vw - 320px) / 1600);
    background-color: rgba(var(--white), 1);
    border-radius: calc(5px + 2 * (100vw - 320px) / 1600);
    color: rgba(var(--title-color), 1);
    padding: calc(9px + 2 * (100vw - 320px) / 1600)
        calc(13px + 2 * (100vw - 320px) / 1600)
        calc(7px + 2 * (100vw - 320px) / 1600);
    text-align: center;
}
[dir="rtl"] .shop-section .banner-main-box .sale-box {
    right: unset;
    left: calc(8px + 7 * (100vw - 320px) / 1600);
}
.shop-section .banner-main-box .sale-box h5 {
    font-weight: 400;
    color: rgba(var(--content-color), 1);
    font-size: 13px;
}
.shop-section .show-button-2 {
    margin-bottom: 14px;
    padding: calc(14px + 6 * (100vw - 320px) / 1600);
    background-color: rgba(var(--white), 1);
    border-radius: 5px;
}
.shop-section .show-button-2 .filter-button {
    display: block;
    color: rgba(var(--white), 1);
}
.shop-section .show-button-2 .filter-button a {
    font-size: calc(14px + 1 * (100vw - 320px) / 1600);
    font-weight: 500;
    padding: calc(6px + 4 * (100vw - 320px) / 1600)
        calc(10px + 5 * (100vw - 320px) / 1600);
    background-color: rgba(var(--primary-color), 1);
    color: #fff;
    border-radius: 5px;
    display: inline-block;
}
.shop-section .show-button-2 .filter-button-group {
    display: flex;
    align-items: center;
    margin-top: 30px;
}
.shop-section .show-button-2 .filter-button-group .sort-by-button {
    color: rgba(var(--white), 1);
    margin-left: auto;
}
.shop-section .show-button-2 .filter-button-group .sort-by-button a {
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    font-weight: 600;
    padding: calc(6px + 2 * (100vw - 320px) / 1600)
        calc(9px + 3 * (100vw - 320px) / 1600);
    background-color: rgba(var(--primary-color), 1);
    border-radius: 5px;
    display: inline-block;
}
.shop-section .show-button-2 .filter-dropdown {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.shop-section .show-button-2 .top-filter-menu {
    display: flex;
    align-items: center;
}
@media (max-width: 991.98px) {
    .shop-section .show-button-2 .top-filter-menu {
        margin-top: 0;
    }
}
.shop-section .show-button-2 .top-filter-menu .sidebar-filter-menu a {
    border: none;
    background-color: rgba(var(--light-gray), 1);
    font-size: calc(14px + 1 * (100vw - 320px) / 1600);
    padding: calc(9px + 1 * (100vw - 320px) / 1600) 15px;
    border-radius: 5px;
    color: rgba(var(--content-color), 1);
}
.shop-section .show-button-2 .top-filter-menu .category-dropdown-2 {
    display: flex;
    align-items: center;
}
@media (max-width: 360.98px) {
    .shop-section .show-button-2 .top-filter-menu .category-dropdown-2 h5 {
        display: none;
    }
}
.shop-section .show-button-2 .top-filter-menu .category-dropdown-2 .dropdown {
    margin-left: 10px;
}
@media (max-width: 360.98px) {
    .shop-section
        .show-button-2
        .top-filter-menu
        .category-dropdown-2
        .dropdown {
        margin-left: 0;
    }
}
.shop-section
    .show-button-2
    .top-filter-menu
    .category-dropdown-2
    .dropdown
    .dropdown-toggle {
    border: none;
    background-color: rgba(var(--light-gray), 1);
    font-size: calc(14px + 1 * (100vw - 320px) / 1600);
    padding: calc(9px + 1 * (100vw - 320px) / 1600) 15px;
    border-radius: 5px;
    color: rgba(var(--content-color), 1);
    flex-wrap: wrap;
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.shop-section
    .show-button-2
    .top-filter-menu
    .category-dropdown-2
    .dropdown
    .dropdown-toggle::after {
    content: none;
}
.shop-section
    .show-button-2
    .top-filter-menu
    .category-dropdown-2
    .dropdown
    .dropdown-toggle
    i {
    margin-top: -3px;
    line-height: 1;
}
.shop-section
    .show-button-2
    .top-filter-menu
    .category-dropdown-2
    .dropdown
    .dropdown-menu {
    background-color: rgba(var(--light-gray), 1);
    border: none;
}
.shop-section
    .show-button-2
    .top-filter-menu
    .category-dropdown-2
    .dropdown
    .dropdown-menu
    li {
    display: block;
}
.shop-section
    .show-button-2
    .top-filter-menu
    .category-dropdown-2
    .dropdown
    .dropdown-menu
    li
    a {
    font-size: 14px;
}
.shop-section
    .show-button-2
    .top-filter-menu
    .category-dropdown-2
    .dropdown
    .dropdown-menu
    li
    a:hover,
.shop-section
    .show-button-2
    .top-filter-menu
    .category-dropdown-2
    .dropdown
    .dropdown-menu
    li
    a:focus {
    background-color: transparent;
}
.shop-section .show-button-2 .top-filter-menu .grid-option-2 {
    margin-left: auto;
}
.shop-section .show-button-2 .top-filter-menu .grid-option-2 ul {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: calc(5px + 5 * (100vw - 320px) / 1600);
}
.shop-section .show-button-2 .top-filter-menu .grid-option-2 ul li {
    border-radius: 5px;
    background-color: rgba(var(--light-gray), 1);
    width: 35px;
    height: 35px;
}
.shop-section .show-button-2 .top-filter-menu .grid-option-2 ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.shop-section .show-button-2 .top-filter-menu .grid-option-2 ul li a svg {
    width: 17px;
    height: 17px;
}
.shop-section .show-button-2 .top-filter-menu .grid-option-2 ul li.active {
    background: rgba(var(--primary-color3), 1);
}
.shop-section .show-button-2 .top-filter-menu .grid-option-2 ul li.active img {
    filter: invert(1) brightness(100);
}
.shop-section .show-button-2 .category-dropdown {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: calc(8px + 4 * (100vw - 320px) / 1600);
}
.shop-section .show-button-2 .category-dropdown .form-select {
    border: none;
    background-color: rgba(var(--content-color), 0.05);
    font-size: calc(14px + 1 * (100vw - 320px) / 1600);
    padding: 12px 15px 9px;
    border-radius: 5px;
    color: rgba(var(--content-color), 1);
    flex-wrap: nowrap;
    width: 150px;
    text-align: left;
    margin-left: 10px;
}
[dir="rtl"] .shop-section .show-button-2 .category-dropdown .form-select {
    margin-left: unset;
    margin-right: 10px;
}
.shop-section .show-button-2 .category-dropdown .dropdown {
    margin-left: 10px;
}
[dir="rtl"] .shop-section .show-button-2 .category-dropdown .dropdown {
    margin-left: unset;
    margin-right: 10px;
}
.shop-section .show-button-2 .category-dropdown .dropdown .dropdown-toggle {
    border: none;
    background-color: rgba(var(--content-color), 0.05);
    font-size: calc(14px + 1 * (100vw - 320px) / 1600);
    padding: calc(8px + 4 * (100vw - 320px) / 1600)
        calc(12px + 3 * (100vw - 320px) / 1600)
        calc(6px + 3 * (100vw - 320px) / 1600);
    border-radius: calc(4px + 1 * (100vw - 320px) / 1600);
    color: rgba(var(--content-color), 1);
    flex-wrap: nowrap;
    gap: calc(6px + 4 * (100vw - 320px) / 1600);
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.shop-section
    .show-button-2
    .category-dropdown
    .dropdown
    .dropdown-toggle::after {
    content: none;
}
.shop-section .show-button-2 .category-dropdown .dropdown .dropdown-toggle i {
    margin-top: -3px;
    line-height: 1;
}
.shop-section
    .show-button-2
    .category-dropdown
    .dropdown
    .dropdown-toggle
    span {
    white-space: normal;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
.shop-section .show-button-2 .category-dropdown .dropdown .dropdown-menu {
    background-color: rgba(var(--white), 1);
    border: none;
    box-shadow: var(--shadow-2);
}
.shop-section .show-button-2 .category-dropdown .dropdown .dropdown-menu li {
    display: block;
}
.shop-section .show-button-2 .category-dropdown .dropdown .dropdown-menu li a {
    font-size: 14px;
    color: rgba(var(--title-color), 1);
}
.shop-section
    .show-button-2
    .category-dropdown
    .dropdown
    .dropdown-menu
    li
    a:hover,
.shop-section
    .show-button-2
    .category-dropdown
    .dropdown
    .dropdown-menu
    li
    a:focus,
.shop-section
    .show-button-2
    .category-dropdown
    .dropdown
    .dropdown-menu
    li
    a:active {
    background-color: rgba(var(--base-gray), 1);
    color: rgba(var(--title-color), 1);
}
.shop-section .show-button-2 .category-dropdown:has(.seller-title) {
    width: 100%;
}
.shop-section .show-button-2 .category-dropdown h3 {
    margin-top: 3px;
}
.shop-section .show-button-2 .category-dropdown .seller-title .h3 {
    margin-top: 3px;
    font-weight: 600;
    font-size: calc(18px + 4 * (100vw - 320px) / 1600);
}
.shop-section .show-button-2 .category-dropdown > .d-flex.align-items-center {
    margin-left: auto;
}
[dir="rtl"]
    .shop-section
    .show-button-2
    .category-dropdown
    > .d-flex.align-items-center {
    margin-left: unset;
    margin-right: auto;
}
@media (max-width: 400px) {
    .shop-section
        .show-button-2
        .category-dropdown
        > .d-flex.align-items-center {
        margin-left: unset;
    }
    [dir="rtl"]
        .shop-section
        .show-button-2
        .category-dropdown
        > .d-flex.align-items-center {
        margin-right: unset;
    }
}
.shop-section .show-button-2 .grid-option {
    margin-left: auto;
}
[dir="rtl"] .shop-section .show-button-2 .grid-option {
    margin-left: unset;
    margin-right: auto;
}
.shop-section .show-button-2 .grid-option ul {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: calc(5px + 5 * (100vw - 320px) / 1600);
}
.shop-section .show-button-2 .grid-option ul li {
    border-radius: 5px;
    background: linear-gradient(
        149.8deg,
        rgba(var(--light-gray), 1) 17.21%,
        #fbfaf9 79.21%
    );
    width: 35px;
    height: 35px;
}
body.dark .shop-section .show-button-2 .grid-option ul li {
    background: rgba(var(--base-gray), 1);
}
.shop-section .show-button-2 .grid-option ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.shop-section .show-button-2 .grid-option ul li a svg {
    width: 17px;
    height: 17px;
}
.shop-section .show-button-2 .grid-option ul li button {
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.shop-section .show-button-2 .grid-option ul li button svg {
    fill: rgba(var(--title-color), 0.8);
    width: 100%;
    height: 16px;
}
.shop-section .show-button-2 .grid-option ul li.active {
    background: rgba(var(--primary-color), 1);
}
body.dark .shop-section .show-button-2 .grid-option ul li.active {
    background: rgba(var(--primary-color), 1);
}
.shop-section .show-button-2 .grid-option ul li.active svg {
    fill: #fff;
}
.shop-section .show-button-2-box {
    margin-block: 25px;
}
.shop-section .product-filter-box {
    margin-bottom: 14px;
    padding: 10px;
    background-color: rgba(var(--white), 1);
    border-radius: 5px;
    display: flex;
    align-items: flex-start;
}
.shop-section .product-filter-box .product-filter {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.shop-section .product-filter-box .product-filter li {
    padding: 9px 34px 9px 11px;
    background-color: rgba(var(--light-gray), 1);
    position: relative;
}
.shop-section .product-filter-box .product-filter li::before {
    right: 13px;
    color: rgba(var(--content-color), 1);
    cursor: pointer;
    font-family: remixicon;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    content: "\eb99";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.shop-section .product-filter-box .product-filter li a {
    color: rgba(var(--content-color), 1);
}
.shop-section .product-filter-box .clear-btn {
    padding: 9px 11px;
    background-color: rgba(var(--primary-color3), 1);
    position: relative;
    font-size: 14px;
    margin-left: auto;
    color: rgba(var(--white), 1);
    border-radius: 5px;
}
.shop-section .top-filter-category {
    padding: 0 24px;
    background-color: rgba(var(--white), 1);
    box-shadow: 0 2px 9px rgba(var(--title-color), 0.07);
    border-radius: 6px;
    margin-bottom: 0;
    overflow: hidden;
    transition: all 0.15s ease-in-out;
    width: 100%;
    height: 0;
}
.shop-section .top-filter-category.show {
    padding: 24px;
    height: auto;
    margin-bottom: 22px;
}
.shop-section .top-filter-category > .row > div {
    border-right: 1px solid #ececec;
}
.shop-section .top-filter-category > .row > div:last-child {
    border: none;
}
@media (max-width: 1199.98px) {
    .shop-section .top-filter-category > .row > div:nth-child(4n-2) {
        border-right: none;
    }
}
@media (max-width: 767.98px) {
    .shop-section .top-filter-category > .row > div {
        border: none;
    }
}
.shop-section .seller-box {
    border: none;
    padding: calc(14px + 4 * (100vw - 320px) / 1600);
}
.shop-section .seller-box > div {
    padding: 0;
}
.shop-section .seller-box > div + div {
    border: none;
}
.shop-section .seller-box .seller-head {
    flex-direction: column;
    gap: 8px;
}
.shop-section .seller-box .seller-head .seller-name {
    width: 100%;
}
.shop-section .seller-box .seller-head .seller-name a {
    display: block;
    line-height: 1.3;
}
.shop-section .seller-box .seller-head .seller-name .rating {
    margin: 0;
}
.shop-section .seller-box .details {
    font-size: calc(14px + 1 * (100vw - 320px) / 1600);
    line-height: 1.5;
    font-weight: 400;
    color: rgba(var(--content-color), 0.8);
    margin-top: calc(9px + 6 * (100vw - 320px) / 1600);
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
.shop-section .seller-box .category-list {
    gap: 4px;
    margin-top: 6px;
}
.shop-section .seller-box .category-list li {
    display: inline-block;
    width: auto;
    text-transform: capitalize;
    background-color: rgba(var(--content-color), 0.09);
    color: rgba(var(--content-color), 0.8);
    padding: calc(5px + 2 * (100vw - 320px) / 1600)
        calc(7px + 2 * (100vw - 320px) / 1600)
        calc(4px + 1 * (100vw - 320px) / 1600);
    font-size: calc(13px + 1 * (100vw - 320px) / 1600);
    border-radius: calc(3px + 2 * (100vw - 320px) / 1600);
    transition: all 0.2s ease-in-out;
    line-height: 1;
}
.shop-section .seller-box .category-list li:hover {
    background-color: rgba(var(--primary-color), 0.15);
    color: rgba(var(--primary-color), 1);
}
.shop-section .seller-box .seller-bottom {
    margin-top: 20px;
}
.shop-section .seller-box .seller-bottom .product-list {
    display: flex;
    align-items: center;
}
.shop-section .seller-box .seller-bottom .product-list li {
    border-radius: 100%;
    z-index: 1;
    background-color: rgba(var(--base-gray), 1);
    padding: calc(5px + 2 * (100vw - 320px) / 1600);
    transition: transform 0.15s ease-in-out;
    width: calc(34px + 6 * (100vw - 320px) / 1600);
    height: calc(34px + 6 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
    justify-content: center;
}
.shop-section .seller-box .seller-bottom .product-list li:hover {
    transform: translateY(calc(-3px + -3 * (100vw - 320px) / 1600));
}
.shop-section .seller-box .seller-bottom .product-list li:first-child {
    background-color: #fff4d7;
}
.shop-section .seller-box .seller-bottom .product-list li:nth-child(2) {
    background-color: #ffe7e7;
}
.shop-section .seller-box .seller-bottom .product-list li:nth-child(3) {
    background-color: #dbf6ff;
}
.shop-section .seller-box .seller-bottom .product-list li:nth-child(4) {
    background-color: #e9e8ff;
}
.shop-section .seller-box .seller-bottom .product-list li:nth-child(5) {
    background-color: #dbf6d2;
}
.shop-section .seller-box .seller-bottom .product-list li + li {
    margin-left: calc(-15px + -2 * (100vw - 320px) / 1600);
}
[dir="rtl"] .shop-section .seller-box .seller-bottom .product-list li + li {
    margin-left: unset;
    margin-right: calc(-15px + -2 * (100vw - 320px) / 1600);
}
.shop-section .seller-box .seller-bottom .product-list li span {
    padding-top: 3px;
    color: rgba(var(--content-color), 1);
}
.shop-section .seller-box-2 {
    height: 100%;
}
.shop-section .seller-box-2 .seller-head {
    flex-direction: unset;
    gap: 14px;
}
.shop-section .seller-box-2 .seller-contain:has(.details) .details-list {
    margin-top: 10px;
}
.shop-section .seller-box-2 .seller-contain .details-list {
    padding-top: 10px;
    border-top: 1px solid rgba(var(--border-color), 1);
}
.shop-section .seller-box-2 .seller-contain .details-list li span {
    font-size: 15px;
}
.shop-section .seller-box-2 .seller-contain .details-list li h5 {
    font-size: 17px;
}

.product-list-section .product-box-4 .product-content .product-details {
    line-height: 1.3;
    display: none;
}
.product-list-section .product-box-4 .product-content .option-box {
    background-color: rgba(var(--white), 1);
}
body.dark .product-list-section .product-box-4 .product-content .option-box {
    background-color: transparent;
}
.product-list-section.list-style > div {
    width: 100%;
}
.product-list-section.list-style > div .product-box-4-main .product-box-4 {
    display: flex;
    align-items: center;
    gap: calc(9px + 13 * (100vw - 320px) / 1600);
}
@media (max-width: 575.98px) {
    .product-list-section.list-style > div .product-box-4-main .product-box-4 {
        display: block;
    }
}
.product-list-section.list-style
    > div
    .product-box-4-main
    .product-box-4
    .product-image {
    width: calc(175px + 85 * (100vw - 320px) / 1600);
    height: calc(175px + 85 * (100vw - 320px) / 1600);
}
@media (max-width: 575.98px) {
    .product-list-section.list-style
        > div
        .product-box-4-main
        .product-box-4
        .product-image {
        width: 100%;
        height: calc(175px + 85 * (100vw - 320px) / 1600);
    }
}
.product-list-section.list-style
    > div
    .product-box-4-main
    .product-box-4
    .product-content {
    margin: 0;
    width: calc(
        100% - (175px + 85 * (100vw - 320px) / 1600) -
            (9px + 13 * (100vw - 320px) / 1600)
    );
    position: relative;
}
@media (max-width: 575.98px) {
    .product-list-section.list-style
        > div
        .product-box-4-main
        .product-box-4
        .product-content {
        width: 100%;
        margin-top: 10px;
    }
}
.product-list-section.list-style
    > div
    .product-box-4-main
    .product-box-4
    .product-content
    .product-details {
    font-size: calc(13px + 2 * (100vw - 320px) / 1600);
    margin-block: 8px 14px;
    color: rgba(var(--content-color), 1);
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
.product-list-section.list-style
    > div
    .product-box-4-main
    .product-box-4
    .product-content
    .price {
    margin: 0;
}
.product-list-section.list-style
    > div
    .product-box-4-main
    .product-box-4
    .product-content
    .option-box {
    padding: 0;
    bottom: -37px;
    box-shadow: unset;
    position: unset;
    inset: unset;
    opacity: 1;
    visibility: visible;
    background-color: transparent;
    margin-top: 6px;
    justify-content: unset;
}
.product-list-section.list-style
    > div
    .product-box-4-main
    .product-box-4
    .product-content
    .option-box
    .select-btn {
    width: max-content;
    padding: 10px 24px;
}

/* Mixin Files */
/**=====================
    4.7 Vendor Page CSS
==========================**/
.seller-box {
    background-color: rgba(var(--white), 1);
    border: 1px solid rgba(var(--border-color), 1);
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    position: relative;
}
.seller-box:hover {
    box-shadow: 6px 4px 8px 3px rgba(var(--title-color), 0.05);
}
body.dark .seller-box:hover {
    box-shadow: 6px 4px 8px 3px rgba(119, 119, 119, 0.0509803922);
}
.seller-box .ribbon {
    --r: 0.8em;
    position: absolute;
    top: 6px;
    right: 0;
    font-size: calc(14px + 1 * (100vw - 320px) / 1600);
    font-weight: 500;
    color: #fff;
    padding-top: 3px;
    border-block: 0.5em solid rgba(var(--title-color), 0);
    padding-inline: calc(var(--r) + 0.25em) 0.5em;
    line-height: 1.8;
    clip-path: polygon(
        0 0,
        100% 0,
        100% 100%,
        0 100%,
        var(--r) calc(100% - 0.25em),
        0 50%,
        var(--r) 0.25em
    );
    background:
        radial-gradient(
                0.2em 50% at right,
                rgba(var(--title-color), 0),
                rgba(var(--title-color), 0)
            )
            border-box,
        rgba(var(--primary-color), 1) padding-box;
    width: fit-content;
}
[dir="rtl"] .seller-box .ribbon {
    clip-path: polygon(
        var(--r) calc(100% - 0.25em),
        0 50%,
        var(--r) 0.25em,
        0 0,
        100% 0,
        100% 100%,
        0 100%
    );
    right: unset;
    left: 0;
    padding-inline: 0.5em calc(var(--r) + 0.25em);
    transform: scaleX(-1);
}
[dir="rtl"] .seller-box .ribbon span {
    transform: scaleX(-1);
}
.seller-box .ribbon span {
    display: block;
}
.seller-box .ribbon.rating {
    background:
        radial-gradient(
                0.2em 50% at right,
                rgba(var(--title-color), 0),
                rgba(var(--title-color), 0)
            )
            border-box,
        rgba(var(--primary-color2), 1) padding-box;
}
.seller-box .ribbon.brand {
    background:
        radial-gradient(
                0.2em 50% at right,
                rgba(var(--title-color), 0),
                rgba(var(--title-color), 0)
            )
            border-box,
        rgba(var(--theme-blue-dark), 1) padding-box;
}
.seller-box > div {
    padding: calc(12px + 6 * (100vw - 320px) / 1600);
}
.seller-box > div + div {
    border-top: 1px solid rgba(var(--border-color), 1);
}
.seller-box .seller-head {
    display: flex;
    gap: calc(10px + 4 * (100vw - 320px) / 1600);
}
@media (max-width: 400.98px) {
    .seller-box .seller-head {
        display: grid;
    }
}
.seller-box .seller-head .seller-img {
    background-color: rgba(var(--content-color), 0.05);
    padding: calc(12px + 2 * (100vw - 320px) / 1600);
    border-radius: calc(6px + 2 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(94px + 16 * (100vw - 320px) / 1600);
    height: calc(54px + 6 * (100vw - 320px) / 1600);
}
.seller-box .seller-head .seller-name {
    width: calc(
        100% - (94px + 16 * (100vw - 320px) / 1600) -
            (10px + 4 * (100vw - 320px) / 1600)
    );
}
@media (max-width: 400.98px) {
    .seller-box .seller-head .seller-name {
        width: 100%;
    }
}
.seller-box .seller-head .seller-name .rating {
    margin-top: 3px;
    gap: 5px;
}
.seller-box .seller-head .seller-name .rating span {
    color: rgba(var(--content-color), 1);
    font-size: 14px;
    line-height: 1.2;
    padding-top: 3px;
    font-weight: 400;
}
.seller-box .seller-head .seller-name .rating ul {
    display: flex;
    align-items: center;
    gap: calc(1px + 1 * (100vw - 320px) / 1600);
}
.seller-box .seller-head .seller-name .rating ul li {
    display: flex;
}
.seller-box .seller-head .seller-name .rating ul li i {
    font-size: 14px;
}
.seller-box .seller-head .seller-name a {
    font-size: calc(18px + 2 * (100vw - 320px) / 1600);
    color: rgba(var(--title-color), 1);
}
.seller-box .seller-contain:has(.details) .details-list {
    margin-top: calc(12px + 10 * (100vw - 320px) / 1600);
}
.seller-box .seller-contain .details {
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    line-height: 1.5;
    font-weight: 400;
    color: rgba(var(--content-color), 0.8);
}
.seller-box .seller-contain .details-list li {
    display: flex;
    gap: 7px;
}
.seller-box .seller-contain .details-list li + li {
    margin-top: 6px;
}
.seller-box .seller-contain .details-list li i {
    font-size: calc(18px + 2 * (100vw - 320px) / 1600);
    color: rgba(var(--primary-color), 1);
    line-height: 1;
}
.seller-box .seller-contain .details-list li span {
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    line-height: 1.5;
    font-weight: 400;
    color: rgba(var(--content-color), 1);
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
.seller-box .seller-bottom {
    gap: calc(10px + 4 * (100vw - 320px) / 1600);
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.seller-box .seller-bottom .badge {
    background-color: rgba(var(--primary-color2), 0.08);
    font-size: 14px;
    border-radius: 100px;
    font-weight: 500;
    padding: 8px 12px 7px;
    color: rgba(var(--primary-color2), 1);
}
.seller-box .seller-bottom .left-box {
    position: static;
    inset: unset;
    display: flex;
    z-index: unset;
    align-items: center;
}
.seller-box .seller-bottom .left-box li {
    position: relative;
    margin-right: calc(6px + 4 * (100vw - 320px) / 1600);
    padding-right: calc(6px + 4 * (100vw - 320px) / 1600);
    padding-block: calc(3px + 2 * (100vw - 320px) / 1600);
    color: rgba(var(--content-color), 1);
    font-weight: 400;
}
[dir="rtl"] .seller-box .seller-bottom .left-box li {
    margin-left: calc(6px + 4 * (100vw - 320px) / 1600);
    margin-right: unset;
    padding-left: calc(6px + 4 * (100vw - 320px) / 1600);
    padding-right: unset;
}
.seller-box .seller-bottom .left-box li:first-child:last-child .progress {
    width: 150px;
}
.seller-box .seller-bottom .left-box li::before {
    top: 0;
    right: 0;
    border-right: 1px solid rgba(var(--border-color), 1);
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
}
[dir="rtl"] .seller-box .seller-bottom .left-box li::before {
    right: unset;
    left: 0;
}
.seller-box .seller-bottom .left-box li:last-child {
    margin: 0;
    padding: 0;
}
.seller-box .seller-bottom .left-box li:last-child::before {
    content: unset;
}
.seller-box .seller-bottom .left-box li .progress {
    background-color: rgba(var(--content-color), 0.05);
    margin-top: 2px;
    border-radius: 100px;
    width: 115px;
    height: calc(3px + 2 * (100vw - 320px) / 1600);
}
body.dark .seller-box .seller-bottom .left-box li .progress {
    background-color: rgba(var(--border-color), 1);
}
.seller-box .seller-bottom .left-box li .progress .progress-bar {
    background-color: rgba(var(--primary-color), 1);
    border-radius: 100px;
}
.seller-box .seller-bottom .right-box .btn {
    padding: calc(8px + 2 * (100vw - 320px) / 1600)
        calc(10px + 2 * (100vw - 320px) / 1600)
        calc(7px + 2 * (100vw - 320px) / 1600);
    line-height: 1;
    font-size: calc(14px + 1 * (100vw - 320px) / 1600);
    background-color: transparent;
    gap: calc(4px + 2 * (100vw - 320px) / 1600);
    color: rgba(var(--primary-color), 1);
    border: 1px solid rgba(var(--primary-color), 1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.seller-box .seller-bottom .right-box .btn:hover {
    color: #fff;
    background-color: rgba(var(--primary-color), 1);
}
.seller-box .seller-bottom .right-box .btn i {
    line-height: 1;
    font-size: 18px;
}
.seller-box-2 .seller-contain .details-list li {
    display: block;
}
.seller-box-2 .seller-contain .details-list li + li {
    margin-top: 11px;
}
.seller-box-2 .seller-contain .details-list li h4 {
    font-size: calc(16px + 2 * (100vw - 320px) / 1600);
}
.seller-box-2 .seller-contain .details-list li span {
    font-size: calc(15px + 1 * (100vw - 320px) / 1600);
    line-height: 1.4;
    margin-top: 3px;
    font-weight: 400;
    color: rgba(var(--content-color), 0.8);
    display: block;
}
.seller-box-2 .seller-head h3 {
    display: inline-block;
    background-color: rgba(var(--primary-color), 0.1);
    padding: calc(8px + 2 * (100vw - 320px) / 1600)
        calc(10px + 5 * (100vw - 320px) / 1600)
        calc(6px + 2 * (100vw - 320px) / 1600);
    line-height: 1;
    text-transform: capitalize;
    font-size: calc(13px + 2 * (100vw - 320px) / 1600);
    border-radius: 4px;
    color: rgba(var(--primary-color), 1);
    position: absolute;
    top: calc(12px + 6 * (100vw - 320px) / 1600);
    right: calc(12px + 6 * (100vw - 320px) / 1600);
}
[dir="rtl"] .seller-box-2 .seller-head h3 {
    left: calc(12px + 6 * (100vw - 320px) / 1600);
    right: unset;
}
.seller-box-2 .seller-head .seller-name {
    position: relative;
}
.seller-box-2 .seller-head .seller-name > span {
    display: block;
    line-height: 1;
    letter-spacing: 0.3px;
    font-weight: 400;
    color: rgba(var(--content-color), 0.7);
}
.seller-box-2 .seller-head .seller-name a {
    margin-top: 4px;
    display: inline-block;
    line-height: 1.3;
}

.seller-details-section .seller-top-box {
    display: flex;
    padding: calc(14px + 6 * (100vw - 320px) / 1600);
    background-color: rgba(var(--white), 1);
    border: 1px solid rgba(var(--border-color), 1);
    border-radius: calc(6px + 2 * (100vw - 320px) / 1600);
}
@media (max-width: 1199.98px) {
    .seller-details-section .seller-top-box {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575.98px) {
    .seller-details-section .seller-top-box {
        flex-direction: column;
        display: flex;
    }
}
.seller-details-section .seller-top-box .profile-image {
    text-align: center;
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 1199.98px) {
    .seller-details-section .seller-top-box .profile-image {
        order: 1;
        width: 100%;
    }
}
.seller-details-section .seller-top-box .profile-image .band-image {
    background-color: rgba(var(--content-color), 0.05);
    margin: 0 auto calc(12px + 4 * (100vw - 320px) / 1600);
    padding: calc(12px + 2 * (100vw - 320px) / 1600);
    border-radius: 6px;
    width: calc(96px + 24 * (100vw - 320px) / 1600);
    height: calc(56px + 14 * (100vw - 320px) / 1600);
    display: flex;
    align-items: center;
    justify-content: center;
}
.seller-details-section .seller-top-box .profile-image h3 {
    font-weight: 500;
    margin-bottom: 0;
    color: rgba(var(--title-color), 1);
    letter-spacing: unset;
    line-height: 1;
    font-size: calc(18px + 4 * (100vw - 320px) / 1600);
}
.seller-details-section .seller-top-box .profile-image .rating {
    justify-content: center;
    margin-block: 2px 4px;
}
.seller-details-section .seller-top-box .profile-image .rating ul {
    line-height: 1;
}
.seller-details-section .seller-top-box .profile-image .rating ul li i {
    font-size: calc(15px + 1 * (100vw - 320px) / 1600);
}
.seller-details-section .seller-top-box .profile-image h4 {
    font-weight: 500;
    color: rgba(var(--content-color), 1);
    font-size: calc(14px + 1 * (100vw - 320px) / 1600);
    margin-top: 8px;
}
.seller-details-section .seller-top-box .profile-detail {
    border-left: 1px solid rgba(var(--border-color), 1);
    padding-left: calc(12px + 8 * (100vw - 320px) / 1600);
    margin-left: calc(12px + 8 * (100vw - 320px) / 1600);
    width: 60%;
    display: flex;
    align-items: center;
}
[dir="rtl"] .seller-details-section .seller-top-box .profile-detail {
    border-right: 1px solid rgba(var(--border-color), 1);
    border-left: unset;
    padding-right: calc(12px + 8 * (100vw - 320px) / 1600);
    padding-left: unset;
    margin-right: calc(12px + 8 * (100vw - 320px) / 1600);
    margin-left: unset;
}
@media (max-width: 1199.98px) {
    .seller-details-section .seller-top-box .profile-detail {
        order: 3;
        grid-area: 2/1/3/3;
        width: 100%;
        border-top: 1px solid rgba(var(--border-color), 1);
        padding-top: calc(12px + 8 * (100vw - 320px) / 1600);
        margin-top: calc(12px + 8 * (100vw - 320px) / 1600);
        border-left: 0;
        padding-left: 0;
        margin-left: 0;
        display: block;
    }
    [dir="rtl"] .seller-details-section .seller-top-box .profile-detail {
        border-right: unset;
        padding-right: unset;
        margin-right: unset;
    }
}
.seller-details-section .seller-top-box .profile-detail h6 {
    margin-bottom: 0;
    margin-top: 0;
    letter-spacing: 0.05em;
    text-transform: capitalize;
}
.seller-details-section .seller-top-box .profile-detail p {
    margin-bottom: 0;
    font-size: calc(14px + 1 * (100vw - 320px) / 1600);
    line-height: 1.4;
    font-weight: 400;
    color: rgba(var(--content-color), 1);
}
@media (max-width: 575.98px) {
    .seller-details-section .seller-top-box .profile-detail p {
        text-align: center;
    }
}
.seller-details-section .seller-top-box .profile-detail p + p {
    margin-top: 10px;
}
.seller-details-section .seller-top-box .vendor-contact {
    border-left: 1px solid rgba(var(--border-color), 1);
    padding-left: calc(12px + 8 * (100vw - 320px) / 1600);
    margin-left: calc(12px + 8 * (100vw - 320px) / 1600);
    width: 20%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
[dir="rtl"] .seller-details-section .seller-top-box .vendor-contact {
    border-right: 1px solid rgba(var(--border-color), 1);
    border-left: unset;
    padding-right: calc(12px + 8 * (100vw - 320px) / 1600);
    padding-left: unset;
    margin-right: calc(12px + 8 * (100vw - 320px) / 1600);
    margin-left: unset;
}
@media (max-width: 1199.98px) {
    .seller-details-section .seller-top-box .vendor-contact {
        order: 2;
        width: 100%;
    }
}
@media (max-width: 575.98px) {
    .seller-details-section .seller-top-box .vendor-contact {
        border-top: 1px solid rgba(var(--border-color), 1);
        padding-top: calc(12px + 8 * (100vw - 320px) / 1600);
        margin-top: calc(12px + 8 * (100vw - 320px) / 1600);
        border-left: unset;
        padding-left: unset;
        margin-left: unset;
    }
    [dir="rtl"] .seller-details-section .seller-top-box .vendor-contact {
        border-right: none;
        padding-right: unset;
        margin-right: unset;
    }
}
.seller-details-section .seller-top-box .vendor-contact .footer-social {
    margin-top: 0;
    margin-bottom: calc(6px + 6 * (100vw - 320px) / 1600);
    justify-content: center;
}
.seller-details-section .seller-top-box .vendor-contact .footer-social i {
    color: rgba(var(--content-color), 1);
    transition: color 0.3s ease-in-out;
}
.seller-details-section .seller-top-box .vendor-contact .footer-social i:hover {
    color: rgba(var(--primary-color), 1);
}
.seller-details-section .seller-top-box .vendor-contact .footer-social li {
    padding: 0 5px;
}
.seller-details-section .seller-top-box .vendor-contact h5 {
    text-transform: capitalize;
    color: rgba(var(--title-color), 1);
    font-weight: 600;
    margin-bottom: calc(6px + 2 * (100vw - 320px) / 1600);
    font-size: calc(15px + 1 * (100vw - 320px) / 1600);
}
.seller-details-section .seller-top-box .vendor-contact .vendor-details-box {
    margin-top: calc(8px + 4 * (100vw - 320px) / 1600);
    padding-top: 9px;
    justify-content: center;
    border-top: 1px solid rgba(var(--border-color), 1);
}
.seller-details-section .seller-top-box .vendor-contact .vendor-details {
    display: grid;
    gap: calc(5px + 2 * (100vw - 320px) / 1600);
}
.seller-details-section .seller-top-box .vendor-contact .vendor-details li {
    gap: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.seller-details-section .seller-top-box .vendor-contact .vendor-details li i {
    font-size: 20px;
    line-height: 1;
    color: rgba(var(--content-color), 1);
}
.seller-details-section .seller-top-box .vendor-contact .vendor-details li a {
    text-transform: none;
}
.seller-details-section .seller-top-box .vendor-contact .vendor-details li h5,
.seller-details-section .seller-top-box .vendor-contact .vendor-details li a {
    margin: 0;
    font-weight: 500;
    line-height: 1;
    color: rgba(var(--content-color), 1);
}
.seller-details-section .seller-top-box .page-link {
    border-color: #efefef;
    background-color: #f9f9f9;
}
.seller-details-section .seller-top-box .page-link:hover {
    background-color: #f1f1f1;
}

.seller-details-section-2 .seller-main-box .seller-top-box {
    padding: calc(12px + 28 * (100vw - 320px) / 1600)
        calc(12px + 18 * (100vw - 320px) / 1600);
    background-color: rgba(var(--white), 1);
    overflow: hidden;
    border-radius: calc(10px + 5 * (100vw - 320px) / 1600);
}
.seller-details-section-2 .seller-main-box .seller-top-box .seller-main-box {
    background-color: rgba(var(--white), 1);
    padding: calc(14px + 26 * (100vw - 320px) / 1600);
    width: 50%;
    border-radius: calc(8px + 2 * (100vw - 320px) / 1600);
    margin-left: auto;
    box-shadow: 6px 4px 8px 3px rgba(var(--title-color), 0.02);
}
@media (max-width: 1399.98px) {
    .seller-details-section-2
        .seller-main-box
        .seller-top-box
        .seller-main-box {
        width: 58%;
    }
}
@media (max-width: 1080px) {
    .seller-details-section-2
        .seller-main-box
        .seller-top-box
        .seller-main-box {
        width: 100%;
    }
}
.seller-details-section-2
    .seller-main-box
    .seller-top-box
    .seller-main-box
    .profile-image {
    display: flex;
    align-items: center;
    margin-bottom: calc(8px + 5 * (100vw - 320px) / 1600);
    padding-bottom: calc(8px + 5 * (100vw - 320px) / 1600);
    border-bottom: 1px dashed rgba(var(--border-color), 1);
    gap: calc(8px + 8 * (100vw - 320px) / 1600);
}
.seller-details-section-2
    .seller-main-box
    .seller-top-box
    .seller-main-box
    .profile-image
    .band-image {
    background-color: rgba(var(--content-color), 0.05);
    padding: calc(10px + 4 * (100vw - 320px) / 1600);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(98px + 22 * (100vw - 320px) / 1600);
    height: calc(54px + 16 * (100vw - 320px) / 1600);
}
.seller-details-section-2
    .seller-main-box
    .seller-top-box
    .seller-main-box
    .profile-image
    h3 {
    font-weight: 500;
    margin-bottom: 0;
    color: rgba(var(--title-color), 1);
    letter-spacing: unset;
    line-height: 1;
    font-size: calc(18px + 4 * (100vw - 320px) / 1600);
}
.seller-details-section-2
    .seller-main-box
    .seller-top-box
    .seller-main-box
    .profile-image
    .rating {
    margin-top: 2px;
}
.seller-details-section-2
    .seller-main-box
    .seller-top-box
    .seller-main-box
    .profile-image
    .rating
    ul {
    line-height: 1;
}
.seller-details-section-2
    .seller-main-box
    .seller-top-box
    .seller-main-box
    .profile-image
    .rating
    ul
    li
    i {
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
}
.seller-details-section-2
    .seller-main-box
    .seller-top-box
    .seller-main-box
    .profile-image
    .rating
    span {
    color: rgba(var(--content-color), 1);
    line-height: 1;
    padding-top: 3px;
    margin-left: 5px;
}
[dir="rtl"]
    .seller-details-section-2
    .seller-main-box
    .seller-top-box
    .seller-main-box
    .profile-image
    .rating
    span {
    margin-left: 5px;
    margin-right: 5px;
}
.seller-details-section-2
    .seller-main-box
    .seller-top-box
    .seller-main-box
    .profile-image
    h6 {
    font-weight: 500;
    color: rgba(var(--content-color), 1);
    font-size: 15px;
    margin-top: 8px;
}
.seller-details-section-2 .seller-main-box .seller-top-box .seller-main-box h2 {
    font-size: calc(22px + 4 * (100vw - 320px) / 1600);
    font-weight: 500;
}
.seller-details-section-2 .seller-main-box .seller-top-box .seller-main-box p {
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    margin-top: 4px;
    color: rgba(var(--content-color), 1);
}
.seller-details-section-2 .seller-main-box .brand-related-product {
    margin-top: 20px;
}
.seller-details-section-2 .seller-main-box .brand-related-product .related-box {
    background-color: rgba(var(--white), 1);
    border-radius: calc(6px + 2 * (100vw - 320px) / 1600);
    padding: calc(15px + 7 * (100vw - 320px) / 1600)
        calc(15px + 10 * (100vw - 320px) / 1600);
    height: 100%;
}
.seller-details-section-2
    .seller-main-box
    .brand-related-product
    .related-box
    h3 {
    font-size: calc(20px + 3 * (100vw - 320px) / 1600);
}
.seller-details-section-2
    .seller-main-box
    .brand-related-product
    .related-box
    p {
    color: rgba(var(--content-color), 0.8);
    margin-top: calc(1px + 2 * (100vw - 320px) / 1600);
    font-size: calc(14px + 1 * (100vw - 320px) / 1600);
    line-height: 1.3;
}
.seller-details-section-2
    .seller-main-box
    .brand-related-product
    .related-box
    .position-relative {
    margin-top: 10px;
}
.seller-details-section-2
    .seller-main-box
    .brand-related-product
    .related-box
    .position-relative
    .form-control {
    padding-left: calc(46px + 14 * (100vw - 320px) / 1600);
}
.seller-details-section-2
    .seller-main-box
    .brand-related-product
    .related-box
    .position-relative
    i {
    position: absolute;
    left: 0;
    font-size: calc(16px + 1 * (100vw - 320px) / 1600);
    padding-inline: calc(10px + 4 * (100vw - 320px) / 1600);
    border-right: 1px solid rgba(var(--border-color), 1);
    color: rgba(var(--content-color), 1);
    top: 50%;
    transform: translateY(-50%);
}
.seller-details-section-2
    .seller-main-box
    .brand-related-product
    .related-box
    .related-list {
    display: flex;
    gap: calc(8px + 5 * (100vw - 320px) / 1600);
    margin-top: calc(10px + 4 * (100vw - 320px) / 1600);
    padding-top: calc(10px + 4 * (100vw - 320px) / 1600);
    border-top: 1px solid rgba(var(--border-color), 1);
}
@media (max-width: 480px) {
    .seller-details-section-2
        .seller-main-box
        .brand-related-product
        .related-box
        .related-list {
        display: grid;
        gap: 3px;
    }
}
.seller-details-section-2
    .seller-main-box
    .brand-related-product
    .related-box
    .related-list
    span {
    color: rgba(var(--content-color), 1);
    font-size: calc(16px + 1 * (100vw - 320px) / 1600);
    white-space: nowrap;
    margin-top: 7px;
}
@media (max-width: 480px) {
    .seller-details-section-2
        .seller-main-box
        .brand-related-product
        .related-box
        .related-list
        span {
        margin-top: 0;
    }
}
.seller-details-section-2
    .seller-main-box
    .brand-related-product
    .related-box
    .related-list
    ul {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: calc(4px + 4 * (100vw - 320px) / 1600);
    display: flex;
    flex-wrap: wrap;
    gap: calc(4px + 4 * (100vw - 320px) / 1600);
}
.seller-details-section-2
    .seller-main-box
    .brand-related-product
    .related-box
    .related-list
    ul
    li {
    position: relative;
}
.seller-details-section-2
    .seller-main-box
    .brand-related-product
    .related-box
    .related-list
    ul
    li
    .form-check-input {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    cursor: pointer;
    opacity: 0;
    width: 100%;
    height: 100%;
}
.seller-details-section-2
    .seller-main-box
    .brand-related-product
    .related-box
    .related-list
    ul
    li
    .form-check-input:hover
    ~ .form-check-label {
    background-color: rgba(var(--primary-color), 0.15);
    color: rgba(var(--primary-color), 1);
    border-color: rgba(var(--primary-color), 0.6);
}
.seller-details-section-2
    .seller-main-box
    .brand-related-product
    .related-box
    .related-list
    ul
    li
    .form-check-input:checked
    ~ .form-check-label {
    background-color: rgba(var(--primary-color), 1);
    color: #fff;
    border-color: rgba(var(--primary-color), 1);
}
.seller-details-section-2
    .seller-main-box
    .brand-related-product
    .related-box
    .related-list
    ul
    li
    .form-check-label {
    margin: 0;
    font-size: 14px;
    background-color: #f5f6f9;
    color: rgba(var(--content-color), 1);
    padding: calc(6px + 3 * (100vw - 320px) / 1600)
        calc(12px + 4 * (100vw - 320px) / 1600)
        calc(4px + 2 * (100vw - 320px) / 1600);
    border: 1px solid rgba(var(--border-color), 1);
    border-radius: 100px;
    transition: all 0.2s ease-in-out;
}
body.dark
    .seller-details-section-2
    .seller-main-box
    .brand-related-product
    .related-box
    .related-list
    ul
    li
    .form-check-label {
    background-color: #1a232e;
}
.seller-details-section-2
    .seller-main-box
    .brand-related-product
    .related-box
    .find-button {
    background-color: rgba(var(--theme-blue), 1);
    color: #fff;
    border: 1px solid rgba(var(--theme-blue), 1);
    width: 100%;
    border-radius: 100px;
    margin-top: calc(12px + 6 * (100vw - 320px) / 1600);
}
body.dark
    .seller-details-section-2
    .seller-main-box
    .brand-related-product
    .related-box
    .find-button {
    background-color: #1a232e;
    border-color: #1a232e;
}
.seller-details-section-2
    .seller-main-box
    .brand-related-product
    .related-box
    .find-button:hover {
    color: rgba(var(--theme-blue), 1);
    background-color: transparent;
}
body.dark
    .seller-details-section-2
    .seller-main-box
    .brand-related-product
    .related-box
    .find-button:hover {
    color: #fff;
}
.seller-details-section-2
    .seller-main-box
    .brand-related-product
    .top-trending-box {
    background-color: rgba(var(--white), 1);
    border-radius: 8px;
    padding: calc(15px + 7 * (100vw - 320px) / 1600)
        calc(15px + 10 * (100vw - 320px) / 1600);
}
.seller-details-section-2
    .seller-main-box
    .brand-related-product
    .top-trending-box
    .product-box-4
    .product-image {
    background-color: rgba(var(--white), 1);
}

.boost-marketing-section .marketing-contain {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.boost-marketing-section .marketing-contain h2 {
    font-size: calc(24px + 21 * (100vw - 320px) / 1600);
    font-weight: 600;
    width: 80%;
    line-height: 1.1;
}
@media (max-width: 991.98px) {
    .boost-marketing-section .marketing-contain h2 {
        width: 100%;
    }
}
.boost-marketing-section .marketing-contain p {
    margin-top: 3px;
    font-size: calc(15px + 4 * (100vw - 320px) / 1600);
    color: rgba(var(--content-color), 1);
}
.boost-marketing-section .marketing-contain .btn-group {
    border-radius: 0;
    display: block;
    margin-top: 28px;
}
.boost-marketing-section .marketing-contain .btn-group .btn {
    padding: calc(10px + 3 * (100vw - 320px) / 1600)
        calc(25px + 22 * (100vw - 320px) / 1600)
        calc(7px + 3 * (100vw - 320px) / 1600);
    border-radius: 5px;
    font-size: calc(15px + 4 * (100vw - 320px) / 1600);
}
.boost-marketing-section .marketing-image {
    border-radius: 18px;
    overflow: hidden;
}

.sell-theme-section {
    background-color: rgba(var(--theme-blue), 1);
    padding-block: calc(34px + 56 * (100vw - 320px) / 1600);
}
.sell-theme-section .seller-title {
    text-align: center;
    margin-bottom: calc(22px + 17 * (100vw - 320px) / 1600);
}
.sell-theme-section .seller-title h3 {
    color: rgba(var(--white), 1);
    font-size: calc(26px + 9 * (100vw - 320px) / 1600);
    font-weight: 600;
    margin-top: calc(-3px + -2 * (100vw - 320px) / 1600);
}
body.dark .sell-theme-section .seller-title h3 {
    color: #fff;
}
.sell-theme-section .seller-title p {
    color: rgba(var(--white), 0.7);
    width: 61%;
    margin: 6px auto 0;
    font-size: calc(15px + 2 * (100vw - 320px) / 1600);
}
body.dark .sell-theme-section .seller-title p {
    color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 1244px) {
    .sell-theme-section .seller-title p {
        width: 95%;
    }
}
@media (max-width: 800px) {
    .sell-theme-section .seller-title p {
        width: 100%;
    }
}
.sell-theme-section .sell-box {
    color: rgba(var(--white), 1);
}
body.dark .sell-theme-section .sell-box {
    color: #fff;
}
@media (max-width: 767.98px) {
    .sell-theme-section .sell-box {
        text-align: center;
    }
}
.sell-theme-section .sell-box svg {
    fill: rgba(var(--white), 1);
    width: calc(50px + 11 * (100vw - 320px) / 1600);
    height: calc(50px + 11 * (100vw - 320px) / 1600);
}
body.dark .sell-theme-section .sell-box svg {
    fill: #fff;
}
.sell-theme-section .sell-box h4 {
    margin-top: calc(18px + 13 * (100vw - 320px) / 1600);
    font-size: calc(20px + 3 * (100vw - 320px) / 1600);
    text-transform: capitalize;
}
.sell-theme-section .sell-box p {
    font-size: calc(15px + 2 * (100vw - 320px) / 1600);
    font-weight: 400;
    margin-top: calc(4px + 4 * (100vw - 320px) / 1600);
    color: rgba(var(--white), 0.7);
}
body.dark .sell-theme-section .sell-box p {
    color: rgba(255, 255, 255, 0.7);
}

.sell-theme-section-2 .seller-main-box {
    background-color: rgba(var(--white), 1);
    border-radius: calc(12px + 8 * (100vw - 320px) / 1600);
    padding: calc(20px + 55 * (100vw - 320px) / 1600)
        calc(15px + 81 * (100vw - 320px) / 1600)
        calc(17px + 55 * (100vw - 320px) / 1600);
}
.sell-theme-section-2 .seller-title {
    text-align: center;
    margin-bottom: calc(20px + 19 * (100vw - 320px) / 1600);
}
.sell-theme-section-2 .seller-title h3 {
    color: rgba(var(--title-color), 1);
    font-size: calc(26px + 9 * (100vw - 320px) / 1600);
    font-weight: 600;
    margin-top: calc(-3px + -2 * (100vw - 320px) / 1600);
}
.sell-theme-section-2 .seller-title p {
    color: rgba(var(--content-color), 0.7);
    width: 61%;
    margin: 6px auto 0;
    font-size: calc(15px + 2 * (100vw - 320px) / 1600);
}
@media (max-width: 1244px) {
    .sell-theme-section-2 .seller-title p {
        width: 95%;
    }
}
@media (max-width: 800px) {
    .sell-theme-section-2 .seller-title p {
        width: 100%;
    }
}
.sell-theme-section-2 .sell-box {
    color: rgba(var(--title-color), 1);
    text-align: center;
    padding-inline: 19px;
}
.sell-theme-section-2 .sell-box .top-box {
    position: relative;
    z-index: 0;
}
.sell-theme-section-2 .sell-box .top-box::before {
    bottom: 12px;
    z-index: -1;
    left: 0;
    border-top: 1px solid rgba(var(--border-color), 1);
    content: "";
    position: absolute;
    width: calc(100% + 38px);
    height: 1px;
}
.sell-theme-section-2 .sell-box .top-box::after {
    content: "";
    display: block;
    border-radius: 100%;
    background-color: rgba(var(--primary-color), 1);
    border: 8px solid rgba(var(--white), 1);
    margin-inline: auto;
    box-shadow: 0px 0px 9.1px 2px rgba(var(--title-color), 0.07);
    width: 24px;
    height: 24px;
}
.sell-theme-section-2 .sell-box .top-box .contain-text {
    padding: calc(10px + 6 * (100vw - 320px) / 1600)
        calc(36px + 14 * (100vw - 320px) / 1600)
        calc(6px + 6 * (100vw - 320px) / 1600);
    border-radius: 4px;
    display: inline-block;
    box-shadow: 0px 15px 35.9px 2px rgba(var(--title-color), 0.03);
    position: relative;
    margin-bottom: calc(14px + 7 * (100vw - 320px) / 1600);
    z-index: 0;
    background-color: rgba(var(--white), 1);
}
body.dark .sell-theme-section-2 .sell-box .top-box .contain-text {
    box-shadow: 0px 15px 35.9px 2px rgba(var(--border-color), 0.18);
}
.sell-theme-section-2 .sell-box .top-box .contain-text h5 {
    font-weight: 300;
    color: rgba(var(--content-color), 1);
}
.sell-theme-section-2 .sell-box .top-box .contain-text h4 {
    margin-top: 4px;
}
.sell-theme-section-2 .sell-box .top-box .contain-text::before {
    z-index: -1;
    bottom: -14px;
    border: 0 solid transparent;
    border-left-width: calc(14px + 9 * (100vw - 320px) / 1600);
    border-right-width: calc(14px + 9 * (100vw - 320px) / 1600);
    border-top: calc(10px + 5 * (100vw - 320px) / 1600) solid
        rgba(var(--white), 1);
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    content: "";
    position: absolute;
}
.sell-theme-section-2 .sell-box p {
    font-size: calc(15px + 2 * (100vw - 320px) / 1600);
    color: rgba(var(--content-color), 1);
    margin-top: calc(12px + 13 * (100vw - 320px) / 1600);
}

/* Theme Files */
/* Mixin Files */
/**=====================
    5.1 Dark CSS
==========================**/
body.dark.demo-2
    .quick-view-modal
    .modal-custom-size
    .right-box-contain
    .qty-stock-box
    .qty-box {
    background-color: rgba(21, 21, 21, 0.451);
}
body.dark.demo-2
    .quick-view-modal
    .modal-custom-size
    .right-box-contain
    .hurry-up-box
    .progress {
    background-color: rgba(var(--base-gray), 0.45);
}
@media (max-width: 1399.98px) {
    body.dark.demo-2 .dropdown-box .review-dropdown .dropdown-title {
        background-color: rgba(var(--base-gray), 1);
    }
}
body.dark.demo-2
    .offcanvas.cart-offcanvas
    .offcanvas-body
    .cart-product-box
    .total-price-box {
    background-color: rgba(var(--base-gray), 1);
}
body.dark.demo-3 {
    background-color: rgb(2, 32, 30);
}
body.dark.demo-3 .header-style-1 {
    background-color: #032a27;
}
body.dark.demo-3
    .header-style-1
    .main-dark-header
    .middle-header
    .search-form
    .input-group
    .input-group-text {
    background-color: #07544f;
}
body.dark.demo-3 .header-style-1 .nav-light-header {
    background-color: #032a27;
}
body.dark.demo-3 header .offcanvas-header {
    background-color: #032a27;
}
body.dark.demo-3 .dropdown-box .user-dropdown li .login-btn {
    background-color: #032a27;
}
body.dark.demo-3 .result-box,
body.dark.demo-3 .footer-section-2 {
    background-color: #0a2224;
}
body.dark.demo-3 .service-section {
    background-color: #032a27;
}
body.dark.demo-3
    .quick-view-modal
    .modal-custom-size
    .right-box-contain
    .qty-stock-box
    .qty-box {
    background-color: rgba(3, 42, 39, 0.451);
}
body.dark.demo-3
    .quick-view-modal
    .modal-custom-size
    .right-box-contain
    .hurry-up-box
    .progress {
    background-color: #032a27;
}
@media (max-width: 1399.98px) {
    body.dark.demo-3 .dropdown-box .review-dropdown .dropdown-title {
        background-color: rgba(var(--base-gray), 1);
    }
}
body.dark.demo-3
    .offcanvas.cart-offcanvas
    .offcanvas-body
    .cart-product-box
    .total-price-box {
    background-color: rgba(var(--base-gray), 1);
}
body.dark.demo-4 {
    background-color: #0f162c;
}
body.dark.demo-4
    .header-style-1
    .main-dark-header
    .middle-header
    .search-form
    .input-group
    .input-group-text {
    background-color: #383e50;
}
body.dark.demo-4
    .header-style-1
    .main-dark-header
    .middle-header
    .search-form
    .input-group
    .form-control {
    background-color: rgba(255, 255, 255, 0.1);
}
body.dark.demo-4 .header-style-1 .nav-light-header {
    background-color: rgba(94, 98, 120, 0.102);
}
body.dark.demo-4 .header-style-1 .offcanvas-header {
    background-color: #0f162c;
}
body.dark.demo-4 .offcanvas.category-fixed-box .category-header {
    background-color: #0f162c;
    box-shadow: none;
}
body.dark.demo-4
    .offcanvas.category-fixed-box
    .category-menu-list::-webkit-scrollbar-track {
    background-color: #1a232e;
}
body.dark.demo-4
    .offcanvas.category-fixed-box
    .category-menu-list::-webkit-scrollbar-thumb {
    background-color: #374658;
}
body.dark.demo-4
    .offcanvas.category-fixed-box
    .category-menu-list::-webkit-scrollbar {
    background-color: #1a232e;
}
body.dark.demo-4
    .offcanvas
    .product-box-list
    .vertical-product-box
    .product-image {
    background-color: rgba(var(--light-gray), 1);
}
body.dark.demo-4 .offcanvas.cart-offcanvas .offcanvas-header {
    background-color: rgba(var(--light-gray), 1);
}
body.dark.demo-4
    .offcanvas.cart-offcanvas
    .offcanvas-body
    .cart-product-box
    .total-price-box {
    background-color: rgba(var(--light-gray), 1);
}
body.dark.demo-4 .recently-product-box img {
    background-color: #0f162c;
}
body.dark.demo-4
    .quick-view-modal
    .modal-custom-size
    .left-box-contain
    .quick-slider-product-box
    .view-image {
    background-color: #0f162c;
}
body.dark.demo-4
    .quick-view-modal
    .modal-custom-size
    .left-box-contain
    .quick-thumbnail-product-box
    .image-box {
    background-color: #0f162c;
}
body.dark.demo-4
    .quick-view-modal
    .modal-custom-size
    .right-box-contain
    .hurry-up-box
    .progress {
    background-color: #0f162c;
}
body.dark.demo-4
    .quick-view-modal
    .modal-custom-size
    .right-box-contain
    .qty-stock-box
    .qty-box {
    background-color: #0f162c;
}
body.dark.demo-4
    .authentication-modal
    .authentication-box
    .auth-form
    .form-control {
    background-color: #0f162c;
}
body.dark.demo-4
    .authentication-modal
    .authentication-box
    .auth-form
    .social-link
    a {
    background-color: #0f162c;
}
body.dark.demo-4
    header
    .main-dark-header
    .middle-header
    .search-form
    .input-group
    .input-group-text
    .dropdown
    .dropdown-menu
    li
    .dropdown-item:hover {
    background-color: rgba(94, 98, 120, 0.102);
}
@media (min-width: 1200px) {
    body.dark.demo-4 header .navbar-expand-xl .dropdown-menu {
        box-shadow:
            -1px 0 10px 0 rgba(22, 30, 52, 0.33),
            5px 20px 40px 0 rgba(22, 30, 52, 0.33);
        background-color: rgb(22, 30, 52);
    }
    body.dark.demo-4
        header
        .navbar-expand-xl
        .dropdown-menu
        .sub-dropdown-hover
        .sub-menu {
        background-color: rgb(22, 30, 52);
    }
}
@media (max-width: 1399.98px) {
    body.dark.demo-4 .dropdown-box .review-dropdown .dropdown-title {
        background-color: rgba(var(--light-gray), 1);
    }
    body.dark.demo-4 .dropdown-box .review-dropdown .dropdown-title .btn-close {
        background-color: transparent;
    }
}
body.dark.demo-5 header .offcanvas-header {
    background-color: #1c1a3b;
}
body.dark.demo-5 .dropdown-box .review-dropdown .dropdown-title {
    background-color: rgba(var(--base-gray), 1);
}
body.dark.demo-5
    .offcanvas.cart-offcanvas
    .offcanvas-body
    .cart-product-box
    .total-price-box {
    background-color: rgba(var(--base-gray), 1);
}
body.dark.demo-6
    .quick-view-modal
    .modal-custom-size
    .left-box-contain
    .quick-slider-product-box
    .view-image {
    background-color: rgba(48, 52, 56, 0.6);
}
body.dark.demo-6
    .quick-view-modal
    .modal-custom-size
    .left-box-contain
    .quick-thumbnail-product-box
    .image-box {
    background-color: rgba(48, 52, 56, 0.6);
}
body.dark.demo-6
    .quick-view-modal
    .modal-custom-size
    .right-box-contain
    .hurry-up-box
    .progress {
    background-color: rgba(48, 52, 56, 0.6);
}
body.dark.demo-6
    .quick-view-modal
    .modal-custom-size
    .right-box-contain
    .qty-stock-box
    .qty-box {
    background-color: rgba(48, 52, 56, 0.6);
}
body.dark.demo-6 .result-box .last-seen-search-box .search-list-box li a {
    background-color: rgba(var(--content-color), 0.05);
}
body.dark.demo-6 .category-full-box .category-header {
    background-color: #303438;
}
body.dark.demo-6 .category-full-box .category-menu-list.category-bg-color {
    background-color: #303438;
}
@media (max-width: 1399.98px) {
    body.dark.demo-6 .category-full-box .category-menu-list.category-bg-color {
        background-color: transparent;
    }
}
body.dark.demo-6
    .category-full-box
    .category-menu-list
    .sub-menu-list
    li
    .sub-category-box:hover {
    background-color: #303438;
}
body.dark.demo-6 .footer-section {
    background-color: rgb(32, 35, 38) !important;
}
body.dark.demo-6 header .offcanvas-header {
    background-color: #303438;
}
@media (max-width: 1399.98px) {
    body.dark.demo-6 .dropdown-box .review-dropdown .dropdown-title {
        background-color: #303438;
    }
}
body.dark.demo-6 .product-box-list .vertical-product-box .product-image {
    background-color: #303438;
}
body.dark.demo-6 .offcanvas.cart-offcanvas .offcanvas-header {
    background-color: #303438;
}
body.dark.demo-6
    .offcanvas.cart-offcanvas
    .offcanvas-body
    .cart-product-box
    .total-price-box {
    background-color: #303438;
}
body.dark.demo-6 .recent-product-box img {
    background-color: #303438;
}
body.dark .header-style-1 .navbar-nav .dropdown-menu .product-box-4 {
    background-color: rgba(var(--base-gray), 1);
}
body.dark .left-box .shop-left-sidebar .search-box .form-control {
    background-color: #1a232e;
}
body.dark
    .seller-details-section-2
    .seller-main-box
    .brand-related-product
    .top-trending-box
    .product-box-4 {
    background-color: rgb(26, 35, 46);
}

/* for banner images */

@media (max-width: 767px) {
    .banner-box img,
    .carousel-item img {
        width: 100%;
        height: auto !important;
        object-fit: contain !important; /* IMPORTANT */
    }

    .carousel-item {
        height: auto !important;
    }
}

/* home slider  */
