html {
    font-size: 14px;
    overflow-x: hidden;
}

:root {
    --primary-color: #213551;
    --color-p: #213551;
    --color-s: #213551;
    --font-1: 'Inter', sans-serif;
    --font-2: 'Inter', sans-serif;
    --font-3: "Inter", sans-serif;
    --fs-sm: 13px;
    --fs-base: 14px;
    --fs-md: 1.1rem;
    --btn-bg: #344275;
    --btn-text: #ffffff;
    /* ----------- new ----------- */
    --color-navy: #203451;
    --color-navy-dark: #17243a;
    --color-taupe: #A89F91;
    --color-ivory: #E7DFD5;
    --color-ivory-light: #EFE8DF;
    --color-light-blue: #5B7993;
    --color-accent-grey: #30363F;
    --color-accent-terracotta: rgb(192 96 76 / var(--bg-op, 100%));
    --color-text-light: #e7dfd5;
    --caption-size: 15px;
    --space-unit: 8px;
    --radius: 8px;
    --shadow-card: 0 6px 20px rgba(32, 52, 81, 0.08);
}

body {
    color: var(--color-navy);
    background-color: var(--color-ivory);
    font-weight: 400;
    font-family: var(--font-1);
    font-size: 16px;
    line-height: 24px;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    /* height: 100%; */
    width: 100%;
    /* background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'><circle cx='20' cy='20' r='15' fill='none' stroke='rgba(168,159,145,0.03)' stroke-dasharray='2,4' stroke-width='1'/></svg>");
    background-repeat: repeat; */
    /* background-color: #E7DFD5;
      background-image: radial-gradient(circle, rgba(168,159,145,0.03) 1px, transparent 1px);
      background-size: 40px 40px; */
    /* background-image: url("data:image/svg+xml;utf8, <svg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'> <circle cx='30' cy='30' r='20' fill='none' stroke='red' stroke-width='1' stroke-dasharray='2,4'/> </svg>"); background-repeat: repeat; */
}

.dotted-bg {
    background-color: var(--color-ivory);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Ccircle cx='80' cy='80' r='52' fill='none' stroke='rgba(168,159,145,0.25)' stroke-width='3.2' stroke-linecap='round' stroke-dasharray='10 14'/%3E%3C/svg%3E");
    background-size: 160px 160px;
    background-repeat: repeat;
}

.before:before, .after:after, .bf:before, .af:after {
    content: '';
}

.userselect-none {
    user-select: none;
}

.flex-inline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

h1, h2, h3 {
    font-family: var(--font-1);
}

h1 {
    font-size: 48px;
    /* line-height: 56px; */
}

h2 {
    font-size: 28px;
    line-height: 36px;
}

h3 {
    font-size: 28px;
    line-height: 44px;
}

.text-sm {
    font-size: 16px;
    line-height: 16px;
}

.text-lg {
    font-size: 18px;
    line-height: 16px;
}

.text-xl {
    font-size: 22px;
    line-height: 20px;
}

.text-caption {
    font-size: 18px;
    line-height: 16px;
}

p, span, li, a {
    font-family: var(--font-1);
}

a {
    color: var(--color-light-blue);
    text-decoration: none;
}

a:hover, a:focus {
    color: var(--color-navy);
    text-decoration: underline;
}

.gap-10 {
    gap: var(--gap-y, 10px) var(--gap-x, 10px);
}

.gap-15 {
    gap: var(--gap, 15px);
}

.gap-x {
    column-gap: var(--gap-x, 10px);
}

.gap-y {
    column-gap: var(--gap-y, 10px);
}

/* btn */
.site-btn {
    display: inline-block;
    font-family: var(--font-1);
    padding: 12px 20px;
    border-radius: var(--radius);
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease-in-out;
    border: 2px solid transparent;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
}

.site-btn--primary {
    background-color: var(--color-navy);
    color: var(--color-text-light);
    border-color: var(--color-navy);
}

.site-btn--primary:hover {
    background-color: var(--color-navy-dark);
    color: var(--color-ivory);
}

.site-btn--primary:focus {
    outline: 2px solid var(--color-light-blue);
    outline-offset: 2px;
    color: var(--color-ivory);
}

.site-btn--secondary {
    background-color: var(--color-ivory-light);
    color: var(--color-navy);
    border-color: var(--color-ivory-light);
}

.site-btn--secondary:hover {
    background-color: var(--color-ivory-light);
}

/* hero */
.sec-hero {
    position: relative;
    overflow: hidden;
}

.sec-hero:after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Ccircle cx='80' cy='80' r='52' fill='none' stroke='rgba(168,159,145,0.25)' stroke-width='3.2' stroke-linecap='round' stroke-dasharray='10 14'/%3E%3C/svg%3E");
    background-size: 110px 90px;
    background-repeat: repeat;
    transform: rotate(45deg) scale(1.5);
    pointer-events: none;
    z-index: -1;
}

.home-slider__item {
    position: relative;
    max-height: 670px;
}

.home-slider__item img {
    aspect-ratio: 1/1.2;
    object-fit: cover;
}

.hero-content {
    padding: 29px 0;
    padding-left: 1vw;
    padding-right: 2vw;
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
}

.hero-content__row {
    max-width: 550px;
    margin-left: auto;
}

.hero-content h1 {
    color: #e7dfd5;
    margin-bottom: 18px;
    --size-title: clamp(17px, 4vw, 45px);
    font-size: var(--size-title);
    letter-spacing: 3.98px;
    line-height: 1.6;
}

.hero-content h1 .large {
    margin-bottom: 18px;
    display: block;
    font-size: calc(var(--size-title) * 2.2);
    line-height: calc(var(--size-title) * 2.3);
}

.hero-content h2 {
    font-size: clamp(15px, 4vw, 25px);
    line-height: normal;
    margin-bottom: 20px;
    color: #e7dfd5;
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 15px 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-content :is(h1, h2) {
    transform: translateX(-100px);
    opacity: 0;
    transition: all 1000ms ease 0.5s;
}

.hero-content :is(h2) {
    transform: translateX(-100px);
}

.active .hero-content :is(h1, h2) {
    transform: translateX(0px);
    opacity: 1
}

.hero-content .trust-row {
    transform: translateY(30px);
    opacity: 0;
    transition: all 1500ms ease 0.5s;
}

.active .hero-content .trust-row {
    transform: translateX(0px);
    opacity: 1
}

.trust-row {
    margin: 30px 0 10px;
    max-width: 606px;
    text-align: center;
}

.trust-item {
    flex: 1 1 auto;
    display: inline-flex;
    text-align: center;
    gap: 5px 9px;
    align-items: center;
}

.trust-row .label {
    font-weight: 500;
    color: var(--color-text-light);
    font-size: 14px;
}

.trust-row .bullet {
    color: var(--color-accent-terracotta);
    display: inline-block;
    width: 9px;
    height: 9px;
    background-color: var(--color-text-light);
    border-radius: 60px;
    margin-left: 10px;
}

.sec-strip {
    padding: 2rem 0;
    border-top: 0px dashed var(--color-navy);
    border-bottom: 0px dashed var(--color-navy);
    background-color: var(--color-navy);
}

.strip-img {
    border: 3px dashed var(--color-ivory-light);
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

.strip-img img {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.strip-img::before, .strip-img::after {
    content: none;
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background-image: radial-gradient(black 1px, transparent 1px);
    background-size: 8px 2px;
    /* Adjust spacing here */
    background-repeat: repeat-x;
    z-index: 6;
}

.strip-img::before {
    top: 0;
}

.custom-dotted-border::after {
    bottom: 0;
}

.sec-strip h2 {
    margin: 0;
}

.main-nav {
    align-items: center;
}

/* old css */
.main-nav .menu .megamenu img, .menu .megamenu img {
    object-fit: cover;
    height: 100%
}

.btn, footer h4 {
    letter-spacing: .25px
}

.header-contact a, .header-menu a {
    letter-spacing: .025em
}

.home-address-card h3, .home-address-card h4, .table.table-totals ul li {
    font-size: 14px
}

.btn, p {
    font-size: var(--fs-base)
}

.btn:not(.linkbtn), .custom-dark-btn, .main-nav .menu, .mobile-menu1>li>a, .sec-title h3, .widget-title {
    text-transform: Uppercase
}

.footer .widget-title, .main-nav .menu {
    text-transform: unset
}

.main-form textarea, img {
    max-width: 100%
}

.btn, b, strong {
    font-weight: 500;
    outline: 0
}

::-moz-selection {
    background-color: #301b24;
    color: #fff
}

::selection {
    background-color: #301b24;
    color: #fff
}

.f1, .f3, .f4, .font-3 {
    font-family: var(--font-1) !important
}

.f2 {
    font-family: var(--font-2) !important
}

.btn, .cart-dropdown .product, .custom-btn, .custom-dark-btn, .dropdown-cart-header, .dropdown-cart-total, .form-control, .header-contact h6, .main-nav .menu>li>a, .menu li>ul li a, a[data-toggle=modal], footer .footer-links a, span.help-block {
    font-family: var(--font-1)
}

p {
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: #112f70;
}

ul {
    margin: 0 0 2.25rem;
    padding: 0;
    list-style: none
}

i {
    font-style: italic
}

hr {
    margin-bottom: 14px;
    margin-top: 14px;
    border-top: 1px solid #e1e1e1;
    border-bottom: none;
    border-left: none;
    border-right: none
}

img {
    display: block;
    height: auto;
}

a:focus, button:focus {
    outline: 0
}

button::-moz-focus-inner {
    padding: 0;
    border: 0
}

.bg-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover
}

.btn {
    transition: .3s;
    padding: 16px 20px;
    border-radius: 10px;
    line-height: 1.429
}

.btn:focus {
    color: #fff
}

.custom-btn, .custom-dark-btn {
    font-weight: 600;
    font-size: 15px;
    text-align: center
}

.btn:focus {
    box-shadow: none
}

.custom-btn {
    --btn-color: var();
    --btn-color: var(--color-navy);
    background-color: var(--btn-color);
    border: var(--btn-color);
    color: #ffffff;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    border-radius: 5px;
}

.custom-btn.btn-sm {
    padding: .5rem 2rem !important;
    font-size: 1rem !important;
    line-height: 25px !important
}

.custom-btn:not(:disabled):hover {
    cursor: pointer;
    background-color: var(--primary-color);
    color: #fff !important
}

.custom-dark-btn {
    line-height: 1.5em;
    background: #212b36;
    border: 1.5px solid #212b36;
    color: #fff;
    padding: 17px 30px;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    border-radius: 5px;
}

.custom-dark-btn:not(:disabled):hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color)
}

.btn-sm {
    padding: .5rem 2rem;
    font-size: 1rem;
    line-height: 25px
}

.btn-icon-right i {
    padding-left: .7rem
}

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active {
    border-color: #070405;
    background-color: #0f090c;
    color: #fff
}

.btn-outline:not(:disabled):not(.disabled).active, .btn-outline:not(:disabled):not(.disabled):active {
    border-color: #999;
    background-color: transparent;
    color: #999
}

.btn-outline-primary:not(:disabled):not(.disabled).active, .btn-outline-primary:not(:disabled):not(.disabled):active {
    border-color: #301b24;
    background-color: #301b24;
    color: #fff
}

.btn-outline-secondary:not(:disabled):not(.disabled).active, .btn-outline-secondary:not(:disabled):not(.disabled):active {
    border-color: #e36159;
    background-color: #e36159;
    color: #fff
}

.btn-dark {
    border-color: #222529;
    background-color: #222529;
    color: #fff;
    box-shadow: none
}

.btn-dark:focus, .btn-dark:hover {
    border-color: #34393f;
    background-color: #34393f;
    color: #fff;
    box-shadow: none
}

.btn-dark:disabled {
    border-color: #222529;
    background-color: #222529;
    color: #fff
}

.btn-dark:not(:disabled):not(.disabled).active, .btn-dark:not(:disabled):not(.disabled):active {
    border-color: #050606;
    background-color: #0b0c0d;
    color: #fff
}

form {
    margin-bottom: 35px
}

.form-control {
    padding-left: 1.2rem;
    margin-bottom: 0;
    transition: .3s;
    border: 1px solid #dfdfdf;
    border-radius: 0;
    background-color: #fff;
    color: #2a2a2a;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    padding: .675rem .75rem;
}

.form-control:not(.inp-group) {
    height: 46px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 1rem
}

.form-control:not(.inp-group).error {
    margin-bottom: 0rem
}

.form-control:focus {
    border-color: #dfdfdf;
    background-color: #fff;
    color: #303030;
    box-shadow: none
}

span.form-error {
    color: red !important;
}

span.help-block {
    font-size: 13px;
    color: #7c7c7c;
    line-height: normal;
}

.address-form input {
    margin-bottom: 0px !important;
}

.product-card__image {
    position: relative;
    -webkit-transition: opacity .5s, -webkit-transform 2s cubic-bezier(0, 0, .44, 1.18);
    transition: opacity .5s, transform 2s cubic-bezier(0, 0, .44, 1.18), -webkit-transform 2s cubic-bezier(0, 0, .44, 1.18);
    padding: 5px
}

.product-card__image a {
    border-radius: 18px;
    overflow: hidden
}

.menu li>a, .menu li>ul li a {
    padding: .8rem 1.8rem;
    transition: .2s ease-out
}

.sec-home-category .cat-slider-item a:hover img {
    transform: scale(1.09);
    -webkit-transform: scale(1.09)
}

.product-card:hover {
    z-index: 1;
    box-shadow: 0 12px 20px 0 rgba(0, 0, 0, .08);
    transition: box-shadow .3s ease-in-out
}

.product-price {
    color: #222529;
    font-size: 1rem;
    line-height: 1
}

.product-price .btn-sm {
    padding: 1px 16px;
    border-radius: 5px
}

@media (max-width: 479px) {
    .product-price {
        font-size: 1.3rem
    }
}

.custom-scrollbar, .mobile-cart>div {
    -webkit-overflow-scrolling: touch
}

.custom-scrollbar::-webkit-scrollbar, .mobile-cart>div::-webkit-scrollbar {
    height: 10px;
    width: 6px
}

.custom-scrollbar::-webkit-scrollbar-thumb, .mobile-cart>div::-webkit-scrollbar-thumb {
    background: #e5e5e5;
    border-radius: 10px;
    position: absolute
}

.custom-scrollbar::-webkit-scrollbar-track, .mobile-cart>div::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 10px;
    margin: 8px;
    width: 100%
}

/*
h2, h3, h4, h5, h6 {
    margin-bottom: 1.8rem;
    color: #222529;
    font-weight: 400;
    line-height: 1.1
}

h2 {
    line-height: 1.5
}

h3 {
    line-height: 1.28
}

h4 {
    line-height: 1.35
}

h5 {
    font-size: 1.4rem;
    line-height: 1.429
}

h6 {
    font-size: 1.3rem;
    line-height: 1.385;
    font-weight: 600
}
*/
a {
    transition: .3s;
    color: #301b24;
    text-decoration: none
}

a:focus, a:hover {
    text-decoration: none
}

html {
}

.main-body-wrapper {
    min-height: 100px;
}

.page-wrapper {
    position: relative;
    transition: .25s
}

.main {
    flex: 1 1 auto
}

.row {
    margin-left: -10px;
    margin-right: -10px
}

[class*=col-] {
    padding-left: 10px;
    padding-right: 10px
}

@media (min-width: 1220px) {
    .container {
        max-width: 1200px
    }
}

@media (min-width: 1300px) {
    .container {
        max-width: 1280px
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1300px;
    }

    .cols-5 .col-xxl-20 {
        flex: 0 0 auto;
        width: 20%
    }

    .full .col-xxl-20 {
        flex: 0 0 auto;
        width: 50%
    }
}

@media (min-width: 1500px) {
    .container {
        max-width: 1300px;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1440px;
    }
}

.owl-carousel:not(.owl-loaded) {
    flex-wrap: nowrap;
    overflow: hidden
}

.sticky-header {
    transition: left .25s
}

header {
    position: sticky;
    z-index: 1000;
    top: 0;
    background-color: #fff;
}

.header-center, .header-left, .header-right {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.logo {
    image-rendering: optimizeSpeed;
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: bicubic;
    display: block
}

.header-right i {
    margin-right: 7px;
    font-size: 1.2rem;
    color: #2a2a2a;
}

.header-contact h6 {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.3;
    color: #777
}

.footer-question h6 {
    font-weight: 500;
    font-family: var(--font-1);
}

.header-contact a {
    white-space: nowrap
}

.mobile-menu-toggler {
    border: 0;
    background: 0 0;
    color: #222529;
    padding: 1px 0 0;
    margin-right: 0;
    line-height: 0;
    cursor: pointer
}

.mobile-menu-toggler svg {
    transform: scale(1.4)
}

header .separator {
    height: 20px;
    border-left: 1px solid rgba(0, 0, 0, .04);
    margin: 0 10px
}

.dropdownmenu-wrapper {
    position: relative;
    background-color: #fff
}

.cart-opened {
    overflow-y: hidden
}

.cart-opened .cart-dropdown .mobile-cart {
    transform: none
}

.cart-dropdown .mobile-cart {
    display: block;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: auto;
    width: 300px;
    margin: 0;
    transform: translate(340px);
    transition: transform .2s ease-in-out;
    background-color: #fff;
    z-index: 1050;
    border: none;
    border-radius: 20px 0 0 20px;
    box-shadow: 0 5px 8px rgba(0, 0, 0, .15)
}

.header-dropdown ul, .header-menu:before {
    transform: translateY(-1rem);
    visibility: hidden
}

.cart-opened .cart-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .4);
    z-index: 1050;
    overflow: hidden
}

.cart-dropdown .mobile-cart .btn-close {
    position: absolute;
    left: -44px;
    top: 0;
    font-size: 3.3rem;
    color: #fff;
    font-weight: 300;
    background: 0 0;
    padding: 0;
    text-align: center;
    opacity: 1
}

.header-dropdowns {
    display: flex;
    display: -ms-flexbox;
    align-items: center;
    -ms-flex-align: center
}

.header-menu:before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    width: 0;
    height: 0;
    z-index: 1151;
    margin-left: -9px;
    margin-top: -1rem;
    border-width: 0 9px 10px;
    border-style: solid;
    border-color: transparent transparent #fff;
    opacity: 1
}

.cart-dropdown .dropdownmenu-wrapper {
    padding: 2px 10px;
    overflow-y: auto;
    height: 100%;
    background: 0 0
}

.cart-dropdown .dropdownmenu-wrapper:before {
    right: 28px;
    left: auto
}

.cart-dropdown .dropdownmenu-wrapper:after {
    right: 29px;
    left: auto
}

.cart-dropdown .product {
    display: -ms-flexbox;
    display: flex;
    margin: 0 !important;
    padding: 2rem 0;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #e6ebee;
    box-shadow: none !important
}

.cart-dropdown .product-image-container {
    position: relative;
    max-width: 80px;
    width: 100%;
    margin: 0 0 0 auto;
    border: 1px solid #f4f4f4
}

.cart-dropdown .product-image-container a:after, .dropdown-toggle:after, .hide, .mini-products-list li .qtyField a, .mobile-menu li ul, .select_size .form-check-input {
    display: none
}

.cart-dropdown .product-title {
    padding-right: 1.5rem;
    margin-bottom: 1.1rem;
    font-size: 1.4rem;
    line-height: 19px;
    color: #222529;
    font-weight: 500
}

.cart-dropdown .product-title a {
    color: #222529
}

.cart-dropdown .product-details {
    margin-bottom: 3px;
    font-size: 1.3rem
}

.dropdown-cart-header, .dropdown-cart-total {
    font-weight: 500;
    line-height: 38px
}

.cart-table-wrapper table tr figure, .dropdown-cart-header, .search-res-wrap a:last-child, .table-mini-cart, footer ul {
    margin-bottom: 0
}

.dropdown-cart-total {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
    margin-bottom: 1.4rem;
    font-size: 1.3rem
}

.dropdown-cart-total .cart-total-price {
    margin-left: auto;
    font-size: 1.5rem
}

.cart-null, .dropdown-cart-header {
    font-size: var(--fs-md)
}

.dropdown-cart-action .btn {
    padding: 1.3rem 2.5rem 1.4rem;
    border-radius: .2rem;
    color: #fff;
    height: auto;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: var(--font-1);
    letter-spacing: .025em;
    border-color: transparent
}

.dropdown-cart-action .btn:last-child:hover, .footer-question h6, .toast-message a, .toast-message label, footer .call-link h3 {
    color: #fff
}

@media (max-width: 480px) {
    .cart-dropdown .dropdown-menu {
        width: 300px
    }
}

.menu, .menu li, .menu ul, .mobile-menu {
    margin: 0;
    padding: 0;
    list-style: none
}

.menu {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5
}

.menu:after {
    display: block;
    clear: both;
    content: ""
}

.menu li>a {
    display: block;
    color: #777
}

.menu li>ul li a {
    display: block;
    color: #585858;
    font-weight: 600;
    font-size: 13px
}

.header-dropdown ul a:hover, .menu li.active>a, .menu li:hover>a {
    background: #f3f3f3;
    color: var(--color-accent-terracotta);
}

.menu>li {
    float: left;
    position: relative;
    margin-right: 2.8rem
}

.menu .megamenu, .menu ul {
    display: none;
    position: absolute;
    background-color: #fff
}

.menu>li>a {
    padding: 1rem 0;
    font-size: 13px;
    font-weight: 400;
    color: #555
}

.menu>li.active>a, .menu>li:hover>a {
    color: #301b24;
    background: 0 0
}

.menu .megamenu {
    z-index: 999;
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, .15);
    border: 1px solid #eee;
    border-top: 3px solid #301b24;
    left: 15px;
    padding: 10px 20px;
    width: 580px
}

.menu .megamenu.megamenu-3cols {
    width: 600px
}

.menu .megamenu img {
    width: 300px
}

.menu .megamenu .submenu {
    margin: 0;
    padding-top: 0;
    border-top: none;
    display: block;
    position: static;
    box-shadow: none;
    min-width: 0
}

.menu .megamenu .submenu a {
    padding: 7px 8px 8px 0
}

.menu .megamenu .submenu li:hover a {
    text-decoration: underline;
    background: 0 0
}

.menu ul {
    min-width: 200px;
    padding: 5px 0;
    border-top: 3px solid #301b24;
    top: 100%;
    left: 0;
    z-index: 101;
    box-shadow: 0 29px 29px rgba(0, 0, 0, .1);
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, .15)
}

.menu ul.custom-scrollbar {
    max-height: 80vh;
    overflow-y: auto
}

.product-card a, .sec-home-category .cat-slider-item a {
    overflow: hidden;
    display: block
}

.menu ul ul {
    top: -5px;
    left: 100%
}

.cart-table-wrapper, .cat-slider-item a, .main-nav-sub .main-inner-nav li, .menu ul li {
    position: relative
}

.main-nav-sub:hover .main-inner-nav, .menu ul li:hover ul, ul.menu .main-inner-nav:hover>ul, ul.menu .nav-sub:hover>ul {
    display: block
}

.main-nav .menu {
    font-size: 12px
}

.main-nav .menu>li>a {
    font-size: 15.4px;
    padding: 5px 6px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: .12px;
}

.main-nav .menu>li>a:hover {
    color: var(--color-accent-terracotta)
}

.main-nav .menu>li>a span.icon {
    --size: 32px;
    display: inline-block;
    aspect-ratio: 1;
    width: var(--size);
    height: var(--size);
    text-align: center;
    vertical-align: middle;
}

.main-nav .menu>li>a span.icon svg {
    width: var(--size);
    height: var(--size);
}

.header-contact a:hover, .header-menu a:hover, .sidebar_categories .sub-level a.active, footer .call-link:hover h3, footer a:hover, footer ul.social-links li a:hover {
    color: var(--primary-color)
}

.form-option, .main-nav .menu>li:first-child>a {
    padding-left: 0
}

.main-nav .menu>li:not(.float-right):last-child {
    margin-right: 0
}

.main-nav .menu>li>ul {
    left: -15px
}

.main-nav .menu .megamenu {
    top: 100%;
    left: -15px;
    border-top: none
}

.mobile-menu-container {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 260px;
    background-color: #1d1e20;
    font-size: 1.2rem;
    line-height: 1.5;
    z-index: 1051;
    transform: translateX(-100%);
    transition: transform .25s;
    overflow-y: auto
}

.mmenu-active .mobile-menu-container {
    transform: translateX(0)
}

.mobile-menu-wrapper {
    position: relative;
    padding: 4.7rem 0 3rem
}

.mobile-menu-close {
    position: absolute;
    top: 1.2rem;
    right: 2.1rem;
    padding: .4rem;
    color: #fff;
    line-height: 1;
    cursor: pointer;
    z-index: 9;
    font-size: 1.3rem
}

.mobile-menu-overlay {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: .25s;
    background: #000;
    opacity: 0;
    visibility: hidden;
    z-index: 1050
}

.mmenu-active .mobile-menu-overlay {
    opacity: .35;
    visibility: visible
}

.mobile-nav {
    margin: 0 0 2rem;
    padding: 0
}

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

.mobile-menu li:not(:last-child) {
    border-bottom: 1px solid #242527
}

.mobile-menu li a {
    display: flex;
    position: relative;
    margin-left: 1.1rem;
    margin-right: 1.1rem;
    padding: .8rem 1.1rem;
    color: #ffffffe3;
    font-size: 1.13rem;
    align-items: center;
    justify-content: space-between
}

.mobile-menu>li a>i {
    width: 30px;
    background: #ffffff14;
    height: 29px;
    display: inline-block;
    display: flex;
    align-items: center;
    justify-content: center
}

.mobile-menu>li a>i.opened::before {
    content: "\f068"
}

.mobile-menu li a:focus, .mobile-menu li a:hover {
    color: #fff;
    background: #282e36;
    text-decoration: none
}

.mobile-menu li ul {
    margin: 0;
    padding: 0
}

.mobile-menu li ul li a {
    padding-left: 2.5rem
}

.mobile-menu li ul ul li a {
    padding-left: 3.5rem
}

footer {
    --footer-bg: var();
    --footer-bg: #30363f;
    position: relative;
}

footer h4 {
    font-size: 26px;
    margin-bottom: 14px;
    font-weight: 600;
    color: var(--color-ivory);
    text-transform: uppercase;
}

footer p {
    color: inherit
}

.footer-links a {
    color: var(--color-ivory);
    font-weight: 400;
    display: inline-block;
    margin-bottom: 13px;
    font-size: clamp(17px, 1.4vw, 21px);
    letter-spacing: .2px;
    line-height: 1.3;
}

.footer-bottom {
    font-size: var(--caption-size);
    line-height: normal;
    letter-spacing: 0.25px;
    color: var(--color-ivory);
}

.site-footer {
    padding: 60px 0px 25px;
}

.widget-title {
    margin: .5rem 0 1.3rem;
    color: #313131;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2
}

.dropdown-toggle i {
    font-size: 1.9rem
}

.header .separator {
    margin-left: 10px;
    margin-right: 10px
}

.dropdown-toggle {
    margin-right: .6rem
}

.header-middle {
    --opc: 0.33;
    padding: 3px 0;
    /* position: sticky; */
    background-color: var(--color-ivory);
    min-height: 64px;
}

.header-middle .header-center {
    margin-top: -1px
}

.menu .megamenu .row>div {
    padding-top: 5px
}

.main-nav .menu>li {
    margin-right: 2.5rem
}

.icon-phone-2:before {
    font-weight: 900
}

.cart-dropdown:hover .dropdown-menu {
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, .15)
}

.cart-dropdown .dropdown-menu:before {
    top: -1.9rem
}

.footer-question {
    max-width: 50rem
}

.footer-question h6 {
    font-size: 1.1rem;
    margin-bottom: 10px
}

.footer-question h3 {
    color: var(--f-links);
    font-size: 1.5rem;
    line-height: 1.5
}

footer ul.social-links {
    gap: 10px 10px;
    flex-wrap: wrap
}

footer ul.social-links li a {
    display: block;
    width: 48px;
    height: 48px;
    background: 0 0;
    text-align: center;
    color: var(--color-ivory);
    font-size: 21px;
    background-color: var(--color-accent-terracotta);
    border-radius: 50px;
    line-height: 49px;
}

footer ul.social-links li a:hover {
    background-color: #fff;
    color: #212121
}

@media (max-width: 1199px) {
    .footer-question h3 {
        font-size: 1.9rem
    }
}

section {
}

.home-banner h2 {
    margin-right: -2px;
    font-size: 3.6em;
    letter-spacing: .002em
}

.home-banner h3 {
    margin-right: -7px;
    font-size: 6.45em;
    line-height: 1
}

#btn-cart-add i, .home-banner h5 {
    font-size: 1.8rem
}

.home-banner h5 {
    margin-right: 4.5rem
}

.home-banner strong {
    display: inline-block;
    margin-left: -4px
}

.home-banner {
    height: 64.5rem;
    display: flex;
    align-items: center
}

.home-slider .owl-nav {
    margin-top: 0 !important;
    display: none;
}

.banner-layer-middle {
    transform: translateY(73%)
}

.blurIn, .home-slider .owl-item.active .banner-layer h2, .home-slider .owl-item.active .banner-layer h3 {
    animation-name: blurIn
}

.home-slider .banner-layer h3 {
    animation-duration: 1.3s
}

.anim {
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-duration: 1s;
    animation-fill-mode: both
}

@keyframes blurIn {
    0% {
        opacity: 0;
        filter: blur(20px);
        transform: scale(1.3)
    }

    to {
        opacity: 1;
        filter: blur(0);
        transform: none
    }
}

.btn-xl {
    padding: 18px 50px;
    font-size: 14px;
    letter-spacing: .55px;
    line-height: 20px
}

.banner-title, .home-slider h5 {
    line-height: 1
}

.banner-title {
    font-family: var(--font-1)
}

.product-card__btn, .product-card__price {
    font-weight: 500;
    font-family: var(--font-3);
    text-align: center
}

.border-container {
    padding-bottom: 1.9rem;
    border-bottom: 1px solid #e7e7e7
}

@media (max-width: 575px) {
    .home-banner .banner-layer {
        padding-left: 23px;
        margin-top: 20%;
        font-size: 9px
    }
}

.fadeOut {
    animation-name: fadeOut
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

.product-card {
    flex: 1;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #e9e9e9;
    color: #777;
    margin-bottom: 2rem;
    transition: box-shadow .3s ease-in-out;
    border-radius: 20px;
    overflow: hidden
}

.product-card__btn--buy, .product-card__btn--cart {
    background: var(--btn-cart-bg-color);
    border: 1px solid var(--btn-cart-bg-color)
}

.product-card a {
    color: inherit;
    text-overflow: ellipsis;
    text-align: center
}

.product-card a:hover {
    color: #301b24;
    text-decoration: none
}

.product-card__title-name a {
    line-height: 1.28;
    margin: 10px 0 10px;
    color: #2b2b2b;
    font-weight: 400;
    font-family: var(--font-1);
    display: block;
    font-size: 15px;
}

.product-card__price {
    margin-bottom: 12px;
    color: #fae7ce;
    font-size: 14px;
    line-height: 1;
    letter-spacing: .45px;
    font-family: var(--font-1);
    font-weight: 500;
    margin-top: 10px;
}

.product-card__price del {
    color: #d9dddb;
}

.product-card__content {
    padding: 0 10px 10px
}

.product-card__btn {
    padding: 6px 0;
    font-size: 1.05rem;
    line-height: 34px;
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
    transition: .25s;
    width: 100%;
    border-radius: 6px;
    letter-spacing: .35px;
    font-family: var(--font-1);
}

.product-card__btn--cart {
    --btn-cart-bg-color: var();
    --btn-cart-bg-color: var(--btn-bg)
}

.product-card__btn--cart:not(:disabled):hover {
    --btn-cart-bg-color: #212121;
    cursor: pointer;
    color: #fff !important
}

.product-card__btn--buy {
    --btn-cart-bg-color: #FADC72;
}

.product-card__btn--buy:not(:disabled):hover {
    --btn-cart-bg-color: #DDBF50;
    cursor: pointer;
}

@media only screen and (max-width: 600px) {
    .product-card__btn-cart {
        padding: 0 3.4rem
    }
}

.sec-title, .signup_alert {
    text-align: center
}

.sec-title h2 {
    font-family: var(--font-1);
    color: #434343
}

.sec-title h3 {
    margin-bottom: 0;
    color: var(--primary-color);
    line-height: 16px;
    font-size: var(--fs-md);
    letter-spacing: .25px;
    font-weight: 600
}

.section-title {
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
    font-family: var(--font-1);
    color: var(--primary-color);
    font-size: clamp(28px, 8.5vw, 30px);
}

.light {
    color: var(--color-text-light);
}

.case-up {
    text-transform: uppercase;
}

@media (min-width: 1200px) {
    .main-nav .menu>li>a {
        font-size: 17px;
    }
}

.header-center .logo-container {
    display: flex;
    -webkit-transition: 350ms;
    -moz-transition: 350ms;
    -ms-transition: 350ms;
    -o-transition: 350ms;
    transition: 350ms;
    max-width: 100px;
    height: auto
}

.sec-home-category {
    padding: 3rem 0
}

.sec-home-category .cat-slider-item a img {
    -webkit-transition: opacity .5s, -webkit-transform 2s cubic-bezier(0, 0, .44, 1.18);
    transition: opacity .5s, transform 2s cubic-bezier(0, 0, .44, 1.18), -webkit-transform 2s cubic-bezier(0, 0, .44, 1.18)
}

.sec-home-category .owl-theme .owl-nav {
    margin-top: 0
}

.sec-home-category .owl-theme .owl-nav button {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    background-color: #fff;
    font-size: 22px;
    border-radius: 50px;
    text-align: center;
    line-height: 40px
}

.account-dropdown.header-dropdown ul, .sec-home-category .owl-prev {
    left: 0
}

.sec-home-category .owl-next {
    right: 0
}

.sec-home-category .owl-theme .owl-dots {
    margin-top: 10px;
    display: none
}

.sec-home-coupon {
    padding: 3em 0 2em
}

.full select, .sec-home-coupon img {
    width: 100%
}

.cart-table-wrapper .loader_spin.hide, .sec-home-coupon .owl-nav {
    display: none !important
}

.signup_alert_section {
    padding: 4em 0;
    background: #f5f5f6;
    margin: 4em 0 1em
}

.signup_alert h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: #000
}

.signup_alert a {
    line-height: 1.5em;
    background-color: #fff;
    border: 1px solid #6e6e6e;
    color: #393939;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    padding: 1.2rem 2rem;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s
}

.signup_alert a:hover {
    background-color: #e6e6e6
}

.stickyNav {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    padding: 1em 0;
    background: #fff;
    box-shadow: 0 1px 0 0 rgb(0 0 0 / 6%);
    z-index: 1040
}

.bredcrumb-large, .bredcrumbWrap {
    background-color: var(--color-navy);
    display: flex;
    position: relative;
    overflow: hidden
}

.stickyNav .header-center .logo-container {
    top: -7px !important;
    position: static;
    width: 170px
}

.bredcrumb-large {
    --bredcrumb-space: 40px 0;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: var(--bredcrumb-space);
    text-align: center
}

.bredcrumbWrap {
    align-items: flex-start;
    background-repeat: no-repeat;
    background-size: cover;
    box-sizing: border-box;
    flex-direction: column;
    justify-content: center;
    min-height: 57px;
    padding-top: 0;
    text-align: left
}

.bredcrumbWrap :is(a, span) {
    color: var(--color-text-light);
    font-size: 14px;
}

.bredcrumb-content__title {
    margin: 0;
    font-weight: 400;
    font-family: var(--font-1)
}

.sidebar_categories .sub-level a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 15px;
    text-decoration: none;
    position: relative;
    -webkit-transition: .2s linear;
    -moz-transition: .2s linear;
    -ms-transition: .2s linear;
    -o-transition: .2s linear;
    transition: .2s linear
}

.sidebar_categories .sub-level ul {
    padding-left: 20px;
    display: none
}

.sidebar .h2, .sidebar h2 {
    margin-bottom: 4px;
    font-size: 15px;
    line-height: 22px
}

.price-filter .ui-slider {
    margin-bottom: 25px
}

.price-filter .inp-filter-amount {
    user-select: none;
    padding: 7px 5px;
    text-align: center;
    border: 1px solid #ddd
}

.main-form h4 {
    font-family: var(--font-1);
    color: #777
}

.input-frm {
    margin-bottom: 10px;
}

.main-form label {
    font-size: 15px;
    font-family: var(--font-1);
    color: #212121;
    margin-bottom: 7px;
}

.main-form .input-ctrl, .main-form select, .main-form textarea {
    background: #fff;
    padding: 10px 15px;
    width: 100%;
    border: 1px solid transparent;
    border-radius: 5px;
    min-height: 40px;
    font-family: var(--font-1);
    outline: 1px solid #2121213d;
    transition: all .6s ease;
}

.main-form .input-ctrl:hover {
    border-color: #212121;
    outline-color: #212121
}

.main-form .input-ctrl__group {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    height: 46px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 0rem;
}

.product-sku {
    font-family: var(--font-1);
    font-weight: 700
}

.main-form .input-ctrl::placeholder, .main-form select::placeholder, .main-form textarea::placeholder {
    color: #8d8d8d;
    font-size: 14px
}

.new-account .link {
    text-decoration: underline;
    font-weight: 500;
}

.product-single img {
    user-select: none
}

.product_single_title {
    font-size: 2em;
    font-weight: 600;
    text-transform: none;
    color: var(--color-navy);
}

.product-stock .instock {
    font-weight: 500;
    color: #108043;
    font-size: 14px
}

.product-stock .outstock {
    color: #f80900;
    font-weight: 500;
    font-size: 14px
}

.product-sku {
    font-size: 12px;
    margin-top: 0;
    color: #999
}

select.form-select {
    height: 50px;
    padding: 0 10px
}

.border-p-desc {
    border: .0625rem solid #e1e1df;
    width: 100%;
    padding: 18px 17px !important
}

.border-p-desc h3 {
    font-size: 1.105rem;
    font-weight: 500;
    line-height: 1.5rem;
    color: #000;
    text-transform: capitalize;
    letter-spacing: .03125rem
}

.icon_desc_title i {
    font-size: 21px;
    color: #9f9f9f
}

.p_desc table strong, .p_desc table td {
    font-weight: 400;
    font-family: var(--font-1);
    padding: 5px 0;
    color: #000
}

.p-desc .ck-ed p {
    line-height: 150%;
    margin-bottom: 18px
}

img.color_img {
    border: 2px solid #c7c7c775;
    padding: 2px;
    width: 62px
}

.mini-products-list li, .search-res-wrap a {
    border-bottom: 1px solid #eee;
    margin-bottom: 10px
}

img.color_img.active {
    border: 2px solid var(--primary-color)
}

.form-check-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
    background: none !important;
    box-shadow: none !important;
}

.mini-products-list {
    padding: 7px 5px 0;
    height: calc(100vh - 207px);
    overflow-x: hidden;
    overflow-y: auto;
    list-style: none;
    margin: 0
}

.mini-products-list+.mini-products-list {
    padding-top: 0
}

.mini-products-list li {
    padding-bottom: 10px;
    line-height: normal;
    display: block;
    display: flex;
    align-items: center
}

.mini-products-list li:last-of-type {
    border-bottom: 0;
    padding-bottom: 0
}

.mini-products-list li:after, .mini-products-list li:before {
    content: '';
    clear: both;
    display: block
}

.mini-products-list li .product-image {
    width: 25%;
    float: left
}

.mini-products-list li .pro-img {
    float: left;
    width: 30%
}

.mini-products-list li .pName {
    font-family: var(--font-1);
    letter-spacing: 0;
    font-weight: 500;
    color: #767676;
    font-size: 13px;
    white-space: normal;
    text-decoration: none;
    display: block;
    line-height: normal;
    margin-right: 18px;
    margin-bottom: 0
}

.mini-products-list li .pName:hover {
    color: #222
}

.mini-products-list li .product-details {
    float: left;
    width: 75%;
    padding-left: 15px;
    text-align: left
}

.mini-products-list li .remove {
    color: #5c5c5c;
    float: right;
    font-size: 14px;
    padding: 0 2px 0 7px;
    margin-top: 0;
    text-decoration: none
}

.mini-products-list li .remove:hover {
    color: #000
}

.mini-products-list li .edit-i.remove {
    font-size: 11px;
    padding-top: 1px
}

.mini-products-list li .priceRow {
    margin: 10px 0 0
}

.mini-products-list li .priceRow .prodMulti {
    display: inline-block;
    font-size: 10px
}

.mini-products-list li .priceRow .product-price {
    display: inline-block
}

.mini-products-list li .qtyField {
    display: inline-block;
    padding-left: 2px
}

.mini-products-list li .qtyField span {
    display: inline-block;
    padding: 0;
    border: 0
}

.cursor-p:not(:disabled) {
    cursor: pointer
}

span.cart-count-append {
    position: absolute;
    top: -7px;
    right: 0px;
    width: 1.6rem;
    border-radius: 50%;
    color: #fff;
    background-color: var(--color-accent-terracotta);
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.6rem;
    font-family: var(--font-1);
    text-align: center
}

.search-res-wrap a, .table.table-totals ul p, label {
    font-family: var(--font-3);
}

.search-res-wrap a {
    line-height: 20px;
    padding: 8px 11px;
    font-weight: 500;
    color: #727272;
    letter-spacing: .45px;
    font-size: .8rem;
    display: block
}

.search-res-wrap a:hover {
    background-color: #efefef;
    color: #1c1c1c
}

.cart-count-append.counter {
    display: block !important;
    transform-origin: bottom;
    animation: .2s counterfadein
}

@-webkit-keyframes counterfadein {
    from {
        transform: scale(0);
        opacity: 0
    }

    to {
        transform: scale(1.1);
        opacity: 1
    }
}

.header-dropdown ul {
    position: absolute;
    top: -300rem;
    z-index: 1150;
    min-width: 140px;
    margin: 0;
    padding: .5rem 0;
    background: #fff;
    box-shadow: 0 10px 30px 10px rgba(0, 0, 0, .05);
    transition: transform .2s ease-out;
    opacity: 0
}

.dashboard_nav_wrappper ul li a, .search_wrapper_overlay {
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s
}

.header-dropdown ul a {
    font-size: 1.1rem;
    display: block;
    padding: .2em 15px;
    color: #777;
    white-space: nowrap
}

.header-dropdown+.header-dropdown {
    margin-left: 1.4rem
}

.header-dropdown:hover .header-menu:before, .header-dropdown:hover ul {
    top: 100%;
    opacity: 1;
    visibility: visible;
    transform: none
}

.search_wrapper_overlay {
    background: #ffffffb8;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
    visibility: hidden;
    opacity: 0;
    transition: .3s
}

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

.search_wrapper {
    background: #fff;
    position: fixed;
    width: 100%;
    padding: 3em 0;
    z-index: 9999;
    visibility: hidden;
    top: -155px;
    transition: 350ms
}

.search_wrapper.show {
    visibility: visible;
    top: 0
}

.search_wrapper .serach_input_wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 10px;
    border: 1px solid #e3e3e3
}

.search_wrapper .serach_input_wrapper i.search {
    position: absolute;
    left: 14px;
    top: 14px;
    color: #a3a3a3;
    font-size: 17px;
    border-right: 1px solid #b5b5b5;
    padding-right: 11px
}

.search_wrapper input[type=text] {
    padding: 7px 0 7px 47px;
    flex: 1;
    border: none;
    line-height: 28px;
    width: 100%;
    letter-spacing: .65px;
    color: #121212
}

.search_wrapper input[type=text]:focus-visible {
    outline: -webkit-focus-ring-color auto 0
}

.search_wrapper .serach_input_wrapper button {
    background: 0 0;
    border: none;
    cursor: pointer;
    font-size: 22px
}

.search-res-wrap {
    clear: both;
    position: absolute;
    width: auto;
    z-index: 999999;
    left: 0;
    top: 48px;
    background-color: #fff;
    padding: 0
}

.section-user-dashboard h3, .section-user-dashboard h4, .section-user-dashboard h5 {
    font-weight: 500;
    font-family: var(--font-1);
    font-size: 18px;
}

.section-user-dashboard h5 {
}

.dashboard_nav_wrappper ul li a {
    font-size: 14px;
    background: transparent;
    color: #231f1f;
    font-family: var(--font-1);
    font-weight: 400;
    transition: .3s;
    padding: 10px 0;
}

.dashboard_nav_wrappper ul li {
    border-bottom: 1px solid #ddd
}

.dashboard_nav_wrappper ul li a.active, .dashboard_nav_wrappper ul li a:hover {
    font-weight: 700;
    color: hsl(215 90% 22% / 1);
}

.cart-summary {
    margin-bottom: 3.6rem;
    padding: 1rem 2rem 1.5rem;
    border: 1px solid #ededed;
    background: #edf2ff6b;
    max-width: 480px;
    margin: 0 auto;
    border-radius: 22px;
    background: #edfbff;
    background: linear-gradient(90deg, rgba(237, 251, 255, 1) 1%, rgb(232 245 252) 50%, rgba(230, 245, 241, 1) 98%);
}

.cart-summary td {
    font-family: var(--font-1);
    margin-left: 5px;
    font-size: 14px;
    font-weight: 400
}

.cart-summary h3 {
    margin-bottom: 1rem;
    font-size: 1.6rem;
    letter-spacing: -.01em;
    font-weight: 500;
    color: #000;
}

.cart-summary-section {
    position: relative;
    user-select: none;
    display: block
}

.cart-summary-section::before {
    font-family: "Font Awesome 5 Free";
    animation: .6s .5s infinite spinner;
    content: '';
    font-size: 3rem;
    color: #ffab01;
    left: 50%;
    opacity: inherit;
    position: absolute;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
    transform-origin: center;
    will-change: transform;
    z-index: 2;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #b10a26;
    border-top-color: transparent;
    border-bottom-color: transparent
}

@keyframes spinner {
    0% {
        transform: translate3d(-50%, -50%, 0) rotate(0)
    }

    100% {
        transform: translate3d(-50%, -50%, 0) rotate(360deg)
    }
}

.cart-summary-section::after {
    content: '';
    background: rgba(179, 179, 179, .1);
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffffbd;
    z-index: 0
}

.choose_adder_item h3 {
    font-weight: 500
}

.choose_adder_item h3, .choose_adder_item h4, .choose_adder_item p {
    font-size: 13px;
    margin-bottom: 0;
    font-family: var(--font-1)
}

.choose_adder_item p {
    margin-bottom: 0;
    line-height: 20px
}

.choose_adder_item label span {
    margin-left: 9px;
    display: inline-block;
    font-weight: 300
}

.checkout-section .alert {
    padding: 1.75rem 1.25rem
}

.cart-table-container td, .cart-table-container th {
    font-family: var(--font-1);
    color: #000;
    vertical-align: bottom;
    border-bottom: 1px solid #ededed !important;
    font-size: 14px;
    font-weight: 400
}

.cart-table-wrapper table tr {
    background: #fff;
    font-family: var(--font-1);
    padding: 10px 0
}

.cart-table-wrapper table tr td {
    padding: .15rem .35rem;
    vertical-align: middle
}

.cart-table-wrapper table tr .product-title a {
    font-family: inherit;
    margin-left: 5px;
    font-size: 14px;
    font-weight: 400
}

.cart-table-wrapper .loader_spin {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgb(243 243 243 / 49%);
    display: flex;
    align-items: center;
    justify-content: center
}

.cart-table-wrapper .loader_spin i {
    -webkit-animation: 2s linear infinite fa-spin;
    animation: 2s linear infinite fa-spin
}

td.product-col {
    display: flex;
    align-items: center;
    padding: 1rem 0 !important;
    border-top: none !important
}

select.qu_op.qu_op_ch {
    width: 6rem;
    padding: 6px
}

.table-mini-cart tr td {
    padding: 1rem 0;
    border: 0;
    vertical-align: middle
}

.table-mini-cart tr {
    border-bottom: 1px solid #ccc
}

.table-mini-cart .product-col {
    align-items: flex-start
}

.table-mini-cart .product-col .product-image-container {
    -ms-flex: 0 0 75px;
    flex: 0 0 75px;
    max-width: 75px;
    margin-right: .8rem;
    vertical-align: top
}

.table-mini-cart .product-col>div {
    display: inline-block;
    padding-top: .7rem;
    vertical-align: top
}

.table-mini-cart .price-col {
    font-weight: 400;
    font-family: var(--font-1);
    text-align: right;
    line-height: 20px
}

.table-mini-cart .product-title {
    display: block;
    margin: 0 5px 0 0;
    font-size: 13px;
    font-weight: 600;
    color: #333
}

.pay_now_wrap {
    background: #ffffff;
    padding: 10px 19px 13px 15px;
    border-radius: 5px;
    display: inline-flex;
    width: 100%;
    margin-top: 7px
}

.table.table-totals ul li label {
    margin-bottom: 0;
    font-family: var(--font-1);
    font-weight: 400
}

.table.table-totals ul p {
    font-size: 13px;
    line-height: 20px
}

.table.table-totals hr {
    margin-bottom: 9px;
    margin-top: 9px
}

.order-summary-tbl-footer td {
    color: #000;
    font-weight: 600
}

.modal-title, .pay_desc p {
    font-weight: 400
}

.pay_now_wrap img {
    width: 80px;
    margin-left: 10px
}

.pay_desc p {
    margin-bottom: 0;
    font-family: muli, sans-serif;
    color: #777676;
    font-size: 13px;
    margin-top: 5px
}

@media only screen and (max-width: 991px) {
    .nav_header_icons a {
        display: flex;
        align-items: baseline
    }

    .nav_header_icons span.cart-count-append {
        left: 5px
    }

    .nav_header_icons i {
        font-size: 1.2rem;
        margin-right: 5px;
        padding-top: 6px
    }

    .nav_header_icons .mobile-menu-toggler {
        margin-left: 18px
    }

    .nav_header_icons .mobile-menu-toggler i {
        font-size: 2rem
    }
}

@media only screen and (max-width: 576px) {
    .header-middle {
        /* position: sticky; */ width: 100%;
        /* background: #fff; */
    }

    .cart-table-wrapper table tr figure {
        width: 100px
    }

    .overflow-scroll-480 {
        overflow-y: scroll
    }

    .home-banner {
        height: 25.5rem
    }

    .home-banner .banner-layer {
        top: 0;
        transform: translateY(20%);
        margin-top: 0
    }

    .home-banner h2 {
        font-size: 2.6em
    }

    .home-banner h3 {
        font-size: 3.45em
    }
}

.terms-section h4 {
    font-family: var(--font-1);
    margin-bottom: 5px;
    font-size: 1.35rem;
    font-weight: 600
}

.terms-section :is(p, ul li) {
    line-height: 170%;
    font-size: 1.15rem;
    color: #161616d9;
    font-weight: 400;
    letter-spacing: .25px;
    margin-bottom: 12px;
    font-family: var(--font-1);
}

.terms-section ul {
    margin-bottom: 1px;
}

.terms-section ul li {
    font-weight: 600;
}

.section-footer {
    background: var(--footer-bg)
}

.site-footer_bottom {
    background-color: #425b77;
    padding: 20px 0;
}

.cat-slider-item a {
    border-radius: 20px;
    overflow: hidden
}

.cat-slider-item a::before {
    position: absolute;
    width: 100%;
    height: 40%;
    bottom: 0;
    content: "";
    z-index: 1;
    background: -moz-linear-gradient(top, rgba(41, 38, 33, 0) 0, #292621 100%);
    background: -webkit-linear-gradient(top, rgba(41, 38, 33, 0) 0, #292621 100%);
    background: linear-gradient(to bottom, rgba(41, 38, 33, 0) 0, #292621 100%)
}

.cat_name_overlay {
    display: block;
    min-width: 1px;
    position: absolute;
    bottom: 20px;
    right: 50%;
    width: auto;
    transform: translateX(50%);
    text-align: center;
    z-index: 99
}

.cat-slider-item:hover .cat_name_overlay h6 {
    transform: translateY(0)
}

.cat-slider-item:hover .cat_name_overlay label {
    transform: translateY(0);
    opacity: 1
}

.cat_name_overlay h6 {
    font-family: var(--font-1) !important;
    font-size: var(--fs-md);
    letter-spacing: .25px
}

.form-option-label, .help-block, .toast-title {
    font-family: var(--font-1)
}

.cat_name_overlay h6, .cat_name_overlay label {
    color: #fff;
    transform: translateY(100%);
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    margin-bottom: 0
}

.cat_name_overlay label {
    font-size: var(--fs-base);
    letter-spacing: 2px;
    transform: translateY(70%);
    opacity: 0;
    font-weight: 600;
    white-space: nowrap;
}

.j-c-c {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.j-c-b {
    -webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between
}

.form-control::placeholder {
    color: #121212
}

.modal-body {
    padding: 1rem 2rem
}

.form-error, .form-error p, .frm-error, .frm-error p {
    color: red;
    font-size: 13px;
    font-weight: 400;
    font-family: var(--font-1);
    margin-top: 8px;
}

.input-frm .frm-error p {
    margin-bottom: 0px;
}

.help-block {
    font-size: 13px;
    font-weight: 400;
    color: #7c7c7c
}

.mmenu-active .sticky-header.fixed {
    left: 260px;
    transition: left .25s
}

.toast-top-center {
    top: 150px !important
}

.toast-title {
    font-weight: 400;
    font-size: 15px
}

.toast-message {
    -ms-word-wrap: break-word;
    word-wrap: break-word
}

.toast-message a:hover {
    color: #ccc;
    text-decoration: none
}

.toast-close-button {
    position: relative;
    right: -.3em;
    top: -.3em;
    float: right;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    -webkit-text-shadow: 0 1px 0 #fff;
    text-shadow: 0 1px 0 #fff;
    opacity: .8
}

.toast-close-button:focus, .toast-close-button:hover {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    opacity: .4
}

button.toast-close-button {
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
    -webkit-appearance: none
}

.toast-top-center {
    right: 0;
    width: 100%
}

.toast-bottom-center, .toast-bottom-full-width {
    bottom: 0;
    right: 0;
    width: 100%
}

.toast-top-full-width {
    top: 0;
    right: 0;
    width: 100%
}

.toast-top-left {
    top: 12px;
    left: 12px
}

.toast-top-right {
    top: 12px;
    right: 12px
}

.toast-bottom-right {
    right: 12px;
    bottom: 12px
}

.toast-bottom-left {
    bottom: 12px;
    left: 12px
}

#toast-container {
    position: fixed;
    z-index: 999999;
    pointer-events: none
}

#toast-container * {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

#toast-container>div {
    position: relative;
    pointer-events: auto;
    overflow: hidden;
    margin: 0 0 6px;
    padding: 15px 15px 15px 50px;
    width: 300px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background-position: 15px center;
    background-repeat: no-repeat;
    -moz-box-shadow: 0 0 5px #060606c7;
    -webkit-box-shadow: 0 0 5px #060606c7;
    box-shadow: 0 0 5px #060606c7;
    color: #fff;
    opacity: .9
}

#toast-container>:hover {
    -moz-box-shadow: 0 0 9px #00000000;
    -webkit-box-shadow: 0 0 9px #00000000;
    box-shadow: 0 0 9px #00000000;
    opacity: 1;
    cursor: pointer
}

#toast-container>.toast-info, #toast-container>.toast-warning {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M12 2c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10zm0-2c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm-1.31 7.526c-.099-.807.528-1.526 1.348-1.526.771 0 1.377.676 1.28 1.451l-.757 6.053c-.035.283-.276.496-.561.496s-.526-.213-.562-.496l-.748-5.978zm1.31 10.724c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25z'/%3E%3C/svg%3E")
}

#toast-container>.toast-error {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M12 2c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10zm0-2c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm6 16.538l-4.592-4.548 4.546-4.587-1.416-1.403-4.545 4.589-4.588-4.543-1.405 1.405 4.593 4.552-4.547 4.592 1.405 1.405 4.555-4.596 4.591 4.55 1.403-1.416z'/%3E%3C/svg%3E")
}

#toast-container>.toast-success {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M23.334 11.96c-.713-.726-.872-1.829-.393-2.727.342-.64.366-1.401.064-2.062-.301-.66-.893-1.142-1.601-1.302-.991-.225-1.722-1.067-1.803-2.081-.059-.723-.451-1.378-1.062-1.77-.609-.393-1.367-.478-2.05-.229-.956.347-2.026.032-2.642-.776-.44-.576-1.124-.915-1.85-.915-.725 0-1.409.339-1.849.915-.613.809-1.683 1.124-2.639.777-.682-.248-1.44-.163-2.05.229-.61.392-1.003 1.047-1.061 1.77-.082 1.014-.812 1.857-1.803 2.081-.708.16-1.3.642-1.601 1.302s-.277 1.422.065 2.061c.479.897.32 2.001-.392 2.727-.509.517-.747 1.242-.644 1.96s.536 1.347 1.17 1.7c.888.495 1.352 1.51 1.144 2.505-.147.71.044 1.448.519 1.996.476.549 1.18.844 1.902.798 1.016-.063 1.953.54 2.317 1.489.259.678.82 1.195 1.517 1.399.695.204 1.447.072 2.031-.357.819-.603 1.936-.603 2.754 0 .584.43 1.336.562 2.031.357.697-.204 1.258-.722 1.518-1.399.363-.949 1.301-1.553 2.316-1.489.724.046 1.427-.249 1.902-.798.475-.548.667-1.286.519-1.996-.207-.995.256-2.01 1.145-2.505.633-.354 1.065-.982 1.169-1.7s-.135-1.443-.643-1.96zm-12.584 5.43l-4.5-4.364 1.857-1.857 2.643 2.506 5.643-5.784 1.857 1.857-7.5 7.642z'/%3E%3C/svg%3E")
}

#toast-container.toast-bottom-center>div, #toast-container.toast-top-center>div {
    width: 300px;
    margin-left: auto;
    margin-right: auto
}

#toast-container.toast-bottom-full-width>div, #toast-container.toast-top-full-width>div {
    width: 96%;
    margin-left: auto;
    margin-right: auto
}

.toast {
    background-color: #030303
}

.toast-success {
    background-color: #68b50f
}

.toast-error {
    background-color: #bd362f
}

.toast-info {
    background-color: #2f96b4
}

.toast-warning {
    background-color: #ff9800
}

.toast-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    background-color: #000;
    opacity: .4
}

@media all and (max-width: 240px) {
    #toast-container>div {
        padding: 8px 8px 8px 50px;
        width: 11em
    }

    #toast-container .toast-close-button {
        right: -.2em;
        top: -.2em
    }
}

@media all and (min-width: 241px) and (max-width:480px) {
    #toast-container>div {
        padding: 8px 8px 8px 50px;
        width: 18em
    }

    #toast-container .toast-close-button {
        right: -.2em;
        top: -.2em
    }
}

@media all and (min-width: 481px) and (max-width:768px) {
    #toast-container>div {
        padding: 15px 15px 15px 50px;
        width: 25em
    }
}

/* Toast container */
.flashmsg-container {
    position: fixed;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 90%;
    width: 360px;
}

.flasmsg-container.center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    align-items: center;
}

.flashmsg-container.top-right {
    top: 20px;
    right: 20px;
    align-items: flex-end;
}

.flashmsg-container.top-left {
    top: 20px;
    left: 20px;
}

.flashmsg-container.bottom-right {
    bottom: 20px;
    right: 20px;
    align-items: flex-end;
}

.flashmsg-container.bottom-left {
    bottom: 20px;
    left: 20px;
}

/* Toast box */
.flashmsg-toast {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.flashmsg-toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* Types */
.flashmsg-success {
    background: #28a745;
}

.flashmsg-warning {
    background: #ffc107;
    color: #333;
}

.flashmsg-error, .flashmsg-danger {
    background: #dc3545;
}

/* Icon */
.flashmsg-icon {
    font-size: 18px;
    flex-shrink: 0;
    color: #fff;
    display: inline-block;
    width: 24px;
    height: 24px;
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m16 16l-4-4m0 0L8 8m4 4l4-4m-4 4l-4 4'/%3E%3C/svg%3E");
    background-color: currentColor;
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

.flashmsg-icon--success {
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 12l4.243 4.243l8.484-8.486'/%3E%3C/svg%3E");
}

.flashmsg-icon--warning {
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 11v5m0 5a9 9 0 1 1 0-18a9 9 0 0 1 0 18m.05-13v.1h-.1V8z'/%3E%3C/svg%3E");
}

.flashmsg-icon--error {
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m16 16l-4-4m0 0L8 8m4 4l4-4m-4 4l-4 4'/%3E%3C/svg%3E");
}

.flashmsg-text * {
    color: #fff;
    margin: 0px;
    line-height: 1.5;
    font-size: 15px;
}

/* Close button */
.flashmsg-close {
    background: transparent;
    border: none;
    color: inherit;
    font-size: 26px;
    cursor: pointer;
    margin-left: 10px;
    line-height: 1;
}

.flashmsg-close:hover {
    opacity: 0.7;
}

/* Progress bar */
.flashmsg-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.7);
    width: 100%;
    transform: scaleX(1);
    transform-origin: left;
    transition: transform linear;
    border-radius: 0 0 12px 12px;
}

/* Responsive */
@media(max-width: 480px) {
    .flashmsg-container {
        width: 95%;
    }

    .flashmsg-toast {
        font-size: 14px;
        padding: 10px 14px;
    }
}

.select_size {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 7px
}

.select_size .form-check-inline {
    height: 36px;
    margin-bottom: 5px;
    padding-top: 0;
    margin-right: 0;
    margin-top: 4px !important
}

.form-option .form-check-input {
    border: 0;
    background: 0 0
}

.form-option-label {
    position: relative;
    min-width: 42px;
    min-height: 16px;
    margin-bottom: 0;
    padding-top: 3px;
    padding-right: .375rem;
    padding-left: .375rem;
    transition: .3s;
    border: 1px solid #3e3e3e40;
    border-radius: 5px;
    color: #171717;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    user-select: none;
    font-weight: 500;
    line-height: 30px;
    background-color: #fff;
}

.form-option-label:hover {
    color: #373f50;
    background: #d7d7d7
}

.form-option-color {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.5rem;
    height: 1.5rem;
    margin-top: -.75rem;
    margin-left: -.75rem;
    background-position: top left;
    background-size: 1.5rem 1.5rem;
    background-repeat: no-repeat
}

.form-check-input:checked~.form-option-label {
    border-color: var(--primary-color);
    color: #ffffff;
    background: var(--primary-color)
}

@media (max-width: 991px) {
    .container {
        max-width: none
    }

    .main-nav {
        display: none
    }

    .header-center {
        width: 100%
    }

    .bredcrumb-large {
        --bredcrumb-space: 15px 0
    }

    .bredcrumb-content__title {
        font-size: 16px;
        letter-spacing: .35px
    }

    .mmenu-active .page-wrapper {
        left: 260px
    }

    .header-middle {
        padding-top: .8rem;
        padding-bottom: .7rem
    }
}

@media (max-width: 576px) {
    .stickyNav .header-center .logo-container {
        width: 100% !important
    }
}

@media only screen and (max-width: 767px) {
    .filterbar {
        padding: 20px;
        opacity: 0;
        visibility: hidden;
        width: 240px;
        height: 100%;
        overflow: auto;
        background-color: #fff;
        box-shadow: 0 0 5px rgba(0, 0, 0, .3);
        position: fixed;
        top: 0;
        left: -240px;
        z-index: 1000;
        -ms-transition: .5s;
        -webkit-transition: .5s;
        transition: .5s
    }

    .filterbar.active {
        left: 0;
        opacity: 1;
        visibility: visible
    }

    .filterbar.active .closeFilter {
        float: right;
        padding: 2px 7px;
        margin: -5px -8px 0 0;
        cursor: pointer
    }
}

.d-f-a-c-j-c {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.d-f-a-c-j-s {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

a:disabled, button:disabled {
    opacity: .6 !important;
    cursor: not-allowed !important
}

.form-option-label.disabled {
    color: #706f6f;
    cursor: not-allowed;
    background: #ececec
}

.form-option-label.disabled:before {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    height: 100%;
    background: #eee;
    z-index: -1;
    opacity: 0
}

.form-option-label.disabled::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to top left, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) calc(50% - .8px), rgb(255 0 0) 50%, rgba(0, 0, 0, 0) calc(50% + .8px), rgba(0, 0, 0, 0) 100%), linear-gradient(to top right, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) calc(50% - .8px), rgb(255 0 0) 50%, rgba(0, 0, 0, 0) calc(50% + .8px), rgba(0, 0, 0, 0) 100%)
}

.product-image img {
    width: 100%;
    transition: .3s;
    border-radius: 10px
}

.product-card:hover .product-card__image img {
    transform: scale(1.06)
}

.vrline {
    color: initial;
    margin: 0 10px
}

.header-new__search-icon, .header-new__search-icon i {
    color: var(--primary-color)
}

.header-new__search-wrap {
    margin-right: 10px;
    margin-left: 60px
}

.header-new__search-form {
    margin-bottom: 0;
    position: relative
}

.header-new__search-content {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 5px;
    height: 40px;
    max-width: 435px;
    border: 1px solid var(--primary-color)
}

.header-new__search-box {
    flex: 1
}

.header-new__search-icon {
    border-right: 1px solid #c1c1c1;
    margin-right: 5px;
    padding-left: 16px;
    font-size: 17px;
    padding-right: 7px
}

.header-new__search-text {
    border: transparent;
    padding: 6px 6px 3px;
    outline: 0;
    font-family: var(--font-3);
    font-size: var(--fs-sm);
    letter-spacing: .35px;
    line-height: normal;
    width: 251px
}

.p-overlay {
    position: absolute;
    bottom: 10px;
    background-color: #ffffff78;
    width: 94%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 7px;
    padding-top: 4px
}

.product-card__ul {
    gap: 10px 10px
}

.pro-cart-icon {
    width: 95%
}

.footer__pay-types {
    background: #fff;
    border-radius: 5px;
    padding: 3px 7px
}

.cat_title h3 {
    font-size: 1.1rem
}

.btn-filter {
    background-color: #eee
}

.cart-result .btn1 {
    background: #ececec;
    cursor: pointer
}

#address_rows label {
    font-size: 1.025rem;
    font-weight: 500;
    color: #151515;
    letter-spacing: .25px
}

.mobicon {
    height: 46px
}

.btn.linkbtn:active, .btn.linkbtn:focus-visible {
    outline: 0;
    border: none
}

.iconhead.mob {
    display: inline-block;
    line-height: 30px;
    aspect-ratio: 1
}

.iconhead.mob svg {
    width: 8vw;
    transition: width .2s;
    max-width: 30px;
    height: auto
}

.login_wrap {
    border-radius: 15px;
    padding: 18px;
    max-width: 570px;
    margin: 0 auto;
    background: #edfbff;
    background: linear-gradient(90deg, rgba(237, 251, 255, 1) 1%, rgb(232 245 252) 50%, rgba(230, 245, 241, 1) 98%);
}

.login_wrap .custom-btn {
    padding: 13px 72px;
}

.section-user-dashboard .btn-outline-secondary {
    background-color: #6c757d;
    color: #fff
}

.product-details-img img {
    border-radius: 0px;
    box-shadow: none !important;
}

.color-choose label, .quantity_variant_wrapper label, .variant_wrapper h5 {
    font-weight: 600;
    font-size: 1.2rem;
    color: #161616 !important
}

.btnprd-buy, .btnprd-cart {
    min-width: 120px;
    height: 45px;
    line-height: 1;
    font-family: var(--font-1);
    padding: 6px 12px;
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.2s ease-in-out;
    border: 2px solid transparent;
    font-weight: 600;
}

.btnprd-buy {
    color: var(--color-text-light);
    background-color: var(--color-navy)
}

.btnprd-cart {
    display: inline-flex;
    align-items: center;
    /* max-width: 270px; */
    /* padding: 10px 10px; */
    border-color: var(--color-navy);
    background: #fff;
    margin-left: 15px;
    color: var(--color-navy);
}

.btnprd-cart:hover, .btnprd-buy:hover {
    color: var(--color-text-light);
    background-color: var(--color-accent-terracotta);
}

.btnprd-cart:after {
    content: '';
    display: inline-block;
    width: 19px;
    height: 19px;
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 56 56'%3E%3Cpath fill='%23000' d='M.953 6.719c0 .96.797 1.781 1.735 1.781h7.921l3.75 25.734c.493 3.328 2.25 5.414 5.649 5.414H47.36c.913 0 1.71-.75 1.71-1.757c0-1.008-.797-1.758-1.71-1.758H20.406c-1.336 0-2.156-.938-2.367-2.367l-.375-2.461h29.742c3.422 0 5.18-2.11 5.672-5.461l1.875-12.399a7 7 0 0 0 .094-.89c0-1.125-.844-1.899-2.133-1.899h-38.25l-.469-2.976c-.234-1.805-.89-2.72-3.28-2.72H2.687c-.937 0-1.734.822-1.734 1.76M18.04 47.242c0 2.133 1.688 3.797 3.82 3.797a3.766 3.766 0 0 0 3.797-3.797a3.78 3.78 0 0 0-3.797-3.797c-2.132 0-3.82 1.688-3.82 3.797m21.914 0c0 2.133 1.711 3.797 3.82 3.797c2.133 0 3.82-1.664 3.82-3.797c0-2.11-1.687-3.797-3.82-3.797c-2.109 0-3.82 1.688-3.82 3.797'/%3E%3C/svg%3E");
    background-color: currentColor;
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    margin-left: 1px;
}

.inp-coupon {
    padding: 14px 20px
}

.btn-coupon {
    border-radius: 0;
    font-size: 14px;
    padding: 11px 13px
}

.xzoom-thumbs {
    padding-top: 5px;
    gap: 5px 5px;
}

#p-thumb a img {
    /* border: 2px solid #fff; */
}

#p-thumb a {
    display: block;
    /* flex: 0 0 20%; */
}

#p-thumb a.active img {
    width: 100%;
    /* border-color: var(--primary-color) */
}

.sec-action {
    position: relative;
}

.sec-action:before {
}

.sec-action .container {
    position: relative;
}

.text-label {
    font-size: 15px;
    letter-spacing: 0.25px;
    font-weight: 600;
    color: #000;
}

.dashboard_nav_wrappper {
    background-color: #f8fcfe;
    padding: 10px 18px;
    border-radius: 15px;
    background: #edfbff;
    background: linear-gradient(90deg, rgba(237, 251, 255, 1) 1%, rgb(232 245 252) 50%, rgba(230, 245, 241, 1) 98%);
}

.dash-icontitle, .btn-sicon {
    display: inline-block;
    vertical-align: bottom;
}

.dash-icontitle {
    font-size: 29px;
    vertical-align: baseline;
    opacity: 80%;
    color: var(--primary-color);
}

body:not(.inner-body-wrap) {
}

.overlay {
    position: absolute;
    pointer-events: none;
    opacity: 50%;
}

.overlay.right {
    left: 0;
    bottom: 0;
}

.overlay.left {
    left: 0;
    top: 0;
}

.overlay-ptrn img {
    max-width: 170px;
    transform: rotate(-40deg);
    opacity: 20%;
}

@media (min-width: 992px) {
    .container {
        padding-left: 10px;
        padding-right: 10px
    }

    .mobile-menu-toggler {
        display: none
    }

    .logo img {
        margin: 7px auto;
    }

    .inner-body-wrap .logo img {
        width: 85%
    }

    .header-center .logo-container {
        max-width: 127px;
    }

    .sec-home-category .owl-theme .owl-nav button {
        width: 50px;
        height: 50px;
        line-height: 50px
    }

    .sec-home-category .owl-prev {
        left: 13px
    }

    .sec-home-category .owl-next {
        right: 13px
    }
}

@media (max-width: 767px) {
    .select_size {
        gap: 0 7px
    }

    .nav_header_icons {
        justify-content: end;
    }

    .cat_name_overlay h6 {
        font-size: 14px;
    }

    .cat_name_overlay {
        bottom: 10px;
    }
}

.pro-cart-icon .product-card__btn--cart {
    color: var(--btn-text);
}

.swal-footer {
    text-align: center;
}

.address-info .text-line {
    line-height: 1.5;
    font-family: var(--font-1);
    font-size: 15px;
    font-weight: 500;
}

.address-info h3+h3 {
    font-size: 16px;
    font-family: var(--font-1);
    font-weight: 600;
    color: #1b4693 !important;
    margin-top: 12px;
}

.alert-box p {
    margin-bottom: 7px;
    color: inherit;
    font-size: 16px;
}

.address-choose, .add-phone {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.25px;
    line-height: 1.6;
}

.address-choose .title {
    font-size: 20px;
}

.choose_adder_item {
    font-family: var(--font-1)
}

.btn-place-order {
    padding: 16px 50px;
}

.checkout-title {
    color: #112f70;
}

.add-title, footer .footer-links a:hover {
    color: var(--color-accent-terracotta);
}

.copyright {
    font-size: 18px;
}

.footer-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 220px;
    z-index: 0;
    opacity: 12%;
    pointer-events: none;
}

.fc-section {
    /* background-color: #fff; */
}

.fc-section--home {
}

.fc-section--coll {
    background-color: var(--color-navy);
}

.fc-tile {
    display: block;
    position: relative;
    transition: transform 0.3s ease;
    max-width: clamp(340px, 16vw, 340px);
    margin: 0 auto;
}

.fc-img {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 3/4;
    background-color: #69737840;
}

.fc-tile:hover {
    transform: translateY(-4px);
}

.fc-image {
    width: 100%;
    height: auto;
    display: block;
}

.fc-caption {
    padding: 1.2rem 1rem;
    text-align: center;
    position: absolute;
    width: 100%;
    background-color: #56585994;
    bottom: 0;
    border-radius: 24px 24px 0px 0px;
    z-index: 0;
}

.fc-title {
    margin-bottom: 0.95rem;
    color: #ffffff;
    font-size: 25px;
}

.fc-btns {
    margin-top: 10px;
    text-align: center
}

.fc-btns a {
    background-color: #203550;
    color: var(--color-text-light);
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 15px;
}

.fc-tagline {
    color: var(--color-accent-grey);
    margin: 0;
    color: #dadadad6;
    max-width: 210px;
    margin: 0 auto;
    font-size: 14px;
}

/* Hover Overlay */
.fc-overlay {
    position: absolute;
    inset: 0px;
    /* Navy overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fc-overlay:before {
    content: '';
    --bg-op: 40%;
    position: absolute;
    inset: 0px;
    background: var(--color-accent-terracotta);
    opacity: 60%;
    z-index: 0;
}

.fc-tile:hover .fc-overlay {
    opacity: 1;
}

.fc-overlay .site-btn {
    z-index: 1
}

.comm-section {
    background-color: #f3ebe4;
    /* beige like your screenshot */
}

.comm-title {
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
    font-family: var(--font-1);
    color: var(--primary-color);
    font-size: clamp(25px, 2.6vw, 80px);
    margin-bottom: 15px;
}

.comm-box img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.comm-tagline {
    display: inline-block;
    border: 2px dashed #0a2447;
    padding: 8px 18px;
    border-radius: 32px;
    font-size: clamp(20px, 1.4vw, 35px);
    background: #fff;
    color: #0a2447;
    margin-bottom: 0px;
}

/* Community / IG Grid */
.site-community {
    background-color: #E7DFD5;
}

.site-community__tile {
    border: 1px dotted rgba(168, 159, 145, 0.4);
    /* Warm Taupe, 40% opacity */
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    /* makes images pop */
    box-shadow: var(--shadow-card);
    /* subtle card shadow */
}

.site-community__tile img {
    width: 100%;
    height: auto;
    display: block;
}

.site-community__caption {
    /* font-size: 16px; */
    line-height: 24px;
    color: #30363F;
    /* Grey */
}

.site-community__caption strong {
    color: var(--color-accent-terracotta);
}

/* subscribe */
.site-subscribe {
    background-color: #203451;
    /* Navy */
    /* Warm Taupe stitch */
    color: #E7DFD5;
    /* Ivory */
    padding: 3rem 0rem;
}

.site-subscribecontent {
    border: 3px dashed var(--color-ivory-light);
    border-radius: 15px;
    padding: 30px 12px;
}

.site-subscribe__title {
    font-weight: 500;
    font-size: clamp(25px, 3.2vw, 38px);
    /* H3 scale */
    line-height: normal;
    color: #E7DFD5;
    letter-spacing: 2.35px;
}

.site-subscribe__box {
    max-width: 600px;
    margin: 0 auto;
}

.site-subscribe__form {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #fff;
    padding: 4px 5px;
    border-radius: 9px;
}

.site-subscribe__input {
    flex: 1;
    font-size: 1rem;
    border: 2px solid #fff;
    border-right: none;
    border-radius: 6px 0 0 6px;
    padding: 12px;
    background: #e9e1d9;
}

.site-subscribe__input:focus {
    border-color: #5B7993;
    /* Light Blue */
    box-shadow: 0 0 0 2px rgba(91, 121, 147, 0.4);
}

.site-sub {
    border-radius: 0px;
    padding: 9px 15px;
    text-transform: capitalize;
}

.site-btn--primary {
    white-space: nowrap;
    /* prevent wrapping */
}

.site-subscribe__alert :is(p,span) {
    color: #ff0000;
    font-size: 16px;
    display: block;
    margin-top: 7px;
}

.site-subscribe__note {
    color: var(--color-text-light);
    /* Ivory at ~85% */
    margin-bottom: 20px;
    font-size: 17px;
}

.preorder-section {
    background-color: #4d7499;
}

.preorder-step img {
    max-width: clamp(100px, 16vw, 170px);
    margin: 0 auto;
}

.preorder-step p {
    font-size: clamp(16px, 1vw, 18px);
    font-weight: 500;
    color: var(--color-text-light);
}

.preorder-arrow img {
    max-width: 40px;
    margin-top: -40px;
}

.custom-select {
    border: 2px solid #1e3352;
    /* dark blue */
    border-radius: 8px;
    padding: 10px 40px 10px 15px;
    font-size: 18px;
    font-weight: 400;
    color: #1e3352;
    background: #fff url("data:image/svg+xml;utf8,<svg fill='%231e3352' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>") no-repeat right 12px center;
    background-size: 30px;
    appearance: none;
    /* hide default arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
}

.custom-select:focus {
    border-color: #0d1c38;
    box-shadow: none;
}

.form-input {
}

/*  */
.pcard-card {
    background-color: #48576c;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: #fff;
}

.pcard-card--dark {
    background-color: #30363f;
}

.pcard-card h5 a {
    color: var(--color-text-light);
    font-size: 19px;
    font-weight: 600;
}

.pcard-card p {
    color: #ddd;
    font-size: 15px;
}

.pcard-btn-light {
    padding: 0 12px;
    border-radius: 8px;
    border: none;
    font-weight: 500;
    background: #fff;
    color: #000;
    display: inline-flex;
    align-items: center;
    transition: .3s;
}

.pcard-btn-primary {
    background-color: #1a2e4f;
    border: 2px solid #fff;
    border-radius: 8px;
    font-weight: 500;
    color: #fff;
}

.pcard-btn-primary:after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M7 22q-.825 0-1.412-.587T5 20t.588-1.412T7 18t1.413.588T9 20t-.587 1.413T7 22m10 0q-.825 0-1.412-.587T15 20t.588-1.412T17 18t1.413.588T19 20t-.587 1.413T17 22M5.2 4h14.75q.575 0 .875.513t.025 1.037l-3.55 6.4q-.275.5-.737.775T15.55 13H8.1L7 15h11q.425 0 .713.288T19 16t-.288.713T18 17H7q-1.125 0-1.7-.987t-.05-1.963L6.6 11.6L3 4H2q-.425 0-.712-.288T1 3t.288-.712T2 2h1.625q.275 0 .525.15t.375.425z'/%3E%3C/svg%3E");
    background-color: currentColor;
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    vertical-align: bottom;
    margin-left: 7px;
}

.pcard-btn-outline {
    border-radius: 8px;
    border: 2px solid #ffffff;
    color: #fff;
    background-color: #1a2e4f;
}

.pcard-btn-outline:hover {
    background: #1a2e4f;
    color: #fff;
}

.pcard-btns :is(.pcard-btn-outline, .pcard-btn-primary) {
    padding: 7px 13px;
    font-weight: 400;
    font-size: 14px;
    min-width: 110px;
    text-align: center;
    transition: .3s;
}

.pcard-btns :is(.pcard-btn-light, .pcard-btn-outline, .pcard-btn-primary):hover {
    color: #fff;
    background: var(--color-accent-terracotta);
    border-color: var(--color-accent-terracotta);
}

.abs {
    position: absolute
}

/* product */
.prdbasic-info {
    padding: 20px 5px 0px 0px;
    color: var(--color-navy);
    font-weight: 400;
    font-size: 14px;
}

.pinfo-basic {
    background-color: #fff;
}

.prdbasic-info__rating {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 10px;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 1em;
}

.prdbasic-info__rating .icon a{
    color: #ffce00;
}

.prdbasic-info__rating .icon i:before {
    font-weight: 400;
    content: "\f005";
}

.prdbasic-info__rating .icon i.fill:before {
    font-weight: 900;
}

.prdbasic-info__rating .text:after {
    content: '|';
    margin-left: 8px;
}

.prdbasic-info__rating .text {
}

.prdbasic-info__rating .category a {
    color: var(--color-navy);
}

.prdbasic-info__pshort {
    font-size: 1.2em;
    font-weight: 500;
    margin-bottom: 25px;
}

.prdbasic-price span {
    font-size: 2.21em;
    line-height: 1;
    display: inline-block;
    color: var(--color-navy);
    font-family: var(--font-2);
    font-weight: 500;
}

.prdbasic-price span.offprice {
    font-size: 1.4em;
    line-height: 1.3;
    color: var(--color-light-blue);
    vertical-align: text-bottom;
    margin-left: 10px;
}

.prdbasic-bseller {
    display: flex;
    align-items: center;
    gap: 10px 10px;
}

.prdbasic-bseller .icon span {
    display: inline-block;
    background-color: var(--color-navy);
    color: #fff;
    border-radius: 35px;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 28px;
}

.prdbasic-bseller .icon i {
}

.prdbasic-bseller .text {
    font-size: 1.1rem;
    background-color: #c0604c;
    border-radius: 5px;
    padding: 3px 10px 5px;
    color: #fff;
}

.prdbasic-bseller .link {
    color: inherit;
    border-bottom: 1px solid #fff;
    display: inline-block;
}

.prdbasic-bseller .link:hover {
    color: var(--color-ivory-light);
}

.prdbasic-label {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.prdbasic-variant__wrap {
    --gap-x: 20px;
}

.prdbasic-variant__grp {
    margin: 0;
}

.prdbasic-variant__sizeguide {
    color: var(--color-accent-terracotta);
    font-weight: 500;
    border-bottom: 1px solid;
    font-size: 1.1em;
    margin: 0px 0 0px;
    display: inline-block;
}

.prdbasic-variant__input, .form-radio__input {
    pointer-events: none;
    position: absolute;
    left: -99999px;
}

.form-radio__label {
    position: relative;
    cursor: pointer;
}

.prdbasic-colors__grp span, .form-radio__label span {
    --hover-bg: #d6d6e5a1;
    --active-bg: #d6d6e5;
    --color: #00005c;
    display: flex;
    align-items: center;
    padding: 1px 1px 1px 0px;
    border-radius: 70px;
    transition: 0.25s ease;
    font-size: 1.2em;
    overflow: hidden;
    position: relative;
    color: var(--color);
}

.form-radio__label span:hover {
    /* background-color: #d6d6e5a1; */
    --color: var(--color-accent-terracotta);
}

.form-radio__input:checked~.form-radio__label span {
    /* background-color: #d6d6e5; */
}

.prdbasic-colors__grp span::after, .form-radio__label span:after {
    display: flex;
    flex-shrink: 0;
    content: "";
    background-color: #fff;
    width: 18px;
    height: 18px;
    border-radius: 4px;
    margin-left: 0.575em;
    transition: 0.25s ease;
    box-shadow: inset 0 0 0 2px var(--color, #00005c);
}

.prdbasic-colors__grp span::before, .form-radio__label span:before {
    content: "";
    width: 20px;
    height: 20px;
    background-color: transparent;
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    right: 0%;
    position: absolute;
}

.prdbasic-colors__grp.active span::after, .form-radio__input:checked~.form-radio__label span:after {
    box-shadow: inset 0 0 0 10px var(--color-accent-terracotta, #00005c);
}

.form-radio__input:checked~.form-radio__label span::before {
}

.prdbasic-colors__grp.active span::before, .form-radio__input:checked~.form-radio__label span:before {
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-width='2' d='m7 12l3.488 3.837a.2.2 0 0 0 .296 0L17 9'/%3E%3C/svg%3E");
    background-color: #fff;
}

.prdbasic-colors__grp span {
    font-size: 1.12rem;
    font-weight: 400;
    --color: var(--color-navy-dark);
}

.prdbasic-colors__grp.active span, .prdbasic-colors__grp span:hover {
    --color: var(--color-accent-terracotta);
}

.prdbasic-colors__grp span:after {
    display: flex;
    flex-shrink: 0;
    content: "";
    background-color: #fff;
    width: 18px;
    height: 18px;
    border-radius: 4px;
    margin-left: 0.575em;
    transition: 0.25s ease;
    box-shadow: inset 0 0 0 2px var(--color, #00005c);
}

.prdbasic-colors .color-var {
    display: flex;
    gap: 10px 10px;
    flex-wrap: wrap;
    align-items: center;
}

.prdbasic--item {
    margin-bottom: 20px;
}

.prdbasic-qty__box {
    display: flex;
    align-items: center
}

.prdbasic-qty__status span {
    font-weight: 500;
    display: block;
    font-size: 1.2em;
}

.quantity-selector {
    display: flex;
    gap: 5px 5px /* align-items: center; */
}

.quantity-selector button {
    width: 45px;
    padding: 0 0;
    font-size: 36px;
    line-height: 36px;
    border-radius: 0px;
    cursor: pointer;
    border: 2px solid #bfbfbfad;
    border-color: var(--color-navy-dark);
    position: relative;
    color: var(--color-navy-dark);
}

.quantity-selector button:not(:disabled):hover {
    background: #f3f4fb;
}

.quantity-selector button:not(:disabled) {
    border-color: var(--color-navy-dark);
}

.quantity-selector button:after {
    content: '';
    position: absolute;
    display: inline-block;
    width: 27px;
    height: 27px;
    background-color: currentColor;
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.quantity-btn.increment {
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M13 6.5V11h4.5v2H13v4.5h-2V13H6.5v-2H11V6.5z'/%3E%3C/svg%3E");
}

.quantity-btn.decrement {
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M6.502 11h11v2h-11z'/%3E%3C/svg%3E");
}

.quantity-selector button:disabled {
    cursor: not-allowed;
    opacity: 0.3 !important;
}

.quantity-selector input {
    width: 45px;
    text-align: center;
    font-size: 28px;
    padding: 1px 3px;
    border-radius: 0.25rem;
    border: 1px solid #ccc;
    color: #fff;
    background-color: var(--color-navy);
}

.avil-text {
    color: #1d3557;
    margin: 0 0 10px;
    font-size: 1.1rem;
    font-weight: 500;
}

.avil-icon {
    color: #e76f51;
    /* reddish tone for icons */
    margin-right: 8px;
}

.avil-icon svg {
    width: 20px;
    height: 20px
}

.avil-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    color: #444;
}

.avil-list li {
    position: relative;
    margin-bottom: 0.35rem;
    font-size: 1.2rem;
    padding-left: 18px;
    /* space for custom bullet */
    display: inline-block;
    color: var(--color-navy);
}

.avil-list li::before {
    content: "";
    width: 7px;
    height: 7px;
    background-color: #1d3557;
    border-radius: 50px;
    position: absolute;
    left: 0;
    top: 7px;
    color: #1d3557;
    /* navy bullet */
    font-weight: bold;
    line-height: 21px;
    vertical-align: super;
}

.avil-highlights {
    font-weight: 600;
    color: #1d3557;
    font-size: 1.12rem;
    line-height: 1.8;
}

.desc-heading {
    font-weight: 700;
    text-transform: uppercase;
    color: #1d3557;
    margin-bottom: 0.75rem;
}

.desc-content p , .desc-text {
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-navy);
    margin-bottom: 15px;
    padding-right: 40px;
}

.desc-content strong {
    font-weight: 600;
}

.desc-text strong {
    font-weight: 600;
}

.desc-highlight {
    font-weight: 700;
    font-size: 1em;
    margin: 14px 0;
    color: #1d3557;
}

.desc-artist-box {
    border: 3px dashed #1d3557;
    padding: 25px 24px;
    border-radius: 28px;
    margin-top: 1.5rem;
    position: relative;
    display: flex;
}

.desc-artist-heading {
    font-weight: 700;
    color: #1d3557;
    margin-bottom: 7px;
    font-size: 1em;
}

.desc-sign {
    margin-top: 10px;
    color: var(--color-navy);
    font-size: 1em;
    margin-bottom: 0px;
}

.desc-stamp {
    position: absolute;
    bottom: 10px;
    right: 15px;
    background: #1d3557;
    color: #fff;
    border: 2px dashed #fff;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.desc-artist__left {
}

.desc-artist__img {
    max-width: 100px;
    width: 100px;
}

/* ===== Custom Accordion Style ===== */
.custom-accordion .accordion-item {
    border: none;
    margin-bottom: 10px;
}

.custom-accordion .accordion-button {
    border: 2px solid #1d3557;
    /* dark blue border */
    border-radius: 8px;
    background-color: #f5f0e8;
    /* beige bg */
    color: #1d3557;
    font-weight: 500;
    box-shadow: none;
    font-size: 1.3rem;
    padding: 4px 10px;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background-color: #f5f0e8;
    color: #1d3557;
    box-shadow: none;
}

.custom-accordion .accordion-button:focus {
    box-shadow: none;
}

.custom-accordion .accordion-body {
    border-left: 2px solid #1d3557;
    border-right: 2px solid #1d3557;
    border-bottom: 2px solid #1d3557;
    border-radius: 0 0 8px 8px;
    background: #fff;
    padding: 1rem;
}

/* Replace default arrow with custom â–¼ */
.custom-accordion .accordion-button::after {
    background-size: 14px;
    transform: rotate(0deg);
    display: inline-block;
    width: 40px;
    height: 40px;
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='m5.84 9.59l5.66 5.66l5.66-5.66l-.71-.7l-4.95 4.95l-4.95-4.95z'/%3E%3C/svg%3E");
    background-color: currentColor;
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.prdinfo-acc {
    margin-bottom: 10px;
}

.review-section {
    background-color: #e9dfd2;
    /* beige bg */
    color: #1d3557;
    /* dark navy text */
    padding: 10px 0px;
    border-radius: 6px;
    /* max-width: 500px; */
}

.review-section h3 {
    margin: 10px 0 15px;
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
}

.review-section .rating {
    margin: 0 0 10px;
    font-size: 1.12em;
    font-weight: 500;
}

.review-section .rating a {
    color: #c25448;
    /* muted red link */
    text-decoration: none;
}

.review-section .rating a:hover {
    text-decoration: underline;
}

.review-section .recent {
    font-weight: 500;
    margin: 10px 0 20px;
    font-size: 19px;
}

.review-section blockquote {
    margin: 0 0 13px;
    color: var(--color-navy);
    font-size: 17px;
    border-bottom: 1px solid #2034512e;
    padding-bottom: 5px;
}
.review-section blockquote:not(:first-child) {
    border-bottom: 1px solid #2034512e;
}
.review-section blockquote span.author {
    font-style: normal;
    display: block;
    margin-top: 5px;
    font-weight: bold;
}

.review-section .show-more {
    color: #c25448;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 15px;
}

.review-section .show-more:hover {
    text-decoration: underline;
}

.review-actions {
    margin-bottom: 10px;
}

.review-actions .title {
    color: #c25448;
    font-weight: bold;
    margin: 20px 0px 9px;
    font-size: 20px;
}

.review-actions .write-btn {
    display: inline-block;
    padding: 11px 18px;
    border: 2px solid #c25448;
    border-radius: 6px;
    color: #c25448;
    text-decoration: none;
    font-weight: bold;
    margin-top: 17px;
}

.review-actions .write-btn:disabled, .review-actions .write-btn:hover {
    background-color: #c25448;
    color: #fff;
}

.review-actions .write-btn:disabled {
    background-color: #c25448c2;
}

.review-box {
    width: 100%;
    min-height: 90px;
    border: 2px solid #1d3557;
    border-radius: 6px;
    padding: 8px;
    font-size: 17px;
    resize: vertical;
}

.review-box.error {
    border-color: rgb(240 54 16);
}

.thumbnails {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    /* small equal gap between items */
    margin-top: 5px;
    margin-bottom: 5px;
}

.thumb-image {
    width: calc(25% - 6px);
    /* 4 items per row, accounting for gap */
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 4px;
    object-fit: cover;
    height: auto;
    transition: border-color 0.3s;
}

.thumb-image:hover {
    border-color: var(--color-accent-terracotta);
}

@media (max-width: 768px) {
    .thumb-image {
        width: calc(33.33% - 6px);
        /* 3 per row on tablets */
    }
}

@media (max-width: 480px) {
    .thumb-image {
        width: calc(50% - 6px);
        /* 2 per row on phones */
    }
}

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

.pagehero-image-wrapper {
    position: relative;
    width: 100%;
    /* aspect-ratio: 1920 / 808; */
    /* aspect-ratio: 1920 / 600; */
    aspect-ratio: 1920 / 700;
    /* Maintain exact aspect ratio */
    background-color: #f1f4f5d4;
    /* fallback bg while loading */
}

.pagehero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Shows full image */
    display: none;
    /* Hidden until loaded */
}

/* Loading Dots */
.image-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 8px;
    align-items: center;
}

.image-loader .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #555;
    animation: bounce 1.2s infinite ease-in-out;
}

.image-loader .dot:nth-child(2) {
    animation-delay: 0.2s;
}

.image-loader .dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0.8);
    }

    40% {
        transform: scale(1.2);
    }
}

.pagehero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 2;
}

.filter-input {
    border: 2px solid #1e3352;
    /* dark blue */
    border-radius: 8px;
    font-size: 18px;
    font-weight: 400;
    color: #1e3352;
    display: flex;
    align-items: center;
    gap: 5px;
    max-width: 350px;
    padding-left: 8px;
}

.filter-input .icon:after {
    border-right: 2px solid var(--color-navy-dark);
    margin-left: 7px;
    top: 1px;
    position: relative;
}

.filter-input input {
    background-color: transparent;
    border: none;
    width: 100%;
    padding: 10px 40px 10px 5px;
    outline: none;
}

.fade-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 0.2s ease-out, transform 3s ease-out;
}

.fade-left-large {
    transform: translateX(-150px);
    transition: opacity 0.2s ease-out, transform 3s ease-out;
}

.fade-left.visible {
    /*  */
    /* opacity: 1;
    transform: translateX(0); */
    /* animation: faderevel 1s ease forwards; */
}

.fade-left-large.visible {
    animation: faderevel 1s ease forwards;
}

.fade-left:not(.fade-left-large).visible {
    animation: faderevel 1.3s ease forwards;
}

@keyframes faderevel {
    0% {
        opacity: 0;
        transform: translateX(-150px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/*  */
.prdloader {
    position: relative;
}

.prdloader:before {
    content: '';
    background: url('../img/loading-buffering.gif');
    background-size: 50px;
    display: block;
    height: 110px;
    width: 110px;
    background-repeat: no-repeat;
    /* transform: translateX(-50%); */
    left: 50%;
    /* position: absolute; */
    margin: 20px auto 0;
    background-position: center center;
}

.prdloader .site-btn {
    display: none
}

#loaderWrap {
    text-align: center
}

#loaderWrap button {
    margin-top: 35px;
}

.loader-large {
    width: 60px;
}

.section-content {
    min-height: 522px;
}

.content-wrap {
    text-align: center;
}

.content-wrap h1 {
    font-size: clamp(26px, 11vw,43px);
    margin-bottom: 35px;
}

.help-item {
    background-color: #ffffff;
    border-radius: 15px;
    text-align: center;
    padding: 21px 10px;
    display: block;
    transition: all 0.5s ease;
    border: 1px solid transparent
}

.help-item:hover {
    border-color: var(--color-accent-terracotta);
}

.help-item .icon {
    min-height: 70px;
    text-align: center;
}

.help-item .icon img {
    margin: 0 auto 0px;
    width: clamp(60px, 5vw,100px);
}

.help-item .icon svg {
    /* width: 60px; */
}

.help-item .text {
}

.help-item .text h2 {
    font-size: 18px;
    text-align: center;
    margin: 10px 0 0;
    color: var(--color-navy);
    line-height: normal;
}

.help-item .text .arrow svg {
    background: #838383;
    color: #fff;
    border-radius: 50%;
    margin: 16px 0 0;
}

.site-btn.loading:before {
    content: '';
    border: 2px solid transparent;
    border-top: 2px solid white;
    /* Change color to match your button */
    border-radius: 50%;
    width: 16px;
    height: 16px;
    animation: spin 1s linear infinite;
    /* margin-left: 10px; /* Space between the text and the spinner */
    position: absolute;
    margin: 0 auto;
    z-index: 11;
}

.site-btn.loading:after {
    content: '';
    inset: 0;
    background-color: inherit;
    position: absolute;
    opacity: 60%;
}

/* Define the spin animation */
@keyframes spin {
    0% {
        transform: rotate(0deg) ;
    }

    100% {
        transform: rotate(360deg);
    }
}

.stars {
    margin: 17px 0 12px;
    font-size: 24px;
    color: rgb(251, 188, 4);
    user-select: none;
    transition: all 0.8s ease;
}

.stars i {
    font-size: 21px;
    color: #e06700;
    cursor: pointer;
    transition: color 0.2s;
    font-family: 'Font Awesome 5 Pro';
    font-style: normal;
    letter-spacing: 3px;
}

.stars i.fa-star {
    font-weight: 400;
}

.stars i.filled, .stars i.hovered {
    font-weight: 900;
}

.stars i.filled {
    color: var(--color-accent-terracotta);
}

div.spanerror {
    font-size: 16px;
    color: #f00;
}

.review-list__item.hidden {
    display: none;
}

/* zz */
@media (min-width: 375px) {
    .header .separator {
        margin-left: 15px;
        margin-right: 15px
    }
}

@media (min-width: 568px) {
}

@media (min-width: 767px) {
    .home-slider__item img {
        aspect-ratio: auto;
    }

    .comm-title {
        writing-mode: vertical-rl;
        transform: rotate(180deg);
        margin-bottom: 0px;
    }

    .home-slider__item img {
    }

    .hero-btns {
        gap: 15px 20px;
    }

    .trust-row .label {
        font-weight: 500;
        color: var(--color-text-light);
        font-size: 17px;
    }

    .trust-row .bullet {
        margin-left: 20px;
    }

    .footer-links {
        width: max-content;
        margin: 0 auto;
    }
}

@media (min-width: 992px) {
    .prdbasic-info {
        padding: 20px 5px 0px 20px;
    }

    .prdinfo {
        padding: 0px 5px 0px 20px;
    }
}

@media (min-width: 1200px) {
    .login_wrap {
        padding: 28px 32px;
    }
}

@media (min-width: 1400px) {
    .preorder-arrow img {
        max-width: 60px;
    }
}

@media (max-width: 768px) {
}

@media (max-width: 568px) {
    .home-slider__item img {
        filter: brightness(50%);
    }

    .hero-btns a {
        font-size: 14px;
        padding: 12px 10px;
    }

    .trust-row {
        margin: 10px 0 0px;
        padding: 12px 12px;
    }

    .section-content {
        min-height: 122px;
    }

    .nav_header_icons span.cart-count-append {
        left: 12px;
    }
}
