/* ==========================================================================
   Frontend Stylesheet
   Purpose: global storefront layout, section styling, utilities, and widgets.
   Editing guide: keep section-specific changes inside the nearest labeled block.
   ========================================================================== */

body {
    font-family: "Satoshi", "Lato", sans-serif;
    font-size: 15px;
    overflow-x: hidden;
    line-height: 1.5;
    background: var(--background-color);
}

:root {
    --storefront-header-bg: #08090a;
    --storefront-header-surface: #151719;
    --storefront-header-border: #3b3d40;
    --storefront-header-text: #f5f5f5;
    --storefront-header-muted: #9b9b9f;
    --storefront-accent: #f8c340;
    --storefront-slider-bg: #101112;
    --storefront-white: #fff;
    --storefront-white-soft: rgba(255, 255, 255, 0.82);
    --storefront-shadow: rgba(0, 0, 0, 0.22);
    --storefront-dot-shadow: rgba(0, 0, 0, 0.3);
    --legacy-logo-background: #06695d;
    --storefront-shell-width: 90%;
    --background-color: #FFF;
    --primary-color: #191919;
    --primary-hover-color: #06695d;
    --secondary-color: #f8c340;
    --secondary-hover-color: #dc463d;
    --bluish-color: #007ca8;
    --secondary-color-extra: #153e58;
    --en-font: "Satoshi", "Maven Pro", sans-serif;
    --bn-font: "Baloo Da 2", sans-serif;
    --poppins-font: "Satoshi", "Poppins", serif;
}

@media only screen and (max-width: 767px) {
    :root {
        --storefront-shell-width: 100%;
    }
}

/*==== COMMON / RESET CSS START ====*/
p {
    margin: 0;
    color: #000;
    padding: 0;
}

button,
button:focus,
button:active {
    outline: none !important;
    box-shadow: 0 0 !important;
}

form input::placeholder {
    font-size: 15px;
    color: #666;
    text-align: left !important;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

li {
    display: inline-block;
    list-style: none;
}

a,
a:hover,
a:focus {
    color: #000;
    text-decoration: none;
    outline-offset: 0;
    outline: 0;
    transition: 0.35s all;
}

button,
button:focus,
button:active {
    text-decoration: none;
    border: 0;
    outline: 0;
}

.form-control,
.form-control:focus,
input,
input:focus {
    outline: 0;
    border: 0;
    box-shadow: 0 0 !important;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid #ffbf47 !important;
    outline-offset: 2px !important;
    box-shadow: none !important;
}

.parsley-errors-list {
    color: var(--secondary-color);
}

.parsley-error {
    border: 1px solid var(--secondary-color) !important;
}

img {
    max-width: 100%;
    height: 100%;
}

button {
    padding: 0;
    border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
    margin: 0;
}

svg {
    height: 16px;
    width: 16px;
}

.cursor {
    cursor: pointer;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.container {
    width: var(--storefront-shell-width);
    max-width: var(--storefront-shell-width);
    margin-right: auto;
    margin-left: auto;
}

.bangla-font {
    font-family: var(--bn-font);
}

/*==== COMMON / RESET CSS END ====  */

/*==== COUPON CSS START ====  */
.coupon-section {
    background: #CBD2D5;
    padding: 10px 0;
    margin: 0;
    border-radius: 0;
}

.coupon-code p {
    font-size: 16px;
    text-align: center;
}

.coupon-code span {
    margin: 0 4px;
}

.coupon-code button {
    background: transparent;
}

.coupon-section .btn-close {
    padding: 13px 18px;
    font-size: 12px;
}

/*==== COUPON CSS END ====  */
.card-bodys.card_custom {
    font-size: 16px;
    text-align: left;
    margin: 10px;
    padding-top: 5px;
    font-weight: 500;
}

/*==== HEADER CSS START ====  */
.header-top {
    background: rgba(0, 119, 204, 0.97);
    display: flex;
    height: 50px;
    align-items: center;
}

.header-left span {
    margin-right: 15px;
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
}

.header-left span a {
    color: #fff;
}

.header-left ul li a {
    margin: 0 5px;
}

.header-left ul {
    display: inline-block;
}

.header-right {
    text-align: right;
}

.header-right span ul {
    display: flex;
    justify-content: flex-end;
    column-gap: 4px;
}

.header-right a {
    color: #ffffffcc;
    border: 2px solid;
    font-size: 16px;
    border-radius: 5px;
    transition: 0.3s all;
    border-color: hsla(0, 0%, 100%, 0.5);
    height: 30px;
    width: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-right a:hover {
    background: blue;
    border: 1px solid blue;
}

.header-left {
    font-size: 15px;
    height: 100%;
    display: flex;
    align-items: center;
}

.logo-area {
    padding: 14px 0;
    background: #fff;
}

.main-logo {
    height: 55px;
    text-align: center;
}

.main-logo a {
    display: block;
    width: 100%;
    height: 100%;
}

.main-logo img {
    width: auto;
    height: 100%;
    margin-top: 0;
    object-fit: contain !important;
}

.sticky.is-sticky {
    background: #222;
    z-index: 9999;
    border-bottom: 1px solid #ddd;
}

.logo-header {
    display: grid;
    grid-template-columns: 25% 50% 25%;
    grid-gap: 0;
    align-items: center;
    justify-content: center;
}

.main-search {
    margin: 9px 0 8px;
    position: relative;
    padding-left: 11px;
}

.search_result {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    z-index: 10030;
}

.search_product {
    position: relative;
    width: 100%;
    background: #fff;
    z-index: 10030;
    border: 1px solid #ddd;
    top: auto;
    max-height: 600px;
    overflow-y: scroll;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.14);
}

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

.search_product li {
    list-style: none;
}

.search_product li a {
    width: 100%;
    display: grid;
    grid-template-columns: 65px auto;
    grid-gap: 15px;
    padding: 8px 15px;
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid #ddd;
    transition: 0.35s all;
}

.search_product img {
    width: 50px;
    height: 50px;
    margin-top: 6px;
    border-radius: 50px;
}

.search_product li {
    width: 100%;
}

.search_product ul li:hover a {
    background: #f1f1f1;
}

.search_content .price {
    color: var(--primary-color);
    font-weight: 600;
}

.mobile-show {
    display: none !important;
}

.mobile-header {
    display: none;
}

.mobile-categories ul li {
    display: block;
    z-index: 99999;
    width: 100%;
    height: auto;
}

.mobile-categories {
    position: fixed;
    z-index: 99999;
    background: #fff;
    top: 0;
    width: 85%;
    transition: 0.35s all;
    left: -100px;
    visibility: hidden;
    opacity: 0;
    height: 100%;
}

.mobile-categories.active {
    left: 0;
    visibility: visible;
    opacity: 1;
}

.mobile-search input {
    width: 86% !important;
}

.mobile-search button {
    width: 12% !important;
}

.main-search form {
    height: 44px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    border-radius: 50px;
    border: 2px solid var(--secondary-color);
}

.main-search form input {
    height: 100%;
    padding: 0 12px;
    font-size: 12px !important;
    background: #f7f7f7;
    width: 90%;
}

.main-search form button {
    height: 100%;
    width: 12%;
    background: #f7f7f7;
}

.main-search form button svg {
    height: 20px;
    width: 35px;
    color: var(--primary-color);
}

.mobile-nav li a {
    text-transform: capitalize;
    padding: 8px 15px;
    display: block;
    border-bottom: 1px solid #ddd;
}

.mobile-menu .nav li button.active {
    border-radius: 0;
    color: var(--secondary-color);
}

.main-search.mobile-search {
    margin: 0;
    padding: 0;
}



.mobile-menu .nav li {
    width: 50%;
    float: left;
}

.mobile-menu .nav li button {
    margin: 0;
    padding: 12px 0;
    display: block;
    width: 100%;
    color: #222;
}

.header-list-items {
    text-align: center;
    margin: 5px 0;
}

.header-list-items ul {
    margin-top: 3px;
}

.for_order a i {
    font-size: 16px !important;
}

.header-list-items ul li {
    margin: 0 8px;
}

.header-list-items ul li a {
    display: inline-block;
}

.header-list-items ul li p {
    display: inline-block;
    text-align: center;
    position: relative;
    font-size: 15px;
    font-weight: normal;
}

.margin-shopping {
    margin-right: 10px;
}

.header-list-items ul li i {
    font-size: 20px;
    color: #000;
}

.cart-svg {
    height: 22px;
    width: 22px;
}

.header-list-items ul li span {
    position: absolute;
    top: -8px;
    right: -12px;
    background: var(--secondary-color);
    color: #fff;
    height: 18px;
    width: 18px;
    line-height: 18px;
    font-size: 12px;
    border-radius: 50px;
}

#cart-qty {
    position: relative;
}

.menu-area {
    background: var(--primary-color);
    text-align: center;
}

.main-menu {
    position: relative;
}

.main-menu ul li a {
    text-transform: capitalize;
    display: inline-block;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    margin: 0 12px;
    padding: 12px 0;
}
.main-menu > ul > li > a {
    color: #fff;
}

.mega-menu-container {
    position: relative;
}

.mega_menu {
    position: absolute;
    width: 100%;
    background: #fff;
    left: 0;
    top: 110%;
    padding: 30px;
    z-index: 9999;
    border: 1px solid #ddd;
    transition: 0.35s all;
    visibility: hidden;
    opacity: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    text-align: left;
}

.main-menu ul li:hover .mega_menu {
    top: 100%;
    visibility: visible;
    opacity: 1;
}

.mega_menu ul li {
    display: block;
}

.mega_menu ul li a {
    padding: 0 0;
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 400;
    margin: 5px 0 !important;
    display: block !important;
    color: #222 !important;
}

.cat-title {
    font-weight: 600 !important;
}

.main-menu ul li a:hover {
    color: #F15354;
}

/*==== HEADER CSS END ====  */

/*==== HEADER + HERO REDESIGN START ====*/
.marquee-item-wrap {
    min-height: 8px;
    height: 8px;
    line-height: 8px;
    overflow: hidden;
    background: #263c24;
}

.marquee-item-wrap .marquee {
    display: none;
}

.main-header {
    background: #fff;
}

.is-inner-page .main-header {
    position: relative;
    z-index: 20;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.logo-area {
    padding: 24px 0 22px;
    background: #fff;
}

.logo-header {
    display: grid;
    grid-template-columns: 240px minmax(320px, 650px) 260px;
    gap: 28px;
    align-items: center;
}

.main-logo {
    height: 45px;
    text-align: left;
}

.main-logo a {
    display: inline-flex;
    align-items: center;
    height: 100%;
}

.main-logo img {
    width: auto;
    height: 100%;
    max-width: 190px;
    object-fit: contain !important;
}

.main-search {
    margin: 0;
    padding-left: 0;
    position: relative;
}

.main-search form {
    height: 44px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    border-radius: 4px;
    border: 2px solid var(--secondary-color);
    background: #fff;
}

.main-search form input {
    order: 1;
    height: 100%;
    min-width: 0;
    width: 100%;
    padding: 0 14px;
    font-size: 14px !important;
    background: #fff;
}

.main-search form button {
    order: 2;
    flex: 0 0 48px;
    height: 100%;
    width: auto;
    background: #fff;
    color: var(--secondary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.main-search form button svg,
.main-search form button i {
    width: auto;
    height: auto;
    font-size: 18px;
    color: var(--secondary-color);
}

.main-search .mobile-search-submit {
    display: none;
}

.header-list-items {
    margin: 0;
    text-align: right;
}

.header-list-items ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
    margin: 0;
}

.header-list-items ul li {
    margin: 0;
}

.header-list-items ul li a {
    display: inline-flex;
    align-items: center;
    color: #111;
}

.header-auth-link {
    order: 2;
}

.header-auth-link a {
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.cart-dialog {
    order: 1;
}

.header-cart-link {
    position: relative;
    min-width: 28px;
    min-height: 28px;
    justify-content: center;
}

.header-cart-link i {
    font-size: 25px !important;
    color: #222 !important;
}

.header-cart-link span {
    position: absolute;
    top: -10px;
    right: -11px;
    min-width: 17px;
    height: 17px;
    padding: 0 5px;
    border-radius: 50px;
    background: var(--secondary-color);
    color: #fff;
    line-height: 17px;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
}

.cshort-summary {
    position: absolute;
    top: calc(100% + 12px);
    right: -8px;
    width: min(390px, calc(100vw - 24px));
    max-height: 520px;
    z-index: 9999;
    padding: 14px;
    border: 1px solid #eef0f3;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
    opacity: 0;
    transform: translateY(8px);
    visibility: hidden;
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
    overflow-y: auto;
}

.cshort-summary::before {
    position: absolute;
    top: -7px;
    right: 24px;
    width: 14px;
    height: 14px;
    border-top: 1px solid #eef0f3;
    border-left: 1px solid #eef0f3;
    background: #fff;
    transform: rotate(45deg);
    content: "";
}

#cart-qty:hover .cshort-summary {
    top: calc(100% + 10px);
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.cshort-summary ul {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) 58px minmax(94px, auto);
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
}

.cshort-summary ul li {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 64px;
    margin: 0;
    padding: 10px 5px;
    color: #111827;
    font-size: 14px;
    line-height: 1.35;
    text-align: left;
}

.cshort-summary ul li:nth-child(4n + 1) {
    padding-left: 0;
    padding-right: 8px;
}

.cshort-summary ul li:nth-child(4n + 2) {
    padding-right: 10px;
    padding-left: 10px;
}

.cshort-summary ul li:nth-child(4n) {
    padding-right: 0;
    min-width: 0;
}

.cshort-summary ul li:nth-child(4n + 1),
.cshort-summary ul li:nth-child(4n + 2),
.cshort-summary ul li:nth-child(4n + 3),
.cshort-summary ul li:nth-child(4n) {
    border-bottom: 1px solid #e6e8ec;
}

.cshort-summary ul li:nth-child(4n + 2) a {
    display: -webkit-box;
    overflow: hidden;
    color: #111827;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    text-decoration: none;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.cshort-summary ul li:nth-child(4n + 3) {
    justify-content: center;
    color: #374151;
    font-size: 12px;
    white-space: nowrap;
}

.cshort-summary ul li:nth-child(4n) {
    justify-content: flex-end;
    gap: 8px;
}

.cshort-summary img {
    width: 48px;
    height: 48px;
    padding: 4px;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    background: #fff;
    object-fit: contain;
}

.cshort-summary ul li p {
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
    color: #111827;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-align: right;
    white-space: nowrap;
}

.cshort-summary .remove-cart,
.cshort-summary .remove-cart:focus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    min-width: 28px;
    height: 28px;
    border: 0;
    border-radius: 50%;
    background: #fff2ef;
    color: #ef4444;
    line-height: 1;
    outline: 0;
}

.cshort-summary .remove-cart i {
    color: inherit;
    font-size: 14px !important;
}

.cshort-summary .cart_remove {
    margin-left: 0;
}

.cshort-summary > p {
    margin: 12px 0 14px;
    color: #111827;
    text-align: right;
}

.mini-cart-empty {
    margin: 4px 0 14px !important;
    padding: 14px;
    border: 1px dashed #d1d5db;
    border-radius: 6px;
    color: #6b7280 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-align: center !important;
}

.cshort-summary > p strong {
    display: block;
    margin: 0;
    color: #111827;
    font-size: 14px;
    font-weight: 800;
}

.go_cart,
.go_cart:hover,
.go_cart:focus {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 42px;
    margin: 0;
    padding: 0 14px;
    border-radius: 5px;
    background: #cf3727;
    color: #fff !important;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
}

.menu-area {
    background: #fff;
    text-align: left;
}

.main-menu {
    position: relative;
}

.main-menu > ul {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    overflow: visible;
}

.main-menu > ul > li {
    position: static;
}

.main-menu ul li a, .main-menu > ul > li > a {
    margin: 0;
    padding: 16px 0 17px;
    color: #111;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
}

.main-menu > ul > li > a:hover,
.main-menu > ul > li:hover > a {
    color: var(--secondary-color);
}

.cat_down {
    margin-left: 5px;
    font-size: 11px;
}

.mega_menu {
    width: 100%;
    left: 0;
    top: calc(100% + 8px);
    padding: 24px;
    z-index: 9999;
    border: 1px solid #e8e8e8;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
    background: #fff;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px 24px;
}

.main-menu ul li:hover .mega_menu {
    top: 100%;
}

.mega_menu ul {
    margin: 0;
    padding: 0;
}

.mega_menu ul li a {
    margin: 0 !important;
    padding: 4px 0;
    color: #333 !important;
    font-size: 14px;
    font-weight: 400;
}

.mega_menu .cat-title {
    color: #111 !important;
    font-weight: 700 !important;
    margin-bottom: 5px !important;
}

.main_slider .owl-prev,
.main_slider .owl-next {
    width: 38px;
    height: 38px;
    color: #fff;
    background: rgba(0, 0, 0, 0.28) !important;
    border-radius: 50%;
}

.main_slider .owl-prev {
    left: 14px;
}

.main_slider .owl-next {
    right: 14px;
}
/*==== HEADER + HERO REDESIGN END ====*/

/*==== CATEGORY SECTION CSS START ====  */
.section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    margin-top: 25px;
    border-bottom: 2px solid #ddd;
    position: relative;
}
.section-title:before {
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 10%;
    height: 2px;
    content: "";
    background: var(--primary-color);
}

.section-title h3,
.section-title h2 {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
}

a.view_all:hover {
    background: var(--primary-color) !important;
    color: #fff;
}

.front-category ul li a {
    color: #555;
    padding: 5px 8px;
    display: inline-block;
    border: 1px solid var(--secondary-color);
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    transition: 0.35s all;
    margin-right: 5px;
}

.front-category ul li a:hover {
    background: var(--secondary-color);
    color: #fff;
    border-color: var(--secondary-color);
}

.custom_paginate {
    margin-top: 25px;
}

/*==== CATEGORY SECTION CSS END ====  */

/*==== SLIDER CSS START ====  */
.slider-section {
    margin: 15px 15px;
}
.main-slider {
    position: relative;
}

.slider-item {
    width: 100%;
    height: auto;
    aspect-ratio: 2111 / 745;
}

.slider-item picture {
    display: block;
    width: 100%;
    height: 100%;
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 0;
}

.main_slider.owl-carousel:not(.owl-loaded) {
    display: block;
}

.main_slider.owl-carousel:not(.owl-loaded) .slider-item:not(:first-child) {
    display: none;
}

.main_slider .owl-prev {
    width: 40px;
    height: 40px;
    z-index: 9999;
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer !important;
}

.main_slider .owl-next {
    width: 40px;
    height: 40px;
    z-index: 9999;
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer !important;
}

.banner-right-item {
    overflow: hidden;
    border-radius: 5px;
    height: 230px;
}

a.view_all {
    border: 2px solid;
    border-color: var(--primary-color);
    padding: 4px 15px;
    border-radius: 5px 5px 0px 0px;
    color: var(--primary-color);
    text-decoration: none;
    margin-bottom: -2px;
}

.banner-right-item img {
    transition: 0.35s all;
    width: 100%;
}

.banner-right-item:hover.banner-right-item img {
    transform: scale(1.1);
}

.banner-right .item-1 {
    margin-bottom: 25px;
}


/*==== SLIDER CSS END ====  */


/* ==== FACILITIES CSS START ==== */
ul.facilities-inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px 14px;
    align-items: stretch;
    margin: 0;
    padding: 0;
}
li.faciliti-item p {
    font-size: 14px;
}
.faciliti-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 172px;
    padding: 22px 16px 18px;
    border: 1px solid #e5ecea;
    border-radius: 14px;
    background: #fff;
    text-align: center;
}
.faciliti-item img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.faciliti-item p {
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.35;
}
section.facilities-section {
    margin-top: 25px;
    margin-bottom: 10px;
}

.homeproduct,
.home-category.mt-4,
footer {
    content-visibility: auto;
    contain-intrinsic-block-size: auto 650px;
}

/* Filter drawer must escape section containment and cover the full viewport. */
.product-filter-page {
    content-visibility: visible;
    contain: none;
}
/* ==== FACILITIES CSS END ==== */

/*==== FRONT CATEGORY  CSS START ====  */
.category-title h3 {
    text-transform: uppercase;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #222;
}
.cat-item {
    border-radius: 5px;
    padding: 5px;
    border: 1px solid;
    border-color: #ddd;
}
.cat-img {
    width: 100%;
    aspect-ratio: 1;
    margin: 0 auto;
}
.cat-img img {
    height: 100%;
    object-fit: contain;
    width: 100%;
    transition: 0.35s all;
    padding: 40px;
}

.cat-item:hover .cat-img img {
    transform: scale(1.1);
}

.cat-name {
    text-align: center;
    padding: 5px 0;
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 600;
}

.category-product.no-product {
    display: block;
    text-align: center;
    padding: 100px 0;
}

.no-found img {
    width: 150px;
}

/*==== FRONT CATEGORY  CSS END ====  */

/*==== FOOTER  CSS START ====  */
.scrolltop {
    position: fixed;
    right: 34px !important;
    bottom: 10px !important;
    width: 40px !important;
    background: var(--secondary-color) !important;
    height: 40px !important;
    line-height: 40px !important;
    border-radius: 50% !important;
    text-align: center !important;
    color: #ffff !important;
    font-size: 24px !important;
    cursor: pointer;
    z-index: 99;
}

.footer-gap {
    margin: 15px 0;
    overflow: hidden;
}

footer {
    padding-bottom: 0 !important;
}

.section-title-right ul li a {
    text-transform: capitalize;
    margin-left: 10px;
    cursor: pointer;
}

.footer-menu ul li a,
.footer-contact-link {
    color: #20242a;
    margin: 8px 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-top {
    padding: 40px 0 36px;
    background: #f7f7f7;
    border-top: 1px solid #ececec;
}

.footer-grid {
    align-items: flex-start;
    row-gap: 28px;
}

.footer-about {
    padding-right: 26px;
}

.footer-about p {
    text-align: left;
    margin: 10px 0 12px;
    color: #3d4148;
    font-size: 15px;
    line-height: 1.45;
}

.footer-about a {
    display: inline-flex;
    color: #000;
}

.footer-about a img {
    height: auto;
    width: 148px;
    object-fit: contain;
}

.footer-menu .title,
.footer-title {
    margin-bottom: 17px;
    color: #14171c;
    font-family: var(--en-font);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: none;
}

.footer-menu .title a {
    margin: 0;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.footer-menu .title a:hover {
    margin-left: 0 !important;
    color: inherit;
}

.footer-menu ul li {
    display: block;
}

.footer-menu ul li a:hover,
.footer-contact-link:hover {
    color: var(--secondary-color);
    transform: translateX(2px);
}

.footer-contact-link {
    width: 100%;
    margin: 0 0 14px;
    line-height: 1.45;
}

.footer-icon {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ededed;
    color: #30343a;
    font-size: 13px;
}

.social_link {
    text-align: left;
    margin-top: 0;
    display: flex;
    justify-content: flex-start;
    gap: 8px;
}

.social_link li {
    display: inline-block;
}

.social_link li a {
    height: 34px;
    width: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
    border-radius: 50%;
    color: #111 !important;
    font-size: 15px;
    margin: 0 !important;
}

.social_link li a i {
    display: block;
    line-height: 1;
}

.social_link li a:hover {
    background: var(--secondary-color);
    color: #fff !important;
    transform: translateY(-2px);
}

.delivery-partner {
    margin-top: 14px;
    text-align: left;
}

.delivery-partner p {
    margin-bottom: 6px;
    color: #14171c;
    font-size: 14px;
    font-weight: 800;
}

.delivery-partner img {
    max-width: 128px;
    max-height: 42px;
    height: auto;
    object-fit: contain;
}

.footer-bottom {
    background: #010101;
    padding: 10px 0;
}

.copyright p {
    text-align: center;
    color: #a0a0a0;
}

/*==== FOOTER CSS END ====  */

/*==== DETAILS CSS START ====  */
.product-section {
    padding: 30px 0;
}

.product-cart .name {
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
}

.details-price {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin: 10px 0;
}

.details-price del {
    color: #bbb;
    margin: 5px 0;
    font-size: 19px;
}

.details_slider {
    border: 1px solid #ddd;
    border-radius: 5px;
}

.indicator_thumb {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 5px;
    margin: 10px 0;
}

.indicator_thumb.thumb_slider .owl-nav button {
    background: var(--secondary-color) !important;
    margin: 5px 2px;
    font-size: 16px !important;
}

.indicator-item {
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.indicator-item img {
    max-height: 128px !important;
    width: 100%;
    object-fit: contain;
}
.indicator_thumb .owl-prev {
    left: -15px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.indicator_thumb .owl-next {
    right: -15px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.dimage_item img {
    object-fit: contain;
}

.color_inner {
    display: flex;
}

.color-title {
    margin-bottom: 5px;
    margin-top: 6px;
    font-weight: 600;
}

.size_inner {
    display: flex;
}

.pro_unig label {
    font-weight: 600;
    margin-bottom: 10px;
}

.pro_brand p {
    font-weight: 600;
}

.pro_brand {
    margin-bottom: 7px;
    margin-top: 2px;
}

.qty-cart .quantity {
    position: relative;
    border: 1px solid #ddd;
    height: 40px;
    overflow: hidden;
    width: 130px;
    border-radius: 5px;
}

.qty-cart {
    width: auto;
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.quantity input {
    position: relative;
    text-align: center;
    font-size: 16px;
    height: 100%;
    width: 100%;
    pointer-events: none;
    font-weight: 500;
}

.quantity .minus {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    height: 40px;
    line-height: 40px;
    width: 40px;
    border-right: 1px solid #ddd;
    text-align: center;
    font-size: 40px;
    cursor: pointer;
}

.quantity .plus {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    height: 40px;
    line-height: 40px;
    width: 40px;
    border-left: 1px solid #ddd;
    text-align: center;
    font-size: 26px;
    cursor: pointer;
}

.order_now_btn, .order_now_btn:disabled {
    font-size: 18px;
    color: #fff;
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    border-radius: 3px;
    width: 50%;
    margin-left: 5px;
    height: 45px;
    margin-top: 10px;
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.order_now_btn:hover,
.order_now_btn:active {
    color: white !important;
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    outline: 0;
    color: #fff !important;
}

.add_cart_btn, .add_cart_btn:disabled {
    color: #fff;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 0;
    width: 50%;
    height: 45px;
    margin-top: 10px;
    border-radius: 5px;
    font-size: 18px;
}

.pro_brand.stock {
    margin-top: 20px;
}

.call_now_btn {
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0EC344;
    border: 0;
}

.call_now_btn i {
    margin-right: 11px;
    font-size: 28px;
}

.add_cart_btn:hover,
.add_cart_btn:active {
    color: #fff !important;
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.delivery_details tr td {
    color: #222 !important;
}

.pro_details_area {
    background: #fff;
    padding: 46px 0 56px;
}

.details-tab .nav-link {
    background: transparent;
    color: #8a8f98;
    margin: 0;
    border: 0;
    border-radius: 0;
    border-bottom: 2px solid transparent;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.25;
    padding: 0 0 15px;
    transition: color .2s ease, border-color .2s ease;
}

.details-tab .nav-link:hover,
.details-tab .nav-link.active {
    background: transparent;
    color: #111827;
    border-bottom-color: #111827;
    box-shadow: none;
}

.details-tab > .tab-content {
    border: 0;
}

.details-tab > .tab-content > .tab-content {
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.details-tab .nav-tabs {
    display: flex;
    justify-content: center;
    gap: 44px;
    border: 0;
    border-bottom: 1px solid #d9dde3;
}
.description {
    padding: 42px 0 0;
    color: #111827;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
}

.description img,
.description iframe,
.description video {
    max-width: 100% !important;
    height: auto !important;
}

.description ul {
    margin-left: 12px;
}

.description p,
.description li,
.description td,
.description th {
    color: #111827;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
}

.description ul li a {
    padding: 6px 20px;
    display: inline-block;
    box-shadow: 0px 0px 3px #ddd;
    border-radius: 5px;
    background-color: #fff;
    cursor: pointer;
}

.description ul li.active a,
.description ul li:hover a {
    background-color: #0a3a66;
    color: #fff;
}

.review-inner {
    padding: 42px 0 0;
    color: #111827;
}

.review-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.review-btn {
    text-align: right;
}

.review-btn button {
    background: var(--primary-color);
    color: #fff;
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
}

.review-title h4 {
    font-weight: 600;
    font-size: 19px;
    margin-bottom: 5px;
}

.product-ratting {
    display: none;
}

.product-ratting i {
    color: #FF7E22;
    font-size: 12px;
}

.review-card {
    background: #fff;
    padding: 16px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    position: relative;
    margin: 10px 0;
}

.review_star {
    color: #FF7E22;
    margin-bottom: 7px;
}

.details-action-box .empty-content {
    padding: 50px 0;
    text-align: center;
}

.details-action-box .empty-content i {
    font-size: 3rem;
    height: 80px;
    width: 80px;
    text-align: center;
    line-height: 80px;
    background-color: rgba(242, 88, 80, 0.2);
    border-radius: 50%;
    color: var(--secondary-color);
}

p.empty-text {
    text-align: center;
}

.empty-review {
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid #ddd;
    margin-top: 15px;
}

.empty-review i {
    height: 80px;
    width: 80px;
    line-height: 80px;
    background: #00aef033;
    font-size: 30px;
    border-radius: 50px;
    color: #00aef0;
}

.modal-content input, .modal-content input:focus {
    height: 42px;
    border: 1px solid #ddd;
}

.rating {
    unicode-bidi: bidi-override;
    direction: rtl;
    text-align: left;
}

.rating>label {
    display: inline-block;
    position: relative;
    width: 28px;
    font-weight: 600;
    color: #009e60;
}

.rating label {
    font-size: 20px !important;
    cursor: pointer !important;
}

textarea#message-text {
    border: 2px solid;
    border-color: #009e60;
    max-width: 450px;
}

.rating>label.active:before,
.rating>label.active~label:before,
.rating>label:hover:before,
.rating>label:hover~label:before {
    content: "\2605";
    position: absolute;
    color: #009e60;
}

.rating input {
    display: none;
}

button.details-review-button {
    min-width: 126px;
    background: #0f821d;
    margin-top: 10px;
    padding: 7px;
    color: white;
    font-size: 14px;
    text-align: center;
    border-radius: 3px;
}

.page-title h5 {
    font-weight: 600;
    font-size: 18px;
}

.pro_vide h2 {
    font-size: 18px;
    margin-bottom: 15px;
}

.pro_vide {
    border: 0;
    padding: 0;
    margin-top: 0;
    position: static;
    top: auto;
}

.details_right {
    padding: 0px 20px;
}

.details-ratting-wrapper {
    margin-bottom: 10px;
}

.details-ratting-wrapper i {
    color: #FFDF00;
}

.details-ratting-wrapper i.far.fa-star {
    color: #959595;
}

.all-reviews-button {
    text-decoration: underline;
    margin-left: 20px;
}

.related-product-section {
    background: #fff;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.related-title {
    margin-bottom: 20px;
}

.related-title h5 {
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
}


.delivary__data {
    display: grid;
    grid-template-columns: 10% 90%;
    margin-bottom: 15px;
}
.delivary__data_qr {
    display: grid;
    grid-template-columns: 41% 59%;
}
.delivary_data_fav img {
    height: 50px;
    object-fit: contain;
    margin: 18px 0 5px 0;
}
.delivary__data_sold {
    display: flex;
    justify-content: space-between;
}
.delivary_data_qr img {
    height: 125px;
}
.header_side_bar p {
    color: #6a6a6a;
    font-size: 12px;
    margin-bottom: 10px;
}
.details_side_bar {
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 3px;
}
.delivary_data_text span {
    color: #817f7f;
    font-size: 13px;
}
.icon_app {
    font-size: 10px;
}
.delivary_data_fav p {
    font-size: 11px;
}
.delivary_data_fav {
    box-shadow: 1px 3px 15px #ddd;
    padding: 5px;
    border-radius: 5px;
}
p.sold_by {
    color: #999797;
    font-weight: 400;
}
.delivary_data_chat a {
    color: #0397fe;
}
.short_description ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.short_description ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    display:block;
}

.short_description ul li::before {
    content: "\f00c"; /* Font Awesome check icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900; /* required for solid icons */
    position: absolute;
    left: 0;
    top: 0;
    color: #28a745; /* green check (optional) */
}
.short_description ul {
    margin: 10px 0;
}
.short_description {
    margin-bottom: 15px;
}
/*==== DETAILS CSS END ====  */

/*====  CATEGORY CSS START ====  */
.page_title p {
    color: #000000;
    font-weight: 600;
    font-size: 18px;
}

.page_title {
    margin-bottom: 25px;
}

.cust_according_body ul li {
    display: block;
}

.cust_according_body ul li a {
    display: block;
    padding: 5px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #444;
}

.cust_according_body ul li:hover a {
    background-color: rgba(242, 88, 80, 0.22);
}

.subcategory-filter-label {
    display: flex;
    column-gap: 10px;
    padding: 5px 10px;
    cursor: pointer;
    padding: 5px 16px;
    font-size: 14px;
    font-weight: 600;
}

.subcategory-filter-list p {
    color: #555;
}

.subcategory-filter-label:hover {
    background-color: rgba(242, 88, 80, 0.22);
}

.subcategory-filter-label input {
    position: relative;
    border: 2px solid var(--secondary-color);
    border-radius: 2px;
    background: none;
    cursor: pointer;
    line-height: 0;
    margin: 0 .6em 0 0;
    outline: 0;
    padding: 0 !important;
    vertical-align: text-top;
    height: 20px;
    width: 20px;
    -webkit-appearance: none;
    appearance: none;
    opacity: .5;
    margin-top: 3px;
}

.subcategory-filter-label input[type=checkbox]:checked {
    background-color: var(--secondary-color);
    opacity: 1;
}

.subcategory-filter-label input[type=checkbox]:before {
    content: '';
    position: absolute;
    right: 50%;
    top: 50%;
    width: 6px;
    height: 11px;
    border: solid #FFF;
    border-width: 0 2px 2px 0;
    margin: -1px -2px 0 0px;
    transform: rotate(45deg) translate(-50%, -50%);
    z-index: 2;
}

.filter-price-inputs {
    display: flex;
    justify-content: space-between;
}

p.min-price input {
    width: 70px;
}

p.max-price input {
    width: 70px;
}

.ui-slider-horizontal .ui-slider-range {
    background-color: var(--secondary-color);
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    border-radius: 50px;
}

.cust_according_body {
    padding: 10px 0;
}

.slider-box {
    padding: 10px 25px;
}

/*====  CATEGORY CSS END ====  */

/*====  QUICK VIEW CSS START ====  */
#page-overlay {
    display: none;
    position: fixed;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    left: 0;
    top: 0;
    z-index: 9999;
}

#custom-modal {
    display: none;
}

.close-modal {
    position: absolute;
    right: -10px;
    top: -13px;
    background: #ddd;
    height: 35px;
    width: 35px;
    border-radius: 50px;
    font-size: 18px;
}

.quick-view-inner {
    overflow: hidden;
}

.quick-product .name {
    text-transform: capitalize;
    font-size: 25px;
    font-weight: 500;
    color: #444;
    margin-bottom: 5px;
}

.quick-product-img {
    width: 40%;
    float: left;
}

.quick-product-content {
    width: 60%;
    float: left;
    padding: 0 20px;
}

/*====  QUICK VIEW CSS END ====  */

.sec_title {
    margin-bottom: 10px;
}

.section-title-header {
    border-bottom: 1px solid #ececec;
    padding-bottom: 10px;
}

.section-title-header .section-title-name {
    font-size: 20px;
    font-weight: 600;
    font-family: "Lato", sans-serif;
    padding-bottom: 10px;
    position: relative;
    bottom: -2px;
    text-transform: capitalize;
}

li.see_more_btn {
    text-align: end;
}

li.recent_pro {
    font-size: 15px;
}

.sec_title i {
    font-size: 10px;
    margin-left: 5px;
}

/*==== LOADING SPINNER CSS START ====*/
#loading {
    position: fixed;
    left: 50%;
    top: 0;
    z-index: 9999;
    display: none;
    background: rgba(255, 255, 255, 0.5);
    height: 100%;
    width: 100%;
    transform: translate(-50%);
    text-align: center;
}

.custom-loader {
    width: 50px;
    height: 50px;
    --c: radial-gradient(farthest-side, var(--secondary-color) 92%, #0000);
    background: var(--c) 50% 0, var(--c) 50% 100%, var(--c) 100% 50%, var(--c) 0 50%;
    background-size: 12px 12px;
    background-repeat: no-repeat;
    animation: s7 0.5s infinite;
    position: fixed;
    top: 50%;
    left: 50%;
}

@keyframes s7 {
    to {
        transform: rotate(0.5turn);
    }
}

/*==== LOADING SPINNER CSS END ====*/

/*====   WISHLIST MODAL CSS START ====  */
#custom-modal .title {
    font-weight: 600;
    font-size: 20px;
    color: #555;
    text-align: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 12px;
}

.wishlist-modal .quantity {
    font-weight: 500;
    color: #777;
}

.wishlist-modal {
    margin-top: 25px;
}

.wishlist-modal .name {
    text-align: left;
    margin: 0;
}

.wishlist-modal .price {
    color: var(--secondary-color);
    font-size: 26px;
    font-weight: 600;
    margin: 12px 0;
}

.continue-confirm {
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 15px;
    margin-top: 15px;
}

.continue-btn {
    background: #ddd;
    border-radius: 5px;
    padding: 10px 0px;
    text-transform: uppercase;
    color: #666;
    font-weight: 600;
    transition: 0.35s all;
}

.confirm-btn {
    background: var(--secondary-color);
    border-radius: 5px;
    padding: 10px 0px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    display: block;
    text-align: center;
    cursor: pointer;
    transition: 0.35s all;
}

.continue-btn:hover,
.confirm-btn:hover {
    background: var(--secondary-color);
    color: #fff;
}

/*====   WISHLIST MODAL CSS END ====  */

/*====   WISHLIST CSS START ====  */
.vcart-inner {
    background: #f5f7f9;
    padding: 20px 25px;
    border-radius: 5px;
}

.vcart-content img {
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 50px;
    background: #fff;
    padding: 1px;
}

.cart_name {
    max-width: 185px;
}

.cart-title h4 {
    font-weight: 600;
    padding: 5px 10px;
    text-align: center;
}

.vcart-content table th {
    color: #666;
}

.vcart-content table td {
    font-size: 15px;
}

.remove-cart, .remove-cart:focus {
    background: #e5e5e5;
    border-radius: 50px;
    height: 30px;
    width: 30px;
    text-align: center;
    outline: 0;
}

.remove-cart .feather {
    color: #fff;
}

.wcart-btn,
.wcart-btn:focus {
    background: var(--secondary-color);
    color: #fff;
    height: 30px;
    width: 30px;
    border-radius: 50px;
    outline: 0;
}

/*==== WISHLIST CSS END ====  */

/*====  CART CSS START ====  */
.vcart-qty .quantity {
    height: 35px;
    width: 85px;
    margin-top: 0 !important;
}

.vcart-qty .quantity .minus {
    left: 0;
    width: 25px;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vcart-qty .quantity .plus {
    right: 0;
    height: 33px;
    line-height: 33px;
    width: 25px;
    font-size: 20px;
}

.cart-summary {
    background: #f5f7f9;
    padding: 15px;
    border-radius: 5px;
}

.cart-summary h5 {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.cart-summary table td {
    padding: 10px 0 !important;
    text-transform: capitalize;
    font-size: 15px;
}

.cart-summary table td:last-child {
    text-align: right;
}

.couponcode-section {
    padding-bottom: 55px;
}

.coupon-btn {
    background: var(--secondary-color);
    color: #ffff;
}

a.header-coupon {
    font-weight: 700;
}

img.coupon-image {
    height: 242px;
    width: 100%;
}

.coupon-form {
    margin-top: 25px;
}

.coupon-form form {
    display: inline-block;
    width: 300px;
}

.coupon-form form input {
    width: 80%;
    float: left;
    height: 38px;
    border: 1px solid #ddd;
    border-radius: 5px 0px 0px 5px;
    padding: 0 10px;
    text-transform: capitalize;
}

.coupon-form form input {
    width: 80%;
    float: left;
    height: 38px;
    border: 1px solid #ddd;
    border-radius: 5px 0px 0px 5px;
}

.coupon-form form button {
    width: 20%;
    background: var(--secondary-color);
    color: #fff;
    height: 38px;
    border-radius: 0px 5px 5px 0px;
}

/*====  CART CSS END ====  */

/*====  LOGIN CSS START ====  */
.auth-section input,
.auth-section input:focus {
    border: 1px solid #ddd;
}

.register-now.no-account a {
    text-align: center;
    color: var(--secondary-color);
}

.form-content form .form-group {
    position: relative;
}

.form-content form label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.no-account p {
    margin-bottom: 10px;
    margin-top: 10px;
    text-align: center;
}

.form-content {
    background: #fff;
    border-radius: 5px;
    margin: 25px 0;
    border: 1px solid #ddd;
    overflow: hidden;
}

.form-content form {
    padding: 0 15px;
}

.auth-title {
    font-size: 18px;
    border-bottom: 1px solid var(--secondary-color);
    font-weight: 700;
    text-align: left;
    margin-bottom: 7px;
    color: #fff;
    text-transform: uppercase;
    padding: 10px 15px;
    background: var(--secondary-color);
    ;
}

button.submit-btn {
    display: block;
    width: 100%;
    text-transform: uppercase;
    padding: 12px 0;
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
    border-radius: 5px;
}

.resend_otp .feather {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
}

.resend_otp button {
    border-bottom: 1px solid #db2c2c;
    color: #db2c2c;
    padding: 5px;
    margin-bottom: 10px;
    border-radius: 3px;
}

/*====  LOGIN CSS END ====  */

/*====  BRAND CSS START ====  */

.brand-section {
    position: relative;
}

.brand-item {
    height: 150px;
    border-radius: 5px;
    background: #fff;
    border: 1px solid #ddd;
}

.brand-item img {
    opacity: 0.8;
    transition: 0.35s all;
    padding: 25px;
    object-fit: contain;
}

.brand-item img:hover {
    opacity: 1;
}

/*====  BRAND CSS END ====  */

/*====  PROFILE CSS START ====  */
.customer-sidebar {
    background-color: #fff;
    padding: 10px;
    height: 100%;
}

.customer-auth {
    display: grid;
    grid-template-columns: 60px auto;
    grid-gap: 10px;
    background: #f5f7f9;
    padding: 10px;
    border-radius: 5px;
}

.customer-img img {
    border-radius: 50px;
}

.customer-section {
    padding: 20px 0;
}

.customer-sidebar .sidebar-menu {
    background: #f5f7f9;
    margin: 15px 0;
    border-radius: 5px;
}

.customer-sidebar .sidebar-menu ul li {
    display: block;
}

.customer-sidebar .sidebar-menu li a {
    padding: 10px 10px;
    display: block;
    font-size: 15px;
}

.customer-content {
    background: #fff;
    padding: 15px;
    border-radius: 5px;
}

.backend_img {
    height: 80px;
    width: 80px;
    border-radius: 50px;
}

.account-title {
    margin-bottom: 15px;
    font-size: 16px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
    text-align: left;
    font-weight: 600;
}

.invoice_btn,
.invoice_btn:focus {
    background: var(--secondary-color);
    color: #fff;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 5px;
}

.customer-sidebar .sidebar-menu li a.active {
    color: var(--secondary-color);
}

/*====  PROFILE CSS END ====  */

.payment_option {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr !important;
}

/*====  CHECKOUT CSS START ====  */
.cartlist img {
    height: 40px;
    width: 40px;
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 2px;
}

.cartlist span {
    height: 20px;
    width: 20px;
    border-radius: 50px;
}

.chheckout-section {
    padding: 35px 0;
}

.checkout-shipping .card-header {
    background: var(--secondary-color);
    padding: 25px 25px;
    color: #fff !important;
}

.checkout-shipping h5, .cart_details h5 {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    color: #000;
    font-family: var(--bn-font);
}

.cartlist .text-left {
    text-align: left;
}

.checkout-shipping label {
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #222;
    font-family: var(--bn-font);
}

.checkout-shipping h6 {
    font-weight: 600;
    color: #fff;
    font-family: var(--bn-font);
    font-size: 18px;
}

a.check-wapp.check-btn {
    background: #00D757;
    padding: 4px 9px;
    border-radius: 4px;
    margin-left: 41px;
    line-height: 35px;
}

.check-wapp i {
    background: #00D757;
    padding: 10px;
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
}

.check-position i {
    position: absolute;
    background: #00D757;
    padding: 9px;
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    transform: translateX(-394%);
}

.checkout-shipping input,
.checkout-shipping input:focus,
.checkout-shipping select,
.checkout-shipping select:focus {
    border: 1px solid #ddd;
    height: 40px;
}

.payment-methods {
    display: flex;
    gap: 15px;
}

.select2-container--default .select2-selection--single {
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    height: 40px !important;
}

#select2-district-container {
    line-height: 40px;
}

.select2-results li {
    display: block;
}

.checkout-shipping .form-check-input {
    height: 14px !important;
}

.checkout-shipping form i {
    margin-right: 5px;
}

.order_place {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover-color));
    display: block;
    width: 100%;
    min-height: 48px;
    border: 0;
    border-radius: 6px;
    padding: 10px 0;
    color: #fff !important;
    box-shadow: 0 8px 16px rgba(7, 143, 125, 0.22);
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 17px;
    margin-top: 25px;
    transition: box-shadow 0.2s ease, filter 0.2s ease;
    font-family: var(--bn-font);
}

.order_place:hover,
.order_place:focus {
    color: #fff !important;
    filter: brightness(1.04);
    box-shadow: 0 10px 18px rgba(7, 143, 125, 0.28);
}

.order_place:active {
    filter: brightness(0.98);
    box-shadow: 0 6px 12px rgba(7, 143, 125, 0.22);
}
a.cart_remove {
    background: #ffeaea;
    height: 28px;
    width: 28px;
    line-height: 30px;
    display: inline-block;
    border-radius: 50px;
}
/*====  CHECKOUT CSS END ====  */

/*====  CONTACT CSS START ====  */
.contact-section {
    padding: 15px 0;
    background: #fff;
    margin-bottom: 10px;
}

.contact-form input,
.contact-form input:focus,
.contact-form textarea,
.contact-form textarea:focus {
    border: 1px solid #ddd;
    border-radius: 0;
}

.contact-form label {
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 15px;
}

.social-media.footer-about {
    text-align: left;
    margin-top: 20px;
}

.social-media.footer-about li a {
    text-align: center;
}

.social-media.footer-about h6 {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 15px;
}

/*====  CONTACT CSS END ====  */

/*====  CONTACT PAGE REDESIGN START ====  */
.contact-page-section {
    padding: 28px 0 40px;
    background: #fbf7f3;
}
.contact-help-header {
    position: relative;
    margin-bottom: 18px;
    text-align: center;
}

.contact-help-header h1 {
    color: var(--primary-color);
    font-family: var(--poppins-font);
    font-size: 19px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.contact-help-header::after {
    display: block;
    width: 48px;
    height: 3px;
    margin: 7px auto 0;
    border-radius: 999px;
    background: var(--secondary-color);
    content: "";
}

.contact-help-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 34px;
}

.contact-help-card {
    display: flex;
    min-height: 198px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 18px 15px 20px;
    border: 1px solid #eee7df;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 9px 24px rgba(17, 24, 39, 0.08);
    text-align: center;
}

.contact-help-icon {
    display: inline-flex;
    width: 70px;
    height: 70px;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--secondary-color);
    box-shadow: inset 0 0 0 2px rgba(243, 193, 52, 0.35);
}

.contact-help-icon i {
    font-size: 31px;
    line-height: 1;
}

.contact-help-card h2 {
    min-height: 35px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-family: var(--poppins-font);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
}

.contact-help-card h2::after {
    display: block;
    width: 30px;
    height: 2px;
    margin: 7px auto 0;
    border-radius: 999px;
    background: var(--secondary-color);
    content: "";
}

.contact-help-card p {
    color: #2e3137;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.45;
}

.contact-content-grid {
    display: grid;
    grid-template-columns: minmax(360px, 0.92fr) minmax(430px, 1.08fr);
    gap: 26px;
    align-items: stretch;
}

.contact-info-panel,
.contact-message-panel {
    min-height: 430px;
    border-radius: 18px;
}

.contact-info-panel {
    padding: 34px 32px;
    border: 1px solid #eee7df;
    background: #fffaf5;
    box-shadow: 0 8px 22px rgba(17, 24, 39, 0.06);
}

.contact-eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    color: #b98200;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.contact-info-panel h2,
.contact-message-panel h2 {
    margin-bottom: 8px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 33px;
    font-weight: 700;
    line-height: 1.12;
}

.contact-info-panel h2 {
    color: var(--primary-color);
}

.contact-panel-text {
    margin-bottom: 24px;
    color: #2e3137;
    font-size: 14px;
    line-height: 1.45;
}

.contact-method-list {
    overflow: hidden;
    border: 1px solid #eee7df;
    border-radius: 14px;
    background: #fff;
}

.contact-method-item,
.contact-method-item:hover,
.contact-method-item:focus {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) auto 18px;
    gap: 12px;
    align-items: center;
    min-height: 70px;
    padding: 12px 16px;
    border-bottom: 1px solid #eee7df;
    color: inherit;
    text-decoration: none;
}

.contact-method-item:last-child {
    border-bottom: 0;
}

.contact-method-icon {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--secondary-color);
}

.contact-method-copy {
    min-width: 0;
}

.contact-method-copy strong,
.contact-method-copy small {
    display: block;
}

.contact-method-copy strong {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
}

.contact-method-copy small {
    overflow: hidden;
    color: #2e3137;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.contact-method-item em {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 23px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(243, 193, 52, 0.18);
    color: #9a6d00;
    font-size: 11px;
    font-style: normal;
    font-weight: 800;
    white-space: nowrap;
}

.contact-method-item em.is-online {
    background: rgba(8, 127, 112, 0.1);
    color: #078571;
}

.contact-method-item > .fa-chevron-right {
    color: #111827;
    font-size: 13px;
}

.contact-message-panel {
    position: relative;
    overflow: hidden;
    padding: 34px 40px;
    background: #151719;
    box-shadow: 0 12px 26px rgba(17, 24, 39, 0.16);
}

.contact-message-panel h2 {
    position: relative;
    z-index: 1;
    color: #fff;
}

.contact-message-panel h2::after {
    display: block;
    width: 34px;
    height: 2px;
    margin-top: 8px;
    border-radius: 999px;
    background: var(--secondary-color);
    content: "";
}

.contact-message-panel > p {
    position: relative;
    z-index: 1;
    margin-bottom: 22px;
    color: #fff;
    font-size: 13px;
    line-height: 1.45;
}

.contact-dot-pattern {
    position: absolute;
    top: 42px;
    right: 24px;
    width: 66px;
    height: 92px;
    opacity: 0.9;
    background-image: radial-gradient(var(--secondary-color) 2px, transparent 2px);
    background-position: 0 0;
    background-size: 14px 14px;
}

.contact-message-form {
    position: relative;
    z-index: 1;
}

.contact-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.contact-page-section .contact-form-group {
    margin-bottom: 10px;
}

.contact-page-section .contact-form input,
.contact-page-section .contact-form select,
.contact-page-section .contact-form textarea,
.contact-page-section .contact-form input:focus,
.contact-page-section .contact-form select:focus,
.contact-page-section .contact-form textarea:focus {
    width: 100%;
    min-height: 46px;
    border: 1px solid #2d3034;
    border-radius: 6px;
    background: #242629;
    color: #fff;
    font-size: 13px;
    box-shadow: none;
}

.contact-page-section .contact-form input,
.contact-page-section .contact-form select {
    height: 46px;
    padding: 0 14px;
}

.contact-page-section .contact-form textarea {
    min-height: 100px;
    padding: 14px;
    resize: vertical;
}

.contact-page-section .contact-form input::placeholder,
.contact-page-section .contact-form textarea::placeholder {
    color: #b8bcc2;
    font-size: 13px;
}

.contact-page-section .contact-form select {
    appearance: auto;
    color: #d5d8dd;
}

.contact-submit-button,
.contact-submit-button:hover,
.contact-submit-button:focus {
    display: inline-flex;
    width: 100%;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid var(--secondary-color);
    border-radius: 7px;
    background: var(--secondary-color);
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.contact-faq-section {
    margin-top: 40px;
    text-align: center;
}

.contact-faq-eyebrow {
    display: block;
    margin-bottom: 4px;
    color: #c79a20;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.contact-faq-section > h2 {
    position: relative;
    margin-bottom: 24px;
    color: var(--primary-color);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.12;
}

.contact-faq-section > h2::after {
    display: block;
    width: 42px;
    height: 3px;
    margin: 8px auto 0;
    border-radius: 999px;
    background: var(--secondary-color);
    content: "";
}

.contact-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 30px;
    text-align: left;
}

.contact-faq-column {
    display: grid;
    gap: 11px;
}

.contact-faq-item {
    overflow: hidden;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(17, 24, 39, 0.05);
}

.contact-faq-question {
    display: flex;
    width: 100%;
    min-height: 46px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 0 18px;
    border: 0;
    background: #fff;
    color: #1f2937;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
    text-align: left;
}

.contact-faq-question i {
    flex: 0 0 auto;
    color: var(--primary-color);
    font-size: 15px;
    transition: transform 0.2s ease;
}

.contact-faq-question:not(.collapsed) i {
    transform: rotate(45deg);
}

.contact-faq-answer {
    padding: 0 18px 15px;
    color: #4b5563;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.55;
}
/*====  CONTACT PAGE REDESIGN END ====  */

/*====  ALL CATEGORY CSS START ====  */

.category-thumb {
    background: #f1f1f1;
    text-align: center;
    padding: 25px 15px;
    border-radius: 5px;
}

.category-thumb img {
    width: 24px;
}

.all-category {
    display: grid;
    grid-template-columns: repeat(5, 20%);
    grid-gap: 15px;
}

.category-thumb p {
    text-align: center;
    text-transform: uppercase;
    margin-top: 10px;
}

.menu-more {
    color: var(--secondary-color) !important;
    font-weight: 600;
}

.menu-more i {
    color: var(--secondary-color) !important;
    font-weight: 600;
}

/*====  ALL CATEGORY CSS END ====  */

.page-description ul li {
    display: list-item;
    list-style: initial;
}

.page-description ul {
    padding-left: 20px;
}

.front-view-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px 50px;
}

.front-view-image {
    margin-bottom: 15px;
}

.front-view-image a {
    display: block;
}

.front-view-image a img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    transform: translateY(0px);
    transition: all 0.3s ease;
}

.front-view-item:hover .front-view-image a img {
    transform: translateY(-20px);
}

.front-view-title a {
    display: block;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

.category-banner-products {
    border-top: 1px dashed #ccc;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 7px;
    background: #fff;
}

.home-page-section-title-box {
    margin-bottom: 10px;
}

.home-page-section-title-box h3 {
    font-size: 30px;
    margin-top: 0;
    text-transform: capitalize;
    font-weight: 600;
}

.view-all-button-box.pull-right {
    float: right;
}

a.custom-button {
    border: 1px solid transparent;
    padding: 5px 15px;
    border-radius: 5px;
    color: #000;
    font-weight: 500;
    box-shadow: 0 0.275rem 0.75rem -0.0625rem rgb(11 15 25 / 6%), 0 0.125rem 0.4rem -0.0625rem rgb(11 15 25 / 3%) !important;
    display: inline-block;
    position: relative;
    background: transparent;
    transition: color 0.1s linear 0.05s;
    text-decoration: none;
}

.product-item-box {
    box-shadow: 0 2px 10px -1px rgb(0 0 0 / 12%);
    border-radius: 15px;
    background: #fff;
    margin-bottom: 15px;
}

.product-img-outer-box {
    position: relative;
    overflow: hidden;
}

.product-img-outer-box a {
    border-radius: 10px 10px 0px 0px;
}

.product-img-outer-box a img {
    transform: scale(1);
    transition: all 0.5s ease-out;
    object-fit: contain;
    background: #fff;
    width: 100%;
}

.product-img-outer-box a:hover img {
    transform: scale(1.1);
    transition: all 0.5s ease-out;
}

.product-desc-main-box {
    padding: 5px;
    text-align: center;
}

.product-title-box h4 {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.product-title-box h4 a {
    font-size: 14px;
}

.product-price-box h4 {
    font-weight: bold !important;
    font-size: 14px;
    color: #b70053;
    font-family: var(--font);
}

.product-inner button.owl-prev,
.related-product-section button.owl-prev,
.product-inner button.owl-next,
.related-product-section button.owl-next {
    top: 50%;
    position: absolute;
    display: inline-block;
    transform: translateY(-50%);
}

.product-inner button.owl-prev i,
.related-product-section button.owl-prev i,
.product-inner button.owl-next i,
.related-product-section button.owl-next i {
    width: 35px;
    height: 35px;
    background-color: #ddd;
    border-radius: 50%;
    line-height: 35px;
    text-align: center;
    transform: scale(1);
    transition: all 0.8s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.product-inner button.owl-prev:hover i,
.related-product-section button.owl-prev:hover i,
.product-inner button.owl-next:hover i,
.related-product-section button.owl-next:hover i {
    background-color: var(--secondary-color);
    border-radius: 50%;
    line-height: 35px;
    text-align: center;
    transform: scale(1.3);
    color: #fff;
}

.product-inner button.owl-prev,
.related-product-section button.owl-prev {
    left: 0;
}

.related-product-section button.owl-prev {
    left: -40px;
}

.product-inner button.owl-next,
.related-product-section button.owl-next {
    right: 0;
}

.related-product-section button.owl-next {
    right: -40px;
}

section.product-inner {
    border-top: 1px dashed #ccc;
    padding-top: 20px;
    padding-bottom: 20px;
}

.section-title-left h4 {
    font-size: 30px;
}

.product-img-outer-box a {
    position: relative;
    overflow: hidden;
    height: 260px;
    display: block;
}

.product-inner .product-img-outer-box a {
    height: 290px;
}

.category-banner-products .product-img-outer-box a {
    position: relative;
    overflow: hidden;
    height: auto;
    display: block;
}

.slide-img-box {
    border-radius: 10px;
    overflow: hidden;
}

.category-img-banner {
    margin-bottom: 15px;
}

.category-img-banner a {
    display: block;
    overflow: hidden;
}

.category-img-banner a img {
    transform: scale(1);
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    border-radius: 15px;
}

.category-img-banner:hover a img {
    transform: scale(0.95);
}

.category-main-section {
    border-top: 1px dashed #ccc;
    padding: 20px 0;
}

.menu-logo a {
    display: block;
}

.campaign-item a {
    display: block;
    width: 100%;
    height: 420px;
    overflow: hidden;
    position: relative;
}

.campaign-item a img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.campaign-main-section {
    border-top: 1px dashed #ccc;
    padding: 25px 5px;
}

.qty-cart .add-to-cart {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 15px;
    background: #087bce;
    border-radius: 0;
    color: #fff;
    height: 48px;
    width: 160px;
}

.section-meta-description {
    background-color: #fff;
    box-shadow: 0px 0px 10px #ddd;
    padding: 40px;
    border-radius: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
}

/*=== Websolution IT ==== */

.sec_title H2 {
    font-size: 17px;
    margin-bottom: 15px;
    font-weight: 600;
}

.category-breadcrumb a {
    font-size: 16px;
    color: #666666b3;
    font-weight: 400;
}

.category-breadcrumb span {
    color: #666666b3;
}

.category-breadcrumb strong {
    font-size: 16px;
}

.category-product {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 10px;
    overflow: hidden;
}

.product_item_inner {
    border-bottom: 0;
    transition: border-color 0.2s ease;
}

.wist_item {
    position: relative;
}

.product_item:hover .product_item_inner {
    border-color: var(--secondary-color);
}

.product_item {
    position: relative;
    border: 1px solid #ddd;
    transition: border-color 0.2s ease;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
}

.pro_name {
    height: 50px;
    line-height: 50px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    overflow: hidden;
    display: block;
    margin-top: 5px;
    padding: 0 5px;
}

.pro_name a {
    color: #000;
    font-size: 15px;
    text-transform: capitalize;
}

.pro_img {
    max-height: 272px;
    position: relative;
    overflow: hidden;
}

.pro_img>a {
    display: block;
    height: 100%;
}

.pro_img picture {
    display: block;
    height: 100%;
}

.pro_img img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    transition: none;
}

.product_item_inner:hover .pro_img img {
    transform: none;
}

.pro_des {
    text-align: center;
}

.pro_price {
    margin-bottom: 5px;
}

.pro_price p {
    color: var(--secondary-color);
    font-weight: 800;
    margin-top: 5px;
    text-align: center;
}

i.fa-regular.fa-trash-can.trash_icon {
    font-size: 15px;
    color: var(--secondary-color);
}

i.fa-regular.fa-trash-can.trash_icon:hover {
    color: red;

}

.pro_btn form {
    text-align: center;
    height: 35px;
    min-width: 0;
}

.pro_btn {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 35px;
    grid-gap: 5px;
    align-items: stretch;
    min-height: 35px;
    padding: 0px 15px;
    margin-bottom: 15px;
}

.cart_btn a, .cart_btn button, .variable-modal {
    background: var(--primary-color);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    line-height: 35px;
    text-align: center;
    color: #ffffff;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
    padding: 0;
    border-radius: 5px !important;
    font-weight: 600;
    text-transform: capitalize;
}

.add-cart-button button {
    width: 100%;
    height: 35px;
    line-height: 35px;
    background-color: var(--secondary-color);
    border-radius: 5px;
    color: #fff;
}

.cart_btn a:hover,
.cart_btn button:hover,
.variable-modal:hover {
    background: var(--secondary-color);
    color: #fff;
    padding: 0;
    height: 35px;
    line-height: 35px;
    transform: none;
    box-shadow: none;
}

.product_item_inner:has(.pro_btn:hover) .pro_img img {
    transform: none;
}
button.stock_out {
    display: block;
    text-align: center;
    width: 90%;
    margin: 0 auto;
    padding: 7px 0;
    background: #ffc800;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 5px;
    font-size: 14px;
}
.wsit_stock_out {
    margin-bottom: 15px;
}
.pro_price del {
    color: #222;
    margin-right: 5px;
    font-size: 14px;
    font-weight: 400;
}

.product_item_inner .shipping {
    position: absolute;
    top: 5px;
    right: 0px;
    display: inline-block;
    background-color: var(--primary-color);
    z-index: 1;
    padding: 1px 8px;
    border-radius: 5px 0 0 5px;
}
.product_item_inner .shipping p {
    color: #fff;
    font-size: 12px;
}

.pro_name a:hover {
    color: var(--primary-color);
}

.success-img {
    text-align: center;
}

.success-img img {
    width: 320px;
}

.success-title h2 {
    color: #000000;
    text-align: center;
    font-weight: 600;
    font-size: 26px;
    margin-bottom: 45px;
}

.success-table {
    background: #f3f3f3;
    padding: 15px;
}

section.createpage-section {
    padding: 50px 0;
    background: #fff;
    margin-bottom: 10px;
}

button.owl-next {
    font-size: 30px !important;
    width: 29px;
    height: 29px;
    line-height: 10px !important;
    text-align: center !important;
    border-radius: 50%;
    color: white !important;
}

button.owl-prev {
    font-size: 30px !important;
    width: 29px;
    height: 29px;
    line-height: 10px !important;
    text-align: center !important;
    border-radius: 50%;
    color: white !important;
}

section.slider-section .row .col-sm-2 {
    width: 200px;
}

form.sort-form .form-select, form.sort-form .form-select:focus {
    border: 1px solid #ddd;
    border-radius: 5px;
}
.filter_btn {
    height: 38px;
    line-height: 38px;
    text-align: center;
    background: #f1f1f1;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
}
.sorting-section {
    margin-bottom: 20px;
}

.active-filter-bar {
    display: flex;
    align-items: center;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #eee;
}

.active-filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.active-filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 32px;
    padding: 5px 10px 5px 12px;
    color: #333;
    background: #f3f8fa;
    border: 1px solid #cfeaf4;
    border-radius: 50px;
    font-size: 13px;
    line-height: 1.25;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.active-filter-tag i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: #fff;
    background: var(--primary-color);
    border-radius: 50%;
    font-size: 9px;
}

.active-filter-tag:hover {
    color: #fff;
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.active-filter-tag:hover i {
    color: var(--primary-color);
    background: #fff;
}

.clear-filter-btn {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 5px 12px;
    color: #d63031;
    background: #fff;
    border: 1px solid #f0b7b7;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.clear-filter-btn:hover {
    color: #fff;
    background: #d63031;
    border-color: #d63031;
}

.showing-data {
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.showing-data span {
    font-size: 16px;
    display: block;
    text-align: right;
}

.category-breadcrumb {
    column-gap: 8px;
}

.breadcrumb ul li a {
    color: #666666b3;
    font-size: 16px;
    text-transform: capitalize;
}

.breadcrumb ul li span {
    color: #666666b3;
}

.register-now.no-account {
    background: #fff;
    padding: 0 10px 15px 10px;
}

.comn_sec {
    padding: 20px 0;
}

.checkout-coupon-form {
    padding: 10px;
    background-color: #ddd;
}

.checkout-coupon-form .coupon {
    display: flex;
    border: 1px solid;
    border-color: #ddd;
    border-radius: 50px;
    overflow: hidden;
    background-color: #fff;
    height: 45px;
    padding: 5px;
}

.fixed_whats a {
    width: 42px;
    height: 42px;
    background: #00D757;
    text-align: center;
    line-height: 42px;
    font-size: 25px;
    position: fixed;
    bottom: 55px;
    right: 34px;
    border-radius: 50px;
    color: #fff;
    z-index: 9999;
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
}



@media only screen and (min-width: 768px) {
    .main-header {
        min-height: 132px;
    }

    .main-header.desktop-logo-sticky {
        padding-top: var(--desktop-logo-height, 0px);
    }

    .logo-area.desktop-logo-fixed {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 1040;
        width: 100%;
        box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
        animation: desktopLogoStick 0.28s ease both;
    }

    @keyframes desktopLogoStick {
        from {
            transform: translateY(-12px);
            opacity: 0.94;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
}

@media (prefers-reduced-motion: reduce) {
    .logo-area.desktop-logo-fixed {
        animation: none;
    }
}

/* ==== sidebar filter start ==== */
.filter_btn,
.filter_close {
    display: none;
}

.filter_sort .filter_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    color: var(--primary-color);
}

.homeproduct .filter_sort {
    display: grid;
    grid-template-columns: minmax(100px, 0.7fr) minmax(0, 1.3fr);
    gap: 10px;
}

.category-filter-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    left: 0;
    z-index: 10050;
    display: block;
    width: min(380px, 90vw) !important;
    height: 100dvh;
    max-height: 100dvh;
    max-width: 100%;
    padding: 0 16px 24px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #fff;
    box-shadow: 8px 0 30px rgba(0, 0, 0, 0.16);
    visibility: hidden;
    transform: translateX(-105%);
    transition: transform 0.35s ease, visibility 0.35s ease;
}

.row > .category-filter-sidebar {
    padding: 0 16px 24px;
}

.category-filter-sidebar.active {
    visibility: visible;
    transform: translateX(0);
}

.filter_sidebar_header {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 62px;
    margin: 0 -16px 20px;
    padding: 0 18px;
    color: #fff;
    background: var(--primary-color);
}

.filter_sidebar_header strong {
    font-size: 17px;
}

.category-filter-sidebar .filter_close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    color: #fff;
    background: rgba(0, 0, 0, 0.12);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
}

.category-filter-sidebar .filter_close:hover,
.category-filter-sidebar .filter_close:focus {
    background: rgba(0, 0, 0, 0.22);
}

.filter_sidebar_overlay {
    position: fixed;
    inset: 0;
    z-index: 10040;
    background: rgba(0, 0, 0, 0.48);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.row > .filter_sidebar_overlay {
    padding: 0;
}

.filter_sidebar_overlay.active {
    opacity: 1;
    visibility: visible;
}

body.filter-sidebar-open {
    overflow: hidden;
}

.sidebar_item {
    margin-bottom: 20px;
}

.sidebar_item h2.accordion-header button.accordion-button {
    background-color: var(--primary-color);
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    border-radius: 0;
    padding: 10px 20px;
}

.sidebar_item .accordion-header .accordion-button::after {
    content: "\f078";
    font-family: "FontAwesome";
    background: none;
    font-size: 17px;
}

.accordion-item {
    border-radius: 0;
}

.accordion-item .accordion-collapse {
    border-radius: 0;
}

.accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.accordion-item:last-of-type .accordion-collapse {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.cust_according_body {
    padding: 10px 0;
}

.cust_according_body ul li {
    display: block;
}

.cust_according_body ul li a {
    display: block;
    padding: 5px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #444;
}

.cust_according_body ul li:hover a {
    background-color: rgba(8, 127, 112, 0.12);
}

.subcategory-filter-list p {
    color: #555;
}

.subcategory-filter-label {
    display: flex;
    column-gap: 10px;
    padding: 5px 16px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

.subcategory-filter-label:hover {
    background-color: rgba(8, 127, 112, 0.12);
}

.subcategory-filter-label input {
    position: relative;
    border: 2px solid var(--primary-color);
    border-radius: 2px;
    background: none;
    cursor: pointer;
    line-height: 0;
    margin: 3px 0.6em 0 0;
    outline: 0;
    padding: 0 !important;
    vertical-align: text-top;
    height: 20px;
    width: 20px;
    -webkit-appearance: none;
    opacity: 0.5;
}

.subcategory-filter-label input[type="checkbox"]:checked {
    background-color: var(--primary-color);
    opacity: 1;
}

.subcategory-filter-label input[type="checkbox"]:before {
    content: "";
    position: absolute;
    right: 50%;
    top: 50%;
    width: 6px;
    height: 11px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    margin: -1px -2px 0 0px;
    transform: rotate(45deg) translate(-50%, -50%);
    z-index: 2;
}

.filter-price-inputs {
    display: flex;
    justify-content: space-between;
}

p.min-price input,
p.max-price input {
    width: 70px;
}

.slider-box {
    padding: 10px 25px;
}

.ui-slider-horizontal .ui-slider-range {
    background-color: var(--primary-color);
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    border-radius: 50px;
}
/* ==== sidebar filter end ==== */

/* ====Color Size Details Css ====*/
.selector {
    position: relative;
    width: 100%;
    background-color: inherit;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 10px;
    flex-wrap: wrap;
    row-gap: 10px;
}

.size-container {
    margin-bottom: 12px;
}

.selector-item {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.selector-item_radio {
    appearance: none;
    display: none;
}

.color_inner .selector .selector-item label {
    cursor: pointer;
}

.selector-item label {
    border: 1px solid #ddd;
}

.color_inner .selector-item label span img {
    width: 220px;
    height: 20px;
    opacity: 0;
}

.color_inner .selector-item input[type="radio"]:checked+label span img {
    opacity: 1;
}

.selector-item_label {
    position: relative;
    height: 100%;
    width: 100%;
    text-align: center;
    border-radius: 0;
    line-height: 45px;
    font-weight: 600;
    transition-duration: .5s;
    transition-property: transform, color, box-shadow;
    transform: none;
    margin: 0;
    padding: 0px 8px;
    color: #000;
}

.selector-item_radio:checked+.selector-item_label, .selector-item_label:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    cursor: pointer;
}

.color_size {
    display: flex;
    justify-content: center;
    padding: 5px;
}

.color_size span {
    padding: 5px;
}

.syotimer-cell__unit {
    display: none;
}

.timer_inner {
    display: flex;
    justify-content: space-between;
}

.timer_inner .syotimer__body {
    display: flex;
    grid-gap: 5px;
}

.timer_inner .syotimer-cell {
    width: 38px;
    text-align: center;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 5px;
    font-size: 15px;
    padding: 10px;
    font-weight: 600;
}

a.forget-link {
    display: block;
    text-align: right;
    margin-bottom: 15px;
}

.cart_details .card-header {
    padding: 10px 15px;
    background: #f5f7f9;
}

.cart_btn.order_button a {
    background: var(--secondary-color);
    color: #fff;
    width: 60%;
    padding: 6px 0px;
    font-size: 15px;
    text-transform: uppercase;
    display: block;
    width: 100%;
    transition: all .5s ease;
}

.cart_btn.order_button a:hover {
    background: var(--secondary-color);
}

.desktop_hide {
    display: none;
}

.details-product {
    background: #fff;
    margin-top: 25px;
}

.description ul li {
    display: block;
    display: list-item;
    list-style-position: inside;
    list-style-type: square;
    font-size: 16px;
    line-height: 30px;
}

.sidebar-menu {
    background: #FFF;
    margin: 0;
    border-radius: 5px;
}

.sidebar-menu ul li {
    display: block;
    position: relative;
}

.sidebar-menu li a {
    padding: 10px 15px;
    display: block;
    font-size: 15px;
    line-height: 18px;
    position: relative;
    text-transform: capitalize;
    font-weight: 500;
}

.sidebar-menu ul li a img {
    width: 20px;
    height: auto;
    margin-right: 5px;
}

.sidebar-menu li a i {
    position: absolute;
    right: 12px;
    font-size: 12px;
    top: 18px;
}

.sidebar-submenu {
    position: absolute;
    right: -110%;
    top: 0;
    width: 100%;
    background: #fff;
    visibility: hidden;
    opacity: 0;
    z-index: 9;
    transition: 0.35s all;
}

.sidebar-menu ul li {
    display: block;
    position: relative;
}

.sidebar-submenu>li {
    position: relative !important;
}

.sidebar-childmenu {
    position: absolute;
    right: -100%;
    background: #fff;
    width: 100%;
    border-left: 1px solid #ddd;
    top: 0px;
    visibility: hidden;
    opacity: 0;
    z-index: 9;
}

.sidebar-menu ul li:hover>a {
    background-color: #e1fff7;
    color: #e50113;
}

.sidebar-menu ul li:hover .sidebar-submenu {
    visibility: visible;
    opacity: 1;
    left: 100%;
}

.sidebar-submenu>li:hover .sidebar-childmenu {
    visibility: visible;
    opacity: 1;
    right: -100%;
}

.col-sm-3.hidetosm {
    padding-right: 0;
}

.track_info ul li {
    display: block;
    line-height: 30px;
}

.track_info ul li span {
    width: 80px;
    display: inline-block;
    text-align: right;
    margin-right: 12px;
    font-weight: 600;
}

table.table.table-bordered.tracktable {
    margin-bottom: 0;
}

.tracktable thead {
    background: var(--secondary-color);
    color: #fff;
}

td.tfoot_bg {
    background: #f5f5f5;
    text-align: right;
}

/*==== STOREFRONT UTILITY OVERRIDES START ====  */

.comn_sec {
    padding: 20px 0;
}

.cmn_menu ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cmn_menu ul li {
    position: relative;

}

.cmn_menu ul li:after {
    content: "";
    position: absolute;
    right: -15px;
    top: 6px;
    width: 1px;
    height: 10px;
    background: #000;
}

.cmn_menu ul li:last-child:after {
    display: none;
}

.cmn_menu ul li a {
    transition: all .5s ease;
}

.cmn_menu ul li a:hover {
    color: #FB5533;
}
.copyright p a {
    color: #8fc7ff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.checkout-coupon-form .btn-theme, .checkout-coupon-form .btn-theme:focus {
    background-color: var(--secondary-color);
    color: #fff;
    border-radius: 50px;
    padding: 1px 30px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
}

.cart_btn.order_button a {
    background: #ED145B;
    text-transform: capitalize;
}

i.fab.fa-facebook-f.icon0 {
    line-height: 14px;
    font-size: 14px;
    margin-top: 7px;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background: #0866FF;
    color: #fff;
}

i.fa-brands.fa-youtube.icon1 {
    color: red;
    font-size: 25px;
    margin-left: -8px;
}

i.fa-brands.fa-whatsapp.icon2 {
    line-height: 14px;
    font-size: 14px;
    margin-top: 7px;
    height: 30px;
    width: 30px;
    border-radius: 7px;
    background: #42C152;
    color: #fff;
}

i.fa-solid.fa-phone.icon3 {
    color: blue;
    margin-top: 2px;
    font-size: 23px;
}

/*==== STOREFRONT UTILITY OVERRIDES END ====  */

div#variable-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 99999;
    overflow: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
}

div#variable-modal.show {
    opacity: 1;
    visibility: visible;
}

#variable-modal .modal-view {
    position: relative;
    width: 700px;
    background: #fff;
    border-radius: 5px;
    top: auto;
    left: auto;
    transform: none;
}
.quick-header {
    background: var(--secondary-color-extra);
    color: #fff;
    padding: 15px;
}
.quick-body {
    padding: 30px;
}
.close-variable-button {
    position: absolute;
    right: -10px;
    top: -13px;
    background: #c70c37;
    height: 35px;
    width: 35px;
    border-radius: 50px;
    color: #fff;
    font-weight: 900;
}

.close-variable-button span {
    position: relative;
    display: block;
    width: 35px;
    height: 35px;
    border-radius: 35px;
    background-color: red;
}

.close-variable-button span:last-child {
    display: none;
}

.close-variable-button span::before, .close-variable-button span::after {
    content: '';
    position: absolute;
    height: 3px;
    width: 20px;
    background-color: white;
}

.close-variable-button span::before {
    transform: rotate(45deg);
    top: 15px;
    left: 8px;
}

.close-variable-button span::after {
    transform: rotate(135deg);
    top: 15px;
    left: 8px;
}

.variable-submit {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 10px 40px;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
}

.variable-submit[disabled] {
    opacity: 0.6;
}
.product-code p {
    display: inline-block;
    color: #fff;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    line-height: 0;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.d-flex.details-btns {
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}
.details-product .stock_out {
    width: 100%;
    margin-top: 15px;
    padding: 15px 0;
}

.d-flex.details-btns button {
    padding: 0px 40px;
    font-weight: 600;
    background: var(--secondary-color-extra);
    color: #fff;
    border-radius: 5px;
    height: 40px;
}

.customized-input-box {
    position: relative;
}

.customized-input-box .input-icon-label {
    position: absolute;
    top: 32px;
    left: 0;
    background-color: #e5e5e5;
    height: 40px;
    border-radius: 5px 0 0 5px;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid;
    border-color: #ccc;
}

.customized-input-box input {
    padding-left: 70px;
}

.shipping-area-box {
    border: 1px solid;
    border-color: #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.area-item {
    border-bottom: 1px solid;
    border-color: #ddd;
    padding: 0 8px;
}

.area-item:last-child {
    border-bottom: 0;
}

.area-item input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.area-item label {
    cursor: pointer;
    position: relative;
    display: block;
    min-height: 42px;
    padding: 11px 8px;
    padding-left: 34px;
    line-height: 1.2;
    margin: 0;
    font-size: 14px;
    font-weight: 700;
}

.area-item label::before {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    background-color: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transition: border-color 400ms ease;
}

.area-item label::after {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    background-color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    top: 50%;
    left: 0;
    transform: translateY(-50%) scale(0);
    transition: transform 400ms ease;
}

.area-item.active label::after {
    transform: translateY(-50%) scale(0.55);
}

.checkout-shipping .shipping-area-box.is-selectable {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    border: 0;
    overflow: visible;
}

.checkout-shipping .shipping-area-box.is-selectable .area-item {
    min-width: 0;
    padding: 0 5px;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    cursor: pointer;
}

.checkout-shipping .shipping-area-box.is-selectable .area-item.active {
    border-color: #72b587;
    background: #edf8f0;
}

.checkout-shipping .shipping-area-box.is-selectable .area-item label {
    min-height: 38px;
    padding: 10px 2px 9px 25px;
    font-size: clamp(12px, 3.7vw, 15px);
    white-space: nowrap;
}

.checkout-shipping .shipping-area-box.is-selectable .area-item label::before,
.checkout-shipping .shipping-area-box.is-selectable .area-item label::after {
    width: 18px;
    height: 18px;
    border-color: #198754;
}

.checkout-shipping .shipping-area-box.is-selectable .area-item label::after {
    background-color: #198754;
}


.cart_table {
    font-family: var(--bn-font);
}

.variable-name {
    border-bottom: 1px solid;
    border-color: #ddd;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.variable-name h1 {
    font-size: 1.4rem;
    font-weight: 600;
    font-family: var(--poppins-font);
    text-transform: uppercase;
}

/*==== POPUP SECTION CSS START ====*/
.popup__section {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.main__popup_data {
    position: relative;
    width: auto;
    height: auto;
    max-width: 90%;
    animation: popupFadeIn 0.5s ease-in-out;
}

@keyframes popupFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
.popup__close {
    position: absolute;
    top: -25px;
    right: 12px;
    /* background: none; */
    border: none;
    font-size: 30px;
    color: #333;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s;
    background: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 34px;
    box-shadow: 1px 3px 15px #ddd;
    padding-bottom: 4px;
}
.main__popup_data img {
    width: 100%;
    height: 100%;
    display: block;
}

/*==== POPUP SECTION CSS END ====*/


/*==== PAYMENT METHOD CSS START ====*/
.payment_method {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment_method img {
    height: 30px;
}

.payment_method.active {
    border-color: #28a745;
    box-shadow: 0 0 5px #28a745;
}

.payment_method.active::before {
    content: '✔';
    color: #28a745;
    font-weight: bold;
    position: absolute;
    margin-top: -10px;
    margin-left: -10px;
    background: #fff;
    border-radius: 50%;
    border: 2px solid #28a745;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment_method label {
    display: block;
    font-weight: 500;
    margin: 0;
}

.pm-panel {
    display: none;
    background: #efefef45;
    border: 1px solid #e3e3e3;
    border-radius: 6px;
    padding: 18px;
    margin-top: 15px;
}

.pm-panel.show{display:block}
.pm-header{display:flex;align-items:center;gap:10px;background:#e9e9e9;border:1px solid #ddd;padding:10px;border-radius:4px}
.pm-header img{height:28px}
.pm-number{font-weight:700;letter-spacing:.5px}
.pm-copy{margin-left:auto;border:none;background:var(--secondary-color);color:#fff;border-radius:6px;padding:6px 10px;cursor:pointer}
.pm-title{margin:16px 0 8px 0}
.pm-steps{margin:0 0 10px 18px}
.pm-steps li {
    display: block;
}
.pm-steps--green{color:#1c8b2b}
.pm-note{color:#c21717;margin-bottom:14px}
.pm-field{margin-bottom:12px}
.pm-field label{display:block;margin-bottom:6px;font-weight:600}
.pm-field input{width:100%;padding:12px;border-radius:8px;border:1px solid #ddd;outline:none}
.pm-error{display:block;color:#c21717;margin-top:4px;font-size:.85rem}

/*==== PAYMENT METHOD CSS END ====*/

/*==== CHECKOUT REDESIGN CSS START ====*/
.chheckout-section {
    background: #f7f7f7;
    padding: 28px 0 20px;
} 

.checkout-form-grid .row {
    row-gap: 0px;
}

.checkout-card {
    overflow: hidden;
    margin-bottom: 14px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: #fff;
    box-shadow: none;
}

.checkout-shipping .checkout-card .card-header,
.cart_details .checkout-card .card-header {
    padding: 13px 18px;
    border: 0;
    background: linear-gradient(180deg, var(--primary-color), var(--primary-hover-color));
    color: #fff !important;
}

.checkout-shipping .checkout-card .card-header h6,
.cart_details .checkout-card .card-header h5 {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #fff !important;
    font-family: var(--en-font);
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.checkout-shipping .check-position,
.cart_details .checkout-card:first-child .card-header h5 {
    font-size: 0;
}

.checkout-shipping .check-position::before {
    content: "\f2bb";
    color: #fff;
    font-family: "Font Awesome 6 Free";
    font-size: 16px;
    font-weight: 400;
}

.checkout-shipping .check-position::after {
    content: "Shipping Information";
    color: #fff;
    font-size: 15px;
}

.cart_details .checkout-card:first-child .card-header h5::before {
    content: "\f07a";
    color: #fff;
    font-family: "Font Awesome 6 Free";
    font-size: 16px;
    font-weight: 900;
}

.cart_details .checkout-card:first-child .card-header h5::after {
    content: "Order Summary";
    color: #fff;
    font-size: 15px;
}

.checkout-shipping .checkout-card .card-header i,
.cart_details .checkout-card .card-header i {
    color: #fff;
    font-size: 17px;
}

.checkout-card .card-body {
    padding: 18px;
}

.checkout-shipping label {
    margin-bottom: 7px;
    color: #171717;
    font-family: var(--en-font);
    font-size: 13px;
    font-weight: 700;
}

.checkout-shipping label span,
.checkout-shipping label::first-letter {
    color: inherit;
}

.checkout-shipping .customized-input-box input {
    padding-left: 14px;
}

.checkout-shipping .input-icon-label {
    display: none;
}

.checkout-shipping input,
.checkout-shipping input:focus,
.checkout-shipping select,
.checkout-shipping select:focus,
.checkout-shipping textarea,
.checkout-shipping textarea:focus {
    width: 100%;
    min-height: 46px;
    border: 1px solid #dddddd;
    border-radius: 5px;
    background: #fff;
    color: #222;
    font-size: 14px;
    box-shadow: none !important;
}

.checkout-shipping textarea {
    min-height: 70px;
    padding: 12px 14px;
    resize: vertical;
}

.checkout-note {
    min-height: 82px !important;
}

.checkout-shipping .order_place {
    display: none;
}

.checkout-shipping .shipping-area-box.is-selectable {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    border: 0;
}

.checkout-shipping .shipping-area-box.is-selectable .area-item,
.checkout-shipping .shipping-area-box.is-free .area-item {
    min-width: 0;
    padding: 0;
    border: 1px solid #dfdfdf;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
}

.checkout-shipping .shipping-area-box.is-selectable .area-item.active,
.checkout-shipping .shipping-area-box.is-free .area-item.active {
    border-color: var(--primary-color);
    background: rgba(8, 127, 112, 0.05);
}

.checkout-shipping .shipping-area-box.is-selectable .area-item label,
.checkout-shipping .shipping-area-box.is-free .area-item label {
    min-height: 46px;
    margin: 0;
    padding: 14px 12px 12px 40px;
    color: #1d1d1d;
    font-family: var(--en-font);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    white-space: normal;
}

.checkout-shipping .shipping-area-box.is-selectable .area-item label::before,
.checkout-shipping .shipping-area-box.is-selectable .area-item label::after,
.checkout-shipping .shipping-area-box.is-free .area-item label::before,
.checkout-shipping .shipping-area-box.is-free .area-item label::after {
    left: 13px;
    width: 16px;
    height: 16px;
    border-color: #c9c9c9;
}

.checkout-shipping .shipping-area-box.is-selectable .area-item.active label::before,
.checkout-shipping .shipping-area-box.is-free .area-item.active label::before {
    border-color: var(--primary-color);
}

.checkout-shipping .shipping-area-box.is-selectable .area-item label::after,
.checkout-shipping .shipping-area-box.is-free .area-item label::after {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkout-summary-products {
    display: grid;
    gap: 14px;
}

.checkout-summary-item {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr) auto;
    gap: 14px;
    position: relative;
    padding-bottom: 16px;
    border-bottom: 1px solid #eeeeee;
}

.checkout-summary-remove {
    position: absolute;
    top: -6px;
    left: -6px;
    z-index: 2;
    width: 22px !important;
    height: 22px !important;
    border-radius: 50%;
    background: #fff1ed !important;
    color: #e34b39 !important;
    line-height: 22px !important;
    text-align: center;
}

.checkout-summary-remove i {
    margin: 0;
    color: inherit !important;
    font-size: 11px;
}

.checkout-summary-image {
    display: block;
    overflow: hidden;
    width: 74px;
    height: 92px;
    border-radius: 6px;
    background: #f2f2f2;
}

.cartlist .checkout-summary-image img {
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    border-radius: 0;
    object-fit: cover;
}

.checkout-summary-content {
    min-width: 0;
    padding-left: 20px;
}

.checkout-summary-title {
    display: block;
    margin-bottom: 7px;
    color: #111;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
}

.checkout-summary-content p {
    margin-bottom: 3px;
    color: #555;
    font-size: 12px;
    line-height: 1.35;
}

.checkout-summary-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    min-width: 86px;
    color: #111;
    font-size: 14px;
    font-weight: 800;
}

.checkout-summary-side .quantity {
    display: grid;
    grid-template-columns: 28px 34px 28px;
    overflow: hidden;
    border: 1px solid #dddddd;
    border-radius: 4px;
}

.checkout-summary-side .quantity button,
.checkout-summary-side .quantity input {
    position: static;
    width: 100%;
    height: 30px;
    border: 0;
    background: #fff;
    color: #111;
    text-align: center;
    line-height: 30px;
}

.checkout-summary-side .quantity input {
    border-left: 1px solid #eeeeee;
    border-right: 1px solid #eeeeee;
    font-size: 13px;
    justify-self: center;
    height: 100%;
    min-width: 0;
    padding: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
}

.checkout-total-list {
    padding-top: 2px;
}

.checkout-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 8px 0;
    color: #111;
    font-size: 14px;
}

.checkout-total-row span,
.checkout-coupon-form span,
.checkout-summary-content span,
.checkout-summary-side span {
    width: auto;
    height: auto;
    border-radius: 0;
}

.checkout-total-row strong {
    color: #111;
    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;
}

.checkout-discount-row strong {
    color: #159447;
}

.checkout-grand-total {
    margin-top: 8px;
    padding-top: 18px;
    border-top: 1px dashed #d9d9d9;
    font-weight: 900;
}

.checkout-grand-total span {
    font-size: 16px;
    font-weight: 900;
}

.checkout-grand-total strong {
    color: var(--secondary-color);
    font-size: 22px;
}

.checkout-coupon-form {
    margin: 0 -18px -18px;
    padding: 16px 18px 18px;
    border-top: 1px solid #eeeeee;
}

.checkout-coupon-form label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #111;
    font-size: 14px;
    font-weight: 700;
}

.checkout-coupon-form label i {
    color: var(--primary-color);
}

.checkout-coupon-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 92px;
    gap: 10px;
}

.checkout-coupon-row input[type="text"] {
    height: 46px;
    border: 1px solid #dddddd !important;
    border-radius: 5px;
    font-size: 14px;
}

.checkout-coupon-row .btn-theme {
    height: 46px;
    border-radius: 5px;
    background: #121212;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.checkout-payment-card {
    margin-bottom: 0;
}

.checkout-payment-card .payment-methods {
    display: grid;
    gap: 10px;
}

.checkout-payment-card .payment_method {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr) 58px;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 10px 12px;
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    background: #fff;
    text-align: left;
    box-shadow: none;
}

.checkout-payment-card .payment_method:first-child {
    grid-template-columns: 22px minmax(0, 1fr);
}

.checkout-payment-card .payment_method.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 1px rgba(8, 127, 112, 0.14);
}

.checkout-payment-card .payment_method.active::before {
    display: none;
}

.checkout-radio-dot {
    width: 17px !important;
    height: 17px !important;
    border: 2px solid #cfcfcf;
    border-radius: 50%;
}

.payment_method.active .checkout-radio-dot {
    border: 5px solid var(--primary-color);
}

.checkout-payment-text strong {
    display: block;
    color: #111;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
}

.checkout-payment-text small {
    display: block;
    margin-top: 2px;
    color: #666;
    font-size: 11px;
    line-height: 1.2;
}

.checkout-payment-card .payment_method img {
    justify-self: end;
    max-width: 56px;
    height: 28px;
    object-fit: contain;
}

.checkout-payment-card .pm-panel {
    margin-top: 12px;
    padding: 14px;
    border-radius: 6px;
    background: #fffaf0;
}

.checkout-payment-card .pm-note {
    display: none;
}

.checkout-submit-button {
    min-height: 56px;
    margin-top: 0;
    border-radius: 7px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover-color));
    color: #fff !important;
    box-shadow: none;
    font-family: var(--en-font);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0;
}

.checkout-submit-button i {
    margin-right: 8px;
    color: #fff;
}

.checkout-submit-button:hover,
.checkout-submit-button:focus {
    color: #fff !important;
    filter: brightness(1.02);
    box-shadow: none;
}

@media (max-width: 991px) {
    .cust-order-1 {
        order: 1;
    }

    .cus-order-2 {
        order: 2;
    }

    .checkout-form-grid .col-12 {
        order: 3;
    }
}

@media (max-width: 575px) {
    .chheckout-section {
        padding: 12px 0 74px;
    }

    .checkout-card {
        border-radius: 6px;
    }

    .checkout-card .card-body {
        padding: 14px;
    }

    .checkout-shipping .shipping-area-box.is-selectable {
        grid-template-columns: 1fr;
    }

    .checkout-summary-item {
        grid-template-columns: 64px minmax(0, 1fr);
        gap: 11px;
    }

    .checkout-summary-image {
        width: 64px;
        height: 82px;
    }

    .checkout-summary-side {
        grid-column: 2;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        min-width: 0;
        margin-top: 8px;
    }

    .checkout-grand-total strong {
        font-size: 20px;
    }

    .checkout-coupon-row {
        grid-template-columns: minmax(0, 1fr) 82px;
    }

    .checkout-payment-card .payment_method {
        grid-template-columns: 22px minmax(0, 1fr) 52px;
    }

    .checkout-submit-button {
        min-height: 52px;
        font-size: 16px;
    }
}

/* Checkout repair: keep colors tied to the site variables and fix compact controls. */
.checkout-shipping .checkout-card .card-header, .cart_details .checkout-card .card-header {
    background: var(--primary-color);
    color: var(--secondary-color) !important;
}

.checkout-shipping .checkout-card .card-header h6,
.cart_details .checkout-card .card-header h5,
.checkout-shipping .check-position::after,
.cart_details .checkout-card:first-child .card-header h5::after {
   color: var(--secondary-color) !important;
}

.checkout-shipping .check-position::before,
.cart_details .checkout-card:first-child .card-header h5::before,
.checkout-shipping .checkout-card .card-header i,
.cart_details .checkout-card .card-header i {
    color: #fff;
}

.checkout-shipping .shipping-area-box.is-selectable .area-item.active, .checkout-shipping .shipping-area-box.is-free .area-item.active, .checkout-payment-card .payment_method.active {
    border-color: var(--secondary-color);
    background: rgb(127 124 8 / 5%);
}

.checkout-shipping .shipping-area-box.is-selectable .area-item.active label::before,
.checkout-shipping .shipping-area-box.is-free .area-item.active label::before {
    border-color: var(--primary-color);
}

.checkout-shipping .shipping-area-box.is-selectable .area-item label::after, .checkout-shipping .shipping-area-box.is-free .area-item label::after, .payment_method.active .checkout-radio-dot {
    background: #ffffff;
    border-color: var(--secondary-color);
}
.checkout-payment-card .payment_method.active {
    box-shadow: 0 0 0 1px rgba(8, 127, 112, 0.14);
}

.checkout-summary-item {
    grid-template-columns: 68px minmax(0, 1fr) 116px;
    align-items: start;
    min-height: 104px;
    padding: 12px 0 16px;
}

.checkout-summary-products .checkout-summary-item:first-child {
    padding-top: 2px;
}

.checkout-summary-remove {
    top: 6px;
    left: 0;
    width: 24px !important;
    height: 24px !important;
    border: 1px solid rgba(242, 88, 80, 0.25);
    background: #fff !important;
    color: var(--secondary-color) !important;
    line-height: 22px !important;
}

.checkout-summary-image {
    width: 68px;
    height: 84px;
    margin-left: 16px;
}

.checkout-summary-side {
    min-width: 116px;
}

.checkout-summary-side .quantity {
    grid-template-columns: 34px 40px 34px;
    width: 108px;
}

.checkout-summary-side .quantity button {
    font-size: 17px;
    font-weight: 800;
}

.checkout-grand-total strong {
    color: var(--secondary-color);
}

.checkout-coupon-form {
    margin: 12px -18px -18px;
    padding: 14px 18px 16px;
    background: rgba(8, 127, 112, 0.06);
}

.checkout-coupon-form .coupon {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    height: auto;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.checkout-coupon-form label {
    color: #111;
    margin-bottom: 0;
    white-space: nowrap;
}

.checkout-coupon-form label i {
    color: var(--primary-color);
}

.checkout-coupon-row {
    display: flex;
    align-items: stretch;
    gap: 10px;
}

.checkout-coupon-row input[type="text"] {
    min-width: 0;
    flex: 1 1 auto;
}

.checkout-coupon-row .btn-theme {
    flex: 0 0 112px;
    min-width: 112px;
    background: var(--primary-color);
    color: #fff;
    line-height: 1.15;
    white-space: nowrap;
}

.checkout-coupon-row .btn-theme:hover,
.checkout-coupon-row .btn-theme:focus {
    background: var(--primary-hover-color);
    color: #fff;
}

.checkout-submit-button {
    background: var(--secondary-color);
    color: #000000 !important;
    margin-top: 10px;
}
.checkout-submit-button i,
.checkout-submit-button:hover,
.checkout-submit-button:focus {
    color: #fff !important;
}

@media (max-width: 575px) {
    .cart_details .card-body.cartlist {
        overflow: visible;
    }

    .checkout-summary-item {
        grid-template-columns: 70px minmax(0, 1fr);
        gap: 10px 12px;
        min-height: 0;
        padding: 12px 0 14px;
        align-items: start;
    }

    .checkout-summary-remove {
        top: 12px;
        left: 0;
        width: 23px !important;
        height: 23px !important;
        line-height: 21px !important;
    }

    .checkout-summary-image {
        width: 70px;
        height: 58px;
        margin-left: 0;
        padding-left: 18px;
        background: transparent;
        border-radius: 0;
    }

    .cartlist .checkout-summary-image img {
        object-fit: contain;
        object-position: center;
        background: transparent;
    }

    .checkout-summary-title {
        margin-bottom: 4px;
        font-size: 14px;
        line-height: 1.18;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        display: -webkit-box;
        overflow: hidden;
    }

    .checkout-summary-content p {
        font-size: 12px;
        line-height: 1.25;
    }

    .checkout-summary-side {
        grid-column: 1 / -1;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        min-width: 0;
        margin-top: 0;
        padding-left: 74px;
    }

    .checkout-summary-side .quantity {
        width: 100px;
        grid-template-columns: 31px 38px 31px;
    }

    .checkout-summary-side .quantity input {
        margin-left: 0;
        min-height: 30px;
    }

    .checkout-summary-side > strong {
        font-size: 15px;
        line-height: 1;
        white-space: nowrap;
    }

    .checkout-coupon-form {
        margin-left: -14px;
        margin-right: -14px;
    }

    .checkout-coupon-row {
        gap: 8px;
    }

    .checkout-coupon-form .coupon {
        grid-template-columns: 1fr;
    }

    .checkout-coupon-form label {
        white-space: normal;
    }

    .checkout-coupon-row .btn-theme {
        flex-basis: 86px;
        min-width: 86px;
        font-size: 12px;
        padding: 0;
    }
}
/*==== CHECKOUT REDESIGN CSS END ====*/

/*==== MARQUEE CSS START ====*/
.marquee-item-wrap {
    background: var(--secondary-color);
    height: 35px;
    line-height: 32px;
    border-bottom: 1px solid #ddd;
    width: 100%;
    overflow: hidden;
}

.marquee-text p{
    display: inline-block;
    color: #fff !important;
    margin: 0 20px;
    font-size: 15px;
}

.marquee {
    position: relative;
    width: 100%;
    height: 30px;
    overflow: hidden;
}

.marquee-text {
    position: absolute;
    left: 100%;
    white-space: nowrap;
    font-size: 14px;
    color: #fff;
    will-change: transform;
    animation: storefront-marquee 25s linear infinite;
    animation-delay: -12.5s;
}

@keyframes storefront-marquee {
    to {
        transform: translateX(calc(-100vw - 100%));
    }
}

@media (prefers-reduced-motion: reduce) {
    .marquee-text {
        position: static;
        display: inline-block;
        animation: none;
        transform: none;
    }
}
/*==== FLOATING CONTACT CSS START ====*/
.contact-wrapper {
    position: fixed;
    bottom: 65px;
    right: 30px;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    z-index: 9999;
}

.contact-btn {
    display: flex;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    border: none;
    font-size: 28px;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
    justify-content: center;
    align-items: center;
}

.contact-btn.active {
    background-color: var(--secondary-color);
}

.contact-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.35s ease;
}

.contact-icons.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.icon-item {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: transform 0.2s ease;
    color: #fff;
}

.icon-item:hover {
    color: #fff;
    transform: scale(1.1);
}

.toggle-icon {
    width: 26px;
    height: 26px;
    position: absolute;
    transition: transform 0.25s ease;
    transform-origin: center;
    transform: scale(1);
    opacity: 1;
}

.icon-close {
    opacity: 0;
    transform: scale(0);
    filter: invert(1);
}


.icon-plus {
    display: block;
}

.contact-btn.active .icon-plus {
    display: none;
    opacity: 0;
    transform: scale(0);
}

.contact-btn.active .icon-close {
    display: block;
    opacity: 1;
    transform: scale(1);
}

.icon-item.phone {
    background-color: var(--secondary-color);
}

.icon-item.messenger {
    background: linear-gradient(135deg, #0084ff, #3b5998);
}

.icon-item.whatsapp {
    background-color: #0dc243;
}

/*==== PRODUCT INFINITE SCROLL CSS START ====*/
.product-infinite-pagination {
    display: block;
    width: 100%;
    min-height: 1px;
    margin: 0;
    padding: 0;
}

.product-infinite-pagination .pagination-links {
    display: none;
}

.infinite-scroll-sentinel {
    width: 100%;
    height: 1px;
}

.infinite-loading-grid {
    display: none;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    width: 100%;
    margin: 18px 0 4px;
}

.product-infinite-pagination.is-loading .infinite-loading-grid {
    display: grid;
}

.infinite-loading-card {
    overflow: hidden;
    padding: 10px;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    background: #fff;
}

.infinite-loading-image,
.infinite-loading-line {
    display: block;
    border-radius: 4px;
    background: linear-gradient(90deg, #eeeeee 25%, #f7f7f7 37%, #eeeeee 63%);
    background-size: 400% 100%;
    animation: infiniteSkeleton 1.2s ease-in-out infinite;
}

.infinite-loading-image {
    aspect-ratio: 1;
    width: 100%;
}

.infinite-loading-line {
    height: 12px;
    margin-top: 12px;
}

.infinite-loading-line.short {
    width: 62%;
}

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

@media only screen and (max-width: 767px) {
    .infinite-loading-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .infinite-loading-card:nth-child(n+5) {
        display: none;
    }
}
/*==== PRODUCT INFINITE SCROLL CSS END ====*/

/*==== FLOATING CONTACT CSS END ====*/

/* Product card action buttons: keep hover layout perfectly stable. */
.product_item .pro_btn,
.product_item .cart_btn,
.product_item .cart_btn form,
.product_item .add-cart-button {
    height: 35px !important;
    min-height: 35px !important;
}

.product_item .cart_btn a,
.product_item .cart_btn button,
.product_item .variable-modal,
.product_item .add-cart-button button {
    box-sizing: border-box !important;
    height: 35px !important;
    min-height: 35px !important;
    max-height: 35px !important;
    line-height: 35px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin: 0 !important;
    transform: none !important;
    transition: background-color 0.2s ease, color 0.2s ease !important;
}

.product_item .cart_btn a:hover,
.product_item .cart_btn button:hover,
.product_item .variable-modal:hover {
    background: var(--secondary-color) !important;
    color: #fff !important;
}

.product_item .product_item_inner:hover .pro_img img {
    transform: none !important;
}

/*==== SHELL WIDTH FIXES START ====*/
.home-category,
.homeproduct,
.facilities-section,
footer {
    width: 100%;
}

.footer-top .container,
.footer-bottom .container {
    max-width: var(--storefront-shell-width);
}
/*==== SHELL WIDTH FIXES END ====*/

/*==== HOME CATEGORY CARD REDESIGN START ====*/
.section-title {
    margin: 18px 0 12px;
    padding: 0;
    border-bottom: 0;
}

.section-title::before {
    display: none;
}

.section-title h2,
.section-title h3 {
    margin: 0;
    color: #222;
    font-family: var(--en-font);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.25;
    text-transform: none;
}

.section-title h2 a,
.section-title h3 a {
    color: inherit;
}

.section-title .view_all,
a.view_all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #111;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: none;
}

.section-title .view_all i {
    font-size: 14px;
}

.section-title .view_all:hover,
a.view_all:hover {
    background: transparent !important;
    color: var(--secondary-color);
}

.home-category {
    margin-top: 2px;
}

.category-showcase > .container {
    width: var(--storefront-shell-width);
    max-width: var(--storefront-shell-width);
}

.category-showcase .section-title {
    justify-content: center;
    margin: 12px 0 13px;
}

.category-showcase .section-title h2 {
    font-size: 20px;
    font-weight: 600;
}

.category-slider {
    margin-top: 0;
}

.cat-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 133px;
    min-height: 133px;
    padding: 15px 10px 10px;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.cat-item:hover {
    border-color: #cfcfcf;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.cat-img {
    flex: 0 0 62px;
    width: 62px;
    height: 62px;
    aspect-ratio: auto;
    margin: 0 auto 10px;
}

.cat-img a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.cat-img img {
    width: 100%;
    height: 100%;
    padding: 0;
    object-fit: contain;
}

.cat-item:hover .cat-img img {
    transform: none;
}

.cat-name {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0;
    color: #000;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    text-transform: none;
}

.cat-name a {
    color: inherit;
    display: -webkit-box;
    max-width: 100%;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.categories-page {
    padding: 12px 0 42px;
}

.categories-page .section-title {
    margin-bottom: 18px;
}

.categories-page .section-title h1 {
    margin: 0;
    color: #222;
    font-family: var(--en-font);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.25;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 15px;
}

@media only screen and (max-width: 767px) {
    .categories-page {
        padding: 4px 0 28px;
    }

    .categories-page .section-title {
        margin-bottom: 12px;
    }

    .categories-page .section-title h1 {
        font-size: 21px;
    }

    .categories-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .categories-grid .cat-item {
        height: 132px;
        min-height: 132px;
        padding: 14px 6px 9px;
    }

    .categories-grid .cat-img {
        flex-basis: 60px;
        width: 60px;
        height: 60px;
        margin-bottom: 8px;
    }

    .categories-grid .cat-name {
        min-height: 34px;
        font-size: 13px;
    }
}
/*==== HOME CATEGORY CARD REDESIGN END ====*/

/*==== PROFESSIONAL PRODUCT CARD + QUICK VIEW START ====*/
.product_item {
    border: 1px solid #e7e7e7;
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.product_item:hover {
    border-color: #d8d8d8;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.07);
    transform: translateY(-2px);
}

.product_item_inner {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-bottom: 0;
}

.product_item .discount {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}

.product_item .discount p {
    min-width: 82px;
    height: 25px;
    padding: 0 12px;
    border-radius: 0 0 12px 0;
    background: var(--primary-color);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    line-height: 25px;
    text-align: center;
}

.product-quick-btn {
    position: absolute;
    top: 10px;
    right: 14px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: var(--primary-color);
    font-size: 22px;
    box-shadow: none;
}

.product-quick-btn:hover {
    color: var(--secondary-color);
}

.product_item_inner .shipping {
    top: 32px;
    left: 12px;
    z-index: 3;
}

.pro_img {
    height: 205px;
    max-height: none;
    padding: 30px 18px 12px;
    background: #fff;
}

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

.pro_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pro_des {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 0 16px 16px;
    text-align: left;
}

.pro_name {
    display: block;
    height: 43px;
    min-height: 43px;
    margin: 0 0 8px;
    padding: 0;
    line-height: 1.28;
}

.pro_name a {
    display: -webkit-box;
    overflow: hidden;
    color: #050505;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.28;
    text-transform: none;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.pro_rating {
    display: flex;
    align-items: center;
    gap: 4px;
    min-height: 20px;
    margin-bottom: 12px;
    color: #000;
    font-size: 13px;
}

.rating-stars {
    display: inline-flex;
    gap: 1px;
    color: #f5b400;
}

.pro_purchase_row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 68px;
    gap: 10px;
    align-items: center;
    margin-top: auto;
    margin-bottom: 12px;
}

.pro_price {
    margin-bottom: 0;
}

.pro_price p {
    display: flex;
    align-items: baseline;
    gap: 7px;
    margin: 0;
    color: var(--secondary-color);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
    white-space: nowrap;
}

.pro_price del {
    color: #777;
    font-size: 13px;
    font-weight: 500;
}

.product_item .add-cart-button {
    height: 31px !important;
    min-height: 31px !important;
}

.product_item .add-cart-button button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 31px !important;
    min-height: 31px !important;
    max-height: 31px !important;
    border-radius: 5px;
    background: var(--secondary-color);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 31px !important;
}

.product_item .add-cart-button button.active,
.product_item .add-cart-button button:hover {
    background: var(--secondary-hover-color);
}

.pro_btn {
    display: block;
    min-height: 38px;
    margin: 0;
    padding: 0;
}

.product_item .cart_btn,
.product_item .cart_btn form,
.product_item .pro_btn {
    height: 38px !important;
    min-height: 38px !important;
}

.product_item .cart_btn a,
.product_item .cart_btn button,
.product_item .variable-modal {
    width: 100%;
    height: 38px !important;
    min-height: 38px !important;
    max-height: 38px !important;
    border-radius: 5px !important;
    background: var(--primary-color);
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    line-height: 38px !important;
}
.product_item .cart_btn a:hover, .product_item .cart_btn button:hover, .product_item .variable-modal:hover {
    background: var(--secondary-color) !important;
}
.wsit_stock_out {
    margin-top: auto;
}

#custom-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 100000;
    width: min(920px, calc(100vw - 28px));
    max-height: calc(100vh - 36px);
    overflow: visible;
    transform: translate(-50%, -50%);
}

.quick-view-modal {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.quick-view-modal .close-modal {
    top: 12px;
    right: 12px;
    z-index: 5;
    width: 34px;
    height: 34px;
    border: 0;
    background: #f2f3f5;
    color: #222;
    font-size: 24px;
    line-height: 32px;
}

.quick-view-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
    gap: 0;
}

.quick-view-media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 430px;
    padding: 34px;
    background: #f8fafb;
}

.quick-view-media img {
    max-width: 100%;
    max-height: 360px;
    object-fit: contain;
}

.quick-view-content {
    padding: 42px 42px 38px;
}

.quick-view-label {
    margin-bottom: 8px;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.quick-view-content h3 {
    margin-bottom: 12px;
    color: #111;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.25;
}

.quick-view-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
    color: #555;
    font-size: 14px;
}

.quick-view-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 26px;
}

.quick-view-price .quick-view-current-price {
    color: var(--secondary-color);
    font-size: 28px;
    font-weight: 800;
}

.quick-view-price .new_price {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.quick-view-price del {
    color: #777;
    font-size: 16px;
    font-weight: 600;
    text-decoration-thickness: 1px;
    text-decoration-color: #777;
}

.quick-view-price .old_price {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.quick-view-actions {
    display: grid;
    grid-template-columns: 1fr 140px;
    gap: 12px;
}

.quick-view-actions form {
    min-width: 0;
}

.quick-view-actions button,
.quick-view-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 44px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
}

.quick-view-actions button {
    background: var(--primary-color);
    color: #fff;
}

.quick-view-actions a {
    border: 1px solid #ddd;
    color: #111;
    background: #fff;
}

.product-free-shipping-badge {
    position: absolute;
    top: 10px;
    right: 12px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    height: 27px;
    padding: 0 9px;
    border: 1px solid rgba(7, 143, 125, 0.2);
    border-radius: 999px;
    background: #ecfffb;
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 800;
    line-height: 27px;
    box-shadow: 0 4px 10px rgba(7, 143, 125, 0.08);
}

.product-free-shipping-badge i {
    font-size: 12px;
}

.quick-view-option-group {
    margin-bottom: 16px;
}

.quick-view-option-group .color-title {
    margin-bottom: 8px;
    color: #222;
    font-size: 14px;
    font-weight: 700;
}

.quick-view-option-group .selector {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.quick-view-option-group .selector-item {
    display: inline-flex;
}

.quick-view-option-group .selector-item_label {
    min-width: 42px;
    height: 34px;
    padding: 0 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #fff;
    color: #222;
    font-size: 13px;
    font-weight: 700;
    line-height: 32px;
    text-align: center;
    cursor: pointer;
}

.quick-view-option-group .selector-item_radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.quick-view-option-group .selector-item_radio:checked + .selector-item_label {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: #fff;
}

.quick-view-submit-row {
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    margin-top: 8px;
}

.quick-view-quantity {
    display: grid;
    grid-template-columns: 32px 1fr 32px;
    height: 42px;
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.quick-view-quantity .quick-view-qty-btn,
.quick-view-quantity input {
    position: static !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto !important;
    height: 100%;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #fff;
    color: #111;
    font-weight: 700;
    text-align: center;
    line-height: 1 !important;
}

.quick-view-quantity .quick-view-qty-btn {
    cursor: pointer;
    user-select: none;
}

.quick-view-quantity input {
    min-width: 0;
    border-right: 1px solid #ddd !important;
    border-left: 1px solid #ddd !important;
}

.quick-view-submit-row .variable-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 42px;
    border-radius: 6px;
    background: var(--primary-color);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
}

.quick-view-submit-row .variable-submit:disabled {
    cursor: not-allowed;
    opacity: 0.55;
}

.quick-view-actions-single {
    grid-template-columns: 1fr;
    margin-top: 12px;
}
/*==== PROFESSIONAL PRODUCT CARD + QUICK VIEW END ====*/

/*==== PRODUCT DETAILS REDESIGN START ====*/
.main-details-page {
    padding: 26px 0 8px;
    background: #fff;
}

.main-details-page .details-product {
    margin-top: 0;
    background: transparent;
}

.details-product-grid {
    display: grid;
    grid-template-columns: minmax(360px, 0.98fr) minmax(390px, 0.98fr);
    gap: 24px;
    align-items: start;
}

.product-gallery-panel .position-relative,
.main-details-page .details_right,
.details-trending-panel,
.details-info-sidebar {
    overflow: hidden;
    background: #fff;
}

.product-gallery-panel .position-relative {
    padding: 0;
    border: 0;
    border-radius: 3px;
    box-shadow: none;
}

.main-details-page .details_right {
    padding: 2px 0 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.main-details-page .product-gallery-panel .position-relative {
    overflow: visible;
}

.details-info-sidebar {
    display: grid;
    gap: 14px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.details-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: #111827;
    font-size: 13px;
    line-height: 1;
    text-transform: uppercase;
}

.details-breadcrumb a {
    color: #111827;
    font-weight: 500;
}

.details-breadcrumb i {
    font-size: 12px;
}

.main-details-page .product-cart .name {
    margin-bottom: 24px;
    color: #111827;
    font-family: var(--bn-font), var(--en-font);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.24;
    text-transform: none;
}

.main-details-page .details-ratting-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 2px;
}

.main-details-page .details-stars {
    display: inline-flex;
    gap: 2px;
    color: #111827;
    font-size: 16px;
    line-height: 1;
}

.main-details-page .details-review-count {
    color: #a6a9b0;
    font-size: 15px;
}


.main-details-page .product-code p {
    color: #111;
    font-size: 15px;
    font-weight: 500;
}

.main-details-page .product-code span {
    font-weight: 800;
}

.main-details-page .details-price {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 14px;
    margin: 0 0 22px;
    padding-bottom: 0;
    border-bottom: 0;
    color: #111;
    font-size: 16px;
    line-height: 1.1;
}

.details-price-label {
    color: #111827;
    font-size: 15px;
    font-weight: 700;
}

.details-current-price {
    color: #078571;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 0;
}

.main-details-page .details-price del {
    margin: 0;
    color: #f00;
    font-size: 18px;
    font-weight: 500;
    text-decoration-thickness: 1px;
}

.details-save-text {
    color: #078571;
    font-size: 14px;
    font-weight: 700;
}

.details-offer-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 90px;
    height: 30px;
    padding: 0 16px;
    border-radius: 999px;
    background: var(--primary-color);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

.product-stock-status {
    margin-bottom: 10px;
}

.product-stock-status p {
    color: #1f2937;
    font-size: 14px;
    font-weight: 600;
}

.product-stock-status span {
    color: var(--primary-color);
    font-weight: 800;
}

.main-details-page .short_description {
    margin: 8px 0 18px;
    overflow-wrap: anywhere;
}

.main-details-page .short_description p {
    margin-bottom: 8px;
    color: #111827;
    font-family: var(--bn-font), var(--en-font);
    font-size: 16px;
    line-height: 1.42;
}

.main-details-page .short_description ul li {
    margin-bottom: 7px;
    padding-left: 17px;
    color: #111827;
    font-family: var(--bn-font), var(--en-font);
    font-size: 16px;
    line-height: 1.38;
}

.main-details-page .short_description ul li::before {
    top: 9px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #5f26ef;
    color: transparent;
    content: "";
}

.main-details-page .color-title {
    margin: 0 0 8px;
    color: #111827;
    font-size: 15px;
    font-weight: 500;
}

.main-details-page .size-container {
    margin-bottom: 16px;
}

.main-details-page .selector {
    gap: 8px;
}

.main-details-page .selector-item_label {
    min-width: 49px;
    height: 38px;
    padding: 0 15px;
    border: 1px solid #cfd3d8;
    border-radius: 3px;
    background: #fff;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    line-height: 36px;
}

.main-details-page .selector-item_radio:checked + .selector-item_label,
.main-details-page .selector-item_label:hover {
    border-color: #078571;
    background: #fff;
    color: #078571;
}

.main-details-page .pro_brand {
    margin: -2px 0 14px;
}

.main-details-page .pro_brand p {
    color: #333;
    font-size: 14px;
}

.product-action-row {
    display: inline-grid;
    grid-template-columns: auto 140px;
    width: max-content;
    max-width: 100%;
    gap: 10px;
    align-items: center;
    justify-content: start;
    margin-top: 8px;
    margin-bottom: 12px;
}

.product-action-row > * {
    min-width: 0;
}

.product-qty-label {
    margin: 0;
    color: #111827;
    font-size: 15px;
    font-weight: 500;
}

.main-details-page .qty-cart {
    width: auto;
    column-gap: 0;
    min-width: 0;
}

.main-details-page .qty-cart .quantity {
    display: grid;
    grid-template-columns: 40px minmax(40px, 1fr) 40px;
    width: 140px;
    height: 40px;
    border: 1px solid #d3d3d3;
    border-radius: 3px;
    background: #fff;
    overflow: hidden;
}

.main-details-page .quantity input,
.main-details-page .quantity .minus,
.main-details-page .quantity .plus {
    position: static;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 0;
    height: 100%;
    border: 0;
    background: #fff;
    color: #111827;
    font-size: 17px;
    font-weight: 800;
    line-height: 1;
    z-index: 1;
}

.main-details-page .quantity .minus,
.main-details-page .quantity .plus {
    padding: 0;
}

.main-details-page .quantity input {
    border-right: 1px solid #dedede;
    border-left: 1px solid #dedede;
    padding: 0;
    text-align: center;
    z-index: 0;
}

.main-details-page .quantity .minus,
.main-details-page .quantity .plus {
    cursor: pointer;
    user-select: none;
}

.main-details-page .single_product {
    display: block;
    margin-top: 16px;
}

.details-cart-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 78px;
    gap: 16px;
}

.main-details-page .add_cart_btn,
.main-details-page .add_cart_btn:disabled,
.main-details-page .order_now_btn,
.main-details-page .order_now_btn:disabled {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 40px;
    margin: 0;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    gap : 5px;
}

.main-details-page .add_cart_btn,
.main-details-page .add_cart_btn:disabled {
    border: 1px solid #078571;
    background: #fff;
    color: #111827;
}

.main-details-page .order_now_btn,
.main-details-page .order_now_btn:disabled {
    border: 1px solid #078571;
    background: #078571;
    color: #fff;
}

.main-details-page .add_cart_btn:hover {
    border-color: #078571;
    background: #078571 !important;
    color: #fff !important;
}

.main-details-page .order_now_btn:hover {
    border-color: #006d5c;
    background: #006d5c !important;
    color: #fff !important;
}

.main-details-page .add_cart_btn:disabled,
.main-details-page .order_now_btn:disabled {
    cursor: not-allowed;
    opacity: 0.55;
}

.main-details-page .stock_out {
    width: 100%;
    height: 45px;
    border-radius: 5px;
    background: #9ca3af;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
}

.main-details-page .details_slider {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    border: 0;
    border-radius: 3px;
}

.main-details-page .details_slider .owl-nav {
    display: none;
}

.details-slide-count {
    display: none;
}

.main-details-page .details_slider .owl-stage-outer,
.main-details-page .details_slider .owl-item,
.main-details-page .dimage_item,
.main-details-page .product-gallery-panel,
.main-details-page .product-gallery-panel .position-relative {
    min-width: 0;
    max-width: 100%;
}

.main-details-page .details_slider .owl-stage {
    min-width: 0;
}

.main-details-page .dimage_item {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: auto;
    background: transparent;
    border: 1px solid #ddd;
}

.main-details-page .dimage_item img {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: cover;
}

.details-slide-count {
    display: none;
}

.details-static-benefits {
    display: none;
}

@media only screen and (min-width: 768px) {
    .main-details-page .product-option-form {
        display: grid;
        grid-template-columns: 136px minmax(0, 1fr) 54px;
        gap: 14px 16px;
        align-items: end;
        margin-top: 4px;
    }

    .main-details-page .product-option-form > input,
    .main-details-page .pro-color,
    .main-details-page .pro-size,
    .main-details-page .pro_brand,
    .main-details-page .details-contact-cards {
        grid-column: 1 / -1;
    }

    .main-details-page .product-action-row {
        display: grid;
        grid-column: 1;
        grid-template-columns: 1fr;
        gap: 10px;
        width: 136px;
        max-width: 136px;
        margin: 0;
    }

    .main-details-page .product-qty-label {
        color: #111827;
        font-size: 15px;
        font-weight: 500;
        line-height: 1.2;
    }

    .main-details-page .qty-cart .quantity {
        grid-template-columns: 40px 56px 40px;
        width: 136px;
        height: 46px;
        border: 0;
        border-radius: 0;
        background: #f4f5f6;
    }

    .main-details-page .quantity input,
    .main-details-page .quantity .minus,
    .main-details-page .quantity .plus {
        background: #f4f5f6;
        color: #071522;
        font-size: 16px;
        font-weight: 500;
    }

    .main-details-page .details-cart-row {
        display: grid;
        grid-column: 2 / 4;
        grid-template-columns: minmax(0, 1fr) 54px;
        gap: 12px;
        align-items: end;
        margin: 0;
    }

    .main-details-page .details-wishlist-inline {
        width: 54px;
        height: 46px;
        margin: 0;
        border-radius: 0;
        border-color: #e5e7eb;
        color: var(--primary-color);
        font-size: 19px;
    }

    .main-details-page .single_product {
        grid-column: 1 / -1;
        margin: 0;
    }

    .main-details-page .add_cart_btn,
    .main-details-page .add_cart_btn:disabled,
    .main-details-page .order_now_btn,
    .main-details-page .order_now_btn:disabled {
        height: 46px;
        border-radius: 0;
        border-color: #071522;
        background: #071522;
        color: #fff;
        font-size: 15px;
        font-weight: 700;
        text-transform: capitalize;
    }

    .main-details-page .order_now_btn,
    .main-details-page .order_now_btn:disabled {
        width: 100%;
    }

    .main-details-page .add_cart_btn:hover,
    .main-details-page .order_now_btn:hover {
        border-color: var(--primary-color);
        background: var(--primary-color) !important;
        color: #fff !important;
    }

    .main-details-page .details-static-benefits {
        grid-column: 1 / -1;
        display: flex;
        flex-wrap: nowrap;
        width: 100%;
        margin: 4px 0 0;
        overflow-x: auto;
        border: 1px solid #f0f2f4;
        border-radius: 4px;
        background: #fafafa;
        scrollbar-width: thin;
    }

    .main-details-page .details-static-benefit {
        position: relative;
        display: inline-flex;
        flex: 1 0 25%;
        min-width: 118px;
        min-height: 76px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 11px 8px 10px;
        text-align: center;
    }

    .main-details-page .details-static-benefit:not(:last-child)::after {
        position: absolute;
        top: 14px;
        right: 0;
        bottom: 14px;
        width: 1px;
        background: #e5e7eb;
        content: "";
    }

    .main-details-page .details-static-benefit i {
        color: #111827;
        font-size: 21px;
        line-height: 1;
    }

    .main-details-page .details-static-benefit img {
        width: 24px;
        height: 24px;
        object-fit: contain;
        flex: 0 0 24px;
    }

    .main-details-page .details-static-benefit span {
        color: #374151;
        font-family: var(--bn-font), var(--en-font);
        font-size: 11px;
        font-weight: 600;
        line-height: 1.35;
    }
}

.main-details-page .details_slider .owl-nav button {
    position: absolute;
    top: 50%;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin: 0;
    border: 0 !important;
    border-radius: 50%;
    background: #fff !important;
    color: #111827 !important;
    font-size: 18px !important;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.12);
    transform: translateY(-50%);
}

.main-details-page .details_slider .owl-prev {
    left: 14px;
}

.main-details-page .details_slider .owl-next {
    right: 14px;
}

.details-contact-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
}

.details-contact-card {
    position: relative;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    min-height: 64px;
    padding: 10px 12px;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
}

.details-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #eef7f4;
    color: #078571;
    font-size: 19px;
}

.details-contact-icon.whatsapp {
    color: #16c764;
}

.details-contact-card strong,
.details-contact-card small {
    display: block;
    min-width: 0;
}

.details-contact-card strong {
    color: #4b5563;
    font-size: 14px;
    font-weight: 700;
}

.details-contact-card small {
    margin-top: 4px;
    color: #078571;
    font-size: 13px;
    font-weight: 700;
}

.details-contact-card em {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #66d58e;
    box-shadow: 0 0 6px rgba(102, 213, 142, 0.6);
}

.details-info-box {
    padding: 10px 14px;
    border: 2px dotted #078571;
    background: #fff;
}

.details-info-box h3 {
    margin: 0 0 10px;
    color: #111827;
    font-size: 16px;
    font-weight: 500;
}

.details-info-box p {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 10px;
    color: #111827;
    font-size: 14px;
    line-height: 1.35;
}

.details-info-box p:last-child {
    margin-bottom: 0;
}

.details-info-box i {
    width: 15px;
    color: #111827;
    font-size: 14px;
    text-align: center;
}

.details-info-box a {
    color: #078571;
    font-weight: 500;
}

.details-info-box span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 8px;
    border-radius: 3px;
    background: #fb3e36;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}

.main-details-page .discount {
    position: absolute;
    top: 16px;
    left: 10%;
    z-index: 5;
}
.main-details-page .discount p {
    height: 30px;
    min-width: 86px;
    padding: 0 12px;
    border-radius: 999px;
    background: #b81428;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    line-height: 30px;
    text-align: center;
}

.main-details-page .indicator_thumb {
    position: relative;
    grid-template-columns: repeat(auto-fill, minmax(72px, 86px));
    gap: 8px;
    margin: 12px 0px 0px 0px;
}

.main-details-page .indicator_thumb.thumb_slider .owl-stage-outer {
    overflow: hidden;
}

.main-details-page .indicator_thumb.thumb_slider .owl-nav button {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 28px;
    height: 28px;
    margin: 0;
    border-radius: 50%;
    background: var(--secondary-color) !important;
    color: #fff !important;
    transform: translateY(-50%);
}

.main-details-page .indicator_thumb .owl-prev {
    left: -24px;
}

.main-details-page .indicator_thumb .owl-next {
    right: -24px;
}

.main-details-page .indicator-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 84px;
    padding: 4px;
    border: 1px solid #dedede;
    border-radius: 5px;
    background: #fff;
    cursor: pointer;
}

.main-details-page .indicator-item:hover {
    border-color: var(--primary-color);
}

.main-details-page .indicator-item img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: none !important;
    object-fit: contain;
}

.main-details-page .indicator-item p {
    display: none;
}

@media only screen and (min-width: 768px) {
    .details-product-grid {
        grid-template-columns: minmax(540px, 1.15fr) minmax(360px, 0.85fr);
        gap: 28px;
    }

    .product-gallery-panel .position-relative {
        display: grid;
        grid-template-columns: 78px minmax(0, 1fr);
        gap: 12px;
        align-items: start;
    }

    .main-details-page .details_slider {
        grid-column: 2;
        grid-row: 1;
        width: 100%;
        border-radius: 0;
    }

    .main-details-page .details_slider .owl-stage-outer,
    .main-details-page .details_slider .owl-item,
    .main-details-page .dimage_item {
        height: clamp(520px, calc(100vh - 120px), 760px);
    }

    .main-details-page .dimage_item {
        border: 0;
        border-radius: 0;
        background: #f7f7f7;
    }

    .main-details-page .dimage_item img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        background: #f7f7f7;
    }

    .main-details-page .indicator_thumb,
    .main-details-page .indicator_thumb.thumb_slider {
        grid-column: 1;
        grid-row: 1;
        display: flex !important;
        flex-direction: column;
        gap: 10px;
        width: 78px;
        max-height: clamp(520px, calc(100vh - 120px), 760px);
        margin: 0;
        padding: 0 2px 0 0;
        overflow-x: hidden;
        overflow-y: auto;
        scrollbar-width: thin;
        scrollbar-color: var(--primary-color) #f1f1f1;
    }

    .main-details-page .indicator_thumb::-webkit-scrollbar {
        width: 4px;
    }

    .main-details-page .indicator_thumb::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    .main-details-page .indicator_thumb::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 999px;
    }

    .main-details-page .indicator-item {
        flex: 0 0 100px;
        width: 76px;
        height: 100px;
        padding: 3px;
        border-radius: 0;
        border-color: #d9d9d9;
        background: #fff;
    }

    .main-details-page .indicator-item.active,
    .main-details-page .indicator-item:hover {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 1px var(--primary-color);
    }

    .main-details-page .indicator-item img {
        object-fit: cover;
        object-position: center;
    }
}

.details-trending-panel {
    padding: 8px 0 0;
}

.details-trending-panel h3 {
    margin: 0 0 10px;
    padding: 5px 10px 9px;
    border-bottom: 4px solid var(--primary-color);
    color: #111827;
    font-size: 18px;
    font-weight: 800;
}

.details-trending-list {
    display: grid;
    gap: 8px;
    padding: 0 8px 8px;
}

.details-trending-item {
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 8px;
    align-items: center;
    min-height: 72px;
    padding: 7px;
    border: 1px solid #edf0f3;
    border-radius: 5px;
    background: #fbfbfb;
}

.details-trending-item:hover {
    border-color: #d1d5db;
    background: #fff;
}

.details-trending-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #fff;
}

.details-trending-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.details-trending-content,
.details-trending-name,
.details-trending-price {
    display: block;
    min-width: 0;
}

.details-trending-name {
    overflow: hidden;
    color: #050505;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.details-trending-price {
    margin-top: 2px;
    color: #0b1b4f;
    font-size: 14px;
    line-height: 1.25;
}

.details-trending-price strong {
    color: #020617;
    font-weight: 800;
}

.details-trending-price del {
    margin-left: 4px;
    color: #9ca3af;
}

.details-trending-empty {
    padding: 12px 8px;
    color: #6b7280;
    font-size: 14px;
}

/* Admin descriptions can contain fixed-width inline specification tables. */
.pro_details_area .details-tab > .tab-content > .tab-content {
    overflow: hidden;
    border: 0;
    border-radius: 0;
}

.pro_details_area .description {
    min-width: 0;
    overflow-wrap: anywhere;
}

.pro_details_area .review-inner,
.pro_details_area .pro_vide {
    min-width: 0;
    padding: 42px 0 0;
    color: #111827;
}

.pro_details_area .description table {
    display: table !important;
    width: 100% !important;
    max-width: 100% !important;
    border-collapse: collapse !important;
    table-layout: auto;
}

.pro_details_area .description table thead {
    display: table-header-group !important;
}

.pro_details_area .description table tbody {
    display: table-row-group !important;
}

.pro_details_area .description table tr {
    display: table-row !important;
}

.pro_details_area .description table td,
.pro_details_area .description table th {
    display: table-cell !important;
    width: auto !important;
    min-width: 0 !important;
    padding: 10px 16px !important;
    vertical-align: top;
    overflow-wrap: anywhere;
}

.pro_details_area .description table td.name,
.pro_details_area .description table th:first-child {
    width: 30% !important;
}

@media only screen and (max-width: 1199px) {
    .details-product-grid {
        grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.1fr);
    }

    .details-trending-panel,
    .details-info-sidebar {
        grid-column: 1 / -1;
    }

    .details-trending-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        padding: 0 10px 10px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
    .details-product-grid {
        grid-template-columns: minmax(500px, 1.1fr) minmax(340px, 0.9fr);
    }

    .product-gallery-panel .position-relative {
        grid-template-columns: 70px minmax(0, 1fr);
        gap: 10px;
    }

    .main-details-page .indicator_thumb,
    .main-details-page .indicator_thumb.thumb_slider {
        width: 70px;
    }

    .main-details-page .indicator-item {
        flex-basis: 88px;
        width: 68px;
        height: 88px;
    }
}

@media only screen and (min-width: 1200px) {
    .main-details-page .product-gallery-panel .position-relative,
    .main-details-page .details_right,
    .main-details-page .details-trending-panel {
        min-height: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .main-details-page {
        padding: 14px 0 0;
        position: relative;
        z-index: 1;
    }

    .is-product-details-page .contact-wrapper {
        display: none;
    }

    .main-details-page .container,
    .pro_details_area .container {
        width: var(--storefront-shell-width);
        max-width: var(--storefront-shell-width);
        padding-right: 0;
        padding-left: 0;
    }

    .main-details-page .row,
    .pro_details_area .row {
        margin-right: 0;
        margin-left: 0;
    }

    .main-details-page .row > *,
    .pro_details_area .row > *,
    .details-product-grid,
    .details-product-grid > *,
    .main-details-page .product,
    .main-details-page .product-cart {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding-right: 0;
        padding-left: 0;
    }

    .details-product-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .main-details-page .details-product {
        margin-top: 0;
    }

    .main-details-page .product-gallery-panel,
    .main-details-page .product-gallery-panel .position-relative,
    .main-details-page .details_slider,
    .main-details-page .details_slider .owl-stage-outer,
    .main-details-page .details_slider .owl-stage,
    .main-details-page .details_slider .owl-item,
    .main-details-page .dimage_item {
        position: relative;
        z-index: 0;
    }

    .product-gallery-panel .position-relative,
    .main-details-page .details_right,
    .details-trending-panel,
    .details-info-sidebar {
        border-radius: 5px;
    }

    .product-gallery-panel .position-relative {
        padding: 0;
    }

    .main-details-page .details_slider {
        border-radius: 4px;
    }

    .main-details-page .details_right {
        padding: 8px 0 0;
    }

    .main-details-page .dimage_item {
        aspect-ratio: 4 / 3;
        min-height: 260px;
    }

    .main-details-page .indicator_thumb {
        gap: 6px;
        margin: 8px 22px 0;
    }

    .main-details-page .indicator_thumb.thumb_slider {
        display: block;
    }

    .main-details-page .indicator_thumb .indicator-item {
        height: 72px;
        padding: 3px;
    }

    .main-details-page .indicator_thumb.thumb_slider .owl-stage {
        display: flex;
        align-items: stretch;
    }

    .main-details-page .indicator_thumb.thumb_slider .owl-item {
        height: auto;
    }

    .main-details-page .indicator_thumb.thumb_slider .owl-nav button {
        width: 28px;
        height: 28px;
        margin: 0;
        font-size: 14px !important;
    }

    .main-details-page .indicator_thumb .owl-prev {
        left: -20px;
    }

    .main-details-page .indicator_thumb .owl-next {
        right: -20px;
    }

    .main-details-page .product-cart .name {
        font-size: 20px;
        line-height: 1.3;
        overflow-wrap: anywhere;
        white-space: normal;
    }

    .main-details-page .details-price {
        gap: 8px 10px;
        margin-bottom: 16px;
        padding-bottom: 0;
    }

    .details-current-price {
        font-size: 22px;
    }

    .details-save-text {
        font-size: 13px;
    }

    .product-action-row {
        grid-template-columns: auto 140px;
        width: max-content;
        max-width: 100%;
        gap: 10px 12px;
        margin-top: 6px;
    }

    .details-cart-row {
        grid-template-columns: minmax(0, 1fr) 80px;
        gap: 10px;
    }

    .details-contact-cards {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .main-details-page .qty-cart .quantity {
        grid-template-columns: 40px 60px 40px;
        width: 140px;
        max-width: 100%;
        height: 40px;
        border-color: #d7dce3;
        border-radius: 3px;
        box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    }

    .main-details-page .quantity input {
        background: #f8fafc;
        font-size: 16px;
    }

    .main-details-page .quantity .minus,
    .main-details-page .quantity .plus {
        color: #111827;
        font-size: 18px;
    }

    .main-details-page .single_product {
        margin-top: 8px;
    }

    .details-trending-list {
        grid-template-columns: 1fr;
    }

    .details-trending-panel h3 {
        font-size: 17px;
    }

    .details-info-box {
        padding: 11px 12px;
    }

    .details-info-box p {
        align-items: flex-start;
        font-size: 13px;
    }

    .pro_details_area {
        padding: 24px 0;
    }

    .details-tab .nav-tabs {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .details-tab .nav-link {
        width: 100%;
        margin: 0;
        padding: 10px 6px;
        font-size: 13px;
    }

    .pro_details_area .description,
    .pro_details_area .review-inner {
        padding: 16px 12px;
    }

    .pro_details_area .description table,
    .pro_details_area .description table thead,
    .pro_details_area .description table tbody {
        display: block !important;
    }

    .pro_details_area .description table tr {
        display: grid !important;
        grid-template-columns: minmax(110px, 36%) minmax(0, 1fr);
        width: 100% !important;
    }

    .pro_details_area .description table thead tr {
        grid-template-columns: 1fr;
    }

    .pro_details_area .description table td,
    .pro_details_area .description table th,
    .pro_details_area .description table td.name,
    .pro_details_area .description table th:first-child {
        display: block !important;
        width: auto !important;
        padding: 9px 10px !important;
        font-size: 13px !important;
        line-height: 1.45 !important;
    }
}

@media only screen and (max-width: 420px) {
    .main-details-page .details-price {
        align-items: flex-start;
        flex-direction: column;
    }

    .main-details-page .details-offer-badge {
        min-width: 0;
        height: 28px;
        padding: 0 12px;
        font-size: 13px;
    }

    .main-details-page .add_cart_btn,
    .main-details-page .order_now_btn {
        font-size: 15px;
    }
}
/*==== PRODUCT DETAILS REDESIGN END ====*/

/*==== REFERENCE HEADER + HERO START ====*/
.desktop-topbar {
    min-height: 35px;
    border-bottom: 1px solid #e5e7eb;
    background: #fafafa;
}

.desktop-header-shell {
    width: 90%;
    max-width: none;
    margin-right: auto;
    margin-left: auto;
    padding-right: 0;
    padding-left: 0;
}

.desktop-topbar .desktop-header-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 33px;
    overflow: hidden;
}

.desktop-marquee {
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
}

.desktop-topbar .desktop-marquee p {
    width: max-content;
    max-width: none;
    padding-left: 100%;
    white-space: nowrap;
    animation: desktop-marquee-scroll 24s linear infinite;
}

@keyframes desktop-marquee-scroll {
    to {
        transform: translateX(-100%);
    }
}

.desktop-topbar p,
.desktop-topbar a {
    margin: 0;
    color: #3f3f46;
    font-size: 15px;
    line-height: 1.3;
    text-decoration: none;
}

.desktop-topbar a {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 6px;
}

.desktop-topbar a i {
    color: #007f70;
}

.main-header .logo-area {
    padding: 10px 0;
}

.main-header .logo-header {
    display: grid;
    grid-template-columns: 400px minmax(420px, 690px) minmax(430px, 1fr);
    align-items: center;
    gap: 38px;
    min-height: 55px;
    max-width: none;
}

.main-header .main-logo {
    height: 55px;
}
.main-header .main-logo img {
    max-width: 210px;
}

.main-header .main-search form {
    height: 55px;
    border: 1px solid #007f70;
    border-radius: 4px;
}

.main-header .main-search form input {
    padding-left: 20px;
    color: #3f3f46;
    font-size: 15px !important;
}

.main-header .main-search form button {
    flex-basis: 56px;
    color: #007f70;
}

.main-header .main-search form button i {
    color: #007f70;
    font-size: 21px;
}

.main-header .header-list-items ul {
    height: 55px;
    gap: 0;
}

.main-header .header-list-items {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    align-self: center;
    height: 55px;
}

.main-header .header-list-items ul > li {
    display: flex;
    align-items: center;
    height: 55px;
    min-height: 55px;
    margin: 0;
    padding: 0 22px;
    border-left: 1px solid #ececec;
}

.main-header .header-list-items ul > li:first-child {
    padding-left: 0;
    border-left: 0;
}

.header-call-item {
    order: 1;
}

.wishlist-header-item {
    order: 2;
}

.header-auth-link {
    order: 3;
}

.header-call-item > a,
.header-auth-link > a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #292929 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.25;
    text-align: left;
}

.header-call-item > a > i,
.header-auth-link > a > i,
.header-wishlist-link > i {
    color: #007f70 !important;
    font-size: 29px !important;
}

.header-call-item > a > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 42px;
    font-size: 30px !important;
}

.header-call-item span,
.header-auth-link span {
    display: flex;
    flex-direction: column;
    white-space: nowrap;
}

.main-header .header-call-item span,
.main-header .header-auth-link span {
    position: static;
    top: auto;
    right: auto;
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    color: #292929;
    font-size: inherit;
    line-height: 1.25;
}

.header-call-item small, .header-auth-link small {
    color: #555;
    font-size: 14px;
    font-weight: 400;
}

.header-call-item strong {
    font-size: 14px;
    font-weight: 600;
}

.header-wishlist-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-width: 47px;
    height: 55px;
    min-height: 55px;
    color: #333 !important;
    text-decoration: none;
}

.header-wishlist-link > i {
    font-size: 31px !important;
}

.header-wishlist-link .wishlist-count {
    position: static;
    top: auto;
    right: auto;
    align-self: center;
    width: auto;
    height: auto;
    margin-top: 15px;
    border-radius: 0;
    background: transparent;
    color: #333 !important;
    font-size: 12px;
    line-height: 1;
}

.header-auth-link > a > i {
    width: 31px;
    text-align: center;
}

.main-header .menu-area {
    border: 0;
    background: var(--primary-color);
    box-shadow: 0 2px 5px rgb(15 23 42 / 15%);
    border-top: 1px solid #dddddd40;
}

.main-header .main-menu {
    max-width: none;
}

.main-header .main-menu > ul {
    gap: 0;
    min-height: 56px;
}

.main-header .main-menu > ul > li > a {
    padding: 17px 0px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    white-space: nowrap;
    text-transform: uppercase;
    margin-right: 14px;
}

.main-header .main-menu > ul > li:first-child > a {
    padding-left: 0;
}

.main-header .main-menu > ul > li {
    position: relative;
}

.main-header .main-menu > ul > li:hover > a,
.main-header .main-menu > ul > li:focus-within > a {
    color: #ffb200;
    background: transparent;
}

.main-header .main-menu > ul > li:hover > a .cat_down,
.main-header .main-menu > ul > li:focus-within > a .cat_down {
    color: #ffb200;
    transform: rotate(180deg);
}

.main-header .cat_down {
    transition: color 0.18s ease, transform 0.18s ease;
}

.main-header .mega_menu {
    display: block;
    width: 240px;
    min-width: 240px;
    left: 0;
    top: calc(100% + 8px);
    z-index: 10020;
    padding: 7px 0;
    border: 1px solid #e5e7eb;
    border-radius: 0 0 5px 5px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(7px);
    transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}

.main-header .main-menu > ul > li:hover > .mega_menu,
.main-header .main-menu > ul > li:focus-within > .mega_menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.main-header .mega_menu .subcategory-menu {
    display: block;
    margin: 0;
    padding: 0;
}

.main-header .mega_menu .mega-subcategory-item {
    position: relative;
    display: block;
    margin: 0;
}

.main-header .mega_menu .cat-title,
.main-header .childcategory-menu a {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 42px;
    margin: 0 !important;
    padding: 10px 14px;
    border-bottom: 1px solid #eceff2;
    color: #4b4b4b !important;
    background: #fff;
    font-size: 14px;
    font-weight: 400 !important;
    line-height: 1.35;
    text-decoration: none;
    transition: color 0.16s ease, background-color 0.16s ease;
}

.main-header .mega_menu .mega-subcategory-item:last-child > .cat-title,
.main-header .childcategory-menu li:last-child > a {
    border-bottom: 0;
}

.main-header .mega_menu .cat-title:hover,
.main-header .mega_menu .mega-subcategory-item:focus-within > .cat-title,
.main-header .childcategory-menu a:hover,
.main-header .childcategory-menu a:focus {
    color: #007f70 !important;
    background: #f6f8f8;
}

.main-header .mega_menu .cat-title i {
    margin-left: 14px;
    color: #8a8f98;
    font-size: 11px;
}

.main-header .childcategory-menu {
    position: absolute;
    top: -7px;
    left: calc(100% - 1px);
    display: block;
    width: 240px;
    min-width: 240px;
    margin: 0;
    padding: 7px 0;
    border: 1px solid #e5e7eb;
    border-radius: 0 5px 5px 0;
    background: #fff;
    box-shadow: 12px 12px 28px rgba(15, 23, 42, 0.14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(7px);
    transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}

.main-header .mega-subcategory-item:hover > .childcategory-menu,
.main-header .mega-subcategory-item:focus-within > .childcategory-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
}

.main-header .main-menu > ul > li:nth-last-child(-n + 2) .childcategory-menu {
    right: calc(100% - 1px);
    left: auto;
    border-radius: 5px 0 0 5px;
    box-shadow: -12px 12px 28px rgba(15, 23, 42, 0.14);
}

.is-home-page .slider-section {
    margin: 4px 0 28px;
}

.is-home-page .home-slider-container {
    width: 90%;
    max-width: none;
    margin-right: auto;
    margin-left: auto;
    padding-right: 0;
    padding-left: 0;
}

.is-home-page .slider-item {
    aspect-ratio: 1920 / 678;
}

.is-home-page .slider-item img {
    border-radius: 0;
}
/*==== REFERENCE HEADER + HERO END ====*/

/*==== WISHLIST START ====*/
.product_item_inner {
    position: relative;
}

.wishlist-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    background: #fff;
    color: #007f70;
    transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.wishlist-toggle:hover,
.wishlist-toggle.active {
    border-color: #007f70;
    background: #007f70;
    color: #fff;
}

.wishlist-toggle:disabled {
    cursor: wait;
    opacity: 0.65;
}

.product-wishlist-toggle {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 4;
    width: 34px;
    height: 34px;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.1);
}

.details-wishlist-toggle {
    gap: 9px;
    width: 100%;
    height: 44px;
    margin-top: 10px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
}

.details-wishlist-floating {
    display: none;
}

.main-details-page .details-wishlist-toggle {
    width: 100%;
    height: 46px;
    margin-top: 0;
    border-radius: 3px;
    color: #111827;
    font-size: 21px;
}

.main-details-page .details-wishlist-toggle:hover,
.main-details-page .details-wishlist-toggle.active {
    border-color: #078571;
    background: #fff;
    color: #078571;
}

.wishlist-page-section {
    min-height: 55vh;
    padding: 42px 0 64px;
    background: #f7f8fa;
}

.wishlist-page-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.wishlist-page-heading span {
    color: var(--secondary-color);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wishlist-page-heading h1 {
    margin: 4px 0 0;
    color: var(--text-color);
    font-size: 30px;
    font-weight: 700;
}

.wishlist-page-heading > a, .wishlist-empty-state > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 20px;
    border-radius: 4px;
    background: var(--secondary-color);
    color: #000;
    font-weight: 600;
    text-decoration: none;
}

.wishlist-page-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.wishlist-page-item {
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 7px;
    background: #fff;
}

.wishlist-page-image {
    display: block;
    aspect-ratio: 1;
    padding: 18px;
}

.wishlist-page-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wishlist-page-content {
    padding: 16px;
    border-top: 1px solid #eef0f2;
}

.wishlist-page-name {
    display: -webkit-box;
    min-height: 44px;
    overflow: hidden;
    color: #1f2937;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;
    text-decoration: none;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.wishlist-page-price {
    margin: 12px 0 16px;
    color: inherit;
    font-size: 18px;
    font-weight: 700;
}

.wishlist-page-price del {
    margin-left: 7px;
    color: #9ca3af;
    font-size: 13px;
    font-weight: 400;
}

.wishlist-page-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.wishlist-page-actions > a {
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 700;
}

.wishlist-page-actions .wishlist-toggle {
    width: 36px;
    height: 36px;
}

.wishlist-empty-state {
    grid-column: 1 / -1;
    padding: 72px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 7px;
    background: #fff;
    text-align: center;
}

.wishlist-empty-state > i {
    color: var(--secondary-color);
    font-size: 54px;
}

.wishlist-empty-state h2 {
    margin: 18px 0 8px;
    color: #111827;
    font-size: 24px;
}

.wishlist-empty-state p {
    margin-bottom: 20px;
    color: #6b7280;
}
/*==== WISHLIST END ====*/
/*==== REFERENCE PRODUCT CARD START ==== */
@media only screen and (min-width: 768px) {
    .is-home-page .homeproduct .container {
        width: var(--storefront-shell-width);
        max-width: var(--storefront-shell-width);
    }
}

.product_item, .product_item:hover {
    border: 1px solid #e3e3e3;
    box-shadow: none;
    transform: none;
    border-radius: 10px 10px 5px 5px;
    overflow: hidden;
}

.product_item .product-wishlist-toggle,
.product_item .product-free-shipping-badge,
.product_item .pro_rating,
.product_item .add-cart-button {
    display: none !important;
}

.product_item .discount {
    top: 14px;
    left: 8px;
}

.product_item .discount p {
    min-width: 0;
    height: 22px;
    padding: 0 6px;
    border-radius: 0;
    font-size: 12px;
    font-weight: 500;
    line-height: 22px;
    background: var(--secondary-color);
    color: #000;
}

.product_item .pro_img {
    width: calc(100%);
    height: auto;
    max-height: none;
    aspect-ratio: 1;
    margin: 0;
    padding: 0;
}

.product_item .pro_img img {
    object-fit: contain;
}

.product_item .pro_des {
    padding: 10px 8px 9px;
    text-align: left;
}

.product_item .pro_name {
    height: 24px;
    min-height: 24px;
    margin: 0 0 4px;
    line-height: 1.35;
}

.product_item .pro_name a {
    display: block;
    overflow: hidden;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product_item .pro_purchase_row {
    display: block;
    margin: 0 0 10px;
}

.product_item .pro_price p {
    justify-content: start;
    gap: 10px;
    color: #111;
    font-size: 16px;
    font-weight: 400;
}

.product_item .pro_price del {
    color: #9a9da0;
    font-size: 14px;
    font-weight: 400;
}

.product_item .pro_btn,
.product_item .cart_btn,
.product_item .cart_btn form {
    height: 36px !important;
    min-height: 36px !important;
}

.product_item .cart_btn button,
.product_item .variable-modal {
    height: 36px !important;
    min-height: 36px !important;
    max-height: 36px !important;
    border-radius: 2px !important;
    font-family: var(--en-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 36px !important;
}
/*==== REFERENCE PRODUCT CARD END ==== */
/*==== FEATURED HOME SECTIONS START ==== */
.featured-product-section .section-title {
    justify-content: start;
    margin: 22px 0 18px;
}

.featured-product-section .section-title h2 {
    font-size: 20px;
    font-weight: 600;
}

.home-promo-banners {
    margin: 28px 0 10px;
}

.home-promo-banners .container {
    width: var(--storefront-shell-width);
    max-width: var(--storefront-shell-width);
}

.home-promo-banner-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.home-promo-banner,
.home-promo-banner picture {
    display: block;
    width: 100%;
}

.home-promo-banner {
    overflow: hidden;
    background: #f5f5f5;
}

.home-promo-banner img {
    display: block;
    width: 100%;
    height: auto;
}
/*==== FEATURED HOME SECTIONS END ==== */
/*==== AJAX CART DRAWER START ==== */
body.cart-drawer-open {
    overflow: hidden;
}

.floating-cart-summary {
    position: fixed;
    top: 50%;
    right: 0;
    z-index: 10020;
    display: grid;
    width: 85px;
    padding: 0;
    border: 1px solid #e5e7eb;
    border-right: 0;
    border-radius: 4px 0 0 4px;
    background: #fff;
    box-shadow: 0 5px 18px rgba(15, 23, 42, 0.2);
    overflow: hidden;
    transform: translateY(-50%);
    cursor: pointer;
}

.floating-cart-summary[hidden] {
    display: none !important;
}

.floating-cart-icon,
.floating-cart-total,
.floating-cart-count {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.floating-cart-icon {
    height: 34px;
    color: var(--primary-color);
    font-size: 24px;
}

.floating-cart-total {
    min-height: 24px;
    padding: 0 4px 5px;
    color: #4b5563;
    font-size: 13px;
    line-height: 1.1;
    white-space: nowrap;
    font-weight: 500;
}

.floating-cart-count {
    min-height: 28px;
    padding: 4px;
    background: var(--primary-color);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.1;
}

.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 10040;
    background: rgba(0, 0, 0, 0.48);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.cart-drawer-overlay.is-visible {
    opacity: 1;
}

.shopping-cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10050;
    display: grid;
    grid-template-rows: 60px minmax(0, 1fr);
    width: min(460px, 100vw);
    height: 100vh;
    height: 100dvh;
    background: #fff;
    box-shadow: -12px 0 35px rgba(15, 23, 42, 0.18);
    visibility: hidden;
    transform: translateX(100%);
    transition: transform 0.28s ease, visibility 0.28s ease;
}

.shopping-cart-drawer.is-open {
    visibility: visible;
    transform: translateX(0);
}

.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
    padding: 0 14px;
    border-bottom: 1px solid #e5e7eb;
}

.cart-drawer-header > span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--primary-color);
    font-size: 25px;
}

.cart-drawer-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 50px;
    background: #000;
    color: #fff;
    font-size: 12px;
    line-height: 20px;
}

.cart-drawer-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 4px;
    background: #f00;
    color: #fff;
    font-size: 21px;
}

.cart-drawer-content {
    display: flex;
    min-height: 0;
    flex-direction: column;
    overflow: hidden;
}

.drawer-cart-items {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
}

.drawer-cart-item {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) 78px;
    gap: 12px;
    align-items: start;
    padding: 10px 14px;
    border-bottom: 1px solid #edf0f3;
}

.drawer-cart-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border: 1px solid #e5e7eb;
    background: #fff;
}

.drawer-cart-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.drawer-cart-details {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.drawer-cart-name {
    display: -webkit-box;
    overflow: hidden;
    color: #111827;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.drawer-cart-details > span {
    margin-top: 3px;
    color: #4b5563;
    font-size: 13px;
    line-height: 1.2;
}

.drawer-cart-quantity {
    display: grid;
    grid-template-columns: 28px 38px 28px;
    width: 94px;
    height: 28px;
    margin-top: 9px;
    border: 1px solid #dfe3e8;
    border-radius: 3px;
    overflow: hidden;
}

.drawer-cart-quantity button,
.drawer-cart-quantity output {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: #fff;
    color: #4b5563;
    font-size: 16px;
    line-height: 1;
}

.drawer-cart-quantity output {
    border-right: 1px solid #dfe3e8;
    border-left: 1px solid #dfe3e8;
    font-size: 13px;
}

.drawer-cart-quantity button,
.drawer-cart-quantity button:hover,
.drawer-cart-quantity button:focus,
.drawer-cart-quantity button:active,
.drawer-cart-remove,
.drawer-cart-remove:hover,
.drawer-cart-remove:focus,
.drawer-cart-remove:active {
    animation: none !important;
    box-shadow: none !important;
    transform: none !important;
    transition: color 0.15s ease, background-color 0.15s ease !important;
}

.drawer-cart-item-actions {
    display: flex;
    align-self: stretch;
    align-items: flex-end;
    justify-content: space-between;
    flex-direction: column;
    padding: 3px 0;
}

.drawer-cart-remove {
    background: transparent;
    color: #4b5563;
    font-size: 15px;
}

.drawer-cart-remove:hover {
    color: #dc2626;
}

.drawer-cart-item-actions strong {
    color: #111827;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.drawer-cart-footer {
    flex: 0 0 auto;
    padding: 18px 14px 15px;
    border-top: 1px solid #e5e7eb;
    background: #f8fafc;
}

.drawer-cart-subtotal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    color: #111827;
    font-size: 18px;
}

.drawer-cart-subtotal strong {
    font-weight: 500;
}

.drawer-cart-checkout,
.drawer-cart-checkout:hover,
.drawer-cart-checkout:focus {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 46px;
    border-radius: 3px;
    background: var(--primary-color);
    color: #fff;
    font-size: 17px;
    font-weight: 600;
}

.drawer-cart-empty {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    padding: 40px 20px;
    color: #6b7280;
    text-align: center;
}

.drawer-cart-empty i {
    color: var(--primary-color);
    font-size: 42px;
}

.drawer-cart-empty p {
    color: inherit;
    font-size: 16px;
}
/*==== AJAX CART DRAWER END ==== */

/*==== MOBILE BOTTOM NAV START ==== */
.mobile-bottom-nav {
    display: none;
}
/*==== MOBILE BOTTOM NAV END ==== */

/*==== FOOTER PROMO FACILITIES START ==== */
.footer-promo-section {
    width: 100%;
    padding: 34px 0 32px;
    background: #fff;
}

.footer-promo-section .container {
    width: var(--storefront-shell-width);
    max-width: var(--storefront-shell-width);
}

.footer-promo-banner,
.footer-promo-banner picture {
    display: block;
    width: 100%;
}

.footer-promo-banner {
    overflow: hidden;
    background: #eef2f4;
}

.footer-promo-banner img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1920 / 404;
    object-fit: cover;
}

.footer-facilities-inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px 18px;
    margin: 34px 0 0;
    padding: 0;
}

.footer-facility-item {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 14px;
    text-align: center;
}

.footer-facility-icon {
    display: inline-flex;
    width: 76px;
    height: 76px;
    align-items: center;
    justify-content: center;
    border: 6px solid #eef0f2;
    border-radius: 50%;
    background: var(--primary-color);
}

.footer-facility-icon img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-facility-item strong {
    display: block;
    max-width: 100%;
    color: #111827;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.25;
    font-family: var(--bn-font);
}

.footer-facility-item small {
    display: block;
    max-width: 100%;
    margin-top: -6px;
    color: #3f4b4d;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.35;
}
/*==== FOOTER PROMO FACILITIES END ==== */

/*==== REFERENCE FOOTER DESIGN START ==== */
footer {
    background: var(--primary-color);
}

.footer-reference-top {
    padding: 62px 0 48px;
    border-top: 0;
    background: var(--primary-color);
    color: #fff;
}

.footer-reference-top .container,
.footer-reference-bottom .container {
    width: var(--storefront-shell-width);
    max-width: var(--storefront-shell-width);
}

.footer-reference-grid {
    align-items: flex-start;
}

.footer-reference-about {
    max-width: 560px;
    padding-right: 42px;
}

.footer-logo-link {
    display: inline-flex;
    height: 46px;
    margin-bottom: 26px;
}

.footer-reference-about .footer-logo-link img {
    width: auto;
    max-width: 170px;
    height: 46px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-reference-about p {
    margin: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}

.footer-reference-top .footer-title {
    position: relative;
    display: inline-flex;
    margin: 0 0 18px;
    padding-bottom: 7px;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
}

.footer-reference-top .footer-title::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 62px;
    height: 2px;
    background: #fff;
    content: "";
}

.footer-reference-top .footer-menu ul {
    margin: 0;
    padding: 0;
}

.footer-reference-top .footer-menu ul li {
    display: block;
    margin: 0 0 8px;
}

.footer-reference-top .footer-menu ul li a,
.footer-reference-top .footer-menu ul li a:hover,
.footer-reference-top .footer-menu ul li a:focus {
    display: inline-flex;
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.45;
    text-decoration: none;
}

.footer-reference-top .footer-menu ul li a:hover,
.footer-reference-top .footer-menu ul li a:focus {
    color: #ffd56a;
    transform: translateX(3px);
}

.footer-follow .footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 20px;
}

.footer-follow .footer-social li {
    display: inline-flex;
    margin: 0;
}

.footer-follow .footer-social li a,
.footer-follow .footer-social li a:hover,
.footer-follow .footer-social li a:focus {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 3px;
    background: transparent;
    color: #fff !important;
    font-size: 21px;
    line-height: 1;
    transform: none;
}

.footer-follow .footer-social li a:hover,
.footer-follow .footer-social li a:focus {
    background: #fff;
    color: var(--primary-color) !important;
}

.footer-follow .footer-social i {
    color: inherit !important;
    font-size: inherit;
    line-height: 1;
}

.footer-follow .delivery-partner {
    display: block;
    width: min(340px, 100%);
    margin-top: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 14px 14px 0 0;
    background: rgba(255, 255, 255, 0.08);
    text-align: left !important;
}

.footer-follow .delivery-partner img {
    display: block;
    width: 100%;
    max-width: none;
    height: 118px;
    max-height: none;
    object-fit: cover;
}

.footer-follow .footer-facebook-embed {
    width: min(340px, 100%);
    height: 130px;
    margin-top: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.08);
}

.footer-follow .footer-facebook-embed iframe {
    display: block;
    width: 100% !important;
    max-width: 100%;
    height: 130px;
    background: #fff;
}

.footer-reference-bottom {
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    background: var(--primary-color);
}

.footer-bottom-text {
    margin: 0;
    color: #fff;
    font-size: 16px;
    line-height: 1.35;
    text-align: center;
}

.footer-bottom-text a,
.footer-bottom-text a:hover,
.footer-bottom-text a:focus {
    color: var(--secondary-color);
    font-size: 16px;
    line-height: 1.35;
    text-decoration: none;
}
/*==== REFERENCE FOOTER DESIGN END ==== */

/*==== COMPACT BRAND FOOTER START ==== */
footer {
    background: #151719;
}

.footer-reference-top {
    padding: 20px 0 14px;
    background: #151719;
    color: #fff;
}

.is-home-page .main-header .main-search form {
    height: 46px;
    border: 1px solid var(--storefront-header-border);
    border-radius: 16px;
    background: var(--storefront-header-surface);
}

.footer-reference-grid {
    align-items: flex-start;
    row-gap: 24px;
}

.footer-reference-about {
    max-width: 260px;
    padding-right: 12px;
}

.footer-logo-link {
    height: 52px;
    margin-bottom: 8px;
}

.footer-reference-about .footer-logo-link img {
    width: auto;
    max-width: 180px;
    height: 80px;
    object-fit: contain;
    filter: none;
}

.footer-reference-about p {
    max-width: 245px;
    margin: 0 0 10px;
    color: #d8d8d8;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.42;
}

.footer-reference-about .footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 0;
    padding: 0;
}

.footer-reference-about .footer-social li {
    display: inline-flex;
    margin: 0;
}

.footer-reference-about .footer-social li a,
.footer-reference-about .footer-social li a:hover,
.footer-reference-about .footer-social li a:focus {
    display: inline-flex;
    width: 27px;
    height: 27px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    color: #fff !important;
    font-size: 13px;
    line-height: 1;
    transform: none;
}

.footer-reference-about .footer-social li a:hover, .footer-reference-about .footer-social li a:focus {
    border-color: var(--secondary-color);
    color: #fff !important;
}

.footer-reference-top .footer-title {
    display: block;
    margin: 0 0 13px;
    padding: 0;
    color: #fff;
    font-family: var(--en-font);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

.footer-reference-top .footer-title::after {
    display: none;
}

.footer-reference-top .footer-menu ul {
    margin: 0;
    padding: 0;
}

.footer-reference-top .footer-menu ul li {
    display: block;
    margin: 0 0 7px;
}

.footer-reference-top .footer-menu ul li a,
.footer-reference-top .footer-menu ul li a:hover,
.footer-reference-top .footer-menu ul li a:focus {
    display: inline-flex;
    margin: 0;
    padding: 0;
    color: #d8d8d8;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.25;
    text-decoration: none;
}

.footer-reference-top .footer-menu ul li:first-child a,
.footer-reference-top .footer-menu ul li a:hover,
.footer-reference-top .footer-menu ul li a:focus {
    color: var(--secondary-color);
    transform: none;
}

.footer-newsletter p {
    max-width: 260px;
    margin: 0 0 12px;
    color: #d8d8d8;
    font-size: 13px;
    line-height: 1.45;
}

.footer-newsletter-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 42px;
    width: min(270px, 100%);
    height: 42px;
    overflow: hidden;
    border: 1px solid rgba(243, 193, 52, 0.75);
    border-radius: 4px;
    background: transparent;
}

.footer-newsletter-form input,
.footer-newsletter-form input:focus {
    width: 100%;
    height: 100%;
    padding: 0 14px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 12px;
    box-shadow: none !important;
}

.footer-newsletter-form input::placeholder {
    color: #d8d8d8;
    font-size: 12px;
}

.footer-newsletter-form button,
.footer-newsletter-form button:hover,
.footer-newsletter-form button:focus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: var(--secondary-color);
    font-size: 16px;
}

.footer-reference-bottom {
    padding: 8px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    background: #0d0e10;
}

.footer-bottom-text {
    color: #b9b9b9;
    font-size: 13px;
    letter-spacing: 0.02em;
}
/*==== COMPACT BRAND FOOTER END ==== */

/*==== DESKTOP LOGO AREA DARK THEME START ==== */
.main-header .logo-area,
.main-header .logo-area.desktop-logo-fixed {
    background: var(--primary-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.main-header .main-logo img {
    filter: none;
}

.main-header .main-search form {
    border-color: var(--secondary-color);
    background: #fff;
}

.main-header .main-search form input {
    color: #ffffff;
}
.main-header .main-search form input::placeholder {
    color: #5f6368;
}

.main-header .main-search form button, .main-header .main-search form button:hover, .main-header .main-search form button:focus {
    background: #3c3c3c;
    color: var(--secondary-color);
}

.main-header .main-search form button i {
    color: var(--secondary-color);
}

.main-header .header-list-items ul > li {
    border-left-color: rgba(255, 255, 255, 0.12);
}

.header-call-item > a,
.header-auth-link > a,
.header-wishlist-link {
    color: #fff !important;
}

.header-call-item > a > i,
.header-auth-link > a > i,
.header-wishlist-link > i {
    color: #fff !important;
}

.main-header .header-call-item span,
.main-header .header-auth-link span {
    color: #fff;
}

.header-call-item small,
.header-auth-link small {
    color: rgba(255, 255, 255, 0.72);
}

.header-call-item strong,
.header-auth-link span {
    color: #fff;
}

.header-wishlist-link .wishlist-count {
    display: inline-flex;
    min-width: 18px;
    height: 18px;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--secondary-color);
    color: var(--primary-color) !important;
    font-size: 11px;
    font-weight: 800;
    line-height: 18px;
}
/*==== DESKTOP LOGO AREA DARK THEME END ==== */

/* Checkout quantity control stability */
.checkout-summary-side .qty-cart.vcart-qty {
    display: block;
    width: auto;
    min-width: 0;
    margin: 0;
    column-gap: 0;
}

.checkout-summary-side .qty-cart.vcart-qty .quantity {
    position: relative;
    display: grid;
    grid-template-columns: 34px 40px 34px;
    width: 108px;
    height: 32px;
    min-width: 108px;
    margin: 0 !important;
    overflow: hidden;
    border: 1px solid #dddddd;
    border-radius: 4px;
    background: #fff;
}

.checkout-summary-side .qty-cart.vcart-qty .quantity .minus,
.checkout-summary-side .qty-cart.vcart-qty .quantity .plus,
.checkout-summary-side .qty-cart.vcart-qty .quantity input {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    height: 100%;
    min-height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    background: #fff;
    color: #111;
    line-height: 1;
    opacity: 1;
    visibility: visible;
}

.checkout-summary-side .qty-cart.vcart-qty .quantity input {
    border-left: 1px solid #eeeeee;
    border-right: 1px solid #eeeeee;
    font-size: 14px;
    font-weight: 700;
    pointer-events: none;
    -webkit-text-fill-color: #111;
}

.checkout-summary-side .qty-cart.vcart-qty .quantity .minus,
.checkout-summary-side .qty-cart.vcart-qty .quantity .plus {
    cursor: pointer;
    font-size: 16px;
    font-weight: 900;
}

@media (max-width: 575px) {
    .checkout-summary-side .qty-cart.vcart-qty .quantity {
        grid-template-columns: 31px 38px 31px;
        width: 100px;
        min-width: 100px;
        height: 34px;
    }
}
.single_product button {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

/* Details page reference styling */
.main-details-page .details-current-price {
    color: var(--secondary-color);
}

.main-details-page .details-save-text {
    border-radius: 6px;
    background: rgb(246 189 29 / 18%);
    color: #9a6d00;
    padding: 6px 10px;
}
.main-details-page .selector-item_radio:checked + .selector-item_label,
.main-details-page .selector-item_label:hover {
    border-color: var(--secondary-color);
    color: #111827;
}

.main-details-page .pro-color .selector-item_radio:checked + .selector-item_label {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--secondary-color);
}

.main-details-page .add_cart_btn,
.main-details-page .add_cart_btn:disabled {
    border: 1px solid #d9d9d9;
    background: #fff !important;
    color: #111827 !important;
}

.main-details-page .order_now_btn,
.main-details-page .order_now_btn:disabled,
.single_product button {
    border-color: var(--secondary-color) !important;
    background: var(--secondary-color) !important;
    color: #111827 !important;
}

.main-details-page .add_cart_btn:hover {
    border-color: var(--secondary-color);
    background: #fff7dc !important;
    color: #111827 !important;
}

.main-details-page .order_now_btn:hover,
.single_product button:hover {
    border-color: #e2ae00 !important;
    background: #e2ae00 !important;
    color: #111827 !important;
}
.logo-area {
    background: var(--storefront-header-bg) !important;
}

/*==== HOME HEADER + SLIDER REFERENCE THEME START ==== */
.is-home-page {
    --primary-color: var(--storefront-header-bg);
    --secondary-color: var(--storefront-accent);
}

.is-home-page .main-header,
.is-home-page .main-header .logo-area,
.is-home-page .main-header .logo-area.desktop-logo-fixed {
    background: var(--storefront-header-bg);
}

.is-home-page .desktop-topbar {
    border-bottom-color: var(--storefront-header-border);
    background: var(--storefront-header-bg);
}

.is-home-page .desktop-topbar p,
.is-home-page .desktop-topbar a,
.is-home-page .desktop-topbar a i {
    color: var(--storefront-header-text);
}
.is-home-page .main-header .logo-area {
    padding: 18px 0 16px;
    border-bottom: 1px solid var(--storefront-header-border);
    box-shadow: none;
}

.is-home-page .main-header .logo-header {
    grid-template-columns: 260px minmax(360px, 1fr) 280px;
    gap: 28px;
    min-height: 72px;
}

.is-home-page .main-header .main-logo {
    height: 72px;
}

.is-home-page .main-header .main-logo img {
    max-width: 245px;
    height: 72px;
    object-fit: contain;
}

.is-home-page .main-header .header-search-row {
    display: flex;
    align-items: center;
    width: 100%;
}

.is-home-page .main-header .main-search form {
    height: 46px;
    border: 1px solid var(--storefront-header-border);
    border-radius: 16px;
    background: var(--storefront-header-surface);
}

.is-home-page .main-header .main-search form input {
    color: var(--storefront-header-text);
}

.is-home-page .main-header .main-search form input::placeholder {
    color: var(--storefront-header-muted);
}

.is-home-page .main-header .main-search form button,
.is-home-page .main-header .main-search form button:hover,
.is-home-page .main-header .main-search form button:focus {
    background: transparent;
}

.is-home-page .main-header .main-search form button i {
    color: var(--storefront-header-text);
}

.is-home-page .main-header .header-list-items ul > li {
    border-left-color: var(--storefront-header-border);
}

.is-home-page .main-header .menu-area {
    border-top: 1px solid var(--storefront-header-border);
    background: var(--storefront-header-surface);
    box-shadow: none;
}

.is-home-page .main-header .main-menu > ul > li > a {
    color: var(--storefront-header-text);
}

.is-home-page .main-header .main-menu > ul > li:hover > a,
.is-home-page .main-header .main-menu > ul > li:focus-within > a,
.is-home-page .main-header .main-menu > ul > li:hover > a .cat_down,
.is-home-page .main-header .main-menu > ul > li:focus-within > a .cat_down {
    color: var(--storefront-accent);
}

.is-home-page .slider-section {
    margin: 18px 0 30px;
}

.is-home-page .home-slider-container {
    width: min(92%, 1440px);
    max-width: 1440px;
}

.is-home-page .main_slider {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--storefront-header-border);
    border-radius: 22px;
    background: var(--storefront-slider-bg);
}

.is-home-page .slider-item,
.is-home-page .slider-item picture {
    aspect-ratio: 640 / 226;
}

.is-home-page .slider-item img {
    border-radius: 0;
}

.is-home-page .main_slider .owl-dots {
    position: absolute;
    right: 0;
    bottom: 15px;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 0;
}

.is-home-page .main_slider .owl-dots .owl-dot span,
.is-home-page .home-slider-dots button {
    width: 14px;
    height: 14px;
    margin: 0;
    border: 0;
    border-radius: 50%;
    background: #fff;
    opacity: 1;
}

.is-home-page .main_slider .owl-dots .owl-dot.active span,
.is-home-page .home-slider-dots button.is-active {
    background: var(--storefront-accent);
}

.is-home-page .home-slider-dots {
    display: none;
}
/*==== HOME HEADER + SLIDER REFERENCE THEME END ==== */
.is-home-page .main-header .logo-area,
.is-home-page .main-header .logo-area.desktop-logo-fixed {
    background: var(--storefront-header-bg) !important;
}

/*==== REFERENCE HOME CATEGORY SHOWCASE START ==== */
body.is-home-page .home-category.category-showcase .section-title {
    justify-content: space-between;
    margin: 12px 0 14px;
    padding: 0;
    border: 0;
}

body.is-home-page .home-category.category-showcase .section-title::before {
    display: none;
}

body.is-home-page .home-category.category-showcase .section-title h2 {
    color: #111;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
}

body.is-home-page .home-category.category-showcase .section-title .view_all {
    display: inline-flex;
    gap: 10px;
    min-width: 0;
    max-width: none;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
}

body.is-home-page .home-category.category-showcase .section-title .view_all i {
    font-size: 19px;
}

body.is-home-page .home-category.category-showcase .cat-item {
    display: flex;
    height: 118px;
    min-height: 118px;
    padding: 10px 6px 8px;
    border: 1px solid #e2e2e2;
    border-radius: 15px;
    background: #fff;
    flex-direction: column;
    justify-content: flex-start;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

body.is-home-page .home-category.category-showcase .cat-item:hover {
    border-color: #cfcfcf;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

body.is-home-page .home-category.category-showcase .cat-img {
    width: 58px;
    height: 58px;
    margin: 0 auto 5px;
    flex: 0 0 58px;
}

body.is-home-page .home-category.category-showcase .cat-img img {
    width: 100%;
    height: 100%;
    padding: 0;
    object-fit: contain;
}

body.is-home-page .home-category.category-showcase .cat-item:hover .cat-img img {
    transform: none;
}

body.is-home-page .home-category.category-showcase .cat-name {
    display: flex;
    min-height: 30px;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #000;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.15;
    text-align: center;
    text-transform: uppercase;
}

body.is-home-page .home-category.category-showcase .cat-name a {
    display: -webkit-box;
    max-width: 100%;
    overflow: hidden;
    color: inherit;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
    body.is-home-page .home-category.category-showcase .section-title {
        margin: 16px 0 11px;
        padding: 0;
    }

    body.is-home-page .home-category.category-showcase .section-title h2 {
        font-size: 20px;
    }

    body.is-home-page .home-category.category-showcase .section-title .view_all {
        color: var(--secondary-color);
        font-size: 14px;
    }

    body.is-home-page .home-category.category-showcase .section-title .view_all i {
        font-size: 16px;
    }

    body.is-home-page .home-category.category-showcase .cat-item {
        height: 112px;
        min-height: 112px;
        padding: 9px 5px 7px;
        border-radius: 13px;
    }

    body.is-home-page .home-category.category-showcase .cat-img {
        width: 54px;
        height: 54px;
        margin-bottom: 4px;
        flex-basis: 54px;
    }

    body.is-home-page .home-category.category-showcase .cat-name {
        min-height: 28px;
        font-size: 11px;
    }
}
/*==== REFERENCE HOME CATEGORY SHOWCASE END ==== */

/*==== HOME NEW ARRIVALS REFERENCE CARDS START ==== */
.home-new-arrivals {
    --product-card-surface: #ffffff;
    --product-card-text: #111111;
    --product-card-muted: #777777;
    --product-card-border: #e5e5e5;
    --product-card-accent: var(--secondary-color);
    --product-card-action: #050505;
    --product-card-shadow: rgba(17, 17, 17, 0.09);
    --product-card-shadow-hover: rgba(17, 17, 17, 0.14);
}

body.is-home-page .home-new-arrivals .section-title {
    justify-content: space-between;
    margin: 22px 0 10px;
    padding: 0 0 7px;
    border-bottom: 1px solid var(--product-card-border);
}

body.is-home-page .home-new-arrivals .section-title::before {
    display: none;
}

body.is-home-page .home-new-arrivals .section-title h2 {
    color: var(--product-card-text);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
}

body.is-home-page .home-new-arrivals .section-title .view_all {
    display: inline-flex;
    gap: 9px;
    min-width: 0;
    max-width: none;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--product-card-accent);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
}

body.is-home-page .home-new-arrivals .section-title .view_all i {
    font-size: 16px;
}

.new-arrival-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

body.is-home-page .home-new-arrivals .product_item {
    min-width: 0;
    min-height: 184px;
    border: 1px solid var(--product-card-border);
    border-radius: 14px;
    background: var(--product-card-surface);
    box-shadow: 0 3px 10px var(--product-card-shadow);
    overflow: hidden;
    transform: none;
}

body.is-home-page .home-new-arrivals .product_item:hover {
    border-color: var(--product-card-accent);
    box-shadow: 0 7px 18px var(--product-card-shadow-hover);
    transform: translateY(-2px);
}

body.is-home-page .home-new-arrivals .product_item_inner {
    display: grid;
    grid-template-columns: minmax(0, 46%) minmax(0, 54%);
    min-height: 182px;
}

body.is-home-page .home-new-arrivals .product-wishlist-toggle {
    top: 9px;
    right: 9px;
    z-index: 5;
    display: inline-flex !important;
    width: 30px;
    height: 30px;
    border: 0;
    background: transparent;
    color: var(--product-card-text);
    font-size: 19px;
}

body.is-home-page .home-new-arrivals .product-wishlist-toggle:hover,
body.is-home-page .home-new-arrivals .product-wishlist-toggle.active {
    background: transparent;
    color: var(--product-card-accent);
}

body.is-home-page .home-new-arrivals .discount {
    top: 9px;
    left: 9px;
    z-index: 5;
}

body.is-home-page .home-new-arrivals .discount p {
    height: 21px;
    padding: 0 6px;
    border-radius: 4px;
    background: var(--product-card-accent);
    color: var(--product-card-text);
    font-size: 10px;
    font-weight: 800;
    line-height: 21px;
}

body.is-home-page .home-new-arrivals .discount p::after {
    content: " OFF";
}

body.is-home-page .home-new-arrivals .product-free-shipping-badge,
body.is-home-page .home-new-arrivals .pro_rating,
body.is-home-page .home-new-arrivals .add-cart-button {
    display: none !important;
}

body.is-home-page .home-new-arrivals .pro_img {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    height: 182px;
    margin: 0;
    padding: 8px;
    aspect-ratio: auto;
    background: var(--product-card-surface);
}

body.is-home-page .home-new-arrivals .pro_img > a {
    display: flex;
    align-items: center;
    justify-content: center;
}

body.is-home-page .home-new-arrivals .pro_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 0 0 10px;
}

body.is-home-page .home-new-arrivals .pro_des {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    min-width: 0;
    padding: 34px 12px 10px 6px;
    flex-direction: column;
    text-align: left;
}

body.is-home-page .home-new-arrivals .pro_name {
    display: block;
    height: 40px;
    min-height: 40px;
    margin: 0 34px 4px 0;
    padding: 0;
    line-height: 1.25;
}

body.is-home-page .home-new-arrivals .pro_name a {
    display: -webkit-box;
    overflow: hidden;
    color: var(--product-card-text);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.25;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

body.is-home-page .home-new-arrivals .pro_purchase_row {
    display: block;
    margin: 0 0 8px;
}

body.is-home-page .home-new-arrivals .pro_price {
    margin: 0;
}

body.is-home-page .home-new-arrivals .pro_price p {
    display: flex;
    align-items: flex-start;
    gap: 1px;
    margin: 0;
    color: var(--product-card-text);
    font-size: 19px;
    font-weight: 800;
    line-height: 1.15;
    text-align: left;
    flex-direction: column;
}

body.is-home-page .home-new-arrivals .pro_price del {
    color: var(--product-card-muted);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
}

body.is-home-page .home-new-arrivals .pro_btn,
body.is-home-page .home-new-arrivals .cart_btn,
body.is-home-page .home-new-arrivals .cart_btn form {
    width: 100%;
    height: 38px !important;
    min-height: 38px !important;
    margin-top: auto;
}

body.is-home-page .home-new-arrivals .cart_btn button,
body.is-home-page .home-new-arrivals .variable-modal {
    display: inline-flex;
    gap: 9px;
    width: 100%;
    height: 38px !important;
    min-height: 38px !important;
    max-height: 38px !important;
    align-items: center;
    justify-content: center;
    border-radius: 6px !important;
    background: var(--product-card-action) !important;
    color: var(--product-card-accent) !important;
    font-size: 14px;
    font-weight: 700;
    line-height: 38px !important;
}

body.is-home-page .home-new-arrivals .cart_btn button::before,
body.is-home-page .home-new-arrivals .variable-modal::before {
    color: currentColor;
    content: "\f07a";
    font-family: "Font Awesome 6 Free";
    font-size: 14px;
    font-weight: 900;
}

body.is-home-page .home-new-arrivals .cart_btn button:hover,
body.is-home-page .home-new-arrivals .variable-modal:hover {
    background: var(--product-card-accent) !important;
    color: var(--product-card-action) !important;
}

body.is-home-page .home-new-arrivals .wsit_stock_out {
    margin-top: auto;
    margin-bottom: 0;
}

body.is-home-page .home-new-arrivals .stock_out {
    width: 100%;
    border-radius: 6px;
    background: var(--product-card-muted);
    color: var(--product-card-surface);
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
    body.is-home-page .home-new-arrivals .section-title {
        margin: 17px 0 9px;
        padding-bottom: 7px;
    }

    body.is-home-page .home-new-arrivals .section-title h2 {
        font-size: 17px;
    }

    body.is-home-page .home-new-arrivals .section-title .view_all {
        font-size: 12px;
    }

    body.is-home-page .home-new-arrivals .section-title .view_all i {
        font-size: 13px;
    }

    .new-arrival-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    body.is-home-page .home-new-arrivals .product_item {
        min-height: 164px;
        border-radius: 12px;
    }

    body.is-home-page .home-new-arrivals .product_item_inner {
        grid-template-columns: minmax(0, 45%) minmax(0, 55%);
        min-height: 162px;
    }

    body.is-home-page .home-new-arrivals .pro_img {
        height: 162px;
        padding: 23px 7px 7px;
    }

    body.is-home-page .home-new-arrivals .pro_des {
        padding: 31px 9px 9px 5px;
    }

    body.is-home-page .home-new-arrivals .pro_name {
        height: 36px;
        min-height: 36px;
        margin-right: 30px;
    }

    body.is-home-page .home-new-arrivals .pro_name a {
        font-size: 12px;
    }

    body.is-home-page .home-new-arrivals .pro_price p {
        font-size: 17px;
    }

    body.is-home-page .home-new-arrivals .pro_price del {
        font-size: 11px;
    }

    body.is-home-page .home-new-arrivals .pro_btn,
    body.is-home-page .home-new-arrivals .cart_btn,
    body.is-home-page .home-new-arrivals .cart_btn form,
    body.is-home-page .home-new-arrivals .cart_btn button,
    body.is-home-page .home-new-arrivals .variable-modal {
        height: 34px !important;
        min-height: 34px !important;
        max-height: 34px !important;
        line-height: 34px !important;
    }

    body.is-home-page .home-new-arrivals .cart_btn button,
    body.is-home-page .home-new-arrivals .variable-modal {
        gap: 7px;
        font-size: 12px;
    }
}
/*==== HOME NEW ARRIVALS REFERENCE CARDS END ==== */

/* New Arrivals two-column mobile fit */
@media only screen and (min-width: 320px) and (max-width: 767px) {
   body.is-home-page .home-new-arrivals .new-arrival-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 8px;
}

    body.is-home-page .home-new-arrivals .product-wishlist-toggle {
        top: 6px;
        right: 5px;
        width: 24px;
        height: 24px;
        font-size: 15px;
    }

    body.is-home-page .home-new-arrivals .discount {
        top: 6px;
        left: 5px;
    }

    body.is-home-page .home-new-arrivals .discount p {
        height: 18px;
        padding: 0 4px;
        font-size: 8px;
        line-height: 18px;
    }

    body.is-home-page .home-new-arrivals .product_item,
    body.is-home-page .home-new-arrivals .product_item_inner {
        min-height: 154px;
    }

    body.is-home-page .home-new-arrivals .pro_img {
    height: 154px;
    padding: 5px;
}

    body.is-home-page .home-new-arrivals .pro_des {
        padding: 27px 6px 7px 3px;
    }

    body.is-home-page .home-new-arrivals .pro_name {
        height: 34px;
        min-height: 34px;
        margin: 0 19px 3px 0;
    }

    body.is-home-page .home-new-arrivals .pro_name a {
        font-size: 10px;
        line-height: 1.2;
    }

    body.is-home-page .home-new-arrivals .pro_purchase_row {
        margin-bottom: 5px;
    }

    body.is-home-page .home-new-arrivals .pro_price p {
        font-size: 15px;
    }

    body.is-home-page .home-new-arrivals .pro_price del {
        font-size: 9px;
    }

    body.is-home-page .home-new-arrivals .cart_btn button,
    body.is-home-page .home-new-arrivals .variable-modal {
        gap: 4px;
        font-size: 10px;
    }

    body.is-home-page .home-new-arrivals .cart_btn button::before,
    body.is-home-page .home-new-arrivals .variable-modal::before {
        font-size: 10px;
    }
}
/* Mobile-only homepage trust strip */
.home-mobile-trust-strip {
    display: none;
}

.home-mobile-trust-strip > .home-mobile-trust-container {
    width: 100%;
    max-width: 100%;
    padding-right: 0;
    padding-left: 0;
}
/* New Arrivals four-card desktop reference layout */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    body.is-home-page .home-new-arrivals .new-arrival-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media only screen and (min-width: 992px) {
    body.is-home-page .home-new-arrivals {
        --product-card-card-height: clamp(184px, 13.5vw, 230px);
    }

    body.is-home-page .home-new-arrivals .new-arrival-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 12px;
    }

    body.is-home-page .home-new-arrivals .product_item,
    body.is-home-page .home-new-arrivals .product_item_inner {
        min-height: var(--product-card-card-height);
    }

    body.is-home-page .home-new-arrivals .pro_img {
        height: var(--product-card-card-height);
    }
}
/*==== FULL-WIDTH DESKTOP HEADER, HERO + TRUST BAR START ==== */
.desktop-reference-header {
    display: none;
}

@media only screen and (min-width: 1200px) {
    body {
        --desktop-header-background: var(--storefront-header-bg);
        --desktop-header-surface: var(--storefront-header-surface);
        --desktop-header-border: var(--storefront-header-border);
        --desktop-header-text: var(--storefront-header-text);
        --desktop-header-muted: var(--storefront-header-muted);
        --desktop-header-accent: var(--storefront-accent);
        --desktop-header-badge-text: var(--storefront-header-bg);
        --desktop-hero-surface: var(--storefront-slider-bg);
        --desktop-trust-surface: var(--storefront-white);
        --desktop-trust-text: #111111;
        --desktop-trust-muted: #343434;
        --desktop-trust-icon-surface: #fff7e7;
        --desktop-trust-divider: #e3e3e3;
        --desktop-trust-border: rgba(17, 17, 17, 0.08);
        --desktop-trust-shadow: rgba(17, 17, 17, 0.10);
    }

    body .main-header > .desktop-topbar,
    body .main-header > .logo-area,
    body .main-header > .menu-area {
        display: none;
    }

    body .main-header,
    body .desktop-reference-header {
        background: var(--desktop-header-background);
    }

    body .desktop-reference-header {
        display: block;
        width: 100%;
        min-height: 124px;
        border-bottom: 1px solid var(--desktop-header-border);
    }

    body .desktop-reference-header.desktop-logo-fixed {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 1040;
        width: 100%;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
        animation: desktopLogoStick 0.28s ease both;
    }
    body .desktop-reference-header-shell {
        display: grid;
        grid-template-columns: clamp(190px, 14vw, 270px) minmax(370px, 1fr) clamp(240px, 18vw, 310px) auto;
        gap: clamp(14px, 1.5vw, 28px);
        width: 100%;
        height: 124px;
        align-items: center;
        padding: 0 clamp(24px, 3.2vw, 64px);
    }

    body .desktop-reference-logo {
        display: flex;
        min-width: 0;
        height: 88px;
        align-items: center;
    }

    body .desktop-reference-logo img {
        display: block;
        width: auto;
        max-width: 100%;
        height: 82px;
        object-fit: contain;
    }

    body .desktop-reference-nav {
        display: flex;
        min-width: 0;
        height: 100%;
        align-items: center;
        justify-content: center;
        gap: clamp(16px, 1.75vw, 34px);
    }

    body .desktop-reference-nav a {
        position: relative;
        display: inline-flex;
        height: 100%;
        align-items: center;
        padding: 3px 0 0;
        color: var(--desktop-header-text);
        font-size: clamp(13px, 0.9vw, 17px);
        font-weight: 600;
        line-height: 1;
        white-space: nowrap;
    }

    body .desktop-reference-nav a::after {
        position: absolute;
        bottom: 34px;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--desktop-header-accent);
        content: "";
        transform: translateX(-50%);
        transition: width 0.2s ease;
    }

    body .desktop-reference-nav a:hover,
    body .desktop-reference-nav a:focus,
    body .desktop-reference-nav a.active {
        color: var(--desktop-header-accent);
    }

    body .desktop-reference-nav a:hover::after,
    body .desktop-reference-nav a:focus::after,
    body .desktop-reference-nav a.active::after {
        width: 100%;
    }

    body .main-header .desktop-reference-search {
        position: relative;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    body .main-header .desktop-reference-search form {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 44px;
        width: 100%;
        height: 46px;
        border: 1px solid var(--desktop-header-border);
        border-radius: 13px;
        background: var(--desktop-header-surface);
        overflow: hidden;
    }

    body .main-header .desktop-reference-search form input {
        order: 1;
        width: 100%;
        height: 100%;
        padding: 0 15px;
        background: transparent;
        color: var(--desktop-header-text);
        font-size: 13px !important;
    }

    body .main-header .desktop-reference-search form input::placeholder {
        color: var(--desktop-header-muted);
        font-size: 13px;
    }

    body .main-header .desktop-reference-search form button,
    body .main-header .desktop-reference-search form button:hover,
    body .main-header .desktop-reference-search form button:focus {
        order: 2;
        display: inline-flex;
        width: 44px;
        height: 100%;
        align-items: center;
        justify-content: center;
        background: transparent;
        color: var(--desktop-header-text);
    }

    body .main-header .desktop-reference-search form button i {
        color: inherit;
        font-size: 17px;
        font-weight: 900;
    }

    body .desktop-reference-actions {
        display: grid;
        grid-template-columns: repeat(4, minmax(58px, auto));
        gap: clamp(10px, 1.15vw, 22px);
        align-items: center;
    }

    body .desktop-reference-action,
    body .desktop-reference-action:hover,
    body .desktop-reference-action:focus {
        position: relative;
        display: inline-flex;
        min-width: 58px;
        min-height: 54px;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 0;
        border: 0;
        background: transparent;
        color: var(--desktop-header-text);
        font-family: var(--en-font);
        font-size: 11px;
        font-weight: 500;
        line-height: 1;
        flex-direction: column;
        white-space: nowrap;
        box-shadow: none !important;
        transform: none !important;
    }

    body .desktop-reference-action:hover,
    body .desktop-reference-action:focus {
        color: var(--desktop-header-accent);
    }

    body .desktop-reference-action > i,
    body .desktop-reference-icon-wrap > i {
        color: currentColor;
        font-size: 23px;
        line-height: 1;
    }

    body .desktop-reference-action i.fa-solid {
        font-weight: 900;
    }

    body .desktop-reference-action i.fa-regular {
        font-weight: 400;
    }

    body .desktop-reference-icon-wrap {
        position: relative;
        display: inline-flex;
        min-width: 26px;
        min-height: 24px;
        align-items: center;
        justify-content: center;
    }

    body .desktop-reference-icon-wrap em {
        position: absolute;
        top: -9px;
        right: -13px;
        display: inline-flex;
        min-width: 17px;
        height: 17px;
        align-items: center;
        justify-content: center;
        padding: 0 5px;
        border: 1px solid var(--desktop-header-background);
        border-radius: 999px;
        background: var(--desktop-header-accent);
        color: var(--desktop-header-badge-text);
        font-family: var(--en-font);
        font-size: 9px;
        font-style: normal;
        font-weight: 800;
        line-height: 15px;
    }

    body > .floating-cart-summary {
        display: none !important;
    }

    body.is-home-page .slider-section {
        width: 100%;
        margin: 0;
        padding: 0;
        background: var(--desktop-hero-surface);
        overflow: hidden;
    }

    body.is-home-page .slider-section .home-slider-container {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0;
    }

    body.is-home-page .home-slider-container > .row {
        margin: 0;
    }

    body.is-home-page .home-slider-container > .row > .col-sm-12 {
        padding: 0;
    }

    body.is-home-page .main_slider {
        width: 100%;
        border: 0;
        border-radius: 0;
        background: var(--desktop-hero-surface);
        box-shadow: none;
    }

    body.is-home-page .main_slider .slider-item,
    body.is-home-page .main_slider .slider-item picture {
        width: 100%;
        height: auto;
        aspect-ratio: 1920 / 678;
        background: var(--desktop-hero-surface);
    }

    body.is-home-page .main_slider .slider-item a,
    body.is-home-page .main_slider .slider-item picture {
        display: block;
        height: 100%;
    }

    body.is-home-page .main_slider .slider-item img {
        display: block;
        width: 100%;
        height: 100%;
        border-radius: 0;
        object-fit: contain;
        object-position: center;
    }

    body.is-home-page .main_slider .owl-prev,
    body.is-home-page .main_slider .owl-next {
        width: 46px;
        height: 46px;
        border: 2px solid var(--desktop-header-accent);
        border-radius: 50%;
        background: transparent !important;
        color: var(--desktop-header-text);
    }

    body.is-home-page .main_slider .owl-prev {
        left: 4%;
    }

    body.is-home-page .main_slider .owl-next {
        right: 4%;
    }

    body.is-home-page .main_slider .owl-dots {
        bottom: 28px;
    }

    body.is-home-page .home-mobile-trust-strip {
    display: block;
    max-width: var(--storefront-shell-width);
    margin: 18px auto 22px;
    padding: 18px clamp(24px, 3vw, 58px);
    border: 1px solid var(--desktop-trust-border);
    border-radius: 14px;
    background: var(--desktop-trust-surface);
    box-shadow: 0 4px 16px var(--desktop-trust-shadow);
}

    body.is-home-page .home-mobile-trust-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        align-items: center;
    }

    body.is-home-page .home-mobile-trust-item {
        position: relative;
        display: grid;
        grid-template-columns: 58px minmax(0, 1fr);
        grid-template-rows: auto auto;
        gap: 3px 16px;
        min-width: 0;
        align-items: center;
        padding: 0 clamp(18px, 2.2vw, 42px);
        text-align: left;
    }

    body.is-home-page .home-mobile-trust-item:not(:last-child)::after {
        position: absolute;
        top: 4px;
        right: 0;
        width: 1px;
        height: calc(100% - 8px);
        background: var(--desktop-trust-divider);
        content: "";
    }

    body.is-home-page .home-mobile-trust-icon {
        display: inline-flex;
        grid-column: 1;
        grid-row: 1 / 3;
        width: 58px;
        height: 58px;
        align-items: center;
        justify-content: center;
        margin: 0;
        border-radius: 50%;
        background: var(--desktop-trust-icon-surface);
        color: var(--desktop-trust-text);
    }

    body.is-home-page .home-mobile-trust-icon i {
        color: inherit;
        font-size: 27px;
        font-weight: 900;
    }

    body.is-home-page .home-mobile-trust-item strong,
    body.is-home-page .home-mobile-trust-item small {
        display: block;
        max-width: 100%;
        overflow: hidden;
        color: var(--desktop-trust-text);
        line-height: 1.25;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    body.is-home-page .home-mobile-trust-item strong {
        align-self: end;
        font-size: 14px;
        font-weight: 700;
    }

    body.is-home-page .home-mobile-trust-item small {
        align-self: start;
        color: var(--desktop-trust-muted);
        font-size: 12px;
        font-weight: 500;
    }
}
/*==== FULL-WIDTH DESKTOP HEADER, HERO + TRUST BAR END ==== */
@media (prefers-reduced-motion: reduce) {
    .desktop-reference-header.desktop-logo-fixed {
        animation: none;
    }
}
/*==== HOME FLASH SALE + SUPPORT STRIP START ==== */
.home-flash-sale {
    --flash-sale-surface: #070809;
    --flash-sale-surface-soft: #151719;
    --flash-sale-accent: var(--secondary-color);
    --flash-sale-text: #ffffff;
    --flash-sale-muted: #d5d5d5;
    --flash-sale-timer-border: rgba(243, 193, 52, 0.66);
    --flash-sale-overlay: rgba(0, 0, 0, 0.58);
    --flash-sale-support-surface: #ffffff;
    --flash-sale-support-text: #161616;
    --flash-sale-support-muted: #4f4f4f;
    --flash-sale-divider: #e4e4e4;
    --flash-sale-shadow: rgba(17, 24, 39, 0.12);
    margin: 20px 0 30px;
}

.home-flash-sale .container {
    width: calc(100% - clamp(48px, 6vw, 120px));
    max-width: var(--storefront-shell-width);
}

.flash-sale-banner {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(28px, 5vw, 90px);
    min-height: 138px;
    align-items: center;
    overflow: hidden;
    padding: 18px clamp(34px, 5vw, 88px);
    border: 1px solid var(--flash-sale-surface-soft);
    border-radius: 18px;
    background: var(--flash-sale-surface);
    box-shadow: 0 5px 18px var(--flash-sale-shadow);
}

.flash-sale-banner::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(90deg, var(--flash-sale-overlay) 0%, var(--flash-sale-overlay) 48%, transparent 100%);
    content: "";
}

.flash-sale-background,
.flash-sale-background img {
    position: absolute;
    z-index: -2;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.flash-sale-background img {
    object-fit: cover;
    object-position: center;
}

.flash-sale-content {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: clamp(20px, 2.4vw, 42px);
    min-width: 0;
    align-items: center;
    color: var(--flash-sale-text);
}

.flash-sale-bolt {
    display: inline-flex;
    width: 84px;
    height: 98px;
    align-items: center;
    justify-content: center;
    color: var(--flash-sale-accent);
}

.flash-sale-bolt i {
    color: inherit;
    font-size: 78px;
    filter: drop-shadow(0 3px 6px var(--flash-sale-shadow));
    transform: rotate(3deg);
}

.flash-sale-copy,
.flash-sale-copy strong,
.flash-sale-copy small,
.flash-sale-eyebrow {
    display: block;
}

.flash-sale-eyebrow {
    margin-bottom: 2px;
    color: var(--flash-sale-accent);
    font-family: var(--poppins-font);
    font-size: clamp(16px, 1.35vw, 25px);
    font-style: italic;
    font-weight: 600;
    line-height: 1.1;
}

.flash-sale-copy strong {
    color: var(--flash-sale-text);
    font-family: var(--en-font);
    font-size: clamp(25px, 2vw, 36px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 0.015em;
}

.flash-sale-copy small {
    margin-top: 4px;
    color: var(--flash-sale-muted);
    font-size: clamp(13px, 1vw, 18px);
    font-weight: 500;
    line-height: 1.2;
}

.flash-sale-countdown {
    display: grid;
    grid-template-columns: repeat(4, minmax(82px, 106px));
    gap: clamp(10px, 1.25vw, 22px);
    color: var(--flash-sale-text);
}

.flash-sale-time {
    display: flex;
    height: 92px;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--flash-sale-timer-border);
    border-radius: 14px;
    background: var(--flash-sale-surface-soft);
    flex-direction: column;
    box-shadow: inset 0 0 18px var(--flash-sale-shadow);
}

.flash-sale-time strong,
.flash-sale-time small {
    display: block;
    color: inherit;
    font-family: var(--en-font);
    text-align: center;
}

.flash-sale-time strong {
    font-size: clamp(25px, 2vw, 36px);
    font-weight: 800;
    line-height: 1;
}

.flash-sale-time small {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
}

.flash-sale-support-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-height: 78px;
    align-items: stretch;
    overflow: hidden;
    border: 1px solid var(--flash-sale-divider);
    border-top: 0;
    border-radius: 0 0 14px 14px;
    background: var(--flash-sale-support-surface);
    box-shadow: 0 6px 18px var(--flash-sale-shadow);
}

.flash-sale-support-item,
.flash-sale-support-item:hover,
.flash-sale-support-item:focus {
    position: relative;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 15px;
    min-width: 0;
    align-items: center;
    padding: 14px clamp(18px, 2.4vw, 42px);
    color: var(--flash-sale-support-text);
    transform: none;
}

.flash-sale-support-item:not(:last-child)::after {
    position: absolute;
    top: 18px;
    right: 0;
    width: 1px;
    height: calc(100% - 36px);
    background: var(--flash-sale-divider);
    content: "";
}

.flash-sale-support-icon {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    color: var(--flash-sale-support-text);
}

.flash-sale-support-icon i {
    color: inherit;
    font-size: 29px;
}

.flash-sale-support-item > span:last-child,
.flash-sale-support-item strong,
.flash-sale-support-item small {
    display: block;
    min-width: 0;
}

.flash-sale-support-item strong {
    overflow: hidden;
    color: var(--flash-sale-support-text);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.flash-sale-support-item small {
    overflow: hidden;
    margin-top: 5px;
    color: var(--flash-sale-support-muted);
    font-size: 11px;
    font-weight: 500;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/*==== HOME FLASH SALE + SUPPORT STRIP END ==== */
/*==== CUSTOMER ACCOUNT DASHBOARD START ==== */
.customer-account-dashboard {
    --account-page-bg: #f6f7f8;
    --account-surface: #ffffff;
    --account-sidebar: #060708;
    --account-sidebar-soft: #151719;
    --account-sidebar-border: rgba(255, 255, 255, 0.09);
    --account-text: #111315;
    --account-muted: #686d72;
    --account-on-dark: #ffffff;
    --account-on-dark-muted: #d2d4d7;
    --account-accent: var(--secondary-color);
    --account-accent-soft: #fff7e3;
    --account-accent-border: rgba(243, 193, 52, 0.36);
    --account-border: #e7e9ec;
    --account-shadow: rgba(15, 23, 42, 0.09);
    --account-hero-glow: rgba(243, 193, 52, 0.34);
    --account-success: #18864b;
    --account-success-soft: #e7f7ee;
    --account-info: #2874c6;
    --account-info-soft: #e8f2fd;
    --account-warning: #a66a00;
    --account-warning-soft: #fff2d8;
    --account-danger: #c13f3f;
    --account-danger-soft: #fdeaea;
    --account-neutral: #626871;
    --account-neutral-soft: #eef0f2;
    --account-disabled: #9ca1a7;
    margin: 0;
    padding: 22px 0 44px;
    background: var(--account-page-bg);
}

.customer-account-dashboard .account-dashboard-shell {
    width: min(1440px, calc(100% - 72px));
    max-width: min(1440px, calc(100% - 72px));
}

.account-dashboard-layout {
    display: grid;
    grid-template-columns: 225px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

.customer-account-dashboard .account-dashboard-sidebar {
    position: sticky;
    top: 142px;
    height: auto;
    min-height: 545px;
    padding: 18px 10px;
    overflow: hidden;
    border: 1px solid var(--account-sidebar-border);
    border-radius: 9px;
    background: var(--account-sidebar);
    box-shadow: 0 8px 24px var(--account-shadow);
}

.customer-account-dashboard .customer-sidebar-title {
    padding: 2px 10px 17px;
    color: var(--account-on-dark);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
}

.customer-account-dashboard .account-dashboard-sidebar .sidebar-menu {
    margin: 0;
    border-radius: 0;
    background: transparent;
}

.customer-account-dashboard .account-dashboard-sidebar .sidebar-menu ul {
    display: grid;
    gap: 5px;
    margin: 0;
    padding: 0;
}

.customer-account-dashboard .account-dashboard-sidebar .sidebar-menu ul li {
    display: block;
    width: 100%;
}

.customer-account-dashboard .account-dashboard-sidebar .sidebar-menu li a,
.customer-account-dashboard .account-dashboard-sidebar .sidebar-menu li a:hover,
.customer-account-dashboard .account-dashboard-sidebar .sidebar-menu li a:focus {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr) auto;
    gap: 10px;
    min-height: 42px;
    align-items: center;
    padding: 0 10px;
    border: 1px solid transparent;
    border-radius: 6px;
    background: transparent;
    color: var(--account-on-dark-muted);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    transform: none;
}

.customer-account-dashboard .account-dashboard-sidebar .sidebar-menu li a:hover,
.customer-account-dashboard .account-dashboard-sidebar .sidebar-menu li a:focus,
.customer-account-dashboard .account-dashboard-sidebar .sidebar-menu li a.active {
    border-color: var(--account-accent-border);
    background: var(--account-sidebar-soft);
    color: var(--account-accent);
}

.customer-account-dashboard .account-dashboard-sidebar .sidebar-menu li a i {
    width: 20px;
    color: currentColor;
    font-size: 15px;
    text-align: center;
}

.customer-account-dashboard .account-dashboard-sidebar .sidebar-menu li a em {
    display: inline-flex;
    min-width: 18px;
    height: 18px;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--account-accent);
    color: var(--account-sidebar);
    font-size: 9px;
    font-style: normal;
    font-weight: 800;
    line-height: 18px;
}

.account-dashboard-main,
.account-dashboard-primary {
    display: grid;
    min-width: 0;
    gap: 18px;
}

.account-welcome-card {
    position: relative;
    isolation: isolate;
    display: flex;
    min-height: 142px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    overflow: hidden;
    padding: 22px 42px;
    border: 1px solid var(--account-sidebar-border);
    border-radius: 9px;
    background: var(--account-sidebar);
    box-shadow: 0 8px 24px var(--account-shadow);
}

.account-welcome-card::after {
    position: absolute;
    z-index: -1;
    right: -5%;
    bottom: -76%;
    width: 62%;
    height: 155%;
    border-radius: 50%;
    background: radial-gradient(circle, var(--account-hero-glow) 0%, transparent 68%);
    content: "";
    transform: rotate(-7deg);
}

.account-profile-summary {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 22px;
}

.account-profile-avatar {
    display: inline-flex;
    width: 92px;
    height: 92px;
    flex: 0 0 92px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 3px solid var(--account-surface);
    border-radius: 50%;
    background: var(--account-neutral-soft);
    color: var(--account-neutral);
}

.account-profile-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.account-profile-avatar i {
    color: inherit;
    font-size: 42px;
}

.account-profile-copy {
    min-width: 0;
}

.account-profile-copy h1 {
    margin: 0 0 8px;
    overflow-wrap: anywhere;
    color: var(--account-on-dark);
    font-family: var(--en-font);
    font-size: clamp(18px, 1.45vw, 25px);
    font-weight: 800;
    line-height: 1.25;
}

.account-profile-copy a,
.account-profile-copy a:hover,
.account-profile-copy a:focus {
    display: block;
    width: fit-content;
    max-width: 100%;
    overflow: hidden;
    margin-top: 4px;
    color: var(--account-on-dark-muted);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.account-edit-profile,
.account-edit-profile:hover,
.account-edit-profile:focus {
    display: inline-flex;
    min-width: 134px;
    min-height: 42px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 18px;
    border: 1px solid var(--account-accent-border);
    border-radius: 6px;
    background: var(--account-sidebar-soft);
    color: var(--account-on-dark);
    font-size: 12px;
    font-weight: 700;
    transform: none;
}

.account-edit-profile:hover,
.account-edit-profile:focus {
    border-color: var(--account-accent);
    color: var(--account-accent);
}

.account-stat-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.account-stat-card,
.account-stat-card:hover,
.account-stat-card:focus {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 2px 12px;
    min-height: 118px;
    align-items: center;
    padding: 15px;
    border: 1px solid var(--account-border);
    border-radius: 8px;
    background: var(--account-surface);
    color: var(--account-text);
    box-shadow: 0 4px 14px var(--account-shadow);
    transform: none;
}

.account-stat-card:hover,
.account-stat-card:focus {
    border-color: var(--account-accent-border);
}

.account-stat-icon {
    display: inline-flex;
    grid-column: 1;
    grid-row: 1;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--account-accent-soft);
    color: var(--account-text);
}

.account-stat-icon i {
    color: inherit;
    font-size: 21px;
}

.account-stat-copy {
    display: block;
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
}

.account-stat-copy small,
.account-stat-copy strong {
    display: block;
    color: var(--account-text);
}

.account-stat-copy small {
    overflow: hidden;
    margin-bottom: 4px;
    color: var(--account-muted);
    font-size: 10px;
    font-weight: 600;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.account-stat-copy strong {
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

.account-stat-link {
    display: inline-flex;
    grid-column: 1 / 3;
    grid-row: 2;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--account-warning);
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
}

.account-stat-link i {
    color: inherit;
    font-size: 8px;
}

.account-dashboard-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 290px;
    gap: 18px;
    align-items: start;
}

.account-panel {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--account-border);
    border-radius: 8px;
    background: var(--account-surface);
    box-shadow: 0 4px 14px var(--account-shadow);
}

.account-panel-header {
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 18px;
    border-bottom: 1px solid var(--account-border);
}

.account-panel-header h2 {
    margin: 0;
    color: var(--account-text);
    font-family: var(--en-font);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
}

.account-panel-header > a,
.account-panel-header > a:hover,
.account-panel-header > a:focus {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--account-warning);
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
}

.account-panel-header > a i {
    color: inherit;
    font-size: 8px;
}

.account-orders-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.account-orders-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--account-text);
}

.account-orders-table th,
.account-orders-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--account-border);
    font-size: 10px;
    line-height: 1.25;
    text-align: left;
    vertical-align: middle;
    white-space: nowrap;
}

.account-orders-table th {
    background: var(--account-page-bg);
    color: var(--account-muted);
    font-size: 9px;
    font-weight: 700;
}

.account-orders-table tbody tr:last-child td {
    border-bottom: 0;
}

.account-orders-table td strong {
    color: var(--account-text);
    font-size: 10px;
    font-weight: 800;
}

.account-order-status {
    display: inline-flex;
    min-width: 64px;
    height: 23px;
    align-items: center;
    justify-content: center;
    padding: 0 9px;
    border-radius: 999px;
    background: var(--account-neutral-soft);
    color: var(--account-neutral);
    font-size: 8px;
    font-weight: 700;
    line-height: 23px;
}

.account-order-status.status-pending,
.account-order-status.status-on-hold {
    background: var(--account-warning-soft);
    color: var(--account-warning);
}

.account-order-status.status-processing,
.account-order-status.status-on-the-way,
.account-order-status.status-in-courier {
    background: var(--account-info-soft);
    color: var(--account-info);
}

.account-order-status.status-delivered {
    background: var(--account-success-soft);
    color: var(--account-success);
}

.account-order-status.status-cancelled,
.account-order-status.status-returned {
    background: var(--account-danger-soft);
    color: var(--account-danger);
}

.account-order-details,
.account-order-details:hover,
.account-order-details:focus {
    display: inline-flex;
    min-width: 72px;
    height: 27px;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border: 1px solid var(--account-border);
    border-radius: 5px;
    background: var(--account-surface);
    color: var(--account-text);
    font-size: 8px;
    font-weight: 700;
    transform: none;
}

.account-order-details:hover,
.account-order-details:focus {
    border-color: var(--account-accent);
}

.account-empty-state {
    display: flex;
    min-height: 230px;
    align-items: center;
    justify-content: center;
    padding: 28px;
    color: var(--account-muted);
    flex-direction: column;
    text-align: center;
}

.account-empty-state i {
    margin-bottom: 12px;
    color: var(--account-accent);
    font-size: 34px;
}

.account-empty-state strong {
    color: var(--account-text);
    font-size: 15px;
}

.account-empty-state p {
    margin: 5px 0 14px;
    color: var(--account-muted);
    font-size: 11px;
}

.account-empty-state a {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 0 14px;
    border-radius: 5px;
    background: var(--account-sidebar);
    color: var(--account-on-dark);
    font-size: 10px;
    font-weight: 700;
}

.account-recommendation-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    padding: 14px;
}

.account-product-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--account-border);
    border-radius: 7px;
    background: var(--account-surface);
}

.account-product-media {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--account-page-bg);
}

.account-product-media > a,
.account-product-media img {
    display: block;
    width: 100%;
    height: 100%;
}

.account-product-media img {
    padding: 7px;
    object-fit: contain;
}

.account-product-wishlist,
.account-product-wishlist:hover,
.account-product-wishlist:focus {
    position: absolute;
    top: 7px;
    right: 7px;
    display: inline-flex;
    width: 27px;
    height: 27px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--account-border);
    border-radius: 50%;
    background: var(--account-surface);
    color: var(--account-text);
    box-shadow: 0 3px 10px var(--account-shadow) !important;
}

.account-product-wishlist.active,
.account-product-wishlist:hover {
    border-color: var(--account-accent);
    color: var(--account-warning);
}

.account-product-wishlist i {
    color: inherit;
    font-size: 12px;
}

.account-product-body {
    padding: 9px;
}

.account-product-name {
    display: -webkit-box;
    min-height: 31px;
    overflow: hidden;
    color: var(--account-text);
    font-size: 10px;
    font-weight: 600;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.account-product-price {
    display: flex;
    min-width: 0;
    align-items: baseline;
    gap: 5px;
    margin: 7px 0 9px;
    white-space: nowrap;
}

.account-product-price strong {
    color: var(--account-text);
    font-size: 11px;
    font-weight: 800;
}

.account-product-price del {
    overflow: hidden;
    color: var(--account-muted);
    font-size: 8px;
    text-overflow: ellipsis;
}

.account-product-cart,
.account-product-cart:hover,
.account-product-cart:focus {
    display: inline-flex;
    width: 100%;
    min-height: 30px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid var(--account-sidebar);
    border-radius: 4px;
    background: var(--account-sidebar);
    color: var(--account-on-dark);
    font-size: 8px;
    font-weight: 700;
    box-shadow: none !important;
}

.account-product-cart i {
    color: var(--account-accent);
    font-size: 9px;
}

.account-product-cart.active,
.account-product-cart:hover,
.account-product-cart:focus {
    border-color: var(--account-accent);
}

.account-product-cart.is-disabled {
    border-color: var(--account-neutral-soft);
    background: var(--account-neutral-soft);
    color: var(--account-disabled);
    cursor: not-allowed;
}

.account-help-panel {
    position: sticky;
    top: 142px;
}

.account-help-list {
    display: grid;
    padding: 4px 16px 12px;
}

.account-help-item,
.account-help-item:hover,
.account-help-item:focus {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
    min-height: 72px;
    align-items: center;
    border-bottom: 1px solid var(--account-border);
    color: var(--account-text);
    transform: none;
}

.account-help-item:last-child {
    border-bottom: 0;
}

.account-help-item > span:first-child {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--account-accent-soft);
    color: var(--account-warning);
}

.account-help-item > span:first-child i {
    color: inherit;
    font-size: 16px;
}

.account-help-item strong,
.account-help-item small {
    display: block;
    min-width: 0;
}

.account-help-item strong {
    color: var(--account-text);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
}

