/*------------------------------------------------------------------
Table of content
-------------------
1. Start Header Area
2. slider area start
3. features area css start
4. hot deals area css start
5. product
6. categories area
7. testimonial
8. blog
9. shop grid view
10. shop list view
11. product details
12. checkout
13. cart
14. wishlist
15. my account
16. compare
17. login register
18. about us
19. contact us
20. banner
21. modal
22. sidebar
23. footer
-------------------------------------------------------------------*/
/*------ Typography Style Start ------*/
body {
    color: #555555;
    line-height: 1.7;
    font-size: 14px;
    font-weight: 400;
    font-family: "Lato", sans-serif;
}

a {
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    text-decoration: none;
}

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

p {
    margin-bottom: 8px;
}

p:last-child {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Lato", sans-serif;
    color: #222222;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    margin: 0;
    line-height: 1.5;
}

h1,
.h1 {
    font-size: 36px;
}

h2,
.h2 {
    font-size: 30px;
}

h3,
.h3 {
    font-size: 24px;
}

h4,
.h4 {
    font-size: 20px;
}

h5,
.h5 {
    font-size: 18px;
}

h6,
.h6 {
    font-size: 16px;
}

ul {
    margin: 0;
    padding: 0;
}

ul li {
    list-style: none;
}

strong,
b {
    font-weight: 700;
}

figure {
    margin: 0;
}