.account-help-item small {
    overflow: hidden;
    margin-top: 5px;
    color: var(--account-muted);
    font-size: 9px;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/*==== CUSTOMER ACCOUNT DASHBOARD END ==== */
/* Mobile account dashboard is enabled in responsive.css. */
.account-mobile-dashboard {
    display: none;
}
/*==== HOME PRODUCT CARD COLOR TOKENS START ==== */
body.is-home-page .homeproduct {
    --product-card-surface: #ffffff;
    --product-card-text: #111111;
    --product-card-muted: #777777;
    --product-card-border: #e5e5e5;
    --product-card-accent: var(--secondary-color);
    --product-card-action: #050505;
}

body.is-home-page .homeproduct:not(.home-new-arrivals) .product_item,
body.is-home-page .homeproduct:not(.home-new-arrivals) .product_item_inner,
body.is-home-page .homeproduct:not(.home-new-arrivals) .pro_img,
body.is-home-page .homeproduct:not(.home-new-arrivals) .pro_des {
    background-color: var(--product-card-surface);
}

body.is-home-page .homeproduct:not(.home-new-arrivals) .product_item {
    border-color: var(--product-card-border);
}

body.is-home-page .homeproduct:not(.home-new-arrivals) .product_item:hover {
    border-color: var(--product-card-accent);
}

body.is-home-page .homeproduct:not(.home-new-arrivals) .pro_name a,
body.is-home-page .homeproduct:not(.home-new-arrivals) .pro_price p,
body.is-home-page .homeproduct:not(.home-new-arrivals) .product-wishlist-toggle {
    color: var(--product-card-text);
}

body.is-home-page .homeproduct:not(.home-new-arrivals) .pro_price del {
    color: var(--product-card-muted);
}

body.is-home-page .homeproduct:not(.home-new-arrivals) .discount p {
    background-color: var(--product-card-accent);
    color: var(--product-card-text);
}

body.is-home-page .homeproduct:not(.home-new-arrivals) .product-wishlist-toggle:hover,
body.is-home-page .homeproduct:not(.home-new-arrivals) .product-wishlist-toggle.active {
    color: var(--product-card-accent);
}

body.is-home-page .homeproduct:not(.home-new-arrivals) .cart_btn button,
body.is-home-page .homeproduct:not(.home-new-arrivals) .variable-modal,
body.is-home-page .homeproduct:not(.home-new-arrivals) .addcartbutton {
    border-color: var(--product-card-action) !important;
    background-color: var(--product-card-action) !important;
    color: var(--product-card-accent) !important;
}

body.is-home-page .homeproduct:not(.home-new-arrivals) .cart_btn button:hover,
body.is-home-page .homeproduct:not(.home-new-arrivals) .variable-modal:hover,
body.is-home-page .homeproduct:not(.home-new-arrivals) .addcartbutton:hover,
body.is-home-page .homeproduct:not(.home-new-arrivals) .addcartbutton.active {
    border-color: var(--product-card-accent) !important;
    background-color: var(--product-card-accent) !important;
    color: var(--product-card-action) !important;
}

body.is-home-page .homeproduct:not(.home-new-arrivals) .stock_out {
    background-color: var(--product-card-muted);
    color: var(--product-card-surface);
}
/*==== HOME PRODUCT CARD COLOR TOKENS END ==== */
/*==== CUSTOMER ACCOUNT TYPOGRAPHY SCALE START ==== */
@media only screen and (min-width: 768px) {
    .customer-section:not(.customer-account-dashboard) .customer-auth {
        font-size: 15px;
    }

    .customer-section:not(.customer-account-dashboard) .customer-name small {
        font-size: 13px;
    }

    .customer-section:not(.customer-account-dashboard) .customer-sidebar .sidebar-menu li a {
        font-size: 16px;
        line-height: 1.35;
    }

    .customer-section:not(.customer-account-dashboard) .account-title {
        font-size: 20px;
        line-height: 1.3;
    }

    .customer-section:not(.customer-account-dashboard) .customer-content,
    .customer-section:not(.customer-account-dashboard) .customer-content .table {
        font-size: 15px;
    }

    .customer-section:not(.customer-account-dashboard) .customer-content .table th,
    .customer-section:not(.customer-account-dashboard) .customer-content .table td {
        font-size: 15px;
        line-height: 1.45;
    }

    .customer-section:not(.customer-account-dashboard) .checkout-shipping label,
    .customer-section:not(.customer-account-dashboard) .form-control,
    .customer-section:not(.customer-account-dashboard) .select2-container {
        font-size: 15px;
    }

    .customer-section:not(.customer-account-dashboard) .submit-btn,
    .customer-section:not(.customer-account-dashboard) .invoice_btn {
        font-size: 14px;
    }

    .customer-account-dashboard .customer-sidebar-title {
        font-size: 20px;
    }

    .customer-account-dashboard .account-dashboard-sidebar .sidebar-menu li a,
    .customer-account-dashboard .account-dashboard-sidebar .sidebar-menu li a:hover,
    .customer-account-dashboard .account-dashboard-sidebar .sidebar-menu li a:focus {
        font-size: 14px;
    }

    .account-profile-copy h1 {
        font-size: clamp(22px, 1.6vw, 28px);
    }

    .account-profile-copy a,
    .account-profile-copy a:hover,
    .account-profile-copy a:focus,
    .account-edit-profile,
    .account-edit-profile:hover,
    .account-edit-profile:focus {
        font-size: 14px;
    }

    .account-stat-copy small {
        font-size: 12px;
    }

    .account-stat-copy strong {
        font-size: 27px;
    }

    .account-stat-link {
        font-size: 11px;
    }

    .account-panel-header h2 {
        font-size: 17px;
    }

    .account-panel-header > a,
    .account-panel-header > a:hover,
    .account-panel-header > a:focus {
        font-size: 12px;
    }

    .account-orders-table th {
        font-size: 11px;
    }

    .account-orders-table td,
    .account-orders-table td strong {
        font-size: 13px;
    }

    .account-order-status,
    .account-order-details,
    .account-order-details:hover,
    .account-order-details:focus {
        font-size: 10px;
    }

    .account-product-name {
        font-size: 12px;
    }

    .account-product-price strong {
        font-size: 13px;
    }

    .account-product-price del,
    .account-product-cart,
    .account-product-cart:hover,
    .account-product-cart:focus {
        font-size: 10px;
    }

    .account-help-item strong {
        font-size: 13px;
    }

    .account-help-item small {
        font-size: 11px;
    }
}
/*==== CUSTOMER ACCOUNT TYPOGRAPHY SCALE END ==== */
/*==== CUSTOMER ACCOUNT SUBPAGES START ==== */
.customer-account-subpage {
    min-height: 620px;
}

.customer-account-subpage .account-dashboard-main {
    align-content: start;
}

.account-subpage-panel {
    min-height: 500px;
}

.account-subpage-header {
    min-height: 60px;
    padding-right: 24px;
    padding-left: 24px;
}

.account-subpage-header h1 {
    margin: 0;
    color: var(--account-text);
    font-family: var(--en-font);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.25;
}

.account-subpage-header h1 span {
    color: var(--account-muted);
    font-size: 14px;
    font-weight: 600;
}

.account-subpage-body {
    padding: 24px;
    color: var(--account-text);
    font-size: 15px;
}

.account-subpage-body.customer-content {
    border-radius: 0;
    background: transparent;
}

.account-subpage-body .form-group label {
    margin-bottom: 8px;
    color: var(--account-text);
    font-size: 15px;
    font-weight: 600;
}

.account-subpage-body .form-control,
.account-subpage-body .select2-container .select2-selection {
    min-height: 43px;
    font-size: 15px;
}

.account-subpage-body .submit-btn {
    min-height: 42px;
    padding: 8px 22px;
    font-size: 14px;
}

.account-subpage-table {
    margin-bottom: 0;
    border: 1px solid var(--account-border);
}

.account-subpage-table thead th {
    padding: 13px 14px;
    border-bottom: 1px solid var(--account-border);
    background: var(--account-page-bg);
    color: var(--account-muted);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.account-subpage-table tbody td {
    padding: 14px;
    border-bottom: 1px solid var(--account-border);
    color: var(--account-text);
    font-size: 14px;
    vertical-align: middle;
    white-space: nowrap;
}

.account-subpage-table tbody tr:last-child td {
    border-bottom: 0;
}

.account-subpage-table .account-subpage-empty {
    padding: 48px 16px;
    color: var(--account-muted);
    font-size: 15px;
    text-align: center;
}

.account-subpage-table .invoice_btn {
    display: inline-flex;
    width: 34px;
    height: 32px;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: var(--account-sidebar);
    color: var(--account-accent);
    font-size: 13px;
}

.customer-account-subpage .card {
    border-color: var(--account-border);
    box-shadow: none;
}

.customer-account-subpage .card-body {
    color: var(--account-text);
    font-size: 15px;
    line-height: 1.65;
}

.customer-invoice.customer-account-subpage {
    margin: 0;
}

.invoice-account-main {
    min-width: 0;
    overflow-x: auto;
}
/*==== CUSTOMER ACCOUNT SUBPAGES END ==== */

/* Customer login and registration pages */
.is-customer-login-page {
    min-width: 320px;
    background: #ffffff;
}


.is-customer-login-page #content {
    min-height: 100vh;
}

.customer-login-page,
.customer-login-page * {
    box-sizing: border-box;
}

.customer-login-page {
    --login-accent: var(--secondary-color, #f8c340);
    --login-accent-deep: #efa900;
    --login-text: #171717;
    --login-muted: #777b84;
    --login-border: #e5e7eb;
    min-height: 100vh;
    background: #f7f7f7;
    color: var(--login-text);
}

.customer-login-shell {
    display: grid;
    min-height: 100vh;
    grid-template-columns: minmax(360px, 0.9fr) minmax(520px, 1.1fr);
}

.customer-login-brand {
    position: relative;
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    padding: 56px;
    background: #111111;
    color: #ffffff;
}

.customer-login-brand::after {
    position: absolute;
    right: -12%;
    bottom: -55px;
    width: 125%;
    height: 120px;
    border-top: 14px solid var(--login-accent);
    background: #ffffff;
    content: "";
    transform: rotate(-6deg);
}

.customer-login-brand-inner {
    position: relative;
    z-index: 1;
    width: min(100%, 470px);
    text-align: center;
}

.customer-login-desktop-logo {
    display: inline-block;
    margin-bottom: 56px;
}

.customer-login-desktop-logo img {
    display: block;
    width: auto;
    max-width: 220px;
    height: 72px;
    object-fit: contain;
}

.customer-login-visual {
    position: relative;
    width: 205px;
    height: 205px;
    margin: 0 auto;
    border-radius: 50%;
    background: #fbf8f2;
}

.customer-login-bag {
    position: absolute;
    top: 59px;
    left: 50%;
    width: 94px;
    height: 112px;
    border: 1px solid #d8ad60;
    background: linear-gradient(105deg, #ffffff 12%, #f5f5f5 50%, #ffffff 90%);
    box-shadow: 0 12px 22px rgba(55, 43, 20, 0.12);
    transform: translateX(-50%) skew(-3deg);
}

.customer-login-bag-handle {
    position: absolute;
    top: -29px;
    left: 25px;
    width: 43px;
    height: 42px;
    border: 2px solid var(--login-accent-deep);
    border-bottom: 0;
    border-radius: 24px 24px 0 0;
}

.customer-login-bag-letter {
    position: absolute;
    top: 29px;
    left: 0;
    width: 100%;
    color: var(--login-accent-deep);
    font-size: 49px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
}

.customer-login-lock {
    position: absolute;
    right: 31px;
    bottom: 22px;
    display: grid;
    width: 52px;
    height: 52px;
    border: 1px solid #c98700;
    border-radius: 8px;
    background: linear-gradient(145deg, #ffc62b, #e99c00);
    box-shadow: 0 7px 14px rgba(180, 117, 0, 0.24);
    color: #241900;
    font-size: 23px;
    place-items: center;
}

.customer-login-spark {
    position: absolute;
    color: var(--login-accent);
    font-size: 22px;
    line-height: 1;
}

.customer-login-spark-one {
    top: 34px;
    left: 24px;
}

.customer-login-spark-two {
    top: 18px;
    right: 27px;
}

.customer-login-spark-three {
    top: 79px;
    right: 8px;
}

.customer-login-brand-copy {
    margin-top: 40px;
}

.customer-login-brand-copy h2 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 30px;
    font-weight: 700;
}

.customer-login-brand-copy p {
    max-width: 330px;
    margin: 0 auto;
    color: #c7c7c7;
    font-size: 15px;
    line-height: 1.7;
}

.customer-login-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 54px 8%;
    background: #ffffff;
}

.customer-login-panel-inner {
    width: min(100%, 470px);
}

.customer-login-mobile-header,
.customer-login-mobile-visual {
    display: none;
}

.customer-login-heading {
    margin-bottom: 32px;
    text-align: center;
}

.customer-login-heading h1 {
    margin: 0 0 10px;
    color: var(--login-text);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.25;
}

.customer-login-heading p {
    margin: 0;
    color: var(--login-muted);
    font-size: 15px;
    line-height: 1.65;
}

.customer-login-heading strong {
    color: var(--login-accent-deep);
    font-weight: 600;
}

.customer-login-form-wrap form {
    padding: 0;
}

.customer-login-field {
    position: relative;
    margin-bottom: 14px;
}

.customer-login-field > label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.customer-login-field > i {
    position: absolute;
    z-index: 2;
    top: 27px;
    left: 17px;
    color: #45484d;
    font-size: 16px;
    transform: translateY(-50%);
}

.customer-login-page .customer-login-field .form-control {
    width: 100%;
    height: 54px;
    padding: 0 48px;
    border: 1px solid var(--login-border);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 3px 12px rgba(17, 24, 39, 0.04);
    color: var(--login-text);
    font-size: 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.customer-login-page .customer-login-field .form-control::placeholder {
    color: #979ba3;
}

.customer-login-page .customer-login-field .form-control:focus {
    border-color: var(--login-accent);
    box-shadow: 0 0 0 3px rgba(248, 195, 64, 0.16);
    outline: 0;
}

.customer-login-password-toggle {
    position: absolute;
    z-index: 3;
    top: 0;
    right: 2px;
    display: grid;
    width: 48px;
    height: 54px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #45484d;
    font-size: 16px;
    place-items: center;
}

.customer-login-field .invalid-feedback {
    padding: 6px 4px 0;
    font-size: 12px;
}

.customer-login-forgot {
    margin: 2px 0 18px;
    text-align: right;
}

.customer-login-forgot a,
.customer-login-register a {
    color: var(--login-accent-deep);
    font-weight: 500;
}

.customer-login-forgot a {
    font-size: 13px;
}

.customer-login-submit {
    width: 100%;
    height: 54px;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(180deg, #ffc845 0%, #f4aa04 100%);
    box-shadow: 0 9px 18px rgba(230, 158, 0, 0.24);
    color: #17120a;
    font-size: 16px;
    font-weight: 700;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.customer-login-submit:hover,
.customer-login-submit:focus {
    box-shadow: 0 11px 22px rgba(230, 158, 0, 0.32);
    transform: translateY(-1px);
}

.customer-login-register {
    margin: 24px 0 0;
    color: var(--login-muted);
    font-size: 13px;
    text-align: center;
}

.customer-login-benefits {
    display: grid;
    margin-top: 42px;
    padding: 22px 14px;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(17, 24, 39, 0.04);
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.customer-login-benefit {
    display: flex;
    min-width: 0;
    align-items: center;
    flex-direction: column;
    padding: 0 8px;
    text-align: center;
}

.customer-login-benefit + .customer-login-benefit {
    border-left: 1px solid #eeeeee;
}

.customer-login-benefit i {
    height: 28px;
    margin-bottom: 8px;
    color: var(--login-accent-deep);
    font-size: 25px;
}

.customer-login-benefit strong {
    margin-bottom: 3px;
    color: #343434;
    font-size: 12px;
    font-weight: 600;
}

.customer-login-benefit span {
    color: #8b8f96;
    font-size: 10px;
    line-height: 1.35;
}









/* Customer register page */
.customer-register-avatar {
    position: absolute;
    top: 27px;
    left: 50%;
    width: 151px;
    height: 151px;
    border: 1px solid #dedede;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 7px 20px rgba(25, 25, 25, 0.12);
    transform: translateX(-50%);
}

.customer-register-avatar-head {
    position: absolute;
    top: 20px;
    left: 50%;
    width: 43px;
    height: 43px;
    border-radius: 50%;
    background: linear-gradient(145deg, #ffd35d, #efa900);
    box-shadow: inset -4px -4px 8px rgba(190, 125, 0, 0.16);
    transform: translateX(-50%);
}

.customer-register-avatar-body {
    position: absolute;
    bottom: 22px;
    left: 50%;
    width: 76px;
    height: 48px;
    border-radius: 50% 50% 46% 46%;
    background: linear-gradient(145deg, #ffc947, #df9500);
    box-shadow: inset -6px -3px 8px rgba(190, 125, 0, 0.16);
    transform: translateX(-50%);
}

.customer-register-avatar-plus {
    position: absolute;
    right: -19px;
    bottom: 9px;
    display: grid;
    width: 44px;
    height: 44px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    background: var(--login-accent-deep);
    box-shadow: 0 5px 12px rgba(175, 111, 0, 0.24);
    color: #ffffff;
    font-size: 31px;
    line-height: 1;
    place-items: center;
}

.customer-register-terms {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    margin: 5px 0 18px;
    color: var(--login-muted);
    font-size: 11px;
    line-height: 1.45;
}

.customer-register-check {
    display: grid;
    flex: 0 0 13px;
    width: 13px;
    height: 13px;
    border-radius: 2px;
    background: var(--login-accent-deep);
    color: #ffffff;
    font-size: 9px;
    place-items: center;
}

.customer-register-terms p {
    margin: 0;
}

.customer-register-terms strong {
    color: var(--login-accent-deep);
    font-weight: 500;
}


/* Product details page */
.is-product-details-page {
    --details-yellow: #f6c514;
    --details-black: #171717;
    --details-border: #e3e3e3;
    --details-muted: #727272;
    --details-soft: #f7f7f7;
}

.is-product-details-page .main-details-page {
    padding: 20px 0 18px;
    background: #fff;
}


.is-product-details-page .details-reference-breadcrumb {
    display: flex;
    min-width: 0;
    margin: 0 0 20px;
    color: #747474;
    font-size: 12px;
    line-height: 1.45;
    text-transform: none;
}

.is-product-details-page .details-reference-breadcrumb a,
.is-product-details-page .details-reference-breadcrumb span {
    color: #747474;
    font-weight: 400;
}

.is-product-details-page .details-reference-breadcrumb strong {
    min-width: 0;
    overflow: hidden;
    color: #252525;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.is-product-details-page .details-reference-breadcrumb i {
    color: #b2b2b2;
    font-size: 9px;
}

.is-product-details-page .product-cart > .details-breadcrumb {
    display: none;
}

.is-product-details-page .details-product-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.32fr) minmax(0, .88fr) minmax(0, .56fr);
    gap: 22px;
    align-items: start;
}

.is-product-details-page .product-gallery-panel,
.is-product-details-page .details_right,
.is-product-details-page .details-info-sidebar {
    min-width: 0;
}

.is-product-details-page .product-gallery-panel .position-relative {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 13px;
    overflow: visible;
}

.is-product-details-page .main-details-page .details_slider {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    border: 1px solid #ededed;
    background: var(--details-soft);
}

.is-product-details-page .main-details-page .details_slider .owl-stage-outer,
.is-product-details-page .main-details-page .details_slider .owl-item,
.is-product-details-page .main-details-page .dimage_item {
    height: clamp(470px, 38vw, 570px);
}

.is-product-details-page .main-details-page .dimage_item {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: var(--details-soft);
}

.is-product-details-page .main-details-page .dimage_item img {
    width: 100%;
    height: 100%;
    padding: 12px;
    object-fit: contain;
    object-position: center;
    background: var(--details-soft);
}

.is-product-details-page .related_slider .cart_btn button, .is-product-details-page .related_slider .variable-modal {
    display: flex;
    /* width: 116px; */
    max-width: 100%;
    height: 30px !important;
    min-height: 30px !important;
    max-height: 30px !important;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin: 0;
    padding: 0 8px;
    color: #ffffff;
    background: #050606 !important;
    border: 0 !important;
    border-radius: 5px !important;
    font-size: 0;
    font-weight: 600;
    line-height: 24px !important;
}

.is-product-details-page .main-details-page .indicator-item {
    flex: 0 0 88px;
    width: 72px;
    height: 88px;
    padding: 4px;
    border: 1px solid var(--details-border);
    border-radius: 0;
    background: #fff;
}

.is-product-details-page .main-details-page .indicator-item.active,
.is-product-details-page .main-details-page .indicator-item:hover {
    border-color: var(--details-black);
    box-shadow: 0 0 0 1px var(--details-black);
}

.is-product-details-page .main-details-page .indicator-item img {
    object-fit: contain;
}

.is-product-details-page .main-details-page .discount,
.is-product-details-page .details-wishlist-floating,
.is-product-details-page .details-slide-count {
    display: none;
}

.is-product-details-page .main-details-page .details_right {
    padding: 0;
}

.is-product-details-page .details-title-discount {
    display: inline-flex;
    align-items: center;
    min-height: 25px;
    margin-bottom: 11px;
    padding: 4px 10px;
    background: #ef3340;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

.is-product-details-page .main-details-page .product-cart .name {
    margin: 0 0 12px;
    color: #202020;
    font-size: clamp(22px, 1.8vw, 29px);
    font-weight: 700;
    line-height: 1.25;
}

.is-product-details-page .main-details-page .details-ratting-wrapper {
    gap: 8px;
    margin: 0 0 18px;
}

.is-product-details-page .main-details-page .details-stars {
    gap: 3px;
    color: var(--details-yellow);
    font-size: 14px;
}

.is-product-details-page .main-details-page .details-review-count {
    color: #8a8a8a;
    font-size: 13px;
}

.is-product-details-page .main-details-page .details-price {
    gap: 8px 12px;
    margin: 0 0 15px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--details-border);
}

.is-product-details-page .details-price-label {
    display: none;
}

.is-product-details-page .main-details-page .details-current-price {
    color: var(--details-black);
    font-size: 28px;
    font-weight: 800;
}

.is-product-details-page .main-details-page .details-price del {
    color: #969696;
    font-size: 17px;
}

.is-product-details-page .main-details-page .details-save-text {
    padding: 4px 8px;
    background: #eff8ed;
    color: #31833a;
    font-size: 11px;
}

.is-product-details-page .main-details-page .details-summary {
    margin: 0 0 17px;
    color: #656565;
}

.is-product-details-page .main-details-page .details-summary p,
.is-product-details-page .main-details-page .details-summary li {
    color: #656565;
    font-size: 13px;
    line-height: 1.65;
}

.is-product-details-page .main-details-page .details-summary p:last-child,
.is-product-details-page .details-product-information-copy > :last-child {
    margin-bottom: 0;
}

.is-product-details-page .details-meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 18px;
    margin-bottom: 17px;
}

.is-product-details-page .details-meta-row .product-code,
.is-product-details-page .details-meta-row .product-stock-status {
    margin: 0;
}

.is-product-details-page .details-meta-row p {
    margin: 0;
    color: #555;
    font-size: 12px;
}

.is-product-details-page .details-meta-row span {
    color: #202020;
    font-weight: 600;
}

.is-product-details-page .product-stock-status.in-stock p {
    color: #24823b;
}

.is-product-details-page .details-option-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.is-product-details-page .main-details-page .color-title,
.is-product-details-page .product-qty-label {
    margin: 0 0 9px;
    color: #242424;
    font-size: 13px;
    font-weight: 600;
}

.is-product-details-page .main-details-page .color-title span {
    color: #777;
    font-weight: 400;
}

.is-product-details-page .details-size-chart {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 9px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #454545;
    font-size: 12px;
    font-weight: 600;
}

.is-product-details-page .details-size-chart:hover {
    color: #000;
}

.is-product-details-page .main-details-page .size-container {
    margin-bottom: 16px;
}

.is-product-details-page .main-details-page .selector {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.is-product-details-page .main-details-page .selector-item_label {
    min-width: 43px;
    height: 36px;
    padding: 0 12px;
    border-color: #d5d5d5;
    border-radius: 2px;
    font-size: 12px;
    line-height: 34px;
    text-align: center;
}

.is-product-details-page .main-details-page .selector-item_radio:checked + .selector-item_label,
.is-product-details-page .main-details-page .selector-item_label:hover {
    border-color: var(--details-black);
    color: var(--details-black);
    box-shadow: 0 0 0 1px var(--details-black);
}

.is-product-details-page .main-details-page .pro-color .selector-item_label {
    width: auto;
    min-width: 52px;
}

.is-product-details-page .main-details-page .pro_brand {
    margin: 0 0 14px;
}

.is-product-details-page .product-action-row {
    grid-template-columns: auto 126px;
    margin: 1px 0 14px;
}

.is-product-details-page .main-details-page .qty-cart .quantity {
    grid-template-columns: 36px 52px 36px;
    width: 126px;
    height: 38px;
    border-radius: 2px;
}

.is-product-details-page .details-purchase-actions {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 10px;
}

.is-product-details-page .details-cart-row {
    display: block;
    grid-column: auto;
}

.is-product-details-page .details-cart-row .details-wishlist-inline {
    display: none;
}

.is-product-details-page .main-details-page .single_product {
    grid-column: auto;
    margin: 0;
}

.is-product-details-page .main-details-page .add_cart_btn,
.is-product-details-page .main-details-page .order_now_btn {
    width: 100%;
    min-height: 46px;
    margin: 0;
    border: 1px solid var(--details-black);
    border-radius: 2px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.is-product-details-page .main-details-page .add_cart_btn,
.is-product-details-page .main-details-page .add_cart_btn:disabled {
    border-color: var(--details-black) !important;
    background: var(--details-black) !important;
    color: #fff !important;
}

.is-product-details-page .main-details-page .order_now_btn,
.is-product-details-page .main-details-page .order_now_btn:disabled {
    border-color: var(--details-yellow) !important;
    background: var(--details-yellow) !important;
    color: var(--details-black) !important;
}

.is-product-details-page .details-secondary-actions {
    display: flex;
    grid-column: 1 / -1;
    justify-content: center;
    margin-top: 13px;
}

.is-product-details-page .details-wishlist-text {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: #484848;
    font-size: 12px;
    font-weight: 500;
}

.is-product-details-page .details-wishlist-text:hover,
.is-product-details-page .details-wishlist-text.active {
    background: transparent;
    color: #d72e3b;
}

.is-product-details-page .details_right .details-static-benefits {
    display: none !important;
}

.is-product-details-page .details-info-sidebar {
    display: grid;
    gap: 15px;
    overflow: visible;
}

.is-product-details-page .details-reference-card {
    border: 1px solid var(--details-border);
    border-radius: 0;
    background: #fff;
}

.is-product-details-page .details-reference-card h2 {
    margin: 0;
    padding: 14px 16px;
    border-bottom: 1px solid var(--details-border);
    color: #232323;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
}

.is-product-details-page .details-service-card {
    padding: 3px 16px;
}

.is-product-details-page .details-service-item {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 11px;
    align-items: center;
    min-height: 66px;
    padding: 10px 0;
}

.is-product-details-page .details-service-item + .details-service-item {
    border-top: 1px solid #ededed;
}

.is-product-details-page .details-service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #222;
    font-size: 22px;
}

.is-product-details-page .details-service-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.is-product-details-page .details-service-item strong,
.is-product-details-page .details-service-item small {
    display: block;
}

.is-product-details-page .details-service-item strong {
    color: #252525;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}

.is-product-details-page .details-service-item small {
    margin-top: 3px;
    color: #8a8a8a;
    font-size: 10px;
    line-height: 1.35;
}

.is-product-details-page .details-product-information-copy {
    max-height: 230px;
    padding: 14px 16px;
    overflow: auto;
    color: #6e6e6e;
    overflow-wrap: anywhere;
}

.is-product-details-page .details-product-information-copy p,
.is-product-details-page .details-product-information-copy li {
    color: #6e6e6e;
    font-size: 11px;
    line-height: 1.65;
}

.is-product-details-page .details-product-information-copy ul {
    margin: 0;
    padding-left: 17px;
}

.is-product-details-page .details-share-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px 16px 16px;
}

.is-product-details-page .details-share-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #fff;
    font-size: 13px;
}

.is-product-details-page .details-share-links .facebook {
    background: #1877f2;
}

.is-product-details-page .details-share-links .twitter {
    background: #1d9bf0;
}

.is-product-details-page .details-share-links .pinterest {
    background: #bd081c;
}

.is-product-details-page .details-share-links .whatsapp {
    background: #25d366;
}

.is-product-details-page .details-share-links .email {
    background: #525252;
}

.details-size-guide-modal .modal-content {
    border: 0;
    border-radius: 4px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, .2);
}

.details-size-guide-modal .modal-header {
    padding: 14px 18px;
    border-bottom-color: #e8e8e8;
}

.details-size-guide-modal .modal-title {
    color: #222;
    font-size: 18px;
    font-weight: 700;
}

.details-size-guide-modal .modal-body {
    padding: 16px;
    text-align: center;
}

.details-size-guide-modal .modal-body img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 75vh;
    margin: 0 auto;
    object-fit: contain;
}





/* Related products reference carousel */
.is-product-details-page .related-product-section {
    margin: 0;
    padding: 28px 0 38px;
    background: #ffffff;
}

.is-product-details-page .related-product-section .container {
    position: relative;
}

.is-product-details-page .related-title {
    display: flex;
    min-height: 28px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 0 0 16px;
}

.is-product-details-page .related-title h2 {
    margin: 0;
    color: #151719;
    font-family: var(--en-font);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.25;
    text-transform: none;
}

.is-product-details-page .related-title > a,
.is-product-details-page .related-title > a:hover,
.is-product-details-page .related-title > a:focus {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 9px;
    color: #e5a400;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
}

.is-product-details-page .related-title > a i {
    color: inherit;
    font-size: 10px;
}

.is-product-details-page .related_slider {
    position: relative;
    width: 100%;
}

.is-product-details-page .related_slider .owl-stage {
    display: flex;
    left: 18px;
}

.is-product-details-page .related_slider .owl-item {
    display: flex;
    height: auto;
}

.is-product-details-page .related_slider .product_item,
.is-product-details-page .related_slider .product_item:hover {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: 1px solid #e5e6e7;
    border-radius: 7px;
    background: #ffffff;
    box-shadow: 0 3px 12px rgba(15, 23, 42, 0.065);
    transform: none;
}

.is-product-details-page .related_slider .product_item_inner {
    height: 100%;
    overflow: hidden;
    border: 0;
    background: #ffffff;
}

.is-product-details-page .related_slider .discount,
.is-product-details-page .related_slider .product-free-shipping-badge,
.is-product-details-page .related_slider .pro_rating,
.is-product-details-page .related_slider .add-cart-button {
    display: none !important;
}

.is-product-details-page .related_slider .product-wishlist-toggle {
    position: absolute;
    z-index: 5;
    top: 9px;
    right: 9px;
    display: grid !important;
    width: 27px;
    height: 27px;
    padding: 0;
    place-items: center;
    color: #494d50;
    background: rgba(255, 255, 255, 0.78);
    border: 0;
    border-radius: 50%;
    box-shadow: none !important;
}

.is-product-details-page .related_slider .product-wishlist-toggle i {
    color: inherit;
    font-size: 16px;
    line-height: 1;
}

.is-product-details-page .related_slider .product-wishlist-toggle.active,
.is-product-details-page .related_slider .product-wishlist-toggle:hover {
    color: #e5a400;
}

.is-product-details-page .related_slider .pro_img {
    width: 100%;
    height: auto;
    max-height: none;
    aspect-ratio: 1.88 / 1;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #f1f1ef;
    border-bottom: 1px solid #eeeeec;
}

.is-product-details-page .related_slider .pro_img > a {
    display: block;
    width: 100%;
    height: 100%;
}

.is-product-details-page .related_slider .pro_img img {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    object-fit: cover;
    object-position: center;
    transition: transform 0.25s ease;
}

.is-product-details-page .related_slider .product_item:hover .pro_img img {
    transform: scale(1.025);
}

.is-product-details-page .related_slider .pro_des {
    display: flex;
    flex: 1;
    padding: 9px 14px 11px;
    flex-direction: column;
    text-align: left;
}

.is-product-details-page .related_slider .pro_name {
    height: 16px;
    min-height: 21px;
    margin: 0 0 2px;
    line-height: 1.2;
}

.is-product-details-page .related_slider .pro_name a {
    display: block;
    overflow: hidden;
    color: #202326;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.is-product-details-page .related_slider .pro_purchase_row {
    display: block;
    margin: 0 0 4px;
}

.is-product-details-page .related_slider .pro_price {
    margin: 0;
}

.is-product-details-page .related_slider .pro_price p {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    gap: 7px;
    margin: 0;
    color: #101214;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.1;
    text-align: left;
    white-space: nowrap;
}

.is-product-details-page .related_slider .pro_price del {
    color: #9a9da0;
    font-size: 16px;
    font-weight: 500;
    text-decoration-color: #9a9da0;
}


.is-product-details-page .related_slider .cart_btn button, .is-product-details-page .related_slider .variable-modal {
    display: flex;
    width: 116px;
    max-width: 100%;
    height: 24px !important;
    min-height: 30px !important;
    max-height: 32px !important;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin: 0;
    padding: 0 8px;
    color: #ffffff;
    background: #050606 !important;
    border: 0 !important;
    border-radius: 5px !important;
    font-size: 0;
    font-weight: 600;
    line-height: 24px !important;
}

.is-product-details-page .related_slider .cart_btn button::before,
.is-product-details-page .related_slider .variable-modal::before {
    color: #e5a400;
    content: "\f07a";
    font-family: "Font Awesome 6 Free";
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
}

.is-product-details-page .related_slider .cart_btn button::after,
.is-product-details-page .related_slider .variable-modal::after {
    color: #ffffff;
    content: "Add to Cart";
    font-family: var(--en-font);
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
}

.is-product-details-page .related_slider .cart_btn button:hover,
.is-product-details-page .related_slider .variable-modal:hover {
    background: #17191a !important;
}

.is-product-details-page .related_slider .wsit_stock_out {
    margin-top: auto;
}

.is-product-details-page .related_slider .stock_out {
    width: 100%;
    min-height: 29px;
    border-radius: 5px;
    background: #888d91;
    color: #ffffff;
    font-size: 11px;
}

.is-product-details-page .related-product-section .owl-nav {
    display: block;
}

.is-product-details-page .related-product-section button.owl-prev,
.is-product-details-page .related-product-section button.owl-next {
    position: absolute;
    z-index: 10;
    top: 50%;
    display: grid;
    width: 28px;
    height: 28px;
    padding: 0;
    place-items: center;
    color: #ffffff;
    background: #050606 !important;
    border: 0;
    border-radius: 50%;
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.18) !important;
    transform: translateY(-50%);
}

.is-product-details-page .related-product-section button.owl-prev {
    left: -16px;
}

.is-product-details-page .related-product-section button.owl-next {
    right: -38px;
}

.is-product-details-page .related-product-section button.owl-prev i,
.is-product-details-page .related-product-section button.owl-next i,
.is-product-details-page .related-product-section button.owl-prev:hover i,
.is-product-details-page .related-product-section button.owl-next:hover i {
    width: auto;
    height: auto;
    color: #ffffff;
    background: transparent;
    border-radius: 0;
    font-size: 11px;
    line-height: 1;
    transform: none;
}

.is-product-details-page .related-product-section button.owl-prev:hover,
.is-product-details-page .related-product-section button.owl-next:hover {
    background: #17191a !important;
}





/* Reference product panel refinement */

/*==== REFERENCE HOME CATEGORY CARDS START ==== */
body.is-home-page .home-category.category-showcase .category-slider {
    margin-top: 0;
}

body.is-home-page .home-category.category-showcase .cat-item {
    display: flex;
    height: 101px;
    min-height: 101px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 8px 5px 7px;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

body.is-home-page .home-category.category-showcase .cat-item:hover {
    border-color: #d7d7d7;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

body.is-home-page .home-category.category-showcase .cat-img {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    margin: 0 auto 3px;
}

body.is-home-page .home-category.category-showcase .cat-img img {
    width: 100%;
    height: 100%;
    padding: 0;
    object-fit: contain;
}

body.is-home-page .home-category.category-showcase .cat-name {
    display: flex;
    min-height: 18px;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #111;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.05;
    text-align: center;
    text-transform: uppercase;
}
/*==== REFERENCE HOME CATEGORY CARDS END ==== */

/*==== CUSTOMER ORDER PAGE DESKTOP TYPOGRAPHY START ==== */
@media only screen and (min-width: 992px) {
    body.is-order-success-page .success-kicker {
        font-size: 17px !important;
    }

    body.is-order-success-page .success-title {
        font-size: 29px !important;
    }

    body.is-order-success-page .success-message {
        font-size: 14px !important;
    }

    body.is-order-success-page .order-fact span {
        font-size: 11px !important;
    }

    body.is-order-success-page .order-fact strong {
        font-size: 13px !important;
    }

    body.is-order-success-page .order-fact.is-total strong {
        font-size: 15px !important;
    }

    body.is-order-success-page .order-notice-copy strong {
        font-size: 14px !important;
    }

    body.is-order-success-page .order-notice-copy span {
        font-size: 10px !important;
    }

    body.is-order-success-page .order-section-heading h2 {
        font-size: 18px !important;
    }

    body.is-order-success-page .invoice-link {
        font-size: 10px !important;
    }

    body.is-order-success-page .order-product-info h3,
    body.is-order-success-page .order-product-price {
        font-size: 13px !important;
    }

    body.is-order-success-page .order-product-info p,
    body.is-order-success-page .order-product-qty {
        font-size: 10px !important;
    }

    body.is-order-success-page .order-empty {
        font-size: 12px !important;
    }

    body.is-order-success-page .order-total-row {
        font-size: 11px !important;
    }

    body.is-order-success-page .order-total-row strong {
        font-size: 14px !important;
    }

    body.is-order-success-page .order-total-row.is-grand-total {
        font-size: 13px !important;
    }

    body.is-order-success-page .order-total-row.is-grand-total strong {
        font-size: 20px !important;
    }

    body.is-order-success-page .order-trust-copy strong {
        font-size: 10px !important;
    }

    body.is-order-success-page .order-trust-copy span {
        font-size: 8px !important;
    }

    body.is-order-success-page .order-action {
        font-size: 13px !important;
    }
}

@media only screen and (min-width: 768px) {
    body.is-order-track-page .track-hero h1 {
        font-size: 32px !important;
    }

    body.is-order-track-page .track-hero p {
        font-size: 14px !important;
    }

    body.is-order-track-page .track-mode-tab {
        font-size: 14px !important;
    }

    body.is-order-track-page .track-input-field > span {
        font-size: 12px !important;
    }

    body.is-order-track-page .track-input-wrap input,
    body.is-order-track-page .track-input-wrap input:focus {
        font-size: 14px !important;
    }

    body.is-order-track-page .track-input-wrap input::placeholder {
        font-size: 11px !important;
    }

    body.is-order-track-page .track-submit {
        font-size: 14px !important;
    }

    body.is-order-track-page .track-error {
        font-size: 12px !important;
    }

    body.is-order-track-page .track-divider {
        font-size: 11px !important;
    }

    body.is-order-track-page .track-account-copy strong {
        font-size: 14px !important;
    }

    body.is-order-track-page .track-account-copy span {
        font-size: 11px !important;
    }

    body.is-order-track-page .track-how-card h2 {
        font-size: 14px !important;
    }

    body.is-order-track-page .track-step-copy strong {
        font-size: 13px !important;
    }

    body.is-order-track-page .track-step-copy span {
        font-size: 11px !important;
    }

    body.is-order-track-page .track-support-copy strong {
        font-size: 13px !important;
    }

    body.is-order-track-page .track-support-copy span {
        font-size: 10px !important;
    }

    body.is-order-track-page .track-support-link {
        font-size: 10px !important;
    }
}
/*==== CUSTOMER ORDER PAGE DESKTOP TYPOGRAPHY END ==== */