img {
    max-width: 100%;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

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

.btn,
button {
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    background-color: transparent;
}

.btn:active,
.btn:focus,
button:active,
button:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

input,
textarea {
    resize: none;
}

input:focus,
textarea:focus {
    outline: none;
}

.form-control:focus {
    border-color: var(--primary-color);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-group {
    margin-bottom: 1rem;
}

::-moz-selection {
    color: #fff;
    background: var(--primary-color);
}

::selection {
    color: #fff;
    background: var(--primary-color);
}

::-webkit-input-placeholder {
    color: #999;
    font-size: 13px;
    opacity: 1;
}

::-moz-placeholder {
    color: #999;
    font-size: 13px;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #999;
    font-size: 13px;
    opacity: 1;
}

::-ms-input-placeholder {
    color: #999;
    font-size: 13px;
    opacity: 1;
}

::placeholder {
    color: #999;
    font-size: 13px;
    opacity: 1;
}

/* ----tab problem fix css ----*/
.tab-content .tab-pane {
    display: block;
    height: 0;
    max-width: 100%;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
}

.tab-content .tab-pane.active {
    height: auto;
    opacity: 1;
    overflow: visible;
    visibility: visible;
}

/* ----tab problem fix css ----*/
/*------- modal fix start -------*/
.modal-dialog {
    max-width: 1000px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .modal-dialog {
        max-width: 800px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .modal-dialog {
        max-width: 700px;
    }
}

.modal {
    display: block !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: -99;
}

.modal.show {
    opacity: 1;
    visibility: visible;
    pointer-events: visible;
    z-index: 99999999;
    -webkit-animation: slideInDown 0.4s forwards;
    animation: slideInDown 0.4s forwards;
}

.modal .modal-header {
    padding: 0 10px;
    border-bottom: none;
}

.modal .modal-header .close {
    color: #222222;
    font-size: 34px;
    opacity: 1;
    display: block;
    position: absolute;
    padding: 0;
    width: 30px;
    height: 30px;
    margin: 0;
    right: 10px;
    top: 10px;
    font-weight: 500;
    z-index: 999;
    line-height: 30px;
    border-radius: 50%;
}

.modal .modal-body {
    padding: 20px 20px 20px 20px;
}

@media only screen and (max-width: 479.98px) {
    .modal .modal-body {
        padding: 10px;
    }
}

/*------- modal fix end -------*/
/* ---- Sick Slider arrow style start ----*/
.slick-slider .slick-slide>div>div {
    vertical-align: middle;
}

.slick-arrow-style button.slick-arrow {
    top: 50%;
    left: 0;
    font-size: 70px;
    color: #777777;
    cursor: pointer;
    position: absolute;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    line-height: 1;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.slick-arrow-style button.slick-arrow.slick-next {
    left: auto;
    right: 0;
}

.slick-arrow-style button.slick-arrow:hover {
    color: var(--primary-color);
}

.slick-arrow-style:hover button.slick-arrow {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
}

.slick-arrow-style:hover button.slick-arrow.slick-prev {
    left: -60px;
    right: auto;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767.98px) {
    .slick-arrow-style:hover button.slick-arrow.slick-prev {
        left: -20px;
    }
}

.slick-arrow-style:hover button.slick-arrow.slick-next {
    left: auto;
    right: -60px;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767.98px) {
    .slick-arrow-style:hover button.slick-arrow.slick-next {
        right: -20px;
    }
}

.slick-arrow-style_hero button.slick-arrow {
    font-size: 60px;
    left: 0;
    width: inherit;
    height: inherit;
    background-color: transparent;
    z-index: 1;
}

.slick-arrow-style_hero button.slick-arrow.slick-next {
    right: 0;
}

.slick-arrow-style_hero button.slick-arrow:hover {
    color: var(--primary-color);
    background-color: transparent;
}

.slick-arrow-style_hero:hover button.slick-arrow.slick-next {
    right: 15px;
}

.slick-arrow-style_hero:hover button.slick-arrow.slick-prev {
    left: 15px;
}

.slick-append {
    background-color: #fff;
    z-index: 2;
    margin-top: -2px;
}

.slick-append button {
    font-size: 30px;
    line-height: 1;
    position: inherit;
    display: inline-block;
    background-color: transparent;
    color: #555555;
}

.slick-append button:hover {
    color: var(--primary-color);
}

/*--------- slick slider dot style start -------*/
.slick-dot-style ul.slick-dots {
    bottom: 15px;
    left: 50%;
    position: absolute;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media only screen and (max-width: 575.98px) {
    .slick-dot-style ul.slick-dots {
        display: none !important;
    }
}

.slick-dot-style ul.slick-dots li {
    display: inline-block;
    margin-right: 10px;
}

.slick-dot-style ul.slick-dots li:last-child {
    margin-right: 0;
}

.slick-dot-style ul.slick-dots li button {
    width: 14px;
    height: 14px;
    padding: 0;
    border: none;
    display: block;
    text-indent: -5000px;
    cursor: pointer;
    border-radius: 50%;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    border: 2px solid #777777;
    background-color: transparent;
}

.slick-dot-style ul.slick-dots li.slick-active button {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}

.slick-row-3 .slick-list {
    margin: 0 -3px;
}

.slick-row-3 .slick-list .slick-slide {
    margin: 0 3px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-3 .slick-list {
        margin: 0 -3px !important;
    }

    .slick-sm-row-3 .slick-list .slick-slide {
        margin: 0 3px !important;
    }
}

.slick-row-4 .slick-list {
    margin: 0 -4px;
}

.slick-row-4 .slick-list .slick-slide {
    margin: 0 4px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-4 .slick-list {
        margin: 0 -4px !important;
    }

    .slick-sm-row-4 .slick-list .slick-slide {
        margin: 0 4px !important;
    }
}

.slick-row-5 .slick-list {
    margin: 0 -5px;
}

.slick-row-5 .slick-list .slick-slide {
    margin: 0 5px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-5 .slick-list {
        margin: 0 -5px !important;
    }

    .slick-sm-row-5 .slick-list .slick-slide {
        margin: 0 5px !important;
    }
}

.slick-row-6 .slick-list {
    margin: 0 -6px;
}

.slick-row-6 .slick-list .slick-slide {
    margin: 0 6px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-6 .slick-list {
        margin: 0 -6px !important;
    }

    .slick-sm-row-6 .slick-list .slick-slide {
        margin: 0 6px !important;
    }
}

.slick-row-7 .slick-list {
    margin: 0 -7px;
}

.slick-row-7 .slick-list .slick-slide {
    margin: 0 7px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-7 .slick-list {
        margin: 0 -7px !important;
    }

    .slick-sm-row-7 .slick-list .slick-slide {
        margin: 0 7px !important;
    }
}

.slick-row-8 .slick-list {
    margin: 0 -8px;
}

.slick-row-8 .slick-list .slick-slide {
    margin: 0 8px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-8 .slick-list {
        margin: 0 -8px !important;
    }

    .slick-sm-row-8 .slick-list .slick-slide {
        margin: 0 8px !important;
    }
}

.slick-row-9 .slick-list {
    margin: 0 -9px;
}

.slick-row-9 .slick-list .slick-slide {
    margin: 0 9px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-9 .slick-list {
        margin: 0 -9px !important;
    }

    .slick-sm-row-9 .slick-list .slick-slide {
        margin: 0 9px !important;
    }
}

.slick-row-10 .slick-list {
    margin: 0 -10px;
}

.slick-row-10 .slick-list .slick-slide {
    margin: 0 10px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-10 .slick-list {
        margin: 0 -10px !important;
    }

    .slick-sm-row-10 .slick-list .slick-slide {
        margin: 0 10px !important;
    }
}

.slick-row-11 .slick-list {
    margin: 0 -11px;
}

.slick-row-11 .slick-list .slick-slide {
    margin: 0 11px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-11 .slick-list {
        margin: 0 -11px !important;
    }

    .slick-sm-row-11 .slick-list .slick-slide {
        margin: 0 11px !important;
    }
}

.slick-row-12 .slick-list {
    margin: 0 -12px;
}

.slick-row-12 .slick-list .slick-slide {
    margin: 0 12px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-12 .slick-list {
        margin: 0 -12px !important;
    }

    .slick-sm-row-12 .slick-list .slick-slide {
        margin: 0 12px !important;
    }
}

.slick-row-13 .slick-list {
    margin: 0 -13px;
}

.slick-row-13 .slick-list .slick-slide {
    margin: 0 13px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-13 .slick-list {
        margin: 0 -13px !important;
    }

    .slick-sm-row-13 .slick-list .slick-slide {
        margin: 0 13px !important;
    }
}

.slick-row-14 .slick-list {
    margin: 0 -14px;
}

.slick-row-14 .slick-list .slick-slide {
    margin: 0 14px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-14 .slick-list {
        margin: 0 -14px !important;
    }

    .slick-sm-row-14 .slick-list .slick-slide {
        margin: 0 14px !important;
    }
}

.slick-row-15 .slick-list {
    margin: 0 -15px;
}

.slick-row-15 .slick-list .slick-slide {
    margin: 0 15px;
}

@media only screen and (max-width: 767.98px) {
    .slick-sm-row-15 .slick-list {
        margin: 0 -15px !important;
    }

    .slick-sm-row-15 .slick-list .slick-slide {
        margin: 0 15px !important;
    }
}

.slick-slider .slick-slide>div {
    margin-bottom: 30px;
}

.slick-slider .slick-slide>div:last-child {
    margin-bottom: 0;
}

/* ----scroll to top css start ----*/
.scroll-top {
    bottom: 50px;
    cursor: pointer;
    height: 50px;
    position: fixed;
    right: 20px;
    text-align: center;
    width: 50px;
    z-index: 9999;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    border-radius: 50%;
    background-color: var(--primary-color);
    -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}

@media only screen and (max-width: 767.98px) {
    .scroll-top {
        display: none;
    }
}

.scroll-top i {
    line-height: 50px;
    color: #fff;
    font-size: 25px;
}

.scroll-top.not-visible {
    bottom: -50px;
    visibility: hidden;
    opacity: 0;
}

.scroll-top:hover {
    background-color: #222222;
}

/* ----scroll to top css end ----*/
.container {
    padding-right: var(--bs-gutter-x, 15px);
    padding-left: var(--bs-gutter-x, 15px);
}

@media only screen and (min-width: 1200px) {
    .container {
        /* max-width: 1140px; */
    }
}

.container-fluid {
    padding-right: var(--bs-gutter-x, 15px);
    padding-left: var(--bs-gutter-x, 15px);
}

.row {
    --bs-gutter-x: 30px;
}

.custom-container {
    max-width: 1800px;
}

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

.row-0>[class*="col"] {
    padding-left: 0px;
    padding-right: 0px;
}

.row-1 {
    margin-left: -0.5px;
    margin-right: -0.5px;
}

.row-1>[class*="col"] {
    padding-left: 0.5px;
    padding-right: 0.5px;
}

.row-2 {
    margin-left: -1px;
    margin-right: -1px;
}

.row-2>[class*="col"] {
    padding-left: 1px;
    padding-right: 1px;
}

.row-3 {
    margin-left: -1.5px;
    margin-right: -1.5px;
}

.row-3>[class*="col"] {
    padding-left: 1.5px;
    padding-right: 1.5px;
}

.row-4 {
    margin-left: -2px;
    margin-right: -2px;
}

.row-4>[class*="col"] {
    padding-left: 2px;
    padding-right: 2px;
}

.row-5 {
    margin-left: -2.5px;
    margin-right: -2.5px;
}

.row-5>[class*="col"] {
    padding-left: 2.5px;
    padding-right: 2.5px;
}

.row-6 {
    margin-left: -3px;
    margin-right: -3px;
}

.row-6>[class*="col"] {
    padding-left: 3px;
    padding-right: 3px;
}

.row-7 {
    margin-left: -3.5px;
    margin-right: -3.5px;
}

.row-7>[class*="col"] {
    padding-left: 3.5px;
    padding-right: 3.5px;
}

.row-8 {
    margin-left: -4px;
    margin-right: -4px;
}

.row-8>[class*="col"] {
    padding-left: 4px;
    padding-right: 4px;
}

.row-9 {
    margin-left: -4.5px;
    margin-right: -4.5px;
}

.row-9>[class*="col"] {
    padding-left: 4.5px;
    padding-right: 4.5px;
}

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

.row-10>[class*="col"] {
    padding-left: 5px;
    padding-right: 5px;
}

.row-11 {
    margin-left: -5.5px;
    margin-right: -5.5px;
}

.row-11>[class*="col"] {
    padding-left: 5.5px;
    padding-right: 5.5px;
}

.row-12 {
    margin-left: -6px;
    margin-right: -6px;
}

.row-12>[class*="col"] {
    padding-left: 6px;
    padding-right: 6px;
}

.row-13 {
    margin-left: -6.5px;
    margin-right: -6.5px;
}

.row-13>[class*="col"] {
    padding-left: 6.5px;
    padding-right: 6.5px;
}

.row-14 {
    margin-left: -7px;
    margin-right: -7px;
}

.row-14>[class*="col"] {
    padding-left: 7px;
    padding-right: 7px;
}

.row-15 {
    margin-left: -7.5px;
    margin-right: -7.5px;
}

.row-15>[class*="col"] {
    padding-left: 7.5px;
    padding-right: 7.5px;
}

.row-16 {
    margin-left: -8px;
    margin-right: -8px;
}

.row-16>[class*="col"] {
    padding-left: 8px;
    padding-right: 8px;
}

.row-17 {
    margin-left: -8.5px;
    margin-right: -8.5px;
}

.row-17>[class*="col"] {
    padding-left: 8.5px;
    padding-right: 8.5px;
}

.row-18 {
    margin-left: -9px;
    margin-right: -9px;
}

.row-18>[class*="col"] {
    padding-left: 9px;
    padding-right: 9px;
}

.row-19 {
    margin-left: -9.5px;
    margin-right: -9.5px;
}

.row-19>[class*="col"] {
    padding-left: 9.5px;
    padding-right: 9.5px;
}

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

.row-20>[class*="col"] {
    padding-left: 10px;
    padding-right: 10px;
}

.row-21 {
    margin-left: -10.5px;
    margin-right: -10.5px;
}

.row-21>[class*="col"] {
    padding-left: 10.5px;
    padding-right: 10.5px;
}

.row-22 {
    margin-left: -11px;
    margin-right: -11px;
}

.row-22>[class*="col"] {
    padding-left: 11px;
    padding-right: 11px;
}

.row-23 {
    margin-left: -11.5px;
    margin-right: -11.5px;
}

.row-23>[class*="col"] {
    padding-left: 11.5px;
    padding-right: 11.5px;
}

.row-24 {
    margin-left: -12px;
    margin-right: -12px;
}

.row-24>[class*="col"] {
    padding-left: 12px;
    padding-right: 12px;
}

.row-25 {
    margin-left: -12.5px;
    margin-right: -12.5px;
}

.row-25>[class*="col"] {
    padding-left: 12.5px;
    padding-right: 12.5px;
}

.row-26 {
    margin-left: -13px;
    margin-right: -13px;
}

.row-26>[class*="col"] {
    padding-left: 13px;
    padding-right: 13px;
}

.row-27 {
    margin-left: -13.5px;
    margin-right: -13.5px;
}

.row-27>[class*="col"] {
    padding-left: 13.5px;
    padding-right: 13.5px;
}

.row-28 {
    margin-left: -14px;
    margin-right: -14px;
}

.row-28>[class*="col"] {
    padding-left: 14px;
    padding-right: 14px;
}

.row-29 {
    margin-left: -14.5px;
    margin-right: -14.5px;
}

.row-29>[class*="col"] {
    padding-left: 14.5px;
    padding-right: 14.5px;
}

.row-30 {
    margin-left: -15px;
    margin-right: -15px;
}

.row-30>[class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
}

/*------- short classes start -------*/
.section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
}

@media only screen and (max-width: 767.98px) {
    .section-padding {
        padding-top: 63px;
        padding-bottom: 63px;
    }
}

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

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

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

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

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

.mbn-30 {
    margin-bottom: -30px;
}

.mtn-30 {
    margin-top: -30px;
}

.ptb-30 {
    padding: 30px 0;
}

/*------- short classes end -------*/
/*----------- header top area start -----------*/
@media only screen and (min-width: 1600px) {
    .header-wide {
        padding: 0 85px;
    }
}

@media only screen and (min-width: 1200px) {
    .header-wide .container {
        max-width: 100%;
    }
}

.logo-main {
    max-height: 55px;
    width: auto !important;
}

.mobile-logo .logo-main {
    max-height: 40px;
}

.header-top {
    padding: 10px 0;
    border-bottom: 1px solid #efefef;
}

.header-top-settings ul li {
    color: #555555;
    cursor: pointer;
    font-size: 14px;
    position: relative;
    margin-left: 40px;
    position: relative;
    margin-left: 20px;
    padding-left: 20px;
}

.header-top-settings ul li:before {
    top: 50%;
    left: 0;
    width: 1px;
    height: 15px;
    content: "";
    position: absolute;
    background-color: #efefef;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.header-top-settings ul li:first-child {
    padding-left: 0;
    margin-left: 0;
}

.header-top-settings ul li:first-child:before {
    display: none;
}

.header-top-settings ul li .dropdown-list {
    top: 100%;
    right: 0;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    padding: 15px 15px 20px;
    width: 150px;
    z-index: 9;
    text-align: left;
    background-color: #fff;
    pointer-events: none;
    border: 1px solid #efefef;
}

.header-top-settings ul li .dropdown-list li {
    margin-left: 0;
    padding: 0;
}

.header-top-settings ul li .dropdown-list li a {
    color: #555555;
    font-size: 13px;
    display: block;
    padding: 5px 0 3px;
    text-transform: capitalize;
}

.header-top-settings ul li .dropdown-list li a:hover {
    color: var(--primary-color);
}

.header-top-settings ul li .dropdown-list li a img {
    vertical-align: inherit;
}

.header-top-settings ul li .dropdown-list li:before {
    display: none;
}

.header-top-settings ul li:hover .dropdown-list {
    opacity: 1;
    visibility: visible;
    pointer-events: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.welcome-message p {
    color: #555555;
    font-size: 14px;
    line-height: 1;
}

/*----------- header top area end -----------*/
/*---------- header mini cart start ----------*/
.header-configure-area {
    padding-right: 0;
}

.header-configure-area ul {
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 0;
}

.header-configure-area ul li {
    display: inline-block;
    margin-left: 18px;
    line-height: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
    .header-configure-area ul li {
        margin-left: 14px;
    }
}

.header-configure-area ul li a {
    font-size: 24px;
    line-height: 1;
    color: #222222;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    text-decoration: none;
    min-width: 40px;
}

.header-configure-area ul li a .icon-label {
    font-size: 10px;
    font-weight: 600;
    color: #666;
    letter-spacing: 0.3px;
    line-height: 1;
    text-transform: capitalize;
    white-space: nowrap;
}

.header-configure-area ul li a:hover .icon-label {
    color: var(--primary-color);
}

.header-configure-area ul li a .notification {
    top: -6px;
    right: 0px;
    position: absolute;
    width: 16px;
    height: 16px;
    text-align: center;
    line-height: 16px;
    font-size: 9px;
    color: #fff;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.header-configure-area ul li a:hover {
    color: var(--primary-color);
}

.header-configure-area ul li:first-child {
    margin-left: 0;
}

.header-configure-area ul li.user-hover {
    position: relative;
}

.header-configure-area ul li.user-hover .dropdown-list {
    position: absolute;
    top: 100%;
    right: 0;
    width: 150px;
    padding: 20px;
    background-color: #fff;
    z-index: 11;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    opacity: 0;
    visibility: hidden;
    border: 1px solid #efefef;
}

.header-configure-area ul li.user-hover .dropdown-list li {
    display: block;
    margin-left: 0;
}

.header-configure-area ul li.user-hover .dropdown-list li a {
    color: #555555;
    font-size: 13px;
    line-height: 1;
    display: block;
    padding: 8px 0;
    text-transform: capitalize;
}

.header-configure-area ul li.user-hover .dropdown-list li a:hover {
    color: var(--primary-color);
}

.header-configure-area ul li.user-hover:hover .dropdown-list {
    opacity: 1;
    visibility: visible;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

/*----------- header mini cart area end -----------*/
/*------- header search area start -------*/
.header-search-container {
    position: relative;
}

.header-search-box {
    position: relative;
}

.header-search-box:hover .header-search-btn {
    color: var(--primary-color);
}

.header-search-btn {
    font-size: 25px;
    line-height: 1;
    left: 10px;
    top: 50%;
    width: 30px;
    position: absolute;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.header-search-field {
    border: none;
    background-color: #f7f7f7;
    border-radius: 30px;
    padding: 10px 20px 10px 50px;
    width: 100%;
}

.search-trigger {
    font-size: 26px;
    color: #222222;
}

.search-box-open {
    top: 100%;
    right: 0;
    width: 300px;
    position: absolute;
    z-index: 5;
    display: block !important;
}

.search-box-open .header-search-field {
    height: 44px;
    border: 1px solid #ddd;
}

/*------- header search area end -------*/
/*-------- header social link start --------*/
.header-social-link a {
    color: #777777;
    font-size: 17px;
    display: inline-block;
    line-height: 1;
    margin-right: 20px;
}

.header-social-link a:last-child {
    margin-right: 0;
}

.header-social-link a:hover {
    color: var(--primary-color);
}

/*-------- header social link end --------*/
/*---------- main menu style start ---------*/
.main-menu ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.main-menu ul li {
    position: relative;
}

.main-menu ul li a {
    color: #222222;
    font-size: 15px;
    padding: 24px 15px;
    font-weight: 400;
    display: block;
    text-transform: capitalize;
}

.main-menu ul li a i {
    font-size: 14px;
    padding: 0 3px;
}

.main-menu ul li:first-child a {
    padding-left: 0;
}

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

.main-menu ul li ul.dropdown {
    top: calc(100% - 1px);
    left: 0;
    width: 220px;
    position: absolute;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    z-index: 99999;
    pointer-events: none;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    border: 1px solid #efefef;
}

.main-menu ul li ul.dropdown li {
    margin-right: 0;
    border-right: none;
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
}

.main-menu ul li ul.dropdown li a {
    color: #555555;
    font-size: 14px;
    font-weight: 400;
    padding: 10px 20px;
    text-transform: capitalize;
    position: relative;
    border-bottom: 1px dashed #efefef;
    z-index: 1;
}

.main-menu ul li ul.dropdown li a:before {
    width: 10px;
    height: 1px;
    left: 20px;
    top: 50%;
    content: " ";
    position: absolute;
    background-color: var(--primary-color);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    z-index: -1;
}

.main-menu ul li ul.dropdown li a i {
    float: right;
    padding-top: 5px;
}

.main-menu ul li ul.dropdown li:hover>a {
    color: var(--primary-color);
    background-color: #fff;
    padding-left: 35px;
}

.main-menu ul li ul.dropdown li:hover>a:before {
    opacity: 1;
    visibility: visible;
}

.main-menu ul li ul.dropdown li:hover>ul.dropdown {
    top: 0;
    opacity: 1;
    visibility: visible;
}

.main-menu ul li ul.dropdown li ul.dropdown {
    top: 100%;
    left: 100%;
    position: absolute;
    width: 250px;
    opacity: 0;
    visibility: hidden;
}

.main-menu ul li ul.dropdown li:last-child a {
    border-bottom: none;
}

.main-menu ul li ul.megamenu {
    width: 100%;
    max-width: 1110px;
    padding: 30px;
    left: 50%;
    -webkit-transform: translate(-50%, 20px);
    -ms-transform: translate(-50%, 20px);
    transform: translate(-50%, 20px);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .main-menu ul li ul.megamenu {
        max-width: 100%;
    }
}

.main-menu ul li ul.megamenu li {
    -webkit-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
}

.main-menu ul li ul.megamenu li.mega-title {
    color: #222222;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
}

.main-menu ul li ul.megamenu li.mega-title span {
    position: relative;
    margin-bottom: 15px;
    display: inline-block;
}

.main-menu ul li ul.megamenu li.mega-title span:before,
.main-menu ul li ul.megamenu li.mega-title span:after {
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    content: " ";
    position: absolute;
    background-color: #ebebeb;
}

.main-menu ul li ul.megamenu li.mega-title span:after {
    width: 50%;
    background-color: var(--primary-color);
}

.main-menu ul li ul.megamenu li a {
    padding: 6px 0;
    border-bottom: none;
}

.main-menu ul li ul.megamenu li a:before {
    left: 0;
}

.main-menu ul li ul.megamenu li ul li {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
}

.main-menu ul li ul.megamenu li:hover>a {
    color: var(--primary-color);
    padding-left: 15px;
}

.main-menu ul li ul.megamenu li.megamenu-banners {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    margin-top: 25px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    padding-right: 10px;
}

.main-menu ul li ul.megamenu li.megamenu-banners img {
    width: 100%;
}

.main-menu ul li ul.megamenu li.megamenu-banners a:before {
    display: none;
}

.main-menu ul li ul.megamenu li.megamenu-banners:last-child {
    padding-right: 0;
    padding-left: 10px;
}

.main-menu ul li ul.megamenu li.megamenu-banners:hover {
    opacity: 0.6;
}

.main-menu ul li ul.megamenu li.megamenu-banners:hover a {
    padding-left: 0 !important;
}

.main-menu ul li:hover ul.dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: visible;
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
}

.main-menu ul li:hover ul.megamenu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.main-menu ul.header-style-4>li a {
    padding: 25px 15px;
}

.main-menu ul.header-style-4>li:first-child>a {
    padding-left: 0;
}

/*---------- main menu style end ---------*/
/*------ sticky menu style start ------*/
.header-transparent {
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    position: absolute;
    z-index: 1;
}

.sticky.is-sticky {
    top: 0;
    left: 0;
    position: fixed;
    width: 100%;
    z-index: 1010;
    background-color: #fff;
    -webkit-box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.2);
    -webkit-animation: 900ms cubic-bezier(0.2, 1, 0.22, 1) 0s normal none 1 running fadeInDown;
    animation: 900ms cubic-bezier(0.2, 1, 0.22, 1) 0s normal none 1 running fadeInDown;
}

@media only screen and (min-width: 1600px) {
    .sticky.is-sticky {
        padding: 0 85px;
    }
}

.sticky.is-sticky .main-menu li a {
    padding: 18px 15px;
}

.sticky.is-sticky .main-menu li:first-child a {
    padding-left: 0;
}

.sticky.is-sticky .main-menu li .dropdown li a {
    padding: 10px 20px;
}

.sticky.is-sticky .main-menu li .dropdown li:hover>a {
    padding-left: 35px;
}

.sticky.is-sticky .main-menu li .megamenu li a {
    padding: 6px 0;
}

.sticky.is-sticky .main-menu li .megamenu li:hover>a {
    padding-left: 15px;
}

/*------ sticky menu style end ------*/
/*------- Buttons Style here -------*/
.btn {
    font-size: 14px;
    color: #222222;
    line-height: 1;
}

.btn-text {
    font-size: 16px;
    position: relative;
    pointer-events: visible;
    text-transform: capitalize;
}

.btn-text:before {
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    content: "";
    position: absolute;
    background-color: #222222;
}

.btn-text:hover {
    color: var(--primary-color);
}

.btn-text:hover:before {
    background-color: var(--primary-color);
}

.btn-cart {
    padding: 12px 25px;
    background-color: #fff;
    border-radius: 30px;
    text-transform: capitalize;
    -webkit-box-shadow: 0 2px 1px 0.5px rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 1px 0.5px rgba(0, 0, 0, 0.05);
}

.btn-cart:hover {
    color: #fff;
    background-color: var(--primary-color);
}

.btn-cart2 {
    height: 40px;
    color: #fff;
    line-height: 40px;
    border-radius: 50px;
    padding: 0 25px;
    background-color: var(--primary-color);
}

.btn-cart2:hover {
    color: #fff;
    background-color: #222222;
}

.btn-sqr {
    color: #fff;
    font-size: 15px;
    border-radius: 0;
    background-color: var(--primary-color);
    padding: 12px 25px;
}

.btn-sqr:hover {
    color: #fff;
    background-color: #222222;
}

/*----- mobile menu start -----*/
.mobile-header {
    padding: 8px 0;
}

.mobile-header-top {
    border-bottom: 1px solid #efefef;
}

.mobile-header-top .header-top-settings {
    float: none;
}

.mobile-logo {
    max-width: 130px;
    width: 100%;
}

.mobile-main-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.mobile-main-header .mobile-menu-toggler {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.mobile-main-header .mobile-menu-toggler .mini-cart-wrap {
    line-height: 1;
}

.mobile-main-header .mobile-menu-toggler .mini-cart-wrap a {
    font-size: 25px;
    line-height: 1;
    color: #222222;
    position: relative;
}

.mobile-main-header .mobile-menu-toggler .mini-cart-wrap a:hover {
    color: var(--primary-color);
}

.mobile-main-header .mobile-menu-toggler .mini-cart-wrap .notification {
    font-size: 13px;
    color: #fff;
    width: 16px;
    height: 16px;
    line-height: 16px;
    border-radius: 50%;
    text-align: center;
    font-weight: 600;
    right: -4px;
    top: -4px;
    position: absolute;
    background-color: var(--primary-color);
}

.mobile-main-header .mobile-menu-toggler .mobile-menu-btn {
    margin-left: 25px;
}

.mobile-main-header .mobile-menu-toggler .mobile-menu-btn span {
    width: 25px;
    height: 2px;
    display: block;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    background-color: #222222;
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
}

.mobile-main-header .mobile-menu-toggler .mobile-menu-btn span:nth-child(2),
.mobile-main-header .mobile-menu-toggler .mobile-menu-btn span:nth-child(3) {
    margin-top: 5px;
}

.mobile-main-header .mobile-menu-toggler .mobile-menu-btn:hover span {
    background-color: var(--primary-color);
}

.mobile-main-header .mobile-menu-toggler .mobile-menu-btn:hover span:nth-child(1),
.mobile-main-header .mobile-menu-toggler .mobile-menu-btn:hover span:nth-child(3) {
    width: 20px;
}

.mobile-navigation {
    overflow: hidden;
}

.mobile-navigation nav {
    height: 100%;
}

.mobile-menu {
    margin-top: 30px;
    height: 100%;
    overflow: auto;
    padding-right: 30px;
    margin-right: -30px;
}

@media only screen and (max-width: 479.98px) {
    .mobile-menu {
        margin-top: 15px;
    }
}

.mobile-menu li>a {
    font-size: 15px;
    color: #222222;
    text-transform: capitalize;
    line-height: 18px;
    position: relative;
    display: inline-block;
    padding: 10px 0;
}

.mobile-menu li>a:hover {
    color: var(--primary-color);
}

.mobile-menu li ul li {
    border: none;
}

.mobile-menu li ul li a {
    font-size: 14px;
    text-transform: capitalize;
    padding: 10px 0 8px;
}

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

.mobile-menu li.menu-item-has-children .dropdown {
    padding-left: 15px;
}

.mobile-menu li.menu-item-has-children .menu-expand {
    line-height: 50;
    top: -5px;
    left: 95%;
    width: 30px;
    position: absolute;
    height: 50px;
    text-align: center;
    cursor: pointer;
}

.mobile-menu li.menu-item-has-children .menu-expand i {
    display: block;
    position: relative;
    width: 10px;
    margin-top: 25px;
    border-bottom: 1px solid #222222;
    -webkit-transition: all 250ms ease-out;
    -o-transition: all 250ms ease-out;
    transition: all 250ms ease-out;
}

.mobile-menu li.menu-item-has-children .menu-expand i:before {
    top: 0;
    width: 100%;
    content: "";
    display: block;
    position: absolute;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    border-bottom: 1px solid #222222;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.mobile-menu li.menu-item-has-children.active>.menu-expand i:before {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}

/*----- mobile menu end -----*/
/*------ offcanvas widget area start ------*/
.offcanvas-widget-area {
    margin-top: auto;
    padding-bottom: 30px;
}

@media only screen and (max-width: 479.98px) {
    .offcanvas-widget-area {
        padding-bottom: 0;
    }
}

.off-canvas-contact-widget li {
    color: #555555;
    font-size: 15px;
    margin-bottom: 5px;
}

.off-canvas-contact-widget li i {
    width: 20px;
}

.off-canvas-contact-widget li a {
    color: #555555;
}

.off-canvas-contact-widget li a:hover {
    color: var(--primary-color);
}

.off-canvas-social-widget {
    margin-top: 20px;
}

.off-canvas-social-widget a {
    color: #555555;
    font-size: 18px;
    display: inline-block;
    margin-right: 15px;
}

.off-canvas-social-widget a:hover {
    color: var(--primary-color);
}

/*------ offcanvas widget area end ------*/
.off-canvas-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    z-index: 9999;
}

.off-canvas-wrapper.open {
    opacity: 1;
    visibility: visible;
}

.off-canvas-wrapper.open .off-canvas-inner-content {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

.off-canvas-wrapper .off-canvas-overlay {
    background-color: rgba(0, 0, 0, 0.4);
    content: "";
    cursor: url("../img/icon/cancel.png"), auto;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.off-canvas-wrapper .off-canvas-inner-content {
    background-color: #fff;
    width: 300px;
    padding: 20px;
    height: 100%;
    position: relative;
    -webkit-transform: translateX(calc(-100% - 50px));
    -ms-transform: translateX(calc(-100% - 50px));
    transform: translateX(calc(-100% - 50px));
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

@media only screen and (max-width: 479.98px) {
    .off-canvas-wrapper .off-canvas-inner-content {
        width: 260px;
        padding: 15px;
    }
}

.off-canvas-wrapper .btn-close-off-canvas {
    top: 0;
    left: 100%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    color: #fff;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    position: absolute;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    background-color: var(--primary-color);
}

.off-canvas-wrapper .btn-close-off-canvas i {
    font-size: 40px;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    display: block;
    line-height: 40px;
}

.off-canvas-wrapper .btn-close-off-canvas:hover i {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.off-canvas-wrapper .off-canvas-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    height: 100%;
}

.search-box-offcanvas form {
    position: relative;
}

.search-box-offcanvas form input {
    color: #666;
    font-size: 13px;
    width: 100%;
    height: 40px;
    border: none;
    padding: 0 40px 0 10px;
    background-color: #f2f2f2;
}

.search-box-offcanvas form .search-btn {
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    line-height: 42px;
    font-size: 20px;
    color: #222222;
    position: absolute;
}

.search-box-offcanvas form .search-btn:hover {
    color: var(--primary-color);
}

/*------- mobile top bar settings start -------*/
.mobile-settings {
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #efefef;
}

.mobile-settings li {
    margin-bottom: 5px;
}

.mobile-settings .nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.mobile-settings .nav .mobile-top-dropdown .dropdown-toggle {
    font-size: 14px;
    color: #555555;
    cursor: pointer;
}

.mobile-settings .nav .mobile-top-dropdown .dropdown-toggle i {
    font-size: 12px;
    padding-left: 5px;
    vertical-align: middle;
}

.mobile-settings .nav .mobile-top-dropdown .dropdown-toggle:hover {
    color: var(--primary-color);
}

.mobile-settings .nav .mobile-top-dropdown .dropdown-toggle:after {
    display: none;
}

.mobile-settings .nav .mobile-top-dropdown .dropdown-menu {
    padding: 0;
    border-color: #efefef;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.mobile-settings .nav .mobile-top-dropdown .dropdown-menu.show {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.mobile-settings .nav .mobile-top-dropdown .dropdown-menu .dropdown-item {
    font-size: 13px;
    color: #555555;
    padding: 6px 15px;
}

/*------- mobile top bar settings end -------*/
/*-------- off canvas mini cart start --------*/
.minicart-inner {
    top: 0;
    left: 0;
    position: fixed;
    width: 100vw;
    height: 100vh;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
}

.minicart-inner .offcanvas-overlay {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    cursor: url("../img/icon/cancel.png"), auto;
}

.minicart-inner.show {
    opacity: 1;
    visibility: visible;
}

.minicart-inner.show .minicart-inner-content {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

.minicart-inner .minicart-close {
    width: 50px;
    height: 50px;
    text-align: center;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 50px;
    cursor: pointer;
    top: 0;
    right: 375px;
    position: absolute;
}

.minicart-inner .minicart-close i {
    display: block;
    line-height: 50px;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
}

.minicart-inner .minicart-close:hover i {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.minicart-inner .minicart-inner-content {
    top: 0;
    right: 0;
    height: 100vh;
    width: 100%;
    max-width: 375px;
    position: absolute;
    background-color: #fff;
    -webkit-transform: translateX(calc(100% + 50px));
    -ms-transform: translateX(calc(100% + 50px));
    transform: translateX(calc(100% + 50px));
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    padding: 50px 20px;
}

.minicart-content-box {
    overflow: auto;
    height: 100%;
    padding-right: 30px;
    margin-right: -15px;
}

.minicart-item-wrapper {
    border-bottom: 1px solid #efefef;
}

.minicart-item-wrapper ul li {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #efefef;
}

.minicart-item-wrapper ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.minicart-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.minicart-thumb {
    max-width: 85px;
    -webkit-flex-basis: 85px;
    -ms-flex-preferred-size: 85px;
    flex-basis: 85px;
}

.minicart-content {
    padding: 0 10px;
    max-width: calc(100% - 115px);
    -webkit-flex-basis: calc(100% - 115px);
    -ms-flex-preferred-size: calc(100% - 115px);
    flex-basis: calc(100% - 115px);
}

.minicart-content .product-name {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    padding-bottom: 10px;
}

.minicart-content .product-name a {
    color: #222222;
}

.minicart-content .product-name a:hover {
    color: var(--primary-color);
}

.minicart-content .cart-quantity {
    font-size: 12px;
    color: #555555;
    line-height: 1;
}

.minicart-content .cart-quantity strong {
    font-size: 16px;
    font-weight: 400;
    vertical-align: text-bottom;
}

.minicart-content .cart-price {
    color: var(--primary-color);
    font-size: 14px;
    line-height: 1;
}

.minicart-remove {
    max-width: 30px;
    -webkit-flex-basis: 30px;
    -ms-flex-preferred-size: 30px;
    flex-basis: 30px;
    text-align: center;
    font-size: 18px;
    line-height: 1;
    color: #222222;
}

.minicart-remove:hover {
    color: var(--primary-color);
}

.minicart-pricing-box {
    border-bottom: 1px solid #efefef;
    padding-bottom: 20px;
    margin-bottom: 20px;
    padding-top: 15px;
}

.minicart-pricing-box li {
    margin-bottom: 5px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.minicart-pricing-box li span {
    font-size: 14px;
    color: #222222;
    text-transform: capitalize;
}

.minicart-pricing-box li span strong {
    color: var(--primary-color);
    font-weight: 400;
}

.minicart-pricing-box li.total span {
    font-size: 16px;
}

.minicart-pricing-box li:last-child {
    margin-bottom: 0;
}

.minicart-button a {
    color: #222222;
    font-size: 14px;
    display: block;
    font-weight: 700;
    line-height: 1;
    padding: 17px 0;
    background-color: #f3f3f3;
    border-radius: 40px;
    text-align: center;
    margin-bottom: 10px;
}

.minicart-button a i {
    padding-right: 5px;
}

.minicart-button a:hover {
    color: #fff;
    letter-spacing: 1.1px;
    background-color: var(--primary-color);
}

.minicart-button a:last-child {
    margin-bottom: 0;
}

/*-------- off canvas mini cart end --------*/
/*------ hero slider area css start ------*/
/*-------------------------
02. Slider area
--------------------------*/
.hero-slider-item {
    height: auto !important;
    display: block !important;
    background-color: #dfb39d;
    /* Matches common banner background */
}

.hero-slider-item img {
    width: 100% !important;
    height: auto !important;
    max-height: 85vh !important;
    object-fit: contain !important;
}

@media only screen and (max-width: 767.98px) {
    .hero-slider-item img {
        height: auto !important;
    }
}

.slider-area,
.hero-slider-active,
.hero-single-slide,
.slick-list,
.slick-track,
.slick-slide>div {
    height: auto !important;
}

@media only screen and (max-width: 575.98px) {
    .hero-slider-item {
        height: auto;
    }
}

.hero-style-five .hero-slider-item {
    height: 800px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .hero-style-five .hero-slider-item {
        height: 530px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767.98px) {
    .hero-style-five .hero-slider-item {
        height: 400px;
    }
}

@media only screen and (max-width: 575.98px) {
    .hero-style-five .hero-slider-item {
        height: 350px;
    }
}

.hero-slider-content {
    position: relative;
}

@media only screen and (max-width: 767.98px) {
    .hero-slider-content {
        padding-right: 150px;
    }
}

@media only screen and (max-width: 575.98px) {
    .hero-slider-content {
        padding-right: 90px;
    }
}

@media only screen and (max-width: 479.98px) {
    .hero-slider-content {
        padding-right: 0;
    }
}

.hero-slider-content .slide-title {
    font-size: 60px;
    font-weight: normal;
    line-height: 1;
}

.hero-slider-content .slide-title span {
    display: block;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-slider-content .slide-title {
        font-size: 50px;
    }
}

@media only screen and (max-width: 767.98px) {
    .hero-slider-content .slide-title {
        font-size: 40px;
        line-height: 1.2;
    }
}

@media only screen and (max-width: 575.98px) {
    .hero-slider-content .slide-title {
        font-size: 35px;
    }
}

@media only screen and (max-width: 479.98px) {
    .hero-slider-content .slide-title {
        font-size: 30px;
    }
}

.hero-slider-content .slide-desc {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.3;
    color: #222222;
    padding-top: 20px;
}

@media only screen and (max-width: 575.98px) {
    .hero-slider-content .slide-desc {
        padding-top: 10px;
    }
}

.btn-hero {
    color: #fff;
    font-size: 15px;
    line-height: 1;
    padding: 14px 30px;
    display: inline-block;
    border-radius: 50px;
    background-color: var(--primary-color);
    margin-top: 38px;
}

@media only screen and (max-width: 575.98px) {
    .btn-hero {
        margin-top: 25px;
    }
}

.btn-hero:hover {
    color: #fff;
    background-color: #222222;
}

.hero-overlay {
    position: relative;
}

.hero-overlay:before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    background-color: rgba(255, 255, 255, 0.7);
    display: none;
}

/*------ hero slider area css end ------*/
.slick-active .hero-slider-content.slide-1 h2 {
    -webkit-animation: bounceIn 2s linear alternate;
    animation: bounceIn 2s linear alternate;
}

.slick-active .hero-slider-content.slide-1 h4 {
    -webkit-animation: zoomIn 1s linear alternate;
    animation: zoomIn 1s linear alternate;
}

.slick-active .hero-slider-content.slide-1 a {
    -webkit-animation: slideInUp 0.5s linear alternate;
    animation: slideInUp 0.5s linear alternate;
}

.slick-active .hero-slider-content.slide-2 h2 {
    -webkit-animation: bounceIn 1.5s linear alternate;
    animation: bounceIn 1.5s linear alternate;
}

.slick-active .hero-slider-content.slide-2 h4 {
    -webkit-animation: fadeInLeft 1s linear alternate;
    animation: fadeInLeft 1s linear alternate;
}

.slick-active .hero-slider-content.slide-2 a {
    -webkit-animation: slideInUp 0.5s linear alternate;
    animation: slideInUp 0.5s linear alternate;
}

.slick-active .hero-slider-content.slide-3 h2 {
    -webkit-animation: fadeInUp 1000ms linear alternate;
    animation: fadeInUp 1000ms linear alternate;
}

.slick-active .hero-slider-content.slide-3 h4 {
    -webkit-animation: bounceIn 600ms linear alternate;
    animation: bounceIn 600ms linear alternate;
}

.slick-active .hero-slider-content.slide-3 a {
    -webkit-animation: fadeInUp 1400ms linear alternate;
    animation: fadeInUp 1400ms linear alternate;
}

.slider-item {
    position: relative;
    overflow: hidden;
}

.slider-item:before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    background-color: #000;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition: 0.4s;
}

@media only screen and (max-width: 767.98px) {
    .slider-item:before {
        opacity: 0.6;
        visibility: visible;
    }
}

.slider-item:hover:before {
    opacity: 0.6;
    visibility: visible;
}

.slider-item:hover .slider-thumb img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.slider-item:hover .slider-item-content {
    -webkit-transform: translateY(-50%) scale(1);
    -ms-transform: translateY(-50%) scale(1);
    transform: translateY(-50%) scale(1);
    opacity: 1;
    visibility: visible;
}

.slider-item .slider-thumb img {
    width: 100%;
}

.slider-item-content {
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    text-align: center;
    padding: 0 30px;
    z-index: 2;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    -webkit-transform: translateY(-50%) scale(0.8);
    -ms-transform: translateY(-50%) scale(0.8);
    transform: translateY(-50%) scale(0.8);
    opacity: 0;
    visibility: hidden;
}

@media only screen and (max-width: 767.98px) {
    .slider-item-content {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(-50%) scale(1);
        -ms-transform: translateY(-50%) scale(1);
        transform: translateY(-50%) scale(1);
    }
}

.slider-item-content h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
    padding-bottom: 6px;
    overflow-wrap: break-word;
    text-transform: uppercase;
    font-family: "Lato", sans-serif;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .slider-item-content h2 {
        font-size: 30px;
    }
}

@media only screen and (max-width: 479.98px) {
    .slider-item-content h2 {
        font-size: 26px;
    }
}

.slider-item-content h3 {
    color: #fff;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: capitalize;
    font-family: "Lato", sans-serif;
}

@media only screen and (max-width: 479.98px) {
    .slider-item-content h3 {
        font-size: 22px;
    }
}

.slider-item-content .btn-text {
    margin-top: 15px;
    color: #fff;
}

.slider-item-content .btn-text:before {
    background-color: #fff;
}

.slider-item-content .btn-text:hover {
    color: var(--primary-color);
}

.slider-item-content .btn-text:hover:before {
    background-color: var(--primary-color);
}

/*------ service policy start ------*/
.policy-block {
    border-bottom: 1px solid #efefef;
}

.policy-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 30px;
    margin-bottom: -3px;
}

@media only screen and (max-width: 767.98px) {
    .policy-item {
        margin-bottom: -6px;
    }
}

@media only screen and (max-width: 575.98px) {
    .policy-item {
        display: block;
        text-align: center;
    }
}

.policy-icon {
    font-size: 30px;
    line-height: 1;
    color: var(--primary-color);
    padding-right: 16px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .policy-icon {
        padding-right: 12px;
    }
}

@media only screen and (max-width: 575.98px) {
    .policy-icon {
        padding-right: 0;
        margin-bottom: 10px;
    }
}

.policy-content p {
    color: #777;
    padding-top: 9px;
}

/*------ service policy end ------*/
/*------ banner statistics style start ------*/
/* 1.0 banner statistics */
.banner-statistics {
    position: relative;
}

.banner-statistics img {
    width: 100%;
}

.banner-statistics:hover img {
    opacity: 0.7;
}

.banner-content {
    right: 55px;
    top: 50%;
    position: absolute;
    pointer-events: none;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner-content {
        right: 30px;
    }
}

@media only screen and (max-width: 767.98px) {
    .banner-content {
        right: 20px;
    }
}

@media only screen and (max-width: 575.98px) {
    .banner-content {
        right: 55px;
    }
}

@media only screen and (max-width: 479.98px) {
    .banner-content {
        right: 20px;
    }
}

.banner-content_style2 {
    left: 40px;
    top: auto;
    bottom: 40px;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.banner-content_style2 .banner-text3 {
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.banner-content_style2 .banner-text3 a {
    color: #222222;
    pointer-events: visible;
}

.banner-content_style2 .banner-text3 a:hover {
    color: var(--primary-color);
}

.banner-content_style3 {
    left: 40px;
    right: auto;
}

.banner-text1 {
    font-size: 15px;
    line-height: 1.1;
    padding-bottom: 15px;
    color: #777777;
    text-transform: uppercase;
}

@media only screen and (max-width: 767.98px) {
    .banner-text1 {
        font-size: 14px;
        padding-bottom: 10px;
    }
}

@media only screen and (max-width: 575.98px) {
    .banner-text1 {
        font-size: 15px;
        padding-bottom: 15px;
    }
}

@media only screen and (max-width: 479.98px) {
    .banner-text1 {
        font-size: 14px;
        padding-bottom: 10px;
    }
}

.banner-text2 {
    padding-bottom: 34px;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.banner-text2 span {
    display: block;
}

@media only screen and (max-width: 767.98px),
only screen and (max-width: 479.98px) {
    .banner-text2 span {
        display: inline-block;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner-text2 {
        font-size: 20px;
        padding-bottom: 15px;
    }
}

@media only screen and (max-width: 767.98px) {
    .banner-text2 {
        font-size: 17px;
        padding-bottom: 10px;
    }
}

@media only screen and (max-width: 575.98px) {
    .banner-text2 {
        font-size: 25px;
        padding-bottom: 34px;
    }
}

@media only screen and (max-width: 479.98px) {
    .banner-text2 {
        font-size: 17px;
        padding-bottom: 10px;
    }
}

/*------ banner statistics style end ------*/
/*------ section title start ------*/
.section-title {
    margin-top: -7px;
    margin-bottom: 37px;
}

.section-title .title {
    text-transform: capitalize;
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
}

@media only screen and (max-width: 767.98px) {
    .section-title .title {
        font-size: 26px;
    }
}

.section-title .sub-title {
    font-size: 15px;
    padding-top: 6px;
    color: #555555;
}

@-webkit-keyframes shine {
    0% {
        background-position: -500%;
    }

    100% {
        background-position: 100%;
    }
}

@keyframes shine {
    0% {
        background-position: -500%;
    }

    100% {
        background-position: 100%;
    }
}

.section-title-append {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    margin-top: -4px;
    margin-bottom: 18px;
    line-height: 1;
}

.section-title-append:after {
    top: 50%;
    right: 0;
    width: 100%;
    height: 1px;
    content: "";
    position: absolute;
    background-color: #efefef;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
    margin-top: -3px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-title-append:after {
        margin-top: 2px;
    }
}

.section-title-append h4 {
    display: inline-block;
    line-height: 1;
    text-transform: capitalize;
    background-color: #fff;
    position: relative;
    z-index: 2;
    padding-right: 5px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .section-title-append h4 {
        font-size: 16px;
    }
}

/*------ section title end ------*/
/*------- common style css start -------*/
/*-------- Custom Checkbox Style start --------*/
.custom-checkbox.custom-control,
.custom-radio.custom-control {
    min-height: auto;
    padding-left: 1.5rem;
}

.custom-checkbox .custom-control-label,
.custom-radio .custom-control-label {
    font-size: 14px;
    line-height: 1;
    padding-left: 10px;
    font-weight: 400;
    display: block;
    cursor: pointer;
    position: relative;
}

.custom-checkbox .custom-control-label:before,
.custom-radio .custom-control-label:before {
    background-color: transparent;
    border: 1px solid #ddd;
    border-radius: 0;
    height: 15px;
    top: 0;
    width: 15px;
    content: "";
    position: absolute;
    left: -1.5rem;
}

.custom-checkbox .custom-control-label:after,
.custom-radio .custom-control-label:after {
    background-size: 10px 10px;
    height: 15px;
    top: 0;
    content: "";
    position: absolute;
    left: -1.5rem;
}

.custom-checkbox .custom-control-label a,
.custom-radio .custom-control-label a {
    color: #222222;
    font-weight: 500;
}

.custom-checkbox .custom-control-label a:hover,
.custom-radio .custom-control-label a:hover {
    color: var(--primary-color);
}

.custom-checkbox input,
.custom-checkbox .custom-control-input,
.custom-radio input,
.custom-radio .custom-control-input {
    outline: none;
    display: none;
}

.custom-checkbox input:focus~.custom-control-label:before,
.custom-checkbox input:focus label:before,
.custom-checkbox .custom-control-input:focus~.custom-control-label:before,
.custom-checkbox .custom-control-input:focus label:before,
.custom-radio input:focus~.custom-control-label:before,
.custom-radio input:focus label:before,
.custom-radio .custom-control-input:focus~.custom-control-label:before,
.custom-radio .custom-control-input:focus label:before {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.custom-checkbox input:checked~.custom-control-label:before,
.custom-checkbox input:checked label:before,
.custom-checkbox .custom-control-input:checked~.custom-control-label:before,
.custom-checkbox .custom-control-input:checked label:before,
.custom-radio input:checked~.custom-control-label:before,
.custom-radio input:checked label:before,
.custom-radio .custom-control-input:checked~.custom-control-label:before,
.custom-radio .custom-control-input:checked label:before {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::after {
    width: 15px;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}

/*-------- Custom Checkbox Style end --------*/
/*------- Custom Radio Button Style start -------*/
.custom-radio label:before,
.custom-radio .custom-control-label:before {
    border-radius: 50%;
    height: 14px;
    width: 14px;
}

.custom-radio label::after,
.custom-radio .custom-control-label::after {
    background-size: 10px 10px;
    left: -22px;
    top: 2px;
    height: 10px;
    width: 10px;
}

.custom-radio .custom-control-input:checked~.custom-control-label::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

/*------- Custom Radio Button Style end -------*/
.bg-gray {
    background-color: #f4f4f4;
}

/*------ twitter feed start ------*/
.twitter-feed-content {
    padding: 32px 0;
    border-bottom: 1px solid #efefef;
}

.twitter-feed-content p {
    color: #888;
}

.twitter-feed-content p a {
    color: var(--primary-color);
}

.twitter-feed-content p a:hover {
    text-decoration: underline;
}

/*------ twitter feed end ------*/
/*----- product tab menu start -----*/
.product-tab-menu {
    margin-top: -6px;
    margin-bottom: 35px;
}

.product-tab-menu ul li {
    margin-right: 35px;
}

@media only screen and (max-width: 479.98px) {
    .product-tab-menu ul li {
        margin-right: 15px;
    }
}

.product-tab-menu ul li:last-child {
    margin-right: 0;
}

.product-tab-menu ul li a {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    color: #777777;
}

.product-tab-menu ul li a:hover,
.product-tab-menu ul li a.active {
    color: #222222;
}

.tab-content .tab-pane.show.active .product-item {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

/*----- product tab menu start -----*/
/*----- brand logo style start -----*/
.brand-logo-carousel {
    padding: 30px 0;
    border-top: 1px solid #efefef;
    border-bottom: 1px solid #efefef;
}

.brand-item img {
    margin: auto;
}

/*----- brand logo style end -----*/
/*----- hot deals item start -----*/
.hot-deals-item {
    border: 1px solid var(--primary-color);
    border-radius: 5px;
}

.hot-deals-item .product-caption {
    padding: 20px;
}

@media only screen and (max-width: 767.98px) {
    .hot-deals-item .product-caption {
        padding: 20px 10px;
    }
}

.hot-deals-item .manufacturer-name {
    padding-bottom: 5px;
}

.hot-deals-item .product-name {
    font-size: 20px;
    padding-bottom: 30px;
}

.hot-deals-item .price-box {
    font-size: 21px;
    padding-top: 8px;
}

.progress {
    height: 15px;
    border-radius: 50px;
}

.progress-quantity {
    position: relative;
    margin-top: 52px;
}

.progress-bar {
    background-color: var(--primary-color) !important;
    width: 60%;
}

.progress-bar:nth-child(2) {
    width: 70%;
}

.progress-title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: calc(-100% - 8px);
    left: 0;
    width: 100%;
    line-height: 1;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.product-sold,
.product-available {
    font-size: 14px;
    color: #777777;
}

.product-sold span,
.product-available span {
    color: var(--primary-color);
    font-weight: 700;
}

.product-countdown {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 30px 0;
}

.product-countdown .single-countdown {
    height: 45px;
    width: 45px;
    text-align: center;
    line-height: 45px;
    margin-right: 10px;
    border-radius: 50%;
    background-color: #eaeaea;
}

.product-countdown .single-countdown__time {
    font-size: 16px;
    display: inline-block;
    color: #222222;
}

.product-countdown .single-countdown__text {
    font-size: 11px;
    display: block;
    color: #222222;
    line-height: 1;
    margin-top: 5px;
    text-transform: uppercase;
}

.product-countdown .single-countdown:last-child {
    margin-right: 0;
}

.product-countdown--style-two {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.product-details-des .product-countdown {
    margin: 20px 0 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

/*----- hot deals item start -----*/
/*------ Instagram Feed Area Start ------*/
.instagram-item {
    position: relative;
    z-index: 1;
}

.instagram-item:before {
    background-color: rgba(0, 0, 0, 0.4);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    height: 100%;
    width: 100%;
}

.instagram-item .instagram-hvr-content {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
}

.instagram-item .instagram-hvr-content span {
    color: #fff;
    margin-right: 20px;
}

.instagram-item .instagram-hvr-content span:last-child {
    margin-right: 0;
}

.instagram-item .instagram-hvr-content span i.fa {
    margin-right: 5px;
}

.instagram-item:hover:before {
    opacity: 1;
    visibility: visible;
}

.instagram-item:hover .instagram-hvr-content {
    opacity: 1;
    visibility: visible;
}

/*------ Instagram Feed Area End ------*/
.policy-list:not(:last-child) {
    margin-bottom: 40px;
}

@media only screen and (max-width: 767.98px) {
    .policy-list:not(:last-child) {
        margin-bottom: 25px;
    }
}

.policy-list a {
    color: var(--primary-color);
}

.policy-title {
    margin-bottom: 10px;
}

/*------- common style css end -------*/
/*------- product item start -------*/
.product-item {
    overflow: hidden;
}

/* .product-item .color-categories {
  padding: 13px 0 6px;
} */

.product-item:hover .product-thumb .sec-img,
.product-list-item:hover .product-thumb .sec-img {
    opacity: 1;
    visibility: visible;
}

.product-item:hover .product-thumb .pri-img,
.product-list-item:hover .product-thumb .pri-img {
    opacity: 0;
    visibility: hidden;
}

.product-item:hover .button-group a,
.product-list-item:hover .button-group a {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.product-item:hover .cart-hover,
.product-list-item:hover .cart-hover {
    bottom: 15px;
    opacity: 1;
    visibility: visible;
}

.product-thumb {
    position: relative;
}

.product-thumb img {
    width: 100%;
}

.product-thumb .sec-img {
    top: 0;
    left: 0;
    position: absolute;
    opacity: 0;
    visibility: hidden;
}

.product-caption {
    padding-top: 17px;
}

.product-caption .product-name {
    font-weight: 400;
    line-height: 1.2;
    /* padding-bottom: 8px; */
}

.product-caption .product-name a {
    color: #222222;
    text-transform: capitalize;
}

.product-caption .product-name a:hover {
    color: var(--primary-color);
}

.manufacturer-name {
    padding-bottom: 5px;
    line-height: 1;
}

.manufacturer-name a {
    font-size: 14px;
    line-height: 1;
    color: #777777;
    text-transform: capitalize;
}

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

.color-categories {
    line-height: 1;
}

.color-categories li {
    display: inline-block;
    padding: 1px;
    border-radius: 50%;
    border: 1px solid #efefef;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.color-categories li:hover {
    border-color: var(--primary-color);
}

.color-categories li a {
    height: 12px;
    width: 12px;
    display: block;
    border-radius: 50%;
}

.c-lightblue {
    background-color: #b0c4de;
}

.c-darktan {
    background-color: #aa9e78;
}

.c-grey {
    background-color: #808080;
}

.c-brown {
    background-color: #964b00;
}

.button-group {
    right: 15px;
    top: 15px;
    position: absolute;
}

.button-group a {
    width: 38px;
    height: 38px;
    display: block;
    font-size: 18px;
    line-height: 42px;
    color: #222222;
    text-align: center;
    border-radius: 50%;
    margin-bottom: 10px;
    background-color: #fff;
    -webkit-transform: scale(0.6);
    -ms-transform: scale(0.6);
    transform: scale(0.6);
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    opacity: 0;
    visibility: hidden;
}

.button-group a span {
    display: block;
}

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

.cart-hover {
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.product-label {
    background: var(--primary-color);
    border-radius: 20px;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    left: 20px;
    line-height: 1;
    min-width: 46px;
    padding: 4px 12px;
    position: absolute;
    text-align: center;
    text-transform: capitalize;
    z-index: 3;
}

.product-label span {
    display: block;
    margin-top: -1px;
}

.product-label.discount {
    background-color: #222222;
}

.product-label:nth-child(1) {
    top: 20px;
}

.product-label:nth-child(2) {
    top: 48px;
}

.ratings {
    color: #f9bd22;
    font-size: 14px;
}

.ratings span {
    margin-right: 3px;
}

.price-box {
    padding-top: 8px;
    font-size: 15px;
    line-height: 1;
}

.price-regular {
    color: var(--primary-color);
    font-weight: 500;
}

.price-old {
    color: #999;
    padding-left: 5px;
    font-weight: 300;
}

/*------- product item end -------*/
@media only screen and (max-width: 767.98px) {
    .button-group a {
        opacity: 1;
        visibility: visible;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    .cart-hover {
        bottom: 15px;
        opacity: 1;
        visibility: visible;
    }
}

/*-------- product list item start --------*/
.product-list-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

@media only screen and (max-width: 767.98px) {
    .product-list-item {
        display: block !important;
    }
}

.product-list-item .product-thumb {
    max-width: 30%;
    -webkit-flex-basis: 30%;
    -ms-flex-preferred-size: 30%;
    flex-basis: 30%;
    height: 100%;
}

@media only screen and (max-width: 767.98px) {
    .product-list-item .product-thumb {
        max-width: 100%;
        -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    }
}

.product-content-list {
    padding-left: 20px;
    max-width: 70%;
    -webkit-flex-basis: 70%;
    -ms-flex-preferred-size: 70%;
    flex-basis: 70%;
}

@media only screen and (max-width: 767.98px) {
    .product-content-list {
        padding-left: 0;
        max-width: 100%;
        -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        margin-top: 30px;
    }
}

.product-content-list .manufacturer-name {
    padding-bottom: 10px;
}

.product-content-list .ratings {
    padding-bottom: 10px;
}

/* .product-content-list .product-name {
  padding: 10px 0 12px;
} */

.product-content-list .product-name a {
    color: #222222;
    font-weight: 400;
}

.product-content-list .product-name a:hover {
    color: var(--primary-color);
}

.product-content-list p {
    padding-top: 15px;
    margin-top: 22px;
    border-top: 1px solid #efefef;
}

/*-------- product list item end --------*/
/*------ group list item start ------*/
@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767.98px) {
    .group-product-banner {
        margin-bottom: 80px;
    }
}

.group-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.group-item-thumb {
    max-width: 80px;
    -webkit-flex-basis: 80px;
    -ms-flex-preferred-size: 80px;
    flex-basis: 80px;
}

.group-item-desc {
    position: relative;
    padding-left: 10px;
    max-width: calc(100% - 80px);
    -webkit-flex-basis: calc(100% - 80px);
    -ms-flex-preferred-size: calc(100% - 80px);
    flex-basis: calc(100% - 80px);
}

.group-item-desc .group-product-name {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    text-transform: capitalize;
    padding-bottom: 18px;
}

.group-item-desc .group-product-name a {
    color: #222222;
}

.group-item-desc .group-product-name a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .categories-group-wrapper {
        margin-bottom: 78px;
    }
}

@media only screen and (max-width: 767.98px) {
    .categories-group-wrapper {
        margin-bottom: 60px;
    }
}

.row [class*="col-"]:last-child .categories-group-wrapper {
    margin-bottom: 0;
}

.group-list-item-wrapper .slick-slider .slick-slide>div {
    margin-bottom: 20px;
}

.group-list-item-wrapper .slick-slider .slick-slide>div:last-child {
    margin-bottom: 0;
}

/*------ group list item end ------*/
/*----- testimonial area start -----*/
.testimonial-thumb-wrapper {
    max-width: 290px;
    margin: auto;
}

.testimonial-thumb {
    cursor: pointer;
    -webkit-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    width: auto;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
}

.slick-slide.slick-current .testimonial-thumb {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.testimonial-content-wrapper {
    max-width: 910px;
    margin: auto;
    margin-top: 25px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .testimonial-content-wrapper {
        max-width: 750px;
    }
}

.testimonial-content {
    padding: 0 15px;
    text-align: center;
}

.testimonial-content p {
    font-size: 15px;
}

.testimonial-content .ratings {
    margin-top: 30px;
    margin-bottom: 5px;
}

.testimonial-author {
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
    text-transform: capitalize;
}

/*----- testimonial area end -----*/
/*----- breadcrumb style css start -----*/
.breadcrumb-area {
    background-color: #f5f5f5;
}

.breadcrumb-wrap {
    padding: 24px 0;
    text-align: center;
}

.breadcrumb-wrap .breadcrumb {
    background: transparent;
    margin-bottom: 0;
    padding: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.breadcrumb-wrap .breadcrumb .breadcrumb-item a {
    color: #222222;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    text-transform: capitalize;
}

.breadcrumb-wrap .breadcrumb .breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-wrap .breadcrumb .breadcrumb-item:before {
    color: #7e7e7e;
    content: "/";
    font-size: 12px;
    margin: 0 5px;
}

.breadcrumb-wrap .breadcrumb .breadcrumb-item:first-child::before {
    display: none;
}

.breadcrumb-wrap .breadcrumb .breadcrumb-item.active {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
}

/*----- breadcrumb style css end -----*/
/*----- shop Sidebar start -----*/
.sidebar-wrapper .sidebar-single:last-child {
    margin-bottom: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .sidebar-wrapper {
        margin-top: 80px;
    }
}

@media only screen and (max-width: 767.98px) {
    .sidebar-wrapper {
        margin-top: 62px;
    }
}

.sidebar-single {
    margin-bottom: 35px;
}

.sidebar-single .sidebar-title {
    position: relative;
    line-height: 1;
    margin-top: -3px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.sidebar-single .sidebar-title:before {
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
    content: " ";
    position: absolute;
    background-color: #efefef;
}

/*------ pricing filter slider start ------*/
.price-range-wrap {
    padding-top: 8px;
}

.price-range-wrap .price-range {
    border-radius: 0;
    margin-right: 13px;
    margin-bottom: 20px;
}

.price-range-wrap .price-range.ui-widget-content {
    border: none;
    background: #eeeeee;
    height: 6px;
    border-radius: 20px;
}

.price-range-wrap .price-range.ui-widget-content .ui-slider-range {
    background-color: var(--primary-color);
    border-radius: 0;
}

.price-range-wrap .price-range.ui-widget-content .ui-slider-handle {
    border: none;
    background-color: #fff;
    height: 12px;
    width: 12px;
    outline: none;
    cursor: ew-resize;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.6);
}

.price-range-wrap .price-range.ui-widget-content .ui-slider-handle:before {
    top: 50%;
    left: 50%;
    content: "";
    width: 6px;
    height: 6px;
    position: absolute;
    background-color: var(--primary-color);
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.price-range-wrap .range-slider {
    color: #222222;
    margin-top: 30px;
}

.price-range-wrap .range-slider .price-input label {
    color: #222222;
    margin-bottom: 0;
}

.price-range-wrap .range-slider .price-input input {
    color: #555555;
    border: none;
    outline: none;
    /* max-width: 80px; */
    pointer-events: none;
}

.price-range-wrap .range-slider button.filter-btn {
    border: none;
    color: #222222;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    text-transform: uppercase;
    padding: 4px 15px;
    border-radius: 3px;
    background-color: #ebebeb;
}

.price-range-wrap .range-slider button.filter-btn:hover {
    color: #fff;
    background-color: var(--primary-color);
}

/*------ pricing filter slider end ------*/
.categories-list li {
    color: #555555;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.categories-list li:last-child {
    margin-bottom: 0;
}

.categories-list li:hover {
    color: var(--primary-color);
}

/*------ shop categories area start ------*/
.shop-categories {
    margin-top: -4px;
}

.shop-categories li a {
    color: #555555;
    display: block;
    line-height: 1;
    padding: 10px 0;
    text-transform: capitalize;
}

.shop-categories li:first-child a {
    padding-top: 0;
}

.shop-categories li:last-child a {
    padding-bottom: 0;
}

.shop-categories li:hover a {
    color: var(--primary-color);
}

/*------ shop categories area end ------*/
/*----- shop Sidebar end -----*/
/*------ pagination area style start ------*/
.paginatoin-area {
    margin-top: 30px;
    padding: 20px;
    border: 1px solid #efefef;
}

.paginatoin-area .pagination-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.paginatoin-area .pagination-box li {
    margin-right: 5px;
    display: inline-block;
}

.paginatoin-area .pagination-box li:last-child {
    margin-right: 0;
}

.paginatoin-area .pagination-box li a {
    color: #222222;
    height: 36px;
    width: 36px;
    font-size: 14px;
    display: inline-block;
    text-align: center;
    line-height: 36px;
    background-color: #f5f5f5;
    border-radius: 50%;
}

.paginatoin-area .pagination-box li a i {
    font-size: 30px;
    line-height: 36px;
}

.paginatoin-area .pagination-box li a:hover {
    color: #fff;
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}

.paginatoin-area .pagination-box li.active a {
    color: #fff;
    background-color: var(--primary-color);
}

/*------ pagination area style end ------*/
/*------- blog item start -------*/
.blog-post-item:hover .blog-thumb img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 0.7;
}

.blog-thumb {
    overflow: hidden;
}

.blog-thumb img {
    width: 100%;
}

.blog-content {
    padding-top: 15px;
}

.blog-title {
    line-height: 1.3;
    text-transform: capitalize;
}

.blog-title a {
    color: #222222;
    display: block;
}

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

.blog-meta {
    padding-bottom: 15px;
}

.blog-meta p {
    font-size: 13px;
    line-height: 1;
    font-weight: 400;
    color: #777;
}

.blog-meta p a {
    color: var(--primary-color);
}

/*------- blog item end -------*/
/*------ blog list item start ------*/
.blog-list-inner .blog-post-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

@media only screen and (max-width: 767.98px) {
    .blog-list-inner .blog-post-item {
        display: block;
    }
}

.blog-list-inner .blog-post-item .blog-thumb {
    width: 40%;
}

@media only screen and (max-width: 767.98px) {
    .blog-list-inner .blog-post-item .blog-thumb {
        width: 100%;
    }
}

.blog-list-inner .blog-post-item .blog-content {
    padding-top: 0;
    padding-left: 20px;
    width: 60%;
}

@media only screen and (max-width: 767.98px) {
    .blog-list-inner .blog-post-item .blog-content {
        width: 100%;
        padding-left: 0;
        padding-top: 30px;
    }
}

.blog-list-inner .blog-post-item .blog-content .blog-title {
    margin-top: -5px;
}

.blog-list-inner .blog-post-item .blog-content .blog-meta {
    padding-top: 15px;
}

.blog-list-inner .blog-post-item .blog-content .blog-read-more {
    color: #222222;
    display: inline-block;
    margin-top: 10px;
}

.blog-list-inner .blog-post-item .blog-content .blog-read-more:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/*------ blog list item end ------*/
/*----- blog sidebar start -------*/
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .blog-sidebar-wrapper {
        margin-bottom: -5px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .blog-sidebar-wrapper {
        margin-top: 77px;
        margin-bottom: -5px;
    }
}

@media only screen and (max-width: 767.98px) {
    .blog-sidebar-wrapper {
        margin-top: 60px;
        margin-bottom: -5px;
    }
}

.blog-sidebar-wrapper .blog-sidebar:last-child {
    margin-bottom: 0;
}

.blog-sidebar {
    margin-bottom: 30px;
}

.blog-sidebar .title {
    line-height: 1;
    margin-top: -2px;
    margin-bottom: 40px;
    position: relative;
    text-transform: capitalize;
}

.blog-sidebar .title:before {
    width: 100%;
    height: 1px;
    bottom: -10px;
    left: 0;
    background-color: #efefef;
    content: "";
    position: absolute;
}

.blog-sidebar .search-field {
    width: calc(100% - 50px);
    border: 1px solid #ccc;
    padding: 0 10px;
    color: #555555;
    font-size: 14px;
    height: 50px;
    float: left;
    text-transform: capitalize;
}

.blog-sidebar .search-btn {
    width: 50px;
    height: 50px;
    margin-left: -4px;
    text-align: center;
    cursor: pointer;
    background-color: #f8f8f8;
    border: 1px solid #ccc;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.blog-sidebar .search-btn i {
    font-size: 20px;
    line-height: 50px;
    color: #222222;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.blog-sidebar .search-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.blog-sidebar .search-btn:hover i {
    color: #fff;
}

.blog-sidebar .blog-archive {
    margin-top: -10px;
}

.blog-sidebar .blog-archive li a {
    color: #555555;
    font-size: 14px;
    line-height: 1;
    text-transform: capitalize;
    padding: 13px 0;
    display: inline-block;
}

.blog-sidebar .blog-archive li a:hover {
    color: var(--primary-color);
}

.blog-sidebar .blog-archive li:last-child a {
    padding-bottom: 0;
}

.blog-sidebar .blog-archive li:first-child a {
    padding-top: 0;
}

.blog-sidebar .blog-tags li {
    display: inline-block;
    margin-bottom: 5px;
}

.blog-sidebar .blog-tags li a {
    color: #222222;
    font-size: 14px;
    border: 1px solid #ccc;
    padding: 6px 15px 4px;
    display: inline-block;
    text-transform: capitalize;
}

.blog-sidebar .blog-tags li a:hover {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.blog-category {
    margin-top: -10px;
}

.recent-post .recent-post-item:last-child {
    margin-bottom: 0;
}

.recent-post-item {
    margin-bottom: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.recent-post-item .product-thumb {
    max-width: 70px;
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 70px;
    -ms-flex: 1 0 70px;
    flex: 1 0 70px;
}

.recent-post-item .recent-post-description {
    padding-left: 10px;
}

.recent-post-item .recent-post-description h6 {
    font-size: 14px;
    padding-bottom: 5px;
    text-transform: capitalize;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .recent-post-item .recent-post-description h6 {
        font-size: 13px;
        padding-bottom: 5px;
    }
}

.recent-post-item .recent-post-description h6 a {
    color: #222222;
}

.recent-post-item .recent-post-description h6 a:hover {
    color: var(--primary-color);
}

.recent-post-item .recent-post-description p {
    text-transform: capitalize;
}

/*----- blog sidebar end -------*/
.entry-summary {
    padding-top: 25px;
}

blockquote {
    border-left: 5px solid var(--primary-color);
    margin: 25px 32px 25px 30px;
    background-color: #f8f8f8;
    padding: 15px;
}

.blog-details-post .blog-content .blog-title {
    padding-top: 10px;
}

@media only screen and (max-width: 767.98px) {
    .blog-details-post .blog-content .blog-title {
        font-size: 20px;
    }
}

@media only screen and (max-width: 479.98px) {
    .blog-details-post .blog-content .blog-title {
        font-size: 18px;
    }
}

.blog-details-post .blog-content .blog-meta {
    padding-top: 15px;
    padding-bottom: 0;
}

.blog-details-post:hover .blog-thumb img {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

/*------- blog main content wrapper start --------*/
.blog-post-item .tag-line {
    padding: 10px 0;
    margin-top: 20px;
    border-top: 1px solid #efefef;
    border-bottom: 1px solid #efefef;
}

.blog-post-item .tag-line h6 {
    font-size: 14px;
    display: inline-block;
    padding-right: 5px;
}

.blog-post-item .tag-line a {
    font-size: 13px;
    color: #222222;
}

.blog-post-item .tag-line a:hover {
    color: var(--primary-color);
}

.blog-share-link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767.98px) {
    .blog-share-link {
        padding-top: 15px;
    }
}

.blog-share-link h6 {
    font-size: 14px;
    padding-right: 15px;
}

.blog-share-link .blog-social-icon a {
    width: 36px;
    height: 36px;
    font-size: 15px;
    line-height: 36px;
    text-align: center;
    display: inline-block;
    color: #fff;
    border-radius: 50%;
    margin-right: 5px;
}

.blog-share-link .blog-social-icon a.facebook {
    background-color: #3b5999;
}

.blog-share-link .blog-social-icon a.twitter {
    background-color: #1da1f2;
}

.blog-share-link .blog-social-icon a.pinterest {
    background-color: #cb2028;
}

.blog-share-link .blog-social-icon a.google {
    background-color: #fe6d4c;
}

.blog-share-link .blog-social-icon a:hover.facebook {
    background-color: #2d4474;
}

.blog-share-link .blog-social-icon a:hover.twitter {
    background-color: #0c85d0;
}

.blog-share-link .blog-social-icon a:hover.pinterest {
    background-color: #9f191f;
}

.blog-share-link .blog-social-icon a:hover.google {
    background-color: #fe4419;
}

@media only screen and (max-width: 479.98px) {
    .blog-share-link .blog-social-icon a {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 13px;
        margin-right: 0;
    }
}

/*--- blog main content wrapper end ---*/
/*--- blog comment section start ---*/
.comment-section {
    margin-top: -3px;
}

.comment-section h5 {
    line-height: 1;
    padding-bottom: 15px;
}

.comment-section ul li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 10px 20px;
    margin-bottom: 30px;
    border: 1px solid #efefef;
}

.comment-section ul li:last-child {
    margin-bottom: 5px;
}

@media only screen and (max-width: 479.98px) {
    .comment-section ul li {
        display: block;
    }
}

.comment-section ul li .author-avatar {
    -webkit-flex-basis: 66px;
    -ms-flex-preferred-size: 66px;
    flex-basis: 66px;
    max-height: 62px;
    margin-right: 10px;
}

@media only screen and (max-width: 479.98px) {
    .comment-section ul li .author-avatar {
        -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 66px;
        height: 62px;
    }
}

.comment-section ul li.comment-children {
    margin-left: 40px;
}

@media only screen and (max-width: 479.98px) {
    .comment-section ul li.comment-children {
        margin-left: 20px;
    }
}

.comment-section ul li .comment-body {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
}

.comment-section ul li .comment-body h5 {
    font-size: 14px;
    padding-bottom: 5px;
}

.comment-section ul li .comment-body .comment-post-date {
    color: #555555;
    padding-bottom: 10px;
}

.comment-section ul li .comment-body .reply-btn {
    float: right;
}

.comment-section ul li .comment-body .reply-btn a {
    color: #222222;
    font-size: 12px;
    display: inline-block;
    padding: 4px 15px;
    border-radius: 20px;
    text-transform: capitalize;
    border: 1px solid #efefef;
}

.comment-section ul li .comment-body .reply-btn a:hover {
    color: #fff !important;
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}

/*--- blog comment section end ---*/
/*------ blog comment box start -----*/
.blog-comment-wrapper {
    margin-top: -10px;
}

.blog-comment-wrapper h3 {
    color: #222222;
    font-size: 18px;
    line-height: 1;
    font-weight: 500;
    padding-bottom: 15px;
    text-transform: uppercase;
    border-bottom: 1px solid #f0f0f0;
}

.blog-comment-wrapper p {
    margin-bottom: 10px;
    padding-top: 10px;
}

.blog-comment-wrapper .comment-post-box label {
    color: #222222;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
    text-transform: capitalize;
}

.blog-comment-wrapper .comment-post-box .coment-field {
    background: #f8f8f8;
    border: none;
    color: #555555;
    padding: 8px 10px;
    width: 100%;
}

@media only screen and (max-width: 767.98px) {
    .blog-comment-wrapper .comment-post-box .coment-field {
        margin-bottom: 20px;
    }
}

.blog-comment-wrapper .comment-post-box textarea {
    height: 130px;
    margin-bottom: 20px;
    padding: 10px;
    width: 100%;
    background: #f8f8f8;
    border: none;
}

.blog-comment-wrapper .comment-post-box .coment-btn {
    margin-top: 30px;
}

@media only screen and (max-width: 767.98px) {
    .blog-comment-wrapper .comment-post-box .coment-btn {
        margin-top: 10px;
    }
}

/*------- blog comment box end --------*/
/*------- about us area start -------*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-thumb {
        text-align: center;
    }
}

@media only screen and (max-width: 767.98px) {
    .about-thumb {
        text-align: center;
    }

    .about-thumb img {
        width: 100%;
    }
}

.about-title {
    font-size: 48px;
    color: #d1d1d1;
    display: block;
    line-height: 1.1;
    margin-bottom: 38px;
}

@media only screen and (max-width: 767.98px) {
    .about-title {
        font-size: 26px;
        color: #222222;
        margin-bottom: 25px;
    }
}

.about-sub-title {
    line-height: 1.5;
    padding-bottom: 20px;
}

@media only screen and (max-width: 767.98px) {
    .about-sub-title {
        font-size: 16px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767.98px) {
    .about-content {
        text-align: center;
        padding: 52px 30px 0;
        margin-bottom: -6px;
    }
}

@media only screen and (max-width: 479.98px) {
    .about-content {
        padding: 52px 0 0 0;
    }
}

.about-content p {
    font-size: 15px;
    line-height: 1.8;
    padding-bottom: 12px;
}

.about-content p:last-child {
    padding-bottom: 0;
}

/*------- about us area end -------*/
/*-------- choosing area start --------*/
.choosing-area {
    margin-bottom: -4px;
}

@media only screen and (max-width: 767.98px) {
    .single-choose-item {
        padding: 0 20px;
    }
}

.single-choose-item i {
    color: #969ca7;
    font-size: 44px;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.single-choose-item h4 {
    color: #222222;
    font-size: 18px;
    font-weight: 500;
    padding: 15px 0 10px;
    text-transform: capitalize;
}

.single-choose-item:hover i {
    color: var(--primary-color);
}

/*-------- choosing area end --------*/
/*------- team area start -------*/
.team-member {
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.team-member .team-thumb {
    position: relative;
    text-align: center;
    overflow: hidden;
}

.team-member .team-thumb img {
    width: 100%;
}

.team-member .team-thumb .team-social {
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    position: absolute;
    background-color: #fff;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    opacity: 0;
    visibility: hidden;
}

.team-member .team-thumb .team-social a {
    color: #222222;
    width: 30px;
    height: 30px;
    font-size: 14px;
    display: inline-block;
    text-align: center;
    line-height: 30px;
    background-color: #f5f5f5;
    border-radius: 5px;
    margin-right: 5px;
}

.team-member .team-thumb .team-social a:hover {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.team-member .team-content .team-member-name {
    padding-top: 15px;
}

.team-member .team-content p {
    font-size: 14px;
    line-height: 1;
    padding-top: 5px;
    color: var(--primary-color);
}

.team-member:hover .team-social {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.team-member:hover .team-thumb img {
    opacity: 0.5;
}

/*------- team area end -------*/
/*------ shop page style start ------*/
.shop-top-bar {
    margin-bottom: 30px;
}

.top-bar-left {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 767.98px) {
    .top-bar-left {
        padding-top: 15px;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

.top-bar-left .product-view-mode {
    margin-right: 60px;
}

@media only screen and (max-width: 479.98px) {
    .top-bar-left .product-view-mode {
        margin-right: 0;
    }
}

.top-bar-left .product-view-mode a {
    color: #b6b6b6;
    display: inline-block;
    text-align: center;
    margin-right: 10px;
}

.top-bar-left .product-view-mode a i {
    font-size: 20px;
    margin-top: 6px;
}

.top-bar-left .product-view-mode a:hover {
    color: var(--primary-color);
}

.top-bar-left .product-view-mode a.active {
    color: var(--primary-color);
}

.top-bar-left .product-amount p {
    color: #777;
    font-size: 14px;
    text-transform: capitalize;
}

.top-bar-right {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

@media only screen and (max-width: 767.98px) {
    .top-bar-right {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.top-bar-right .product-short {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.top-bar-right .product-short p {
    margin-right: 10px;
}

.nice-select {
    height: 36px;
    line-height: 34px;
    width: 200px;
    padding: 0 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .nice-select {
        width: 170px;
    }
}

@media only screen and (max-width: 479.98px) {
    .nice-select {
        width: 190px;
    }
}

.nice-select.open {
    border-color: var(--primary-color);
}

.nice-select .list {
    right: 0;
    left: auto;
    width: 100%;
}

.nice-select .option {
    font-size: 13px;
    line-height: 34px;
    min-height: 34px;
    text-transform: capitalize;
}

.nice-select:after {
    height: 6px;
    width: 6px;
    border-bottom: 1px solid #999;
    border-right: 1px solid #999;
}

/*----- shop main wrapper end -----*/
/*----- product change view start -----*/
.shop-product-wrap.list-view .product-item {
    display: none;
}

.shop-product-wrap.grid-view .product-item {
    display: block;
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    padding: 0;
}

.shop-product-wrap.grid-view .product-list-item {
    display: none !important;
}

.shop-product-wrap.list-view .product-list-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

.shop-product-wrap.row.list-view .col-md-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.shop-product-wrap [class*="col-"] {
    margin-bottom: 30px;
}

/*----- product change view end -----*/
/*------ shop page style start ------*/
/*----- product details slider start ----*/
.pro-large-img {
    position: relative;
    cursor: pointer;
}

.pro-large-img img {
    width: 100%;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}

.pro-nav-thumb {
    cursor: pointer;
}

.pro-nav {
    margin-top: 20px;
}

/*----- product details slider end ----*/
/*----- product details content start ----*/
.option-title {
    line-height: 1;
    font-weight: 400;
    margin-right: 10px;
    text-transform: capitalize;
}

.product-details-des .product-name {
    font-weight: 400;
    padding-top: 5px;
    padding-bottom: 5px;
}

@media only screen and (max-width: 575.98px) {
    .product-details-des .product-name {
        font-size: 17px;
    }
}

.product-details-des .pro-review {
    padding-left: 10px;
}

.product-details-des .pro-review span {
    font-size: 14px;
    line-height: 1;
    color: #555555;
}

.product-details-des .price-box {
    padding-top: 10px;
    padding-bottom: 10px;
}

.product-details-des .customer-rev {
    padding-top: 10px;
}

.product-details-des .customer-rev a {
    color: #222222;
    font-size: 13px;
    text-transform: capitalize;
}

.product-details-des .customer-rev a:hover {
    color: var(--primary-color);
}

.product-details-des .offer-text {
    font-weight: 400;
}

.product-details-des .quantity-cart-box {
    margin-bottom: 20px;
}

.product-details-des .quantity {
    margin-right: 15px;
}

.product-details-des .quantity .pro-qty {
    width: 90px;
    height: 40px;
    border: 1px solid #ddd;
    padding: 0 15px;
    border-radius: 40px;
    float: left;
}

.product-details-des .quantity .pro-qty .qtybtn {
    width: 15px;
    display: block;
    float: left;
    line-height: 40px;
    cursor: pointer;
    text-align: center;
    font-size: 16px;
    color: #555555;
}

.product-details-des .quantity .pro-qty input {
    width: 28px;
    float: left;
    border: none;
    height: 40px;
    line-height: 40px;
    padding: 0;
    text-align: center;
    background-color: transparent;
}

.product-details-des .pro-desc {
    margin-bottom: 25px;
    white-space: pre-wrap;
    line-height: 1.8;
    color: #555;
    font-size: 15px;
}

.product-details-des .pro-desc p {
    margin-bottom: 15px;
}

.product-details-des .pro-desc ul,
.product-details-des .pro-desc ol {
    padding-left: 20px;
    margin-bottom: 15px;
}

.product-details-des .pro-desc b,
.product-details-des .pro-desc strong,
.tab-one b,
.tab-one strong {
    font-weight: 700 !important;
    color: #222;
}

.tab-one {
    white-space: pre-wrap;
    line-height: 1.8;
    color: #555;
    font-size: 15px;
    padding-top: 10px;
}

.tab-one p {
    margin-bottom: 15px;
}

.product-details-des .availability {
    margin-bottom: 15px;
}

.product-details-des .availability i {
    color: #81ca33;
}

.product-details-des .availability span {
    color: #555555;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    padding-left: 3px;
    text-transform: uppercase;
}

.product-details-des .useful-links {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
}

.product-details-des .useful-links a {
    font-size: 14px;
    font-weight: 500;
    color: #222222;
    margin-right: 20px;
    text-transform: capitalize;
}

.product-details-des .useful-links a:hover {
    color: var(--primary-color);
}

.product-details-des .useful-links a i {
    font-size: 20px;
    padding-right: 5px;
    vertical-align: middle;
}

.product-details-des .like-icon {
    padding-top: 20px;
    border-top: 1px solid #efefef;
}

.product-details-des .like-icon a {
    color: #fff;
    text-align: center;
    display: inline-block;
    font-size: 12px;
    line-height: 22px;
    padding: 0 8px;
    margin-right: 6px;
    border-radius: 3px;
    text-transform: capitalize;
}

@media only screen and (max-width: 479.98px) {
    .product-details-des .like-icon a {
        margin-right: 0;
    }
}

.product-details-des .like-icon a i {
    padding-right: 5px;
}

.product-details-des .like-icon a.facebook {
    background-color: #3b5999;
}

.product-details-des .like-icon a.twitter {
    background-color: #1da1f2;
}

.product-details-des .like-icon a.pinterest {
    background-color: #cb2028;
}

.product-details-des .like-icon a.google {
    background-color: #fe6d4c;
}

.product-details-des .like-icon a:hover.facebook {
    background-color: #2d4474;
}

.product-details-des .like-icon a:hover.twitter {
    background-color: #0c85d0;
}

.product-details-des .like-icon a:hover.pinterest {
    background-color: #9f191f;
}

.product-details-des .like-icon a:hover.google {
    background-color: #fe4419;
}

.product-details-des .share-icon {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.product-details-des .share-icon a {
    color: #555555;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    padding: 0 8px;
    margin-right: 5px;
}

@media only screen and (max-width: 479.98px) {
    .product-details-des .share-icon a {
        padding: 0 5px;
    }
}

.product-details-des .share-icon a:hover {
    color: var(--primary-color);
}

.product-details-des .color-option {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 18px;
}

.product-details-des .pro-size {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 18px;
}

.product-details-des .pro-size .nice-select {
    width: 100px;
    height: 40px;
    line-height: 40px;
    border-radius: 40px;
}

.product-details-des .group-product-table {
    margin-top: 30px;
    margin-bottom: 20px;
    display: block;
}

.product-details-des .group-product-table.table-bordered {
    border: none;
}

.product-details-des .group-product-table td {
    width: 33.33%;
    padding: 8px;
    vertical-align: middle;
}

.product-details-des .group-product-table td a {
    color: #555555;
    text-transform: capitalize;
}

.product-details-des .group-product-table td a:hover {
    color: var(--primary-color);
}

.product-details-des .group-product-table td .pro-qty {
    width: 90px;
    height: 35px;
    border: 1px solid #ddd;
    padding: 0 15px;
    float: left;
}

.product-details-des .group-product-table td .pro-qty .qtybtn {
    width: 15px;
    display: block;
    float: left;
    line-height: 31px;
    cursor: pointer;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: #555555;
}

.product-details-des .group-product-table td .pro-qty input {
    width: 28px;
    float: left;
    border: none;
    height: 33px;
    line-height: 33px;
    padding: 0;
    text-align: center;
    background-color: transparent;
}

/*------ countdown style end ------*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .product-details-des {
        margin-top: 76px;
    }
}

@media only screen and (max-width: 767.98px) {
    .product-details-des {
        margin-top: 58px;
    }
}

.product-details-des.quick-details {
    margin-top: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .product-details-des.quick-details {
        margin-top: 0;
    }
}

@media only screen and (max-width: 767.98px) {
    .product-details-des.quick-details {
        margin-top: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .product-details-des.quick-details .product-name {
        font-size: 20px;
    }
}

@media only screen and (max-width: 767.98px) {
    .product-details-des.quick-details .product-name {
        font-size: 18px;
    }
}

.product-details-des.box-layout {
    padding-top: 47px;
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767.98px) {
    .product-details-des.box-layout {
        margin-top: 0;
    }
}

.product-details-des.box-layout p {
    max-width: 80%;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767.98px) {
    .product-details-des.box-layout p {
        max-width: 100%;
        padding: 0 15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767.98px) {
    .product-details-des.sidebar-sticky {
        margin-top: 0;
    }
}

.product-details-des.quick-des p {
    padding-top: 0;
}

/*----- product details content end ----*/
/*----- reviews area start -----*/
.product-review-info .nav.review-tab li a {
    color: #fff;
    display: block;
    font-size: 16px;
    line-height: 1;
    text-transform: capitalize;
    padding: 8px 10px;
    border: 1px solid var(--primary-color);
    border-bottom: none;
    background-color: var(--primary-color);
}

.product-review-info .nav.review-tab li a:hover,
.product-review-info .nav.review-tab li a.active {
    color: #555555;
    background-color: #fff;
    border-color: #ddd;
}

@media only screen and (max-width: 479.98px) {
    .product-review-info .nav.review-tab li a {
        font-size: 14px;
    }
}

.product-review-info .tab-content.reviews-tab {
    border: 1px solid #efefef;
    padding: 15px 20px 20px;
}

.product-review-info .tab-content.reviews-tab .table {
    margin-bottom: 0;
}

.product-review-info .tab-content.reviews-tab .table tr {
    text-transform: capitalize;
}

.product-review-info .tab-content .review-description {
    padding-top: 25px;
    padding-bottom: 25px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .product-review-info .tab-content .review-description {
        padding: 15px 0;
    }
}

@media only screen and (max-width: 767.98px) {
    .product-review-info .tab-content .review-description {
        display: block;
    }
}

.product-review-info .tab-content .review-description .tab-thumb {
    -webkit-flex-basis: 300px;
    -ms-flex-preferred-size: 300px;
    flex-basis: 300px;
}

@media only screen and (max-width: 767.98px) {
    .product-review-info .tab-content .review-description .tab-thumb {
        -webkit-flex-basis: 220px;
        -ms-flex-preferred-size: 220px;
        flex-basis: 220px;
    }
}

.product-review-info .tab-content .review-description .tab-des {
    padding-left: 40px;
    -webkit-flex-basis: calc(100% - 300px);
    -ms-flex-preferred-size: calc(100% - 300px);
    flex-basis: calc(100% - 300px);
}

@media only screen and (max-width: 767.98px) {
    .product-review-info .tab-content .review-description .tab-des {
        padding-left: 14px;
        -webkit-flex-basis: calc(100% - 220px);
        -ms-flex-preferred-size: calc(100% - 220px);
        flex-basis: calc(100% - 220px);
    }
}

.product-review-info .tab-content .review-description .tab-des h3 {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 22px;
    font-weight: 700;
    text-transform: capitalize;
    padding-bottom: 10px;
}

.product-review-info .tab-content .review-description .tab-des ul li {
    font-size: 13px;
    list-style: inherit;
}

.review-form h5 {
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 20px;
    text-transform: capitalize;
}

@media only screen and (max-width: 575.98px) {
    .review-form h5 {
        font-size: 16px;
    }
}

.total-reviews {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 50px;
}

@media only screen and (max-width: 479.98px) {
    .total-reviews {
        display: block;
    }
}

.total-reviews .rev-avatar {
    -webkit-flex-basis: 60px;
    -ms-flex-preferred-size: 60px;
    flex-basis: 60px;
    max-height: 60px;
}

@media only screen and (max-width: 479.98px) {
    .total-reviews .rev-avatar {
        margin-bottom: 20px;
    }
}

.total-reviews .review-box {
    margin-left: 10px;
    border: 1px solid #efefef;
    padding: 10px;
    -webkit-flex-basis: calc(100% - 70px);
    -ms-flex-preferred-size: calc(100% - 70px);
    flex-basis: calc(100% - 70px);
}

@media only screen and (max-width: 479.98px) {
    .total-reviews .review-box {
        margin-left: 0;
    }
}

.total-reviews .review-box .post-author {
    padding-bottom: 10px;
}

.total-reviews .review-box .post-author p {
    font-size: 12px;
    font-style: italic;
    text-transform: capitalize;
}

.total-reviews .review-box .post-author p span {
    font-size: 13px;
}

.total-reviews .review-box p {
    font-size: 14px;
    font-style: italic;
}

/*----- reviews area end -----*/
/* Checkout Login Coupon Accordion Start */
.checkout-page-wrapper {
    margin-bottom: -8px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767.98px) {
    .checkout-page-wrapper {
        margin-bottom: 0;
    }
}

.checkoutaccordion {
    margin-bottom: 46px;
}

.checkoutaccordion h6 {
    background-color: #f7f7f7;
    border-top: 3px solid var(--primary-color);
    font-size: 14px;
    padding: 15px 20px;
    position: relative;
    text-transform: capitalize;
}

.checkoutaccordion h6 span {
    color: var(--primary-color);
    cursor: pointer;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    margin-left: 10px;
}

@media only screen and (max-width: 479.98px) {
    .checkoutaccordion h6 span {
        display: block;
        padding-top: 5px;
        margin-left: 0;
    }
}

.checkoutaccordion h6 span:hover {
    color: #222222;
}

@media only screen and (max-width: 479.98px) {
    .checkoutaccordion h6 {
        font-size: 14px;
    }
}

.checkoutaccordion .card {
    border: none;
    padding: 0;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    margin-bottom: 30px;
}

.checkoutaccordion .card:last-child {
    margin-bottom: 0;
}

.checkoutaccordion .card .card-body {
    border: 1px solid #ccc;
    font-size: 14px;
    padding: 20px;
}

.checkoutaccordion .card .card-body .cart-update-option {
    border: none;
    padding: 0;
}

.checkoutaccordion .card .card-body .cart-update-option .apply-coupon-wrapper input {
    padding: 12px 10px;
    background-color: #f7f7f7;
    border: 1px solid #ccc;
    margin-right: 15px;
}

@media only screen and (max-width: 479.98px) {
    .checkoutaccordion .card .card-body .cart-update-option .apply-coupon-wrapper input {
        margin-bottom: 15px;
    }
}

.checkout-box-wrap .custom-control {
    padding-left: 0;
    margin-left: 1.5rem;
}

.checkout-billing-details-wrap .billing-form-wrap {
    margin-top: -20px;
}

.checkout-title {
    border-bottom: 1px solid #efefef;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

@media only screen and (max-width: 767.98px) {
    .checkout-title {
        margin-bottom: 26px;
    }
}

.forget-pwd {
    color: var(--primary-color);
    font-size: 12px;
    margin-top: -6px;
}

.single-form-row {
    margin-top: 15px;
    display: none;
}

.single-form-row p {
    margin: 0;
    font-size: 14px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .order-summary-details {
        margin-top: 70px;
    }
}

@media only screen and (max-width: 767.98px) {
    .order-summary-details {
        margin-top: 52px;
    }
}

.order-summary-table {
    background-color: #f7f7f7;
    margin-top: 34px;
}

.order-summary-table .table,
.order-summary-table table {
    color: #222222;
    margin-bottom: 0;
    font-size: 15px;
    white-space: nowrap;
}

.order-summary-table .table tr td,
.order-summary-table .table tr th,
.order-summary-table table tr td,
.order-summary-table table tr th {
    font-weight: 400;
    vertical-align: middle;
    padding: 15px 10px;
    border-width: 1px;
}

.order-summary-table .table tr td a,
.order-summary-table .table tr th a,
.order-summary-table table tr td a,
.order-summary-table table tr th a {
    color: #222222;
    font-weight: 400;
}

.order-summary-table .table tr td strong,
.order-summary-table .table tr th strong,
.order-summary-table table tr td strong,
.order-summary-table table tr th strong {
    font-weight: 400;
}

.order-summary-table .shipping-type {
    text-align: left;
}

.order-summary-table .shipping-type li {
    margin-bottom: 5px;
}

.order-summary-table .shipping-type li:last-child {
    margin-bottom: 0;
}

.order-summary-table .table> :not(:last-child)> :last-child>* {
    border-bottom-color: inherit;
}

.order-payment-method {
    background-color: #f7f7f7;
    padding: 40px 20px 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767.98px) {
    .order-payment-method {
        padding: 32px 20px 36px;
    }
}

.single-payment-method {
    margin-bottom: 20px;
}

.single-payment-method:last-child {
    margin-bottom: 0;
}

.single-payment-method:first-child .payment-method-details {
    display: block;
}

.single-payment-method label,
.single-payment-method .custom-control-label {
    font-weight: 700;
}

.single-payment-method .paypal-card {
    max-width: 150px;
    height: 50px;
    margin-top: 10px;
    display: block;
}

.single-payment-method .payment-method-details {
    background-color: #f1f1f1;
    color: #222222;
    font-weight: 400;
    font-size: 13px;
    padding: 10px;
    position: relative;
    margin-top: 20px;
    display: none;
}

.single-payment-method .payment-method-details:after {
    content: "";
    position: absolute;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #f1f1f1;
    bottom: 100%;
}

.single-payment-method .payment-method-details * {
    margin: 0;
}

.summary-footer-area .btn-brand {
    margin-top: 40px;
}

/*------- input box style css start -------*/
.single-input-item {
    margin-top: 20px;
}

.single-input-item label {
    color: #222222;
    text-transform: capitalize;
    font-size: 14px;
}

.single-input-item label.required:after {
    content: "*";
    color: red;
    font-size: 14px;
    margin-left: 3px;
    margin-top: 5px;
}

.single-input-item input,
.single-input-item textarea {
    color: #555555;
    border: 1px solid #ccc;
    padding: 12px 10px;
    width: 100%;
    font-size: 14px;
    background: #f7f7f7;
}

.single-input-item input:active,
.single-input-item input:focus,
.single-input-item textarea:active,
.single-input-item textarea:focus {
    border-color: var(--primary-color);
    background-color: #fff;
}

.single-input-item .nice-select {
    width: 100%;
    border-radius: 0;
    height: 48px;
    border-color: #ccc;
    background-color: #f7f7f7;
}

.single-input-item .nice-select .current {
    color: #555555;
}

.single-input-item .nice-select .list {
    max-height: 200px;
    overflow: auto;
    width: 100%;
}

.password-field {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #888;
    z-index: 10;
    font-size: 16px;
    transition: color 0.3s;
}

.password-toggle:hover {
    color: var(--primary-color);
}

.single-input-item input[type="password"],
.single-input-item input[type="text"] {
    padding-right: 45px;
}

/*------- input box style css end -------*/
/*--------- Cart Page Wrapper Start ---------*/
.cart-table .table {
    margin: 0;
    white-space: nowrap;
}

.cart-table .table thead {
    background-color: var(--primary-color);
}

.cart-table .table thead tr th {
    border-color: var(--primary-color);
    border-bottom: 0 solid transparent;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 15px 20px;
    text-align: center;
    text-transform: capitalize;
}

.cart-table .table tbody tr td {
    border-color: #ccc;
    text-align: center;
    padding: 10px 20px;
    vertical-align: middle;
    font-weight: 500;
    color: #222222;
}

.cart-table .table tbody tr td a {
    color: #222222;
    font-weight: 400;
    text-transform: capitalize;
}

.cart-table .table tbody tr td a:hover {
    color: var(--primary-color);
}

.cart-table .table tbody tr td a.btn {
    color: #fff;
}

.cart-table .table tbody tr td a.btn:hover {
    color: #fff;
}

.cart-table .table tbody tr td a.check-btn {
    color: #fff;
}

.cart-table .table tr .pro-thumbnail,
.cart-table .table tr .pro-price,
.cart-table .table tr .pro-quantity,
.cart-table .table tr .pro-subtotal,
.cart-table .table tr .pro-remove {
    width: 140px;
}

.cart-table .table tr .pro-qty {
    width: 90px;
    height: 40px;
    border: 1px solid #ddd;
    padding: 0 15px;
    float: left;
}

.cart-table .table tr .pro-qty .qtybtn {
    width: 15px;
    display: block;
    float: left;
    line-height: 38px;
    cursor: pointer;
    text-align: center;
    font-size: 22px;
    font-weight: 400;
    color: #555555;
}

.cart-table .table tr .pro-qty input {
    width: 28px;
    float: left;
    border: none;
    height: 40px;
    line-height: 34px;
    padding: 0;
    text-align: center;
    background-color: transparent;
}

.cart-update-option {
    border: 1px solid #ccc;
    margin-top: 15px;
    padding: 15px 20px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media only screen and (min-width: 1200px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .cart-update-option {
        margin-top: 0;
        border-top: 0 solid transparent;
    }
}

.cart-update-option .apply-coupon-wrapper {
    width: 55%;
}

@media only screen and (max-width: 767.98px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .cart-update-option .apply-coupon-wrapper {
        width: auto;
    }
}

.cart-update-option .apply-coupon-wrapper form {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    white-space: nowrap;
}

.cart-update-option .apply-coupon-wrapper form input {
    border: 1px solid #ccc;
    font-size: 14px;
    padding: 9px 10px;
    outline: none;
    margin-right: 15px;
    width: 100%;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.cart-update-option .apply-coupon-wrapper form input:focus,
.cart-update-option .apply-coupon-wrapper form input:active {
    border-color: var(--primary-color);
}

@media only screen and (max-width: 767.98px) {
    .cart-update-option .apply-coupon-wrapper button {
        display: block;
        width: 100%;
        margin-top: 15px;
        border-radius: 0;
    }
}

@media only screen and (max-width: 767.98px) {
    .cart-update-option .cart-update {
        margin-top: 15px;
    }
}

@media only screen and (max-width: 767.98px) {
    .cart-update-option .cart-update .btn {
        width: 100%;
    }
}

.cart-calculator-wrapper {
    margin-top: 30px;
    background-color: #f8f8f8;
}

.cart-calculator-wrapper h6 {
    padding: 20px 15px 18px;
    margin-bottom: 0;
}

.cart-calculator-wrapper .cart-calculate-items {
    font-weight: 500;
}

.cart-calculator-wrapper .cart-calculate-items .table {
    margin-bottom: 0;
}

.cart-calculator-wrapper .cart-calculate-items .table tr td {
    color: #222222;
    padding: 15px 20px;
}

.cart-calculator-wrapper .cart-calculate-items .table tr td:nth-child(2) {
    color: #222222;
    text-align: right;
}

.cart-calculator-wrapper .cart-calculate-items .table tr td.total-amount {
    color: var(--primary-color);
    font-weight: 700;
}

.cart-calculator-wrapper a {
    border-radius: 0;
    text-align: center;
}

/*--------- Cart Page Wrapper end ---------*/
/*------ Start Compare Page Wrapper -----*/
.compare-table .table tbody tr td {
    text-align: center;
    padding: 20px 20px;
    vertical-align: middle;
    border-color: #ccc;
}

.compare-table .table tbody tr td.first-column {
    min-width: 175px;
    font-size: 15px;
    font-weight: 500;
    color: #222222;
    margin: 0;
}

@media only screen and (max-width: 767.98px) {
    .compare-table .table tbody tr td.first-column {
        min-width: 115px;
    }
}

.compare-table .table tbody tr td.product-image-title {
    min-width: 310px;
    vertical-align: bottom;
}

@media only screen and (max-width: 767.98px) {
    .compare-table .table tbody tr td.product-image-title {
        min-width: 220px;
    }
}

.compare-table .table tbody tr td.product-image-title .image {
    clear: both;
    width: 100%;
    margin-bottom: 15px;
    display: block;
}

.compare-table .table tbody tr td.product-image-title .category {
    float: left;
    clear: both;
    color: var(--primary-color);
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.compare-table .table tbody tr td.product-image-title .title {
    float: left;
    clear: both;
    font-size: 16px;
    color: #222222;
    font-weight: 500;
    text-transform: capitalize;
}

.compare-table .table tbody tr td.product-image-title .title:hover {
    color: var(--primary-color);
}

.compare-table .table tbody tr td.pro-desc p {
    text-align: left;
    margin: 0;
}

.compare-table .table tbody tr td.pro-price,
.compare-table .table tbody tr td.pro-color,
.compare-table .table tbody tr td.pro-stock {
    font-size: 14px;
    font-weight: 400;
}

.compare-table .table tbody tr td.pro-remove button {
    border: none;
    background-color: transparent;
    padding: 0;
    cursor: pointer;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.compare-table .table tbody tr td.pro-remove button:hover {
    color: #e74c3c;
}

.compare-table .table tbody tr td.pro-remove button i {
    font-size: 20px;
}

.compare-table .table tbody tr td.pro-ratting i {
    color: var(--primary-color);
}

/*------ end Compare Page Wrapper -----*/
/*-------- Start My Account Page Wrapper --------*/
.myaccount-tab-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.myaccount-tab-menu a {
    border: 1px solid #efefef;
    border-bottom: none;
    color: #222222;
    font-weight: 400;
    font-size: 15px;
    display: block;
    padding: 10px 15px;
    text-transform: capitalize;
}

.myaccount-tab-menu a:last-child {
    border-bottom: 1px solid #efefef;
}

.myaccount-tab-menu a:hover,
.myaccount-tab-menu a.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.myaccount-tab-menu a i.fa {
    font-size: 14px;
    text-align: center;
    width: 25px;
}

@media only screen and (max-width: 767.98px) {
    #myaccountContent {
        margin-top: 30px;
    }
}

.myaccount-content {
    border: 1px solid #eeeeee;
    padding: 20px;
}

@media only screen and (max-width: 575.98px) {
    .myaccount-content {
        padding: 20px 15px;
    }
}

.myaccount-content form {
    margin-top: -20px;
}

.myaccount-content h5 {
    border-bottom: 1px dashed #ccc;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

.myaccount-content .welcome a {
    color: #222222;
}

.myaccount-content .welcome a:hover {
    color: var(--primary-color);
}

.myaccount-content .welcome strong {
    font-weight: 500;
    color: var(--primary-color);
}

.myaccount-content fieldset {
    margin-top: 20px;
}

.myaccount-content fieldset legend {
    color: #222222;
    font-size: 20px;
    margin-top: 20px;
    font-weight: 400;
    border-bottom: 1px dashed #ccc;
}

.myaccount-table {
    white-space: nowrap;
    font-size: 14px;
}

.myaccount-table table th,
.myaccount-table .table th {
    color: #222222;
    padding: 10px;
    font-weight: 400;
    background-color: #f8f8f8;
    border-color: #ccc;
    border-bottom: 0;
}

.myaccount-table table td,
.myaccount-table .table td {
    padding: 10px;
    vertical-align: middle;
    border-color: #ccc;
}

.saved-message {
    background-color: #f4f5f7;
    border-top: 3px solid var(--primary-color);
    border-radius: 5px 5px 0 0;
    font-weight: 400;
    font-size: 15px;
    color: #555555;
    padding: 20px;
}

/*-------- Start My Account Page Wrapper --------*/
/*------ Start Login & Register Page ------*/
.login-reg-form-wrap {
    background-color: #fff;
    -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
    padding: 23px 30px 30px;
}

@media only screen and (max-width: 575.98px) {
    .login-reg-form-wrap {
        padding: 23px 15px 30px;
    }
}

.login-reg-form-wrap form .create-account {
    margin-top: 25px;
}

.login-reg-form-wrap .login-reg-form-meta a {
    color: var(--primary-color);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .sign-up-form {
        margin-top: 80px;
    }
}

@media only screen and (max-width: 767.98px) {
    .sign-up-form {
        margin-top: 62px;
    }
}

/*------ end Login & Register Page ------*/
/*----- Google map area start -----*/
#google-map {
    height: 500px;
    width: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    #google-map {
        height: 400px;
    }
}

@media only screen and (max-width: 767.98px) {
    #google-map {
        height: 350px;
    }
}

/*----- Google map area end -----*/
/*------ contact form area start -------*/
.contact-area {
    margin-top: -4px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767.98px) {
    .contact-area {
        margin-bottom: -5px;
    }
}

.contact-message h2 {
    color: #222222;
    font-size: 22px;
    font-weight: 500;
    line-height: 1;
    padding-bottom: 28px;
    text-transform: capitalize;
}

@media only screen and (max-width: 575.98px) {
    .contact-message h2 {
        font-size: 18px;
        padding-bottom: 15px;
    }
}

.contact-message form input,
.contact-message form textarea {
    width: 100%;
    border: none;
    padding: 10px 10px;
    border-bottom: 3px solid transparent;
    background-color: #f7f7f7;
    margin-bottom: 30px;
}

.contact-message form textarea {
    height: 150px;
}

/*------ contact form area start -------*/
/*------ contact info area start -------*/
.contact-info {
    height: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .contact-info {
        margin-top: 77px;
    }
}

@media only screen and (max-width: 767.98px) {
    .contact-info {
        margin-top: 60px;
    }
}

.contact-info p {
    padding-bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .contact-info p {
        padding-bottom: 10px;
    }
}

.contact-info ul li {
    border-bottom: 1px solid #efefef;
    padding-bottom: 15px;
    margin-bottom: 15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 479.98px) {
    .contact-info ul li {
        -webkit-box-align: baseline;
        -webkit-align-items: baseline;
        -ms-flex-align: baseline;
        align-items: baseline;
    }
}

.contact-info ul li:last-child {
    border-bottom: none;
}

.contact-info ul li i {
    font-size: 18px;
    padding-right: 10px;
}

.contact-info .working-time h6 {
    padding-bottom: 5px;
}

.contact-info .working-time p {
    padding-bottom: 0;
}

.contact-info .working-time p span {
    color: #222222;
    padding-right: 10px;
}

.contact-title {
    line-height: 1;
    padding-bottom: 22px;
}

@media only screen and (max-width: 575.98px) {
    .contact-title {
        font-size: 18px;
        padding-bottom: 8px;
    }
}

/*------ contact info area end -------*/
/*----- footer area start -----*/
.footer-top {
    background-color: #f7f7f7;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767.98px) {
    .footer-top [class*="col-"] .widget-item {
        margin-bottom: 30px;
    }
}

.footer-top [class*="col-"]:last-child .widget-item {
    margin-bottom: 0;
}

.widget-title {
    margin-top: -6px;
    margin-bottom: 23px;
}

.contact-block li {
    font-size: 14px;
    margin-bottom: 8px;
}

.contact-block li:last-child {
    margin-bottom: 0;
}

.contact-block li i {
    font-size: 18px;
    padding-right: 5px;
    vertical-align: middle;
}

.contact-block li a {
    color: #555555;
}

.contact-block li a:hover {
    color: var(--primary-color);
    letter-spacing: 1.1px;
}

.info-list {
    display: grid;
    grid-template-columns: auto auto;
}

.info-list li {
    margin-bottom: 8px;
}

.info-list li a {
    font-size: 14px;
    color: #555555;
    text-transform: capitalize;
}

.info-list li a:hover {
    color: var(--primary-color);
}

.social-link {
    margin-top: 30px;
}

.social-link a {
    width: 40px;
    height: 40px;
    font-size: 18px;
    line-height: 40px;
    margin-right: 10px;
    color: #777777;
    display: inline-block;
    text-align: center;
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid #dedede;
}

.social-link a:last-child {
    margin-right: 0;
}

.social-link a:hover {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

@media only screen and (max-width: 767.98px) {
    .newsletter-wrapper {
        margin-top: 8px;
    }
}

.newsletter-inner {
    position: relative;
    margin-top: 16px;
}

@media only screen and (max-width: 767.98px) {
    .newsletter-inner {
        margin-top: 5px;
    }
}

.newsletter-inner .news-field {
    width: 100%;
    height: 40px;
    border: none;
    padding: 10px 0;
    color: #777777;
    padding-right: 80px;
    background-color: transparent;
    border-bottom: 1px solid #bcbcbc;
}

.newsletter-inner .news-btn {
    top: 0;
    right: 10px;
    line-height: 40px;
    position: absolute;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
}

.newsletter-inner .news-btn:hover {
    color: #222222;
}

.footer-payment {
    text-align: right;
}

@media only screen and (max-width: 767.98px) {
    .footer-payment {
        text-align: center;
        margin-top: 30px;
    }
}

.footer-bottom {
    padding: 20px 0;
}

.copyright-text p a {
    color: var(--primary-color);
}

/*----- footer area end -----*/
.logo-main {
    height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Order List Styles */
.orders-list {
    margin-top: 20px;
}

.order-count {
    color: #c89854;
    font-size: 14px;
    font-weight: 400;
}

.single-order-item {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.single-order-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.order-header {
    background: #f8f8f8;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
}

.order-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.order-label {
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.order-number {
    font-weight: 600;
    color: #000;
    font-size: 15px;
}

.order-status .badge {
    padding: 6px 15px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.badge-pending {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.badge-approved {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.badge-onhold {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.badge-cancelled {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.order-body {
    padding: 20px;
}

.order-product-image {
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    overflow: hidden;
    background: #f9f9f9;
}

.order-product-image img {
    width: 100%;
    height: auto;
    display: block;
}

.order-product-details {
    padding-left: 10px;
}

.product-code {
    color: #666;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 5px;
}

.product-title {
    color: #333;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 5px;
    line-height: 1.4;
}

.more-products {
    color: #c89854;
    font-size: 13px;
    margin-bottom: 8px;
}

.shipment-info {
    font-size: 13px;
    color: #666;
    margin-bottom: 0;
}

.shipment-label {
    font-weight: 500;
    margin-right: 5px;
}

.shipment-number {
    color: #333;
    font-weight: 600;
}

.order-price {
    text-align: right;
}

.order-price h6 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 767px) {
    .order-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .order-body {
        padding: 15px;
    }

    .order-product-details {
        padding-left: 0;
        margin-top: 10px;
    }

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

    .order-price {
        text-align: left;
        margin-top: 10px;
    }

    .order-price h6 {
        font-size: 16px;
    }

    .order-product-image {
        max-width: 80px;
    }
}

@media (max-width: 576px) {
    .single-order-item {
        margin-bottom: 15px;
    }

    .order-header {
        padding: 12px 15px;
    }

    .order-number {
        font-size: 14px;
    }

    .order-body {
        padding: 12px;
    }

    .product-code {
        font-size: 12px;
    }

    .product-title {
        font-size: 13px;
    }

    .more-products,
    .shipment-info {
        font-size: 12px;
    }
}

/* Active tab styling */
.myaccount-tab-menu a.active {
    background-color: var(--button-bg-color);
    color: var(--button-text-color);
}

/* Order List Styles */
.orders-list {
    margin-top: 20px;
}

.order-count {
    color: #c89854;
    font-size: 14px;
    font-weight: 400;
}

.single-order-item {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    cursor: pointer;
}

.single-order-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.order-header {
    background: #f8f8f8;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
}

.order-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.order-label {
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.order-number {
    font-weight: 600;
    color: #000;
    font-size: 15px;
}

.order-status .badge {
    padding: 6px 15px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.badge-pending {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.badge-approved {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.badge-onhold {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.badge-cancelled {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.order-body {
    padding: 20px;
}

.order-product-image {
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    overflow: hidden;
    background: #f9f9f9;
}

.order-product-image img {
    width: 100%;
    height: auto;
    display: block;
}

.order-product-details {
    padding-left: 10px;
}

.product-code {
    color: #666;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 5px;
}

.product-title {
    color: #333;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 5px;
    line-height: 1.4;
}

.more-products {
    color: #c89854;
    font-size: 13px;
    margin-bottom: 8px;
}

.shipment-info {
    font-size: 13px;
    color: #666;
    margin-bottom: 0;
}

.shipment-label {
    font-weight: 500;
    margin-right: 5px;
}

.shipment-number {
    color: #333;
    font-weight: 600;
}

.order-price {
    text-align: right;
}

.order-price h6 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

/* Order Detail View Styles */
.order-detail-header {
    margin-bottom: 20px;
}

.back-to-orders {
    color: #333;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.back-to-orders:hover {
    color: #c89854;
}

.back-to-orders i {
    font-size: 14px;
}

.order-num-highlight {
    color: #c89854;
}

.shipment-header {
    background: #f8f8f8;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
}

.refund-info-banner {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 6px;
    padding: 10px 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: #155724;
}

.refund-info-banner i {
    font-size: 16px;
    color: #28a745;
}

.order-products-list {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 20px;
}

.order-product-item {
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
}

.order-product-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.order-product-item:first-child {
    padding-top: 0;
}

.product-img {
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: auto;
}

.product-info {
    padding-left: 10px;
}

.sku-code {
    color: #666;
    font-size: 12px;
    margin-bottom: 5px;
}

.product-name {
    color: #333;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-pricing {
    margin-bottom: 8px;
}

.current-price {
    color: #333;
    font-size: 16px;
    font-weight: 700;
    margin-right: 8px;
}

.original-price {
    color: #999;
    font-size: 14px;
    text-decoration: line-through;
    margin-right: 8px;
}

.discount-tag {
    color: #27ae60;
    font-size: 13px;
    font-weight: 500;
}

.product-qty {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
}

.product-total {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 10px;
}

.total-price {
    color: #333;
    font-size: 18px;
    font-weight: 700;
}

/* Address Section */
.address-section {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e5e5;
}

.address-block {
    margin-bottom: 20px;
}

.address-block:last-child {
    margin-bottom: 0;
}

.address-type {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.address-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.address-details {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 5px;
}

.mobile-no {
    color: #666;
    font-size: 14px;
}

.mobile-no strong {
    color: #333;
}

/* Order Summary Section */
.order-summary-section {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-label {
    color: #666;
    font-size: 14px;
}

.summary-value {
    color: #333;
    font-size: 14px;
    font-weight: 600;
}

.summary-row.discount .summary-value {
    color: #27ae60;
}

/* Responsive Styles */
@media (max-width: 991px) {

    .address-section,
    .order-summary-section {
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .order-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .order-body {
        padding: 15px;
    }

    .order-product-details {
        padding-left: 0;
        margin-top: 10px;
    }

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

    .order-price {
        text-align: left;
        margin-top: 10px;
    }

    .order-price h6 {
        font-size: 16px;
    }

    .order-product-image {
        max-width: 80px;
    }

    .shipment-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .product-info {
        padding-left: 0;
    }

    .product-total {
        justify-content: flex-start;
    }
}

@media (max-width: 576px) {
    .single-order-item {
        margin-bottom: 15px;
    }

    .order-header {
        padding: 12px 15px;
    }

    .order-number {
        font-size: 14px;
    }

    .order-body {
        padding: 12px;
    }

    .product-code {
        font-size: 12px;
    }

    .product-title {
        font-size: 13px;
    }

    .more-products,
    .shipment-info {
        font-size: 12px;
    }

    .back-to-orders {
        font-size: 14px;
    }

    .product-name {
        font-size: 14px;
    }

    .current-price {
        font-size: 15px;
    }

    .order-products-list {
        padding: 15px;
    }
}

/* Active tab styling */
.myaccount-tab-menu a.active {
    background-color: var(--button-bg-color);
    color: var(--button-text-color);
}

.cart-wizard-page {
    padding: 30px 0 50px;
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
    min-height: 80vh;
}

.breadcrumb-area {
    padding: 15px 0;
    background-color: #fff;
    border-bottom: 1px solid #e8e8e8;
}

.breadcrumb-area a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-area a:hover {
    color: var(--secondary-color);
}

.breadcrumb-area span {
    color: #333;
    font-weight: 600;
}

/* Progress Stepper */
.checkout-stepper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 25px 0 40px;
    position: relative;
    padding: 0 10px;
}

.stepper-line {
    position: absolute;
    top: 18px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, #e0e0e0 0%, #d0d0d0 100%);
    z-index: 0;
}

.step-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    color: #aaa;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 8px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 2px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.step-item.active .step-circle {
    background: linear-gradient(135deg, #d4a574 0%, var(--secondary-color) 100%);
    color: #fff;
    border-color: var(--secondary-color);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(184, 147, 94, 0.4);
}

.step-item.completed .step-circle {
    background: linear-gradient(135deg, #5cb85c 0%, #4caf50 100%);
    color: #fff;
    border-color: #4caf50;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.step-item.completed .step-circle::before {
    content: "\2713";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 12px;
}

.step-label {
    font-size: 12px;
    font-weight: 600;
    color: #888;
    transition: color 0.3s;
}

.step-item.active .step-label {
    color: var(--secondary-color);
}

.step-item.completed .step-label {
    color: #4caf50;
}

/* Wizard Steps */
.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
    animation: fadeSlideIn 0.4s ease-out;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cart Section */
.cart-section {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid #f5f5f5;
}

.cart-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #222;
}

.cart-items-count {
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 600;
    margin-left: 8px;
}

.cart-item {
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
    gap: 18px;
}

.cart-item:last-child {
    border-bottom: none;
}

.item-image {
    width: 110px;
    height: 110px;
    min-width: 110px;
    object-fit: cover;
    border-radius: 10px;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 11px;
    font-weight: 600;
    border: 2px solid #f0f0f0;
    overflow: hidden;
}

.item-image a {
    display: block;
    width: 100%;
    height: 100%;
}

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

.item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.item-sku {
    font-size: 11px;
    color: #999;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.item-name {
    font-size: 15px;
    color: #222;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.4;
}

.item-price-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.item-price {
    font-size: 18px;
    font-weight: 700;
    color: #222;
}

.item-original-price {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
}

.item-discount {
    font-size: 11px;
    color: #4caf50;
    font-weight: 700;
    background: #e8f5e9;
    padding: 2px 6px;
    border-radius: 3px;
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    padding: 6px 10px;
    border-radius: 5px;
    font-size: 11px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 6px;
    border: 1px solid #ffe082;
    max-width: fit-content;
}

.offer-badge i {
    margin-right: 5px;
    font-size: 11px;
}

.item-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
}

.wishlist-remove {
    display: flex;
    gap: 12px;
    align-items: center;
}

.wishlist-remove a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
    padding: 6px 10px;
    border-radius: 4px;
}

.wishlist-remove a:hover {
    color: var(--secondary-color);
    background: #fafafa;
}

.wishlist-remove a:last-child:hover {
    color: #e53935;
}

.quantity-box {
    display: flex;
    align-items: center;
    gap: 18px;
}

.qty-controls {
    display: flex;
    align-items: center;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: #fafafa;
    cursor: pointer;
    font-size: 15px;
    color: #666;
    font-weight: 700;
    transition: all 0.3s;
}

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

.qty-input {
    width: 45px;
    height: 32px;
    border: none;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    background: #fff;
}

.item-total {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
}

/* Address Form */
.address-section {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid #f5f5f5;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 12px;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    color: #222;
}

.select-address-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
    border: 2px solid var(--secondary-color);
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s;
}

.select-address-btn:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(184, 147, 94, 0.3);
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

/* .form-group {
  flex: 1;
} */

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #555;
}

.form-control {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e8e8e8;
    border-radius: 6px;
    font-size: 13px;
    transition: all 0.3s;
    background: #fafafa;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(184, 147, 94, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 6px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--secondary-color);
}

.checkbox-group label {
    margin: 0;
    font-size: 13px;
    cursor: pointer;
    color: #555;
}

/* Shipping & Payment */
.section-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid #f5f5f5;
}

.section-box-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
}

.option-card {
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s;
    background: #fafafa;
}

.option-card:hover {
    border-color: var(--secondary-color);
    background: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.option-card.selected {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, #fff8f0 0%, #fff 100%);
    box-shadow: 0 4px 15px rgba(184, 147, 94, 0.15);
}

.option-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.option-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.radio-btn {
    width: 20px;
    height: 20px;
    accent-color: var(--secondary-color);
    cursor: pointer;
}

.option-details h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #222;
}

.option-details p {
    font-size: 12px;
    color: #777;
    margin: 0;
}

.option-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
}

/* Wallet Card */
.wallet-card {
    background: #fafafa;
    border: 2px solid #e8e8e8;
}

.wallet-card.selected {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, #fff8f0 0%, #fff 100%);
    box-shadow: 0 4px 15px rgba(184, 147, 94, 0.15);
}

.wallet-icon-box {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #fff8f0 0%, #ffe8cc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #f0e0c8;
}

/* Custom Toggle Switch */
.custom-control-input:checked~.custom-control-label::before {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.custom-switch .custom-control-label::before {
    width: 2.5rem;
    height: 1.4rem;
    border-radius: 0.7rem;
    border: 2px solid #ccc;
    transition: all 0.3s;
}

.custom-switch .custom-control-label::after {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    transition: all 0.3s;
}

.custom-switch .custom-control-input:checked~.custom-control-label::after {
    transform: translateX(1.1rem);
}

/* Wallet Summary Row */
.wallet-summary-row {
    padding: 8px 0;
    border-top: 1px dashed #c8e6c9;
    margin-top: 4px;
}

/* Success Page */
.success-container {
    background: #fff;
    padding: 20px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
}

.success-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #5cb85c 0%, #4caf50 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    animation: successPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

@keyframes successPop {
    0% {
        transform: scale(0) rotate(-180deg);
    }

    50% {
        transform: scale(1.2) rotate(10deg);
    }

    100% {
        transform: scale(1) rotate(0);
    }
}

.success-icon i {
    font-size: 25px;
    color: #fff;
}

.success-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #222;
}

.order-details-box {
    background: linear-gradient(135deg, #f9f9f9 0%, #f5f5f5 100%);
    padding: 18px;
    border-radius: 12px;
    margin: 20px 0;
    text-align: left;
    border: 2px solid #e8e8e8;
}

.order-info {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
}

.order-info strong {
    color: #222;
    font-weight: 700;
}

.details-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 40px;
}

.detail-card {
    background: #fafafa;
    padding: 28px;
    border-radius: 12px;
    border-left: 5px solid var(--secondary-color);
    text-align: left;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.detail-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #222;
}

.detail-text {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 8px;
}

/* Empty Cart */
.empty-cart-container {
    background: #fff;
    padding: 60px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.cart-icon {
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
}

.cart-icon svg {
    width: 100%;
    height: 100%;
}

.cart-icon .cart-body {
    stroke: #d4c5a9;
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cart-icon .cart-wheel {
    fill: #d4c5a9;
}

.cart-icon .arrow {
    stroke: var(--secondary-color);
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: arrowBounce 2s ease-in-out infinite;
}

@keyframes arrowBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.empty-title {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}

.empty-text {
    font-size: 14px;
    color: #777;
    margin-bottom: 30px;
}

/* Order Summary Sidebar - REMOVED COUPON SECTION */
.order-summary {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    position: sticky;
    top: 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid #f5f5f5;
}

.summary-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
    color: #555;
}

.summary-row.discount {
    color: #4caf50;
    font-weight: 600;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 700;
    padding-top: 18px;
    border-top: 2px solid #e8e8e8;
    margin-top: 18px;
    color: #222;
}

.action-btn {
    width: 100%;
    background: linear-gradient(135deg, #d4a574 0%, var(--secondary-color) 100%);
    color: #fff;
    border: none;
    padding: 6px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    margin-top: 20px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 3px 12px rgba(184, 147, 94, 0.3);
}

.action-btn:hover {
    background: linear-gradient(135deg, #c9a161 0%, #a37d4a 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(184, 147, 94, 0.4);
}

.note-text {
    font-size: 11px;
    color: #777;
    margin-top: 15px;
    line-height: 1.6;
    background: #f9f9f9;
    padding: 10px;
    border-radius: 6px;
}

.back-link {
    text-align: center;
    margin-top: 15px;
}

.back-link a {
    color: var(--secondary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s;
    padding: 6px;
    border-radius: 5px;
}

.back-link a:hover {
    color: #a37d4a;
    background: #fafafa;
}

.btn-primary {
    background: linear-gradient(135deg, #d4a574 0%, var(--secondary-color) 100%);
    color: #fff;
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 3px 12px rgba(184, 147, 94, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #c9a161 0%, #a37d4a 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(184, 147, 94, 0.4);
    color: #fff;
}

.btn-secondary {
    background: #fff;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(184, 147, 94, 0.3);
}

.action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 35px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .order-summary {
        position: static;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .cart-wizard-page {
        padding: 20px 0 35px;
    }

    .checkout-stepper {
        margin: 20px 0 30px;
        padding: 0 5px;
    }

    .stepper-line {
        left: 8%;
        right: 8%;
    }

    .step-circle {
        width: 32px;
        height: 32px;
        font-size: 12px;
        margin-bottom: 6px;
        border-width: 2px;
    }

    .step-item.active .step-circle {
        transform: scale(1.05);
    }

    .step-label {
        font-size: 10px;
    }

    .cart-section {
        padding: 18px;
    }

    .cart-title {
        font-size: 18px;
    }

    .cart-items-count {
        font-size: 13px;
    }

    .cart-item {
        flex-direction: column;
        padding: 18px 0;
        gap: 12px;
    }

    .item-image {
        width: 100%;
        height: 180px;
        min-width: 100%;
    }

    .item-image-inner {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .item-name {
        font-size: 14px;
    }

    .item-price {
        font-size: 16px;
    }

    .item-actions {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .wishlist-remove {
        justify-content: space-around;
    }

    .quantity-box {
        justify-content: space-between;
    }

    .address-section,
    .section-box {
        padding: 18px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-title {
        font-size: 18px;
    }

    .section-box-title {
        font-size: 16px;
    }

    .form-row {
        flex-direction: column;
        gap: 12px;
    }

    /* .form-group label {
    font-size: 12px;
  } */

    .form-control {
        padding: 9px 11px;
        font-size: 12px;
    }

    .option-card {
        padding: 14px;
    }

    .option-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .option-details h4 {
        font-size: 14px;
    }

    .option-details p {
        font-size: 11px;
    }

    .option-price {
        font-size: 15px;
    }

    .details-section {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .detail-card {
        padding: 16px;
    }

    .action-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 11px 25px;
    }

    .success-container {
        padding: 35px 20px;
    }

    .success-icon {
        width: 60px;
        height: 60px;
    }

    .success-icon i {
        font-size: 30px;
    }

    .success-title {
        font-size: 20px;
    }

    .empty-cart-container {
        padding: 45px 20px;
    }

    .empty-title {
        font-size: 20px;
    }

    .empty-text {
        font-size: 13px;
    }

    .cart-icon {
        width: 120px;
        height: 120px;
    }

    .order-summary {
        padding: 18px;
    }

    .summary-title {
        font-size: 16px;
    }

    .summary-row {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .summary-total {
        font-size: 18px;
        padding-top: 15px;
        margin-top: 15px;
    }

    .action-btn {
        padding: 12px;
        font-size: 14px;
    }

    .note-text {
        font-size: 10px;
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .step-circle {
        width: 28px;
        height: 28px;
        font-size: 11px;
        border-width: 2px;
    }

    .step-label {
        font-size: 9px;
    }

    .cart-title {
        font-size: 16px;
    }

    .item-name {
        font-size: 13px;
    }

    .item-price {
        font-size: 15px;
    }

    .item-original-price {
        font-size: 12px;
    }

    .section-title {
        font-size: 16px;
    }

    .section-box-title {
        font-size: 15px;
    }

    .summary-title {
        font-size: 15px;
    }

    .summary-total {
        font-size: 16px;
    }

    .order-details-box {
        padding: 16px;
    }

    .order-info {
        font-size: 13px;
    }

    .select-address-btn {
        font-size: 12px;
        padding: 7px 12px;
    }

    .wishlist-remove a {
        font-size: 12px;
        padding: 5px 8px;
    }

    .qty-btn {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .qty-input {
        width: 40px;
        height: 28px;
        font-size: 13px;
    }

    .item-total {
        font-size: 15px;
    }
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition:
        opacity 0.5s ease-out,
        visibility 0.5s ease-out;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-wrapper {
    text-align: center;
}

.loader-logo {
    animation: fadeInOut 1.5s ease-in-out infinite;
    max-width: 200px;
    width: 100%;
}

@keyframes fadeInOut {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(0.95);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

.select-address-btn {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-color));
    border: none;
    color: white;
    font-weight: 500;
    border-radius: 6px;
    padding: 8px 14px;
    transition: all 0.3s ease;
}

.select-address-btn:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-color));
    transform: scale(1.05);
}

/* Custom modal styles */
.custom-modal {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-modal.show {
    display: flex;
    opacity: 1;
}

.custom-modal-content {
    background: #fff;
    border-radius: 8px;
    width: 70%;
    max-width: 400px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.4s ease;
    text-align: center;
}

@keyframes slideIn {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.custom-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.custom-modal-body {
    margin-top: 15px;
    max-height: 400px;
    overflow-y: auto;
}

.custom-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #888;
    cursor: pointer;
}

.custom-close:hover {
    color: #000;
}

.select-address {
    cursor: pointer;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 10px;
    transition: background 0.2s;
}

.select-address:hover {
    background: #ffdfb2;
    border-color: #b08850;
}

.modal-confirm {
    color: #636363;
    width: 350px;
    animation: zoomIn 0.3s ease-in-out;
}

@keyframes zoomIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }

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

.modal-confirm .modal-content {
    border-radius: 10px;
    border: none;
    text-align: center;
    padding: 20px;
}

.modal-confirm .modal-header {
    border-bottom: none;
    position: relative;
    justify-content: center;
}

.modal-confirm h5 {
    font-weight: 600;
}

.modal-confirm .icon-box {
    color: #fff;
    background: #28a745;
    width: 60px;
    height: 60px;
    margin: 0 auto 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.modal-buttons {
    display: flex;
    justify-content: space-around;
}

.btn {
    border: none;
    border-radius: 20px;
    padding: 8px 15px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.btn.cancel {
    background-color: #ccc;
    color: #333;
}

.btn.cancel:hover {
    background-color: #b3b3b3;
}

.btn.confirm {
    background-color: #28a745;
    color: white;
}

.btn.confirm:hover {
    background-color: #218838;
}

.cancel-order-btn {
    background-color: #dc3545;
    color: white;
    border: none;
    border-radius: 15px;
    padding: 10px 10px;
    font-size: 12px;
    cursor: pointer;
    transition: 0.3s ease;
}

.cancel-order-btn:hover {
    background-color: #b02a37;
}

.cancel-icon {
    background: #dc3545 !important;
}

.cancel-confirm {
    background-color: #dc3545 !important;
}

.cancel-confirm:hover {
    background-color: #b02a37 !important;
}

/* Address Modal Styles */
.address-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.address-modal.active {
    display: block;
}

.address-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.address-modal-content {
    position: relative;
    background-color: #fff;
    max-width: 800px;
    margin: 50px auto;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}

.address-modal-header {
    padding: 20px 30px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.address-modal-header h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.address-modal-close {
    background: none;
    border: none;
    font-size: 32px;
    line-height: 1;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.address-modal-close:hover {
    color: #333;
}

.address-modal-body {
    padding: 30px;
}

/* Form Styles */
.single-input-item {
    margin-bottom: 20px;
}

.single-input-item label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.single-input-item label.required::after {
    content: " *";
    color: #ff0000;
}

.single-input-item input,
.single-input-item select {
    width: 100%;
    height: 45px;
    padding: 0 15px;
    border: 1px solid #e5e5e5;
    border-radius: 3px;
    font-size: 14px;
    color: #333;
    transition: border-color 0.3s ease;
}

.single-input-item input:focus,
.single-input-item select:focus {
    outline: none;
    border-color: #333;
}

.single-input-item select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
}

/* Responsive */
@media (max-width: 767px) {
    .address-modal-content {
        margin: 20px;
        max-width: calc(100% - 40px);
        max-height: calc(100vh - 40px);
    }

    .address-modal-header {
        padding: 15px 20px;
    }

    .address-modal-body {
        padding: 20px;
    }

    .address-modal-header h4 {
        font-size: 18px;
    }
}

.select-address {
    cursor: pointer;
    transition: 0.2s ease;
}

.select-address:hover,
.select-address.active {
    border-color: rgb(176, 136, 80);
    background-color: rgb(255, 223, 178);
}

.btn-outline-primary {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-color));
    border: none;
    color: white;
    font-weight: 500;
    border-radius: 6px;
    padding: 8px 14px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-color));
    transform: scale(1.05);
}

/* Modal overlay */
.custom-modal-new {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 1050;
    /* Bootstrap modal z-index */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent background */
    transition: opacity 0.3s ease;
}

/* Show modal */
.custom-modal-new.show {
    display: block;
    animation: fadeIn 0.3s;
}

/* Modal content */
.custom-modal-new-content {
    position: relative;
    background-color: #fff;
    margin: 5% auto;
    /* 5% from top */
    padding: 0;
    border-radius: 0.5rem;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

/* Modal header */
.custom-modal-new-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    background-color: #f8f9fa;
}

.custom-modal-new-header h5 {
    margin: 0;
    font-size: 1.25rem;
}

.custom-modal-new-header .close {
    font-size: 1.5rem;
    cursor: pointer;
    color: #000;
    transition: color 0.2s;
}

.custom-modal-new-header .close:hover {
    color: #dc3545;
}

/* Modal body */
.custom-modal-new-body {
    padding: 1.5rem;
}

/* Form controls */
.custom-modal-new-body .form-control {
    border-radius: 0.25rem;
    border: 1px solid #ced4da;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
}

.custom-modal-new-body .form-control:focus {
    outline: none;
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Buttons */
.custom-modal-new-body .btn {
    min-width: 100px;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border-radius: 0.25rem;
}

.custom-modal-new-body .btn-success {
    background-color: var(--primary-color);
    color: #fff !important;
    border: none;
}

.custom-modal-new-body .btn-success:hover {
    background-color: #218838;
}

.custom-modal-new-body .btn-secondary {
    background-color: #6c757d;
    color: #fff;
    border: none;
}

.custom-modal-new-body .btn-secondary:hover {
    background-color: #5a6268;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .custom-modal-new-content {
        margin: 10% auto;
        width: 95%;
    }
}

.gender-options {
    display: flex;
    gap: 8px;
    margin-top: 5px;
}

.gender-btn {
    padding: 2px 10px;
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s;
    background-color: #fff;
    color: #007bff;
    font-weight: 500;
    font-size: 0.875rem !important;
    text-align: center;
}

.gender-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
}

input[type="radio"]:checked+.gender-btn {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 3px rgba(0, 123, 255, 0.5);
}

.gender-btn.small {
    padding: 4px 10px;
    font-size: 0.8rem;
    border-radius: 15px;
}

.footer-container {
    max-width: 1140px;
}

.color-circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: block;
    border: 2px solid transparent;
    cursor: pointer;
}

.color-circle.active-color {
    border: 2px solid #000;
    transform: scale(1.15);
}

.payment-loader {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    pointer-events: all;
}

.badge-danger {
    color: #fff;
    background-color: #dc3545;
}

.tracking-section {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
}

.etd-box {
    background: #f7f9ff;
    border-left: 4px solid #4e73df;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 10px;
}

.tracking-timeline {
    border-left: 3px solid #ddd;
    padding-left: 15px;
}

.timeline-item {
    position: relative;
    margin-bottom: 15px;
}

.timeline-item .dot {
    width: 12px;
    height: 12px;
    background: #4e73df;
    border-radius: 50%;
    position: absolute;
    left: -22px;
    top: 4px;
}

.timeline-item .time {
    font-size: 12px;
    color: #6c757d;
}

.timeline-item .title {
    font-weight: 600;
}

.timeline-item .location {
    font-size: 12px;
    color: #777;
}

.header-search-container {
    position: relative;
}

.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-top: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    max-height: 450px;
    overflow-y: auto;
    margin-top: 0;
    min-width: 400px;
    width: max-content;
    max-width: 600px;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s;
    text-decoration: none;
    color: #333;
}

.search-result-item:hover {
    background-color: #f8f8f8;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 15px;
    flex-shrink: 0;
}

.search-result-details {
    flex: 1;
    min-width: 0;
}

.search-result-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 4px;
    max-width: 300px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.search-result-meta {
    font-size: 12px;
    color: #999;
    margin-bottom: 4px;
}

.search-result-price {
    font-size: 14px;
    font-weight: 600;
    color: #d4af37;
}

.search-no-results {
    padding: 20px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

.search-loading {
    padding: 20px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

/* Scrollbar Styling */
.search-results-dropdown::-webkit-scrollbar {
    width: 6px;
}

.search-results-dropdown::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.search-results-dropdown::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.search-results-dropdown::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.pincode-suggestions {
    position: absolute;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    width: 100%;
    display: none;
}

.pincode-suggestion-item {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
}

.pincode-suggestion-item:hover {
    background-color: #f8f9fa;
}

.pincode-suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-main {
    font-weight: 600;
    color: #333;
}

.suggestion-sub {
    font-size: 12px;
    color: #666;
}

/* Auto-filled field styling */
.auto-filled {
    background-color: #d4edda !important;
    border-color: #28a745 !important;
}

/* Loading spinner */
.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

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

.input-with-icon {
    position: relative;
}

.input-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.detect-location-btn {
    margin-top: 10px;
    font-size: 13px;
    padding: 6px 12px;
}

.gap-2 {
    gap: 0.5rem;
}

.flex-grow-1 {
    flex-grow: 1;
}

.auto-filled {
    background-color: #d4edda !important;
    border-color: #28a745 !important;
}

.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid var(--secondary-color);
    border-radius: 50%;
    animation: spin-animation 1s linear infinite;
}

@keyframes spin-animation {
    0% {
        transform: rotate(0deg);
    }

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

.return-order-btn {
    width: 100%;
    padding: 10px 20px;
    background-color: #ff9800;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.return-order-btn:hover {
    background-color: #f57c00;
}

/* Return Modal Styles */
.modal-sm {
    max-width: 450px;
}

.return-modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.return-modal-header {
    background: white;
    color: #333;
    padding: 20px 24px;
    border-radius: 12px 12px 0 0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.return-modal-header .modal-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #1a1a1a;
}

.btn-close-custom {
    background: transparent;
    border: none;
    color: #666;
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
    line-height: 1;
}

.btn-close-custom:hover {
    background: #f5f5f5;
    color: #333;
    transform: rotate(90deg);
}

.return-modal-body {
    padding: 24px;
    max-height: 500px;
    overflow-y: auto;
    background: white;
}

.return-label {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    display: block;
}

.return-reasons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.return-option {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border: 1.5px solid #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    margin: 0;
}

.return-option:hover {
    background-color: #fff8f0;
    border-color: #ff9800;
}

.return-option input[type="radio"] {
    width: 16px;
    height: 16px;
    margin-right: 10px;
    cursor: pointer;
    accent-color: #ff9800;
}

.return-option span {
    font-size: 13px;
    color: #333;
    flex: 1;
}

.return-option input[type="radio"]:checked+span {
    font-weight: 600;
    color: #ff9800;
}

.return-textarea {
    width: 100%;
    padding: 10px;
    border: 1.5px solid #e0e0e0;
    border-radius: 6px;
    font-size: 13px;
    resize: vertical;
    min-height: 80px;
    transition: border-color 0.2s;
}

.return-textarea:focus {
    outline: none;
    border-color: #ff9800;
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.1);
}

.return-info-box {
    background: #e3f2fd;
    border-left: 3px solid #2196f3;
    padding: 10px 12px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
}

.return-info-box i {
    color: #2196f3;
    font-size: 14px;
}

.return-info-box span {
    font-size: 12px;
    color: #1976d2;
    line-height: 1.4;
}

.return-modal-footer {
    padding: 16px 24px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    background: white;
    border-radius: 0 0 12px 12px;
}

.btn-return-close {
    padding: 8px 20px;
    background: #f5f5f5;
    color: #666;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-return-close:hover {
    background: #e0e0e0;
    color: #333;
}

.btn-return-submit {
    padding: 8px 20px;
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.3);
}

.btn-return-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.4);
}

.btn-return-submit:active {
    transform: translateY(0);
}

.badge-success {
    color: #fff;
    background-color: #28a745;
}


/* Minimalist Bold Typography */
.section-title.underline-style h2 {
    font-family: 'Jost', sans-serif !important;
    font-weight: 700 !important;
    font-size: 34px;
    color: #111;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 20px;
}

.section-title.underline-style h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--primary-color);
}

/* Unified Filter Bar Styles */
.shop-filter-bar {
    background: #ffffff;
    padding: 25px 0;
    margin-bottom: 45px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
}

.filter-item {
    margin-right: 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 180px;
}

.filter-item:last-child {
    margin-right: 0;
}

.filter-label {
    font-size: 11px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.custom-dropdown-select {
    border: 1px solid #e1e1e1 !important;
    height: 48px !important;
    line-height: 46px !important;
    padding: 0 15px !important;
    background: #fff !important;
    font-size: 15px;
    font-weight: 600;
    color: #111 !important;
    cursor: pointer;
    border-radius: 4px;
    width: 100% !important;
}

.nice-select {
    border: 1px solid #e1e1e1 !important;
    height: 48px !important;
    line-height: 46px !important;
    padding: 0 15px !important;
    background: #fff !important;
    font-weight: 600;
    color: #111;
    border-radius: 4px;
    width: 100% !important;
}

.nice-select .list {
    width: 100% !important;
}

.reset-filter-container {
    padding: 0 40px;
    display: flex;
    align-items: center;
}

.reset-filter-btn {
    font-size: 11px;
    color: #111;
    cursor: pointer;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 15px;
    border: 1px solid #111;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

.sort-filter-item {
    border-left: none;
    padding-left: 0;
    padding-right: 0;
}

@media (max-width: 991px) {
    .shop-filter-bar {
        padding: 5px 15px !important;
        margin-bottom: 25px !important;
    }

    .shop-filter-bar .d-flex {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .filter-item {
        width: 100% !important;
        padding: 12px 0 !important;
        border-right: none !important;
        border-left: none !important;
        border-bottom: 1px solid #f2f2f2 !important;
    }

    .sort-filter-item {
        border-bottom: 1px solid #f2f2f2 !important;
        padding-left: 0 !important;
    }

    .reset-filter-container {
        width: 100% !important;
        padding: 15px 0 !important;
        margin-left: 0 !important;
    }

    .reset-filter-btn {
        width: 100% !important;
        justify-content: center;
        padding: 12px !important;
    }

    .nice-select {
        width: 100% !important;
        display: block !important;
        margin-top: 5px;
        border: 1px solid #ddd !important;
        height: 50px !important;
        line-height: 48px !important;
    }
}

/* Luxury Product Card UI */
.product-item {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #f2f2f2;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: #fff;
}

.product-thumb {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #fdfdfd;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.product-item:hover .product-thumb img.pri-img {
    transform: scale(1.1);
}

.product-label.discount {
    background: var(--primary-color);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-caption {
    padding: 15px 12px 10px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.product-name {
    font-size: 13.5px;
    font-weight: 500;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 58px;
}

.price-box {
    margin-top: auto;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.product-details-des .price-box {
    justify-content: flex-start !important;
}

.group-item-desc .price-box {
    justify-content: flex-start !important;
    text-align: left !important;
}

.cart-item .pro-size,
.cart-item .color-option {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 12px;
}

.cart-item .pro-size h6.option-title,
.cart-item .color-option h6.option-title {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    text-transform: capitalize;
    min-width: 50px;
}

.cart-item .color-option ul {
    margin: 0 !important;
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
}

/* Fix Nice Select UI in Cart */
.cart-item .nice-select {
    float: none !important;
    display: inline-flex !important;
    align-items: center;
    height: 38px !important;
    line-height: 36px !important;
    border: 1px solid #ddd !important;
    border-radius: 6px;
    padding: 0 35px 0 15px !important;
    width: 140px !important;
    background-color: #fff;
    font-weight: 500;
    font-size: 13px;
    margin: 0 !important;
}


.cart-item .nice-select:after {
    border-bottom: 2px solid #666 !important;
    border-right: 2px solid #666 !important;
    height: 6px !important;
    width: 6px !important;
    right: 15px !important;
    margin-top: -4px !important;
}

.cart-item .nice-select .list {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: none;
    margin-top: 5px;
}

.cart-item .nice-select .option {
    line-height: 38px;
    min-height: 38px;
    font-size: 13px;
}


.cart-item select.nice-select {
    display: none !important;
}

.price-regular {
    font-size: 16px;
    font-weight: 700;
    color: #111;
}

.price-old {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
}

.btn-cart-premium {
    background: #111;
    color: #fff;
    border: none;
    padding: 13px 15px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.btn-cart-premium:hover {
    background: var(--primary-color);
    color: #000;
}

.product-action-bottom {
    width: 100%;
    margin-top: auto;
}

@media (max-width: 575px) {
    .product-name {
        font-size: 11.5px !important;
        height: 48px !important;
        -webkit-line-clamp: 3 !important;
        line-clamp: 3 !important;
        margin-bottom: 8px !important;
    }

    .price-regular {
        font-size: 14px !important;
    }

    .price-old {
        font-size: 11px !important;
    }

    .btn-cart-premium {
        padding: 10px 5px !important;
        font-size: 9px !important;
    }

    .product-caption {
        padding: 10px 8px 10px !important;
    }

    .price-box {
        margin-bottom: 10px !important;
    }
}

.button-group {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.button-group a {
    background: #fff;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.button-group a:hover {
    background: var(--primary-color);
    color: #fff;
}

.section-title.underline-style h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--primary-color);
}

@media (min-width: 1400px) {
    .col-xl-custom {
        flex: 0 0 auto;
        width: 20%;
    }
}

.product-label.rating-badge {
    background: rgba(255, 255, 255, 0.95);
    color: #111;
    font-size: 10.5px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    position: absolute;
    bottom: 15px;
    left: 15px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.product-label.rating-badge i {
    font-size: 10px;
    color: #ff9800;
    margin-top: -1px;
}

.loading-logo {
    width: 160px;
    height: auto;
    margin: 20px 0;
    animation: breathe 2s ease-in-out infinite;
}

.loading-text {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: -10px;
}

@keyframes breathe {
    0% {
        transform: scale(0.95);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.6;
    }
}

.product-rating-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: #f4f6f8;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    z-index: 9;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.product-rating-badge i {
    color: #ffb800 !important;
    font-size: 0.9em;
}

.product-rating-badge .separator {
    color: #ccc;
    font-weight: 400;
    margin: 0 2px;
}

.product-rating-badge .rating-count {
    color: #555;
    font-weight: 400;
}

/* Enforce equal height for all product cards globally */
.slick-track {
    display: flex !important;
    align-items: stretch !important;
}

.slick-slide {
    height: auto !important;
    display: flex !important;
    flex-direction: column;
    float: none !important;
}

.slick-slide>div {
    height: 100% !important;
    display: flex !important;
    flex: 1 1 auto;
    width: 100%;
}

/* Ensure product images are always square squares */
.product-item .product-thumb {
    aspect-ratio: 1 / 1 !important;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.product-item .product-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    /* using contain because the first image has a white canvas naturally */
}

.product-item {
    width: 100%;
    display: flex !important;
    flex-direction: column !important;
    height: 100%;
    background: #fff;
    border: 1px solid #f2f2f2;
    overflow: hidden;
    transition: 0.3s ease-in-out;
}

.product-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    /* adds a premium feel on hover */
}

.product-item .product-caption {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-item .price-box {
    margin-top: auto;
    margin-bottom: 20px;
}

.product-item .product-action-bottom {
    margin-top: auto;
    align-self: flex-end;
    width: 100%;
}

.product-action-bottom .btn-cart-premium {
    width: 100%;
    border-radius: 0;
    padding: 12px 10px;
}

.marquee-bar {
    background-color: var(--secondary-color);
    padding: 12px 0;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 15s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-content {
    display: flex;
    gap: 80px;
    padding-right: 80px;
    white-space: nowrap;
}

.marquee-content span {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-20%);
    }
}


.guarantee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: help;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid transparent;
}

.guarantee-item:hover {
    background: #fdf9f4;
    border-color: #f3e9d9;
}

.guarantee-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--secondary-color);
    border-radius: 50%;
    color: var(--secondary-color);
    font-size: 16px;
    background: white;
}

.guarantee-text {
    font-size: 13.5px;
    color: #333;
    font-weight: 500;
    line-height: 1.2;
}

/* Custom Popover Styling */
.popover {
    border: none !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12) !important;
    border-radius: 12px !important;
    max-width: 280px !important;
    padding: 0 !important;
}

.popover-header {
    background: #fdf9f4 !important;
    border-bottom: 1px solid #eee !important;
    font-weight: 700 !important;
    color: var(--secondary-color) !important;
    padding: 12px 18px !important;
    font-size: 15px !important;
    border-radius: 12px 12px 0 0 !important;
}

.popover-body {
    padding: 15px 18px !important;
    line-height: 1.6 !important;
    color: #666 !important;
    font-size: 13.5px !important;
}

.bs-popover-top>.popover-arrow::before {
    border-top-color: #eee !important;
}

.cart-product-title-link {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.cart-product-title-link:hover {
    color: var(--secondary-color) !important;
    text-decoration: underline !important;
}

.tab-one {
    text-align: left !important;
    white-space: pre-line !important;
    line-height: 1.8;
    color: #555;
    font-size: 15px;
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.product-name-large {
    font-size: 25px;
    margin-bottom: 5px !important;
    line-height: 1.3;
    color: #333;
}

.ratings-summary {
    margin-bottom: 12px;
    font-size: 14px;
}

.limited-deal-badge {
    background-color: #c40000;
    color: white;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 2px;
    display: inline-block;
    margin-bottom: 10px;
}

.price-box-v2 {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.price-selling {
    font-size: 26px;
    font-weight: 700;
    color: #333;
}

.price-mrp {
    font-size: 15px;
    color: #777;
    text-decoration: line-through;
}

.discount-pct {
    background-color: #f5f5f5;
    color: #333;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid #ddd;
}

.tax-text {
    font-size: 13px;
    font-style: italic;
    color: #666;
    margin-bottom: 15px;
}

.trust-icons-section {
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 15px;
}

.trust-icon-item {
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.trust-icon-item:hover {
    transform: translateY(-3px);
}

.trust-icon-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    color: var(--secondary-color);
    font-size: 18px;
    background: #f9f9f9;
}

.trust-icon-text {
    font-size: 10px;
    line-height: 1.2;
    font-weight: 700;
    color: #333;
    margin-top: 5px;
    text-transform: uppercase;
}

.btn-cart2 {
    border-radius: 50px !important;
    height: 38px;
    line-height: 38px !important;
    padding: 0 25px !important;
    background-color: #333 !important;
    border: none !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.btn-buy-now {
    border-radius: 50px !important;
    height: 38px;
    line-height: 38px !important;
    padding: 0 25px !important;
    background-color: #ff9900 !important;
    border: none !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 153, 0, 0.25);
    transition: all 0.3s ease;
}

.btn-buy-now:hover {
    background-color: #e68a00 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 153, 0, 0.35);
}

.pro-qty {
    width: 100px;
    height: 38px;
    border: 1px solid #ddd;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 50px;
    background: #fff;
    margin: 0 !important;
}

.pro-qty input {
    height: 100%;
    width: 30px;
    text-align: center;
    border: none;
    font-weight: 600;
    color: #333;
    background: transparent;
}

.qtybtn {
    cursor: pointer;
    font-size: 20px;
    color: #888;
    line-height: 1;
    user-select: none;
    transition: 0.2s;
}

.qtybtn:hover {
    color: var(--secondary-color);
}

.active-size {
    background-color: #fdf9f4 !important;
    border-color: var(--secondary-color) !important;
    color: var(--secondary-color) !important;
    box-shadow: 0 2px 8px rgba(184, 147, 94, 0.2);
}

.active-color {
    transform: scale(1.2);
    box-shadow: 0 0 0 2px #333 !important;
}

.btn-cart2:hover {
    background-color: #333 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.option-title {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.payment-logos-v2 {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.payment-logos-v2 img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.payment-logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: flex-start;
}

.payment-logo-item {
    height: auto;
    width: auto;
    max-width: 60px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.payment-logo-item:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.btn-wishlist-v2 {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #333;
    background: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none !important;
    cursor: pointer;
    padding: 0 !important;
}

.btn-wishlist-v2 i {
    position: relative;
    top: 1px;
    left: 1px;
    margin: 0 !important;
    line-height: 1 !important;
    display: block !important;
}

.btn-wishlist-v2:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(184, 147, 94, 0.2);
    transform: scale(1.05);
}

.useful-links {
    margin: 0 !important;
}

.color-categories {
    display: flex;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 5px 0 15px !important;
    align-items: center;
}

.color-categories li a {
    width: 24px !important;
    height: 24px !important;
    border-radius: 50% !important;
    display: block;
    border: 2px solid #fff !important;
    box-shadow: 0 0 0 1px #ddd;
    transition: 0.3s;
}

.color-categories li a:hover {
    transform: scale(1.15);
    box-shadow: 0 0 0 1px #333;
}

@media (max-width: 767px) {
    .trust-icons-section .row {
        justify-content: center !important;
    }

    .trust-icon-item {
        flex: 0 0 25%;
        max-width: 25%;
        margin-bottom: 0;
        padding: 0 2px;
        text-align: center;
    }

    .trust-icon-circle {
        margin: 0 auto 8px;
    }

    .product-name-large {
        font-size: 18px;
    }

    .price-selling {
        font-size: 22px;
    }
}

/* Popover Custom Styling */
.popover {
    border: 1px solid #f2e7d9 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    border-radius: 8px !important;
    background-color: #fff !important;
    z-index: 10001 !important;
}

.popover-header {
    background-color: #fdf9f4 !important;
    color: var(--secondary-color) !important;
    font-weight: 700 !important;
    border-bottom: 1px solid #f2e7d9 !important;
    padding: 12px 15px !important;
}

.popover-body {
    padding: 15px !important;
    font-size: 13px !important;
    line-height: 1.6 !important;
    color: #555 !important;
}

@media (max-width: 575px) {

    /* Grouping buttons and quantity */
    .quantity-cart-box {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 15px !important;
        align-items: center !important;
    }

    .pro-qty {
        width: 100px !important;
        height: 40px !important;
        padding: 0 4px !important;
    }

    .payment-logos-row {
        justify-content: flex-start !important;
        gap: 15px !important;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 5px;
    }

    .payment-logos-row::-webkit-scrollbar {
        display: none;
    }

    .trust-icons-section .d-flex {
        justify-content: space-between !important;
        gap: 5px !important;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 5px;
    }

    .trust-icons-section .d-flex::-webkit-scrollbar {
        display: none;
    }
}

.banner-statistics {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.banner-statistics::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
    transition: height 0.3s ease;
}

.banner-statistics:hover::before {
    height: 70%;
}

.banner-label-bottom {
    position: absolute;
    bottom: 30px;
    left: 40px;
    z-index: 2;
    text-align: left;
    width: 70%;
}

.banner-tagline {
    color: #d4af37 !important;
    font-family: 'Inter', sans-serif;
    font-size: 11px !important;
    letter-spacing: 4px !important;
    font-weight: 600;
    margin-bottom: 5px;
}

.banner-title-main {
    color: #fff !important;
    font-family: 'Playfair Display', serif;
    font-size: 32px !important;
    font-weight: 400;
    margin-bottom: 15px !important;
    letter-spacing: 1px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.banner-cta-link {
    color: #fff !important;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.5);
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.banner-cta-link:hover {
    color: #d4af37 !important;
    border-color: #d4af37;
    padding-left: 10px;
}

.banner-statistics img {
    width: 100%;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.banner-statistics:hover img {
    transform: scale(1.08);
}

.ez-zoom-container {
    position: relative;
    cursor: crosshair;
}

.ez-zoom-lens {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(184, 147, 94, 0.2);
    border: 1px solid var(--secondary-color);
    display: none;
    z-index: 200;
    pointer-events: none;
    cursor: crosshair;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.ez-zoom-result {
    position: absolute;
    border: 2px solid #e2e2e2;
    background-repeat: no-repeat;
    display: none;
    z-index: 9999;
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    pointer-events: none;
}

/* Responsive - disable zoom on tablets and mobile */
@media (max-width: 991px) {
    .ez-zoom-result {
        display: none !important;
    }

    .ez-zoom-lens {
        display: none !important;
    }
}

/* --- Slick Slider FOUC Fix (Prevents images from stacking on page load) --- */
.hero-slider-active:not(.slick-initialized)>*:not(:first-child),
.hero-slider-active-4:not(.slick-initialized)>*:not(:first-child),
.product-carousel-4:not(.slick-initialized)>*:not(:first-child),
.product-carousel-4_2:not(.slick-initialized)>*:not(:first-child),
.product-banner-carousel:not(.slick-initialized)>*:not(:first-child),
.group-list-carousel:not(.slick-initialized)>*:not(:first-child),
.brand-logo-carousel:not(.slick-initialized)>*:not(:first-child),
.product-large-slider:not(.slick-initialized)>*:not(:first-child),
.pro-nav:not(.slick-initialized)>*:not(:first-child),
.deals-carousel-active:not(.slick-initialized)>*:not(:first-child),
.deals-carousel-active--two:not(.slick-initialized)>*:not(:first-child),
.instagram-carousel:not(.slick-initialized)>*:not(:first-child) {
    display: none;
}

.hero-slider-active:not(.slick-initialized),
.hero-slider-active-4:not(.slick-initialized),
.product-carousel-4:not(.slick-initialized),
.product-carousel-4_2:not(.slick-initialized),
.product-banner-carousel:not(.slick-initialized),
.group-list-carousel:not(.slick-initialized),
.brand-logo-carousel:not(.slick-initialized),
.product-large-slider:not(.slick-initialized),
.pro-nav:not(.slick-initialized),
.deals-carousel-active:not(.slick-initialized),
.deals-carousel-active--two:not(.slick-initialized),
.instagram-carousel:not(.slick-initialized) {
    display: block;
    overflow: hidden;
    min-height: 200px;
}

/* Color Name Box UI */
.color-name-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.color-name-box {
    display: inline-block;
    padding: 5px 12px;
    border: 1.5px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    color: #333;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: capitalize;
    white-space: nowrap;
}

.color-name-box:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.color-name-box.active-color-box {
    border-color: var(--secondary-color);
    background-color: var(--secondary-color);
    color: #fff;
    font-weight: 600;
}

.header-right {
    gap: 10px !important;
    flex-wrap: nowrap !important;
}

.header-right .header-search-container {
    flex: 1 1 auto;
    max-width: none;
    margin-right: 15px;
    display: block !important;
}

.header-right .header-search-box {
    position: relative;
    display: flex !important;
    align-items: center;
    background: #f8f8f8;
    border: 1px solid #eaeaea;
    border-radius: 40px;
    transition: all 0.3s ease;
    height: 45px;
    margin-bottom: 0;
}

.header-right .header-search-box:focus-within {
    border-color: #d4af37;
    background: #fff;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.header-right .header-search-field {
    width: 100%;
    border: none;
    background: transparent;
    padding: 0 20px 0 45px !important;
    font-size: 14px;
    color: #444;
    outline: none;
    height: 100%;
    border-radius: 40px;
    font-family: 'Inter', sans-serif;
}

.header-right .header-search-field::placeholder {
    color: #999;
    font-weight: 400;
}

.header-right .header-search-btn {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent !important;
    border: none !important;
    color: #888;
    font-size: 20px;
    padding: 0 !important;
    outline: none !important;
    transition: color 0.3s;
}

.header-right .header-search-box:focus-within .header-search-btn {
    color: #d4af37;
}

.search-results-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #f0f0f0;
    padding: 10px 0;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f5f5f5;
    position: relative;
    background: #fff;
    overflow: hidden;
}

.search-result-item:hover {
    background: #fdfcf9;
    padding-left: 28px;
}

.search-result-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: #d4af37;
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: center;
}

.search-result-item:hover::before {
    transform: scaleY(1);
}

.search-result-image {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 15px;
    border: 1px solid #eee;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.search-result-item:hover .search-result-image {
    transform: scale(1.1);
    border-color: #d4af37;
}

.search-result-name {
    font-size: 13px;
    color: #333;
    font-weight: 500;
    margin-bottom: 4px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.search-result-item:hover .search-result-name {
    color: #d4af37;
}

.search-result-price {
    font-size: 13px;
    color: #d4af37;
    font-weight: 600;
}

.search-loading,
.search-no-results {
    padding: 20px;
    text-align: center;
    font-size: 13px;
    color: #777;
}

/* Luxury Dropdown Menu Styling */
.desktop-menu ul li ul.dropdown,
.main-menu nav.desktop-menu ul li ul.dropdown {
    background: #ffffff !important;
    border-radius: 0 0 8px 8px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08) !important;
    border: none !important;
    padding: 10px 0 !important;
    min-width: 250px !important;
}

.desktop-menu ul li ul.dropdown li,
.main-menu nav.desktop-menu ul li ul.dropdown li {
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.desktop-menu ul li ul.dropdown li a,
.main-menu nav.desktop-menu ul li ul.dropdown li a {
    color: #444 !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 15px !important;
    padding: 12px 25px !important;
    display: block !important;
    transition: all 0.35s ease !important;
    position: relative !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    background: transparent !important;
    border: none !important;
    /* Forces dotted borders off */
    border-bottom: 1px solid rgba(0, 0, 0, 0.04) !important;
}

/* Remove default separator on last item */
.desktop-menu ul li ul.dropdown li:last-child a,
.main-menu nav.desktop-menu ul li ul.dropdown li:last-child a {
    border-bottom: none !important;
}

/* Hide the ugly default dash marker */
.desktop-menu ul li ul.dropdown li a::before,
.main-menu nav.desktop-menu ul li ul.dropdown li a::before {
    display: none !important;
    content: none !important;
}

/* Gorgeous Hover Animation Effect */
.desktop-menu ul li ul.dropdown li a:hover,
.main-menu nav.desktop-menu ul li ul.dropdown li a:hover {
    color: #d4af37 !important;
    background: #fdfcf9 !important;
    padding-left: 35px !important;
    /* Elegant slide-right effect */
}

/* Add a delicate gold bar on hover */
.desktop-menu ul li ul.dropdown li a::after,
.main-menu nav.desktop-menu ul li ul.dropdown li a::after {
    content: '';
    position: absolute !important;
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) scaleY(0) !important;
    height: 70% !important;
    width: 3px !important;
    background: #d4af37 !important;
    transition: transform 0.3s ease !important;
    border-radius: 0 4px 4px 0 !important;
}

.desktop-menu ul li ul.dropdown li a:hover::after,
.main-menu nav.desktop-menu ul li ul.dropdown li a:hover::after {
    transform: translateY(-50%) scaleY(1) !important;
}

.product-thumb,
.hero-slider-item,
.banner-statistics {
    background-color: transparent;
    position: relative;
    overflow: hidden;
}

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

img {
    transition: none;
    opacity: 1 !important;
}

#preloader {
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.btn-wishlist-v2,
.btn-share-v2 {
    width: 36px !important;
    height: 36px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    /* Default state: Black */
    border: 1.5px solid #333 !important;
    border-radius: 50% !important;
    color: #333 !important;
    font-size: 14px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    background: #fff !important;
    padding: 0 !important;
}

.btn-wishlist-v2:hover,
.btn-share-v2:hover {
    /* Hover state: Gold */
    border-color: var(--secondary-color) !important;
    color: var(--secondary-color) !important;
    background: #fdf9f4 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(184, 147, 94, 0.15) !important;
}

.share-dropdown {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid #f0f0f0;
    width: 280px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.share-dropdown.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.share-dropdown::after {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 14px;
    height: 14px;
    background: #fff;
    border-right: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.share-dropdown-header {
    padding: 14px 18px 10px;
    font-size: 11px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #f5f5f5;
    text-align: center;
}

.share-dropdown-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    padding: 14px 10px;
}

.share-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 10px 5px;
    color: #555;
    font-size: 11px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border-radius: 10px;
    text-align: center;
}

.share-option:hover {
    background: #f5f5f5;
    color: #333;
    text-decoration: none;
}

.share-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
    font-size: 18px;
    color: #fff !important;
    flex-shrink: 0;
    line-height: 1;
    text-align: center;
    overflow: hidden;
}

.share-icon i {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    color: #fff !important;
    font-size: 18px !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.share-whatsapp {
    background: #25D366;
}

.share-option:hover .share-whatsapp {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.share-facebook {
    background: #1877F2;
}

.share-option:hover .share-facebook {
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.share-messenger {
    background: linear-gradient(135deg, #00B2FF, #006AFF);
}

.share-option:hover .share-messenger {
    box-shadow: 0 4px 12px rgba(0, 106, 255, 0.3);
}

.share-instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.share-option:hover .share-instagram {
    box-shadow: 0 4px 12px rgba(220, 39, 67, 0.3);
}

.share-gmail {
    background: #EA4335;
}

.share-option:hover .share-gmail {
    box-shadow: 0 4px 12px rgba(234, 67, 53, 0.3);
}

.share-copy {
    background: #6c757d;
}

.share-option:hover .share-copy {
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

@media (max-width: 575px) {
    .share-modal-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(2px);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .share-modal-backdrop.show {
        opacity: 1;
        visibility: visible;
    }

    .share-dropdown {
        position: fixed !important;
        /* Position at a fixed distance from the bottom of the screen */
        bottom: 20px !important;
        /* Center it relative to the screen instead of the button */
        left: 20px !important;
        right: 20px !important;
        width: calc(100% - 40px) !important;
        max-width: 400px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        transform: translateY(20px) !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        z-index: 10000 !important;
        top: auto !important;
        height: auto !important;
        border-radius: 16px !important;
        border: none !important;
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3) !important;
        background: #fff !important;
        opacity: 0;
        visibility: hidden;
    }

    .share-dropdown.show {
        transform: translateY(0) !important;
        opacity: 1;
        visibility: visible;
    }

    /* Hide the arrow on mobile share-sheet as it's screen-centered */
    .share-dropdown::after {
        display: none !important;
    }

    /* Standardize the buttons for mobile */
    .share-options-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        padding: 10px 10px 20px !important;
        gap: 15px !important;
    }

    .share-option {
        margin: 0 !important;
        width: auto !important;
    }

    /* Ensure all parents don't clip the dropdown */
    .useful-links,
    .share-btn-wrapper,
    .action_link,
    .quantity-cart-box,
    .product-details-inner {
        overflow: visible !important;
    }

    .share-dropdown-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 20px;
        font-size: 12px;
        color: #333;
    }

    .close-share-btn {
        background: #f0f0f0;
        border: none;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        line-height: 1;
        color: #666;
        cursor: pointer;
    }

    .share-dropdown-options {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 10px !important;
        padding: 20px !important;
    }

    .share-option {
        gap: 8px !important;
        padding: 12px 5px !important;
    }

    .share-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 22px !important;
    }

    .btn-share-v2 {
        width: 44px !important;
        height: 44px !important;
        font-size: 18px !important;
    }

    /* Fix user's cramped buttons */
    .btn-cart2,
    .btn-buy-now {
        width: 100% !important;
        height: 50px !important;
        line-height: 50px !important;
        padding: 0 15px !important;
        font-size: 15px !important;
        margin: 0 !important;
        display: block !important;
        text-align: center !important;
        flex: none !important;
        border-radius: 8px !important;
        font-weight: 600 !important;
        letter-spacing: 0.5px !important;
    }

    .action_link {
        order: 3 !important;
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 12px !important;
        margin-top: 10px !important;
    }

    .useful-links {
        order: 2 !important;
        display: flex !important;
        gap: 15px !important;
        justify-content: center !important;
        width: 100% !important;
        margin: 10px 0 !important;
    }
}

/* ===== Wallet Header Icon - Mobile Responsive ===== */
.mobile-header .mini-cart-wrap {
    display: flex;
    align-items: center;
    gap: 0;
}

.mobile-header .mini-cart-wrap a {
    margin-right: 12px !important;
    font-size: 24px;
    position: relative;
}

.mobile-header .mini-cart-wrap a:last-child {
    margin-right: 0 !important;
}

@media (max-width: 575px) {
    .mobile-header .mini-cart-wrap a {
        margin-right: 10px !important;
        font-size: 22px;
    }
}

/* Desktop header icons - prevent wrapping on medium-large screens */
@media (min-width: 992px) and (max-width: 1199px) {
    .header-configure-area ul li {
        margin-left: 10px;
    }

    .header-configure-area ul li a {
        font-size: 22px;
    }

    .header-right .header-search-container {
        margin-right: 10px;
    }
}