body {
    font-size: var(--body-font-size);
    font-family: var(--body-font-family);
    font-weight: var(--body-font-weight);
    background-color: var(--theme-background-color);
    color: var(--theme-base-color);
}

a {
    font-size: var(--body-font-size);
    font-family: var(--body-font-family);
    font-weight: var(--body-font-weight);
}

a,
.nav-link {
    color: var(--theme-base-color);
    text-decoration: none;
}

a:hover,
.nav-link:focus,
.nav-link:hover,
.text_primary {
    color: var(--primary-color);
}
.text-primary {
    color: var(--primary-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font-family);
    font-weight: var(--heading-font-weight);
}

h1,
.h1 {
    font-size: var(--h1-font-size);
}

h2,
.h2 {
    font-size: var(--h2-font-size);
}

h3,
.h3 {
    font-size: var(--h3-font-size);
}

h4,
.h4 {
    font-size: var(--h4-font-size);
}

h5,
.h5 {
    font-size: var(--h5-font-size);
}

h6,
.h6 {
    font-size: var(--h6-font-size);
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0;
}

.pt-20 {
    padding-top: 20px;
}
.py-64 {
    padding-top: 64px;
    padding-bottom: 64px;
}
.pt-64 {
    padding-top: 64px;
}
.pb-64 {
    padding-bottom: 64px;
}

.mb-32 {
    margin-bottom: 32px;
}
.rounded-20 {
    border-radius: 20px;
}
.rounded-16 {
    border-radius: 16px;
}
.gap-32 {
    gap: 32px;
}

.cm-bg-light {
    background-color: #efeeea;
}

.container-width {
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding-inline: 15px;
}
.footer .container-width {
    padding-inline: 15px;
}

.best-selling .card {
    background-color: transparent;
}

.best-selling .slick-arrow.slick-hidden {
    display: block;
}

.full-width {
    max-width: 100%;
}

p {
    margin-top: 0;
    margin-bottom: 0;
}
/* Button CSS */

/* button css start*/
.button {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    font-size: var(--body-font-size);
    border-radius: 0.25rem;
    transition:
        color 0.15s ease-in-out,
        background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out,
        box-shadow 0.15s ease-in-out;
    color: var(--btn-text-color);
    background-color: var(--btn-bkg-color);
    border-color: var(--btn-bkg-color);
}
.button:hover {
    /* color: var(--btn-bkg-color); */
    color: #fbf9f5;
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color);
}

.btn-primary {
    color: var(--btn-text-color);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 100px;
}
/* .btn-primary, .btn-outline-primary {
    padding: 20px 40px;
} */

.btn {
    padding: 20px 40px;
}

.btn-lg {
    padding: 16px 32px;
}
.btn-md {
    padding: 8px 16px;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 100px;
    background-color: transparent;
}
.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    border-color: var(--primary-color);
    transition: all 0.5s ease-in-out;
    background-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #c6a46a !important;
    /* color: var(--primary-color) !important; */
    border-color: #c6a46a;
}

.btn-primary:focus {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}

.slider-item .btn {
    padding: 20px 40px;
}
.view-more-link {
    letter-spacing: 0.1rem;
}

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

.btn-link:hover {
    color: var(--theme-base-color);
}

.shop-page .filter-btn {
    border: 1px solid #ced4da;
    color: #212529;
}
.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 14px;
}

.wishlist-btn.btn-lg {
    width: 58px;
    height: 58px;
    color: var(--theme-background-color);
    padding: 0;
}

.wishlist-btn.btn-lg:hover {
    border-color: var(--primary-color);
}

.input-spinner input.button-minus.btn.btn-sm {
    border-top-left-radius: 100px !important;
    border-bottom-left-radius: 100px !important;
}

.input-spinner input.button-plus.btn.btn-sm {
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
}

div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm) {
    background-color: var(--primary-color);
    border-radius: 100px;
}

.swal2-cancel {
    border-radius: 100px;
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

div:where(.swal2-icon).swal2-warning {
    border-color: var(--primary-color);
    color: var(--primary-color);
    margin: 1.25rem auto 0 auto;
}

.btn-check:active + .btn-primary,
.btn-check:checked + .btn-primary,
.btn-primary.active,
.btn-primary:active,
.show > .btn-primary.dropdown-toggle {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Button CSS End */

/* Form Control */

.form-control {
    background: transparent;
    border: 1px solid #c6a46a;
    border-radius: 50px;
    font-size: 14px;
    letter-spacing: 0.08em;
    padding: 14px 24px;
    outline: none;
    box-shadow: none;
}

.form-control.is-invalid .text-danger {
    color: #dc3545;
    font-weight: 400;
}

.error {
    margin-top: 0.5rem;
    display: inline-block;
}

.auth-page .form-check-label {
    cursor: pointer;
}

.dropzone {
    background: transparent;
    border: 1px solid #c6a46a !important;
    border-radius: 16px !important;
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.08em;
    padding: 14px 24px;
    outline: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropzone .dz-button {
    color: var(--primary-color) !important;
}
.dropzone .dz-message {
    margin: 0 !important;
}
li.page-item.disabled.dots {
    line-height: 18px;
    text-align: center;
}
.page-item.disabled .page-link textarea.form-control {
    border-radius: 1rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: none;
}
.form-select {
    border-radius: 100px;
}

textarea.form-control {
    border-radius: 1rem;
}

.img-wrapper {
    display: inline-block;
    padding: 0.5rem;
    background: #fef7ea;
    border-radius: 0.3rem;
}

.cm-table th {
    color: var(--primary-color);
    padding: 1rem 0.5rem;
}

.cm-table td {
    color: var(--theme-base-color);
}

.table-light {
    --bs-table-bg: #fbf9f5;
}

.total {
    color: var(--primary-color);
}

/* ===== Custom Select Wrapper ===== */
.custom-select {
    position: relative;
    min-width: 150px;
    font-size: 14px;
    user-select: none;
}

/* Hide the real <select> visually but keep it in the DOM for form submission */
.custom-select select {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
}

/* The visible "trigger" button that replaces native select look */
.custom-select__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 18px;
    border: 1px solid #a9824c;
    border-radius: 50px;
    background: #fff;
    color: #3a2e1f;
    cursor: pointer;
    transition: border-color 0.15s ease;
}

.custom-select__trigger:hover,
.custom-select.open .custom-select__trigger {
    border-color: #6b4f24;
}

.custom-select__trigger svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
    stroke: #6b4f24;
}

.custom-select.open .custom-select__trigger svg {
    transform: rotate(180deg);
}

/* Dropdown panel */
.custom-select__panel {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #d8cdb8;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    z-index: 50;

    /* closed state */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition:
        opacity 0.15s ease,
        transform 0.15s ease,
        visibility 0.15s ease;
}

.custom-select.open .custom-select__panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-select__option {
    padding: 10px 18px;
    cursor: pointer;
    color: #3a2e1f;
    transition:
        background 0.15s ease,
        color 0.15s ease;
}

.custom-select__option:hover {
    background: #f3ecdf;
}

.custom-select__option.selected {
    background: var(--primary-color);
    color: #fff;
}

/* Form control end */

.cm-shadow {
    box-shadow:
        0 4px 20px rgb(117 90 39 / 1%),
        0 1px 4px rgba(0, 0, 0, 0.05);
}

.section-title {
    margin-bottom: 2rem;
    font-size: 48px;
    font-family: var(--heading-font-family);
    color: var(--primary-color);
    font-weight: 400 !important;
    /* font-weight: var(--heading-font-weight); */
}

h2 {
    font-size: 48px;
    font-family: var(--heading-font-family);
    color: var(--primary-color);
    font-weight: 400 !important;
}

.section-title.h4 {
    font-size: 24px;
}
.section-title.h3 {
    font-size: 32px;
}
.auth-page .section-title.h3 {
    margin-bottom: 1rem;
}
.cm-card {
    background: #fff;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid transparent;
}

.cm-dropdown {
    background: #fff;
    border-radius: 0.5rem;
    padding: 1rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid transparent;
}

/* Common end */

.product-img-wrapper svg path,
.product-img-wrapper i {
    fill: var(--primary-color);
    color: var(--primary-color);
}

.product-img-wrapper button:hover i {
    color: #fff !important;
}

/* .product-img-wrapper .text-danger,
.card-body-content .text-danger,
.product-card .text-danger {
    display: none !important;
} */

#product-area .product-img-wrapper {
    height: 305px;
}

#product-area .product-img-wrapper .actions button {
    width: 32px;
    height: 32px;
}

.compare-products .product-img-wrapper {
    height: 230px;
}

/* celebrate life section */

.slider-item {
    background: var(--background-color);
    background-image: var(--bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    display: flex;
    align-items: center;
}

.slider-item::before {
    background: var(--overlay-color);
    content: "";
    position: absolute;
    inset: 0;
    height: 100%;
    top: 0;
    left: 0;
    width: 100%;
}

.slider-item:has(.celebrate-life) {
    height: 600px;
}
.celebrate-content {
    z-index: 9;
    position: relative;
}
.section-sub-title {
    color: #c6a46a;
    font-size: 1rem;
    letter-spacing: 4.8px;
    line-height: 24px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-family: var(--body-font-family);
}
.celebrate-life .section-title {
    color: var(--theme-background-color);
    margin: bootm 40px;
}
.celebrate-life .btn-primary {
    background-color: var(--theme-background-color);
    border-color: var(--theme-background-color);
    color: #1b1c1a;
}

.celebrate-life .btn-primary:hover {
    background-color: var(--theme-base-color) !important;
    border-color: var(--primary-color);
    color: var(--theme-background-color) !important;
    transition: all 0.5s ease-in-out;
}

.celebrate-life .btn-primary {
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    line-height: 24px;
    padding: 20px 48px;
}

/* celebrate life section end */
/*
.footer  {
    margin-top: 64px;
}  */

.footer .btn {
    padding: 0;
}

.footer .list-inline-item:not(:last-child) {
    margin-right: 0 !important;
}
section {
    padding: 64px 0;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-input:focus,
.form-select:focus {
    border-color: none;
    box-shadow: none;
}

.dropdown-item.active,
.dropdown-item:active {
    color: var(--btn-text-color);
    background-color: var(--btn-bkg-color);
}

.cursor-pointer {
    cursor: pointer;
}

/* .swal2-cancel {
    background-color: var(--primary-color) !important;
} */

.text-truncate.text-wrap {
    font-size: 13px;
}

.track-link,
.text_decoration,
.toggle-link {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--theme-base-color);
}

/* header css style start */
.header-strip {
    background: var(--primary-color);
    padding: 8px;
    text-align: center;
    width: 100%;
    position: relative;
    color: var(--theme-background-color);
    font-size: 14px;
}

.header-strip .btn-link {
    color: var(--theme-background-color);
}

.header-strip a {
    color: var(--theme-background-color);
    font-weight: bold;
}

.header-top {
    padding: 1rem 0;
    position: relative;
}

/* .header-top::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    border-bottom: 1px solid #CCCCCC;
} */

.header_logo,
.footer_logo {
    /* max-width: var(--logo-width); */
    height: auto;
    display: block;
}

.footer_logo {
    max-width: 220px;
}

.header .grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
}

.theme_logo {
    grid-area: logo;
}

.header_search .input-group select.form-select.category-select {
    width: 20%;
}

.header_search .input-group input.form-control.rounded {
    width: 70%;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

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

.header_search .btn i {
    color: var(--primary-color);
}

/* .header_search {
    position: relative;
    width: 220px;
} */

.header_search .search-input {
    position: absolute;
    z-index: 9;
}

.header_search .input-group .btn {
    background-color: var(--primary-color);
}

.header_search .input-group .btn i {
    color: var(--theme-background-color);
}

.header_right_menu {
    grid-area: menu;
}

.grid.logo-position-left {
    grid-template-areas: "logo search menu";
}

.grid.logo-position-center {
    grid-template-areas: "search logo menu";
    grid-template-columns: 1fr auto 1fr;
}

.header .header_search form {
    width: 100%;
    max-width: 480px;
    margin: 0;
}

.grid.logo-position-center .theme_logo {
    justify-self: center;
}

.grid.logo-position-center .header_right_menu {
    justify-self: end;
}

#favorite_count,
.header .cart-count {
    background-color: var(--primary-color);
    font-size: 0.5rem;
    font-weight: 700;
}

.favourite-count,
.cart-count {
    bottom: 10px;
    left: 80%;
}

#favorite_count {
    left: 30px;
    /* bottom: 8px; */
}

li.dropdown {
    list-style: none;
}

.header_right_menu {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
}

.header .avatar {
    width: 40px;
    height: 40px;
}

.header_navbar .navbar-nav {
    display: flex;
    flex-direction: row;
    gap: 32px;
}

.header_navbar .nav-item a {
    color: var(--theme-base-color);
    position: relative;
    padding: 0.65rem 1rem;
}

.header_navbar .nav-item a:hover,
.header_navbar .nav-item a.active {
    color: var(--primary-color);
}

.header_navbar .nav-item a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 0%;
    height: 3px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.header_navbar .nav-item a:hover,
.header_navbar .nav-item a.active {
    color: var(--primary-color);
    font-weight: bold !important;
}

.header_navbar .nav-item a:hover::after,
.header_navbar .nav-item a.active::after {
    width: 100%;
}

.header-bottom .header_navbar ul .nav-item a {
    text-transform: uppercase;
    font-weight: 600;
}

.navbar .dropdown-item {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 20px;
    color: #1d1b17;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    background-color: #f5f2ea;
    color: var(--primary-color);
}

.navbar .nav-link.active {
    color: var(--primary-color) !important;
}

.navbar .dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: 2px;
}

/* header css style end */

/* slider arrow css start */
.slick-prev,
.slick-next {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    z-index: 1;
    background-color: var(--theme-background-color);
}

/* .slick-prev:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    content: "\f104";
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
    color:var(--btn-bkg-color);
} */

.slick-prev {
    left: -40px;
}

.slick-next {
    right: -40px;
}

.slick-prev:before,
.slick-next:before {
    display: none;
}

.slick-prev:before,
.slick-next:before {
    color: var(--btn-bkg-color);
}

.slick-prev:hover,
.slick-next:hover {
    background-color: var(--btn-text-color);
}

.slider_section .slick-slider .slick-slide {
    margin-left: 0;
    margin-right: 0;
    height: auto;
}

.selected-filter-row:has(.filter-remove-btn) {
    margin-bottom: 1rem;
}

@media (max-width: 1200px) {
    .slick-prev {
        left: 0px;
    }

    .slick-next {
        right: 0px;
    }
}

/* slider arrow css end */

/* dot css start */
.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.slick-dots li {
    width: 16px;
    height: 16px;
    margin: 0;
}

.slick-dots li button {
    background-color: var(--primary-color);
    border: 1px solid var(--theme-background-color);
    border-radius: 50%;
    opacity: 0.25;
    transition: all 0.5s ease-in-out;
    transform: scale(0.75);
    width: 16px;
    height: 16px;
}

.slick-dots li:hover button {
    opacity: 0.75;
}

.slick-dots li.slick-active button {
    opacity: 1;
    transform: scale(1);
}

.slick-dots li button:before {
    display: none;
}

/* dot css end */

/* slider section start*/

/* Make content above gradient */
.slider-item .container {
    position: relative;
    z-index: 2;
}

/* Text Content */

.slider-description h1,
.slider-description h2,
.slider-description h3 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.banner_desc p {
    font-size: 18px;
    margin-bottom: 20px;
}
.hero-slider p {
    font-size: 18px;
}

.hero-slider.slick-dotted.slick-slider {
    margin-bottom: 0;
}

.hero-slider .slider-description .btn {
    padding: 12px 28px;
    border-radius: 4px;
}

.hero-slider .slider-description.position-start {
    left: 2rem;
    right: auto;
}

.hero-slider .slider-description.position-end {
    left: auto;
    right: 2rem;
}

.hero-slider .slider-description.position-center {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
}

.slider_section .hero-slider .slick-dots {
    position: absolute;
    bottom: 20px;
}

.hero-slider .slider-item img {
    width: 100%;
    height: calc(100vh - 118px);
    object-fit: cover;
}

/* slider section end*/

/* category section start*/
.categories-slider.slick-slider .slick-slide img {
    display: inline;
}

.categories-slider.slick-slider .slick-slide {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    height: auto;
}

/* category section end*/

/* Our heritage Start*/
.our-heritage-section .row * {
    margin-top: 0;
}

.our-heritage-section .heritage-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.our-heritage-section .badge-icon {
    width: 41px;
    height: 41px;
    border-radius: 50%;
    background: #e4e2de;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.our-heritage-section .badge-icon i {
    margin-left: 5px;
    font-size: 17px;
}

.our-heritage-section .badge-icon svg {
    width: 22px;
    height: 22px;
}

.our-heritage-section .badge-text {
    display: flex;
    flex-direction: column;
}

.our-heritage-section .badge-title {
    font-size: 1rem;
    color: #2c2520;
    line-height: 1.3;
}

.our-heritage-section .badge-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    color: var(--theme-base-color);
    font-weight: 500;
    margin-top: 0.25rem;
    text-transform: uppercase;
}

.our-heritage-section .badge-divider {
    width: 1px;
    height: 40px;
    background: #ccc7be;
}
/* Our heritage End*/

/* blog section start*/
.blogs-slider.slick-slider .slick-slide img {
    display: inline;
}

.blogs-slider.slick-slider .slick-slide {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    height: auto;
}

.card.card-blog .card-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.blog_card_image {
    position: relative;
}

.blog_card_image .blog_publish_date {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: var(--theme-background-color);
    color: var(--theme-base-color);
    padding: 5px 8px;
    border-radius: 5px;
}

/* category section end*/

/* product section start */

.products-slider.slick-slider .slick-slide {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
    height: auto;
}
/* .best-selling:has(.product-grid) {
    padding-top: 0;
} */
.product-grid .card-body {
    text-align: center;
}

.product-grid .card-body .text-danger {
    display: none;
}

.products-slider.slick-slider .slick-list {
    margin: 0 -0.75rem;
}

.products-slider .card-body .text-danger {
    display: none;
}

.product-like {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 9;
}

.card-product img {
    aspect-ratio: 1;
    object-fit: contain;
    background: var(--theme-background-color);
    width: 100%;
}

.card-product .product_title {
    font-family: var(--body-font-family);
}

.card-product:hover {
    border: 1px solid var(--primary-color);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.12);
    transition: 0.2s;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
}

.card-product .card-product-action {
    bottom: 15%;
    left: 50%;
    opacity: 0;
    position: absolute;
    transform: translateX(-50%) translateY(-50%);
    transition: all 0.3s ease 0s;
    visibility: hidden;
    width: 100%;
    z-index: 9;
}

.card-product:hover .card-product-action {
    opacity: 1;
    visibility: visible;
}

.card-product .btn-action {
    align-items: center;
    background-color: var(--btn-text-color);
    border-radius: 0.5rem;
    box-shadow:
        0 2px 4px -1px rgba(145, 158, 171, 0.2),
        0 4px 5px 0 rgba(145, 158, 171, 0.14),
        0 1px 10px 0 rgba(145, 158, 171, 0.12);
    color: var(--theme-base-color);
    display: inline-flex;
    font-size: 14px;
    height: 34px;
    justify-content: center;
    line-height: 34px;
    text-align: center;
    transition: all 0.3s ease 0s;
    vertical-align: middle;
    width: 34px;
}

.card-product .btn-action:hover {
    background-color: var(--primary-color);
    color: var(--btn-text-color);
}

.card-product .card-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

span.bg-best-seller {
    width: 150px;
    height: 150px;
    overflow: hidden;
    position: absolute;
    top: -1rem;
    right: -1rem;
}

span.bg-best-seller span {
    position: absolute;
    display: block;
    width: 200px;
    padding: 3px 0;
    background: #e60000;
    color: var(--theme-background-color);
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    transform: rotate(45deg);
    top: 30px;
    right: -55px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
}

.bg-left_stock {
    --fc-bg-opacity: 1;
    background-color: #e1ad01 !important;
}

@media (max-width: 989px) {
    .product-grid .col-md-3 {
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }
}

@media (max-width: 767px) {
    .product-grid .col-md-3,
    .product-grid .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 419px) {
    .product-grid .col-md-3,
    .product-grid .col-sm-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 102px) {
    .product-grid .col-md-3,
    .product-grid .col-sm-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* product section end */

/* footer css start */
.footer {
    padding: 64px 0 40px 0;
}

.footer .footer-bottom {
    padding-top: 40px;
    margin-top: 64px;
    position: relative;
}

.footer .nav-link {
    padding-inline: 0;
}

/* footer css end */

/* side filter css start */
.noUi-target {
    background-color: var(--theme-base-color);
    border: none;
    border-radius: 0.5rem;
}

.noUi-horizontal {
    height: 8px !important;
}

.noUi-handle {
    background: var(--theme-background-color);
    border: transparent;
    border-radius: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    cursor: default;
}

.noUi-handle:focus {
    outline: none;
}

.noUi-horizontal .noUi-handle {
    height: 18px !important;
    right: -13px !important;
    top: -6px !important;
    width: 18px !important;
    border-radius: 100px;
    cursor: pointer;
}

.noUi-handle:after,
.noUi-handle:before {
    display: none !important;
}

.noUi-connects {
    border-radius: 6px;
}

.noUi-connect {
    background: var(--primary-color) !important;
}

.noUi-tooltip {
    background-color: transparent;
    background-color: var(--primary-color);
    border: none;
    color: var(--fc-white);
    height: 30px;
    line-height: 30px;
    padding: 0;
    width: 30px;
}

.chevron-down {
    display: inline-block;
    /* transition: 0.5s ease-in-out; */
}

[aria-expanded="true"] .chevron-down {
    transform: rotate(180deg);
}

/* side filter css end */

/* pagination css start */
.page-item .page-link {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--theme-base-color);
}

.page-item .page-link:focus,
.btn:focus {
    box-shadow: 0 0 0 0.25rem
        color-mix(in srgb, var(--primary-color) 25%, transparent);
}

.page-item.active .page-link {
    color: var(--btn-text-color);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* pagination css end */

/* Shop page css start */
#product-pagination {
    margin-top: 64px;
}

/* Shop page css end */

/* product detail page css start */
.slick-slider .slick-slide {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.slider-nav .slick-slide.slick-current img,
.cm-slider-nav .slick-slide.slick-current img {
    border: 2px solid var(--primary-color);
}

.input-group {
    align-items: stretch;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    /* width: 100%; */
    /* width: 115px; */
    /* height: 32px; */
}

.input-group.input-spinner {
    width: 95px;
    height: 32px;
}

.input-spinner .button-minus,
.input-spinner .button-plus {
    background-color: var(--primary-color);
    border-color: rgba(0, 0, 0, 0.125);
    color: var(--theme-background-color);
    height: 2rem;
    width: 1.8rem;
}

.input-spinner .button-minus:hover,
.button-minus.btn:hover,
.input-spinner .button-plus:hover,
.button-plus.btn:hover {
    border-color: rgba(0, 0, 0, 0.125);
}

.button-plus.btn:focus,
.button-minus.btn:focus {
    box-shadow: 0 0 0 0.25rem
        color-mix(in srgb, var(--primary-color) 25%, transparent);
}

.input-spinner .form-input {
    background: 0 0;
    border: 1px solid rgba(0, 0, 0, 0.125);
    height: 100%;
    min-height: 2rem;
    text-align: center;
    width: 2rem !important;
    padding: 0;
}

.form-control:disabled,
input.button-plus.btn.btn-sm:disabled,
input.button-minus.btn.btn-sm:disabled {
    background-color: rgba(117, 90, 39, 0.8);
    opacity: 1;
}

/* .buy-now-btn,
#add-review-button,
.button-outline {
    border-color: 2px solid var(--btn-bkg-color);
    color: var(--btn-bkg-color);
    background-color: var(--btn-text-color);
} */

.buy-now-btn,
.button-outline {
    border-color: 2px solid var(--btn-bkg-color);
    color: var(--btn-bkg-color);
    background-color: var(--btn-text-color);
}

.nav-lb-tab {
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.nav-lb-tab .nav-item {
    margin-right: 2rem;
}

.nav-lb-tab .nav-item .nav-link {
    border-bottom: 2px solid transparent;
    border-radius: 0;
    color: var(--theme-base-color);
    font-weight: 500;
    margin-bottom: -1px;
    padding: 16px 0;
    white-space: nowrap;
}

.nav-lb-tab .nav-item .nav-link.active,
.nav-lb-tab .nav-item .nav-link:hover {
    background-color: transparent;
    border-bottom: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.bottom-0 {
    bottom: 0;
}

.my-8 {
    margin-bottom: 2rem !important;
    margin-top: 2rem !important;
}

.dz-filename {
    white-space: normal !important;
    /* Allow text wrapping */
    overflow: visible !important;
    text-overflow: unset !important;
    max-width: 100% !important;
    display: block !important;
    text-align: center;
    word-break: break-word;
    /* Wrap long filenames */
}

.dz-size {
    display: block;
    font-size: 12px !important;
    text-align: center;
}

.dz-preview .dz-progress {
    display: none !important;
}

.slider.slick-slider.cm-slider-for {
    overflow: hidden;
}

.slider.cm-slider-for.slick-slider span.bg-best-seller {
    top: 0rem;
    right: 0rem;
}

.thumbnail-image-carousel .slick-prev,
.thumbnail-image-carousel .slick-next {
    width: 30px;
    height: 30px;
    z-index: 9;
    background-color: var(--theme-background-color);
}

.thumbnail-image-carousel .slick-prev:before,
.thumbnail-image-carousel .slick-next:before {
    height: 25px;
    font-size: 18px;
}

.thumbnail-image-carousel .slick-prev {
    left: -10px;
}

.thumbnail-image-carousel .slick-next {
    right: -10px;
}

.view-more-container {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
}

.view-more-container.expanded {
    -webkit-line-clamp: unset;
}

/* product detail page css end */

/* login page css start */
.passwordToggler {
    /* color: var(--theme-base-color); */
    color: var(--primary-color);
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

#loginFrm a,
#registerFrm a {
    color: var(--primary-color);
}

.form-control.is-invalid + span .passwordToggler,
.was-validated .form-control:invalid + span .passwordToggler {
    right: 37px !important;
    top: 26px !important;
}

/* login page css end */

/* wishlist page css start */
.icon-lg {
    height: auto;
    aspect-ratio: auto;
    width: 3rem;
}

.icon-xl {
    width: 3.5rem;
    height: auto;
    aspect-ratio: auto;
}

.icon-xxl {
    height: auto;
    aspect-ratio: auto;
    width: 4rem;
}

.icon-shape {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    text-align: center;
    vertical-align: middle;
}

.table > :not(caption) > * > *,
.table > :not(:last-child) > :last-child > * {
    border-color: rgba(0, 0, 0, 0.125);
}

/* wishlist page css end */

/* according product page css start */
.accordion-button:not(.collapsed),
.accordion-button:focus {
    color: var(--primary-color);
    background-color: var(--theme-background-color);
    box-shadow: inset 0 -1px 0 color-mix(in srgb, var(--primary-color) 25%, transparent);
}

/* according product page css end */

/* status budge css start */
.badge {
    padding: 0.5rem 1rem;
    font-size: 16px;
    border-radius: 999px;
    background-color: #d4edda;
    border-radius: 5px;
    border-radius: 100px;
    font-weight: 400;
    height: 42px;
    line-height: 26px;
}

.bg-label-placed,
.bg-label-0 {
    background-color: #fef9e7;
    color: #b7950b;
}

.bg-label-confirmed,
.bg-label-1 {
    background-color: #ebf5fb;
    color: #2874a6;
}

.bg-label-processed,
.bg-label-2 {
    background-color: #f4ecf7;
    color: #884ea0;
}

.bg-label-shipped,
.bg-label-3 {
    background-color: #fef5e7;
    color: #ca6f1e;
}

.bg-label-out-for-delivery,
.bg-label-out_for_delivery,
.bg-label-4 {
    background-color: #e8f8f5;
    color: #117864;
}

.bg-label-delivered,
.bg-label-5 {
    background-color: #ebf9f0;
    color: #239b56;
}

.bg-label-cancelled,
.bg-label-6 {
    background-color: #fdedec;
    color: #c0392b;
}

.bg-label-partially-delivered,
.bg-label-partially_delivered,
.bg-label-7 {
    background-color: #d4edda;
    color: #155724;
}

.bg-label-partially-shipped,
.bg-label-partially_shipped,
.bg-label-8 {
    background-color: rgb(255 87 34 / 15%);
    color: rgb(255 87 34);
}

.bg-label-out-for-delivered,
.bg-label-out_for_delivered,
.bg-label-10 {
    background-color: #e8f8f5;
    color: #117864;
}

.badge.bg-label-pending,
.bg-0 {
    background-color: #fff4cc;
    color: #8c6d1f;
}

.bg-label-return-cancelled,
.bg-6 {
    background-color: #ffe1ec;
    color: #a9153e;
}

.bg-label-return-rejected,
.bg-2 {
    background-color: #ffdbd5;
    color: #a43610;
}

.bg-label-return-pending {
    background-color: #fff4cc;
    color: #8c6d1f;
}

.bg-label-return-approved,
.bg-1 {
    background-color: #d1ecff;
    color: #1b6ca8;
}

.bg-label-return-in-progress,
.bg-3 {
    background-color: #ccf5f2;
    color: #0a645a;
}

.bg-label-return-received,
.bg-4 {
    background-color: #ead9ff;
    color: #602ea2;
}

.bg-label-return-completed,
.bg-5 {
    background-color: #cfffe1;
    color: #21784b;
}

.bg-label-refund_completed,
.bg-label-9 {
    background-color: #dae6ff;
    color: #234aa3;
}

/* status budge css end */

/* scroll to top css start */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    width: 45px;
    height: 45px;
    background-color: var(--btn-bkg-color);
    color: var(--btn-text-color);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    text-align: center;
    line-height: 45px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
    display: none;
}

.scroll-to-top:hover {
    background-color: var(--btn-bkg-color);
    transform: scale(1.1);
}

/* scroll to top css end */

/* product review page css start */
.avatar-lg {
    height: 3rem;
    width: 3rem;
}

/* product review page css end */

/* cart list page css start */
table.cart-list tr,
table.cart-list,
table.cart-list tbody,
table.cart-list td {
    border-width: 0;
    border: 0;
}

/* cart list page css end */

/* page loader css start */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--theme-background-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.spinner {
    border: 5px solid rgba(var(--theme-base-color), 0.5);
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

.btn-compare-remove {
    border-radius: 50%;
    padding: 0;
    height: 24px;
    width: 24px;
}

.btn-compare-remove:hover {
    background-color: var(--theme-base-color);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

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

/* page loader css end */

/* offcanvas css end */

.whatsapp {
    position: fixed;
    bottom: 80px;
    right: 10px;
    z-index: 9999;
}

.whatsapp .whatsapp_support {
    background-color: #fff0;
    font-size: 36px;
    font-weight: 500;
    line-height: 24px;
    background-image: linear-gradient(180deg, #57d163 0%, #23b33a 100%);
    box-shadow: 0 0 25px 0
        rgba(27.54, 156.4, 48.12180555555557, 0.18823529411764706);
    border-style: solid;
    border-width: 4px 4px 4px 4px;
    border-color: #fff;
    border-radius: 50% 50% 50% 50%;
    padding: 12px 12px 12px 12px;
    display: flex;
}

.whatsapp .whatsapp_support svg {
    width: 1em;
    height: 1em;
    fill: white;
}

/* chatbot css start */
#chatbotIcon {
    position: fixed;
    bottom: 20px;
    left: 20px;
    cursor: pointer;
    z-index: 1000;
}

#chatbotIcon i {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

#chatbotIcon i:hover {
    transform: scale(1.1);
}

/* Chatbot Window */
#chatbotWindow {
    position: fixed;
    bottom: 90px;
    left: 20px;
    width: 350px;
    max-height: 500px;
    background: var(--theme-background-color);
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    display: none;
    flex-direction: column;
    z-index: 1001;
}

.chatHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--theme-base-color);
    color: var(--theme-background-color);
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.chatHeader h4 {
    margin: 0;
}

#closeChat {
    cursor: pointer;
    font-size: 20px;
}

.chatMessages {
    padding: 10px;
    flex: 1;
    overflow-y: auto;
    max-height: 250px;
    background: #f1f1f1;
    display: flex;
    flex-direction: column;
}

.chatMessages .message {
    margin-bottom: 10px;
    padding: 8px 12px;
    border-radius: 20px;
    max-width: 80%;
    clear: both;
}

.chatMessages .userMessage {
    background: var(--theme-base-color);
    color: var(--theme-background-color);
    float: right;
    align-self: flex-end;
    border-bottom-right-radius: 0;
}

.chatMessages .botMessage {
    background: #e0e0e0;
    color: #000;
    float: left;
    border-bottom-left-radius: 0;
}

#userMessage {
    width: calc(100% - 20px);
    margin: 10px;
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
    resize: none;
}

#sendBtn {
    margin: 0 10px 10px;
    padding: 8px 12px;
    background: var(--theme-base-color);
    color: var(--theme-background-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: calc(100% - 20px);
}

#sendBtn:hover {
    background: var(--theme-base-color);
}

/* Vivek Styling Start */

.cm-slider-content .gap-4 {
    gap: 2rem !important ;
}

/*Hero Section End*/

/*Brand Section Start*/

.brand_section {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.brand_section::after {
    content: "";
    display: block;
    position: absolute;
    height: 100%;
    aspect-ratio: 1;
    background: var(--theme-btn-text-color);
    filter: blur(50px);
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.brand_section::before {
    content: "";
    display: block;
    position: absolute;
    height: 100%;
    aspect-ratio: 1;
    background: var(--theme-btn-text-color);
    filter: blur(50px);
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
    z-index: 1;
}

.brand_section .cm-brand-slider {
    padding: 64px 0;
}

.brand_section .cm-brand-slider .slick-track {
    display: flex;
    align-items: center;
}

.brand_section .cm-brand-slider.slick-slider .brand-item.slick-slide {
    height: auto;
    margin-left: 32px;
    margin-right: 32px;
}

.brand_section .cm-brand-slider.slick-slider .brand-item.slick-slide img {
    object-fit: contain;
    object-position: center;
    max-height: 68px;
}

/*Brand Section End*/

/* Vivek Styling End */

/* Floating Widget Container */
.chat-container {
    position: fixed;
    bottom: 100px;
    left: 0px;
    width: 380px;
    height: 600px;
    max-height: calc(100vh - 120px);
    background: var(--primary-color);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    color: #e6edf3;
}

.chat-container.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

/* Floating Chat Button */
.chat-toggle {
    position: fixed;
    bottom: 30px;
    left: 0px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1f6feb, #58a6ff);
    color: var(--theme-background-color);
    border: none;
    box-shadow: 0 5px 15px rgba(88, 166, 255, 0.4);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: all 0.3s ease;
}

.chat-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(88, 166, 255, 0.6);
}

.chat-toggle .chat-icon {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.chat-toggle .close-icon {
    position: absolute;
    width: 25px;
    height: 25px;
    transform: scale(0) rotate(-90deg);
    transition: transform 0.3s ease;
}

.chat-toggle.active .chat-icon {
    transform: scale(0) rotate(90deg);
}

.chat-toggle.active .close-icon {
    transform: scale(1) rotate(0);
}

.chat-header {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--primary-color);
}

.bot-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1f6feb, #58a6ff);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    box-shadow: 0 0 10px rgba(88, 166, 255, 0.3);
}

.header-info h1 {
    font-size: 1.1rem;
    font-weight: 600;
}

.header-info p {
    font-size: 0.8rem;
    color: #7d8590;
    margin-top: 3px;
}

.header-close {
    margin-left: auto;
    background: none;
    border: none;
    color: #7d8590;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 5px;
    transition: color 0.2s;
}

.header-close:hover {
    color: #e6edf3;
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

.message {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.9rem;
    line-height: 1.4;
    animation: fadeIn 0.3s ease forwards;
    position: relative;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message.user {
    align-self: flex-end;
    background: #1f6feb;
    color: var(--theme-background-color);
    border-bottom-right-radius: 4px;
    box-shadow: 0 3px 10px rgba(31, 111, 235, 0.2);
}

.message.bot {
    align-self: flex-start;
    background: rgba(48, 54, 61, 0.8);
    border-bottom-left-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: pre-wrap;
}

.chat-input-area {
    padding: 15px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--primary-color);
}

.input-wrapper {
    display: flex;
    gap: 10px;
    background: rgba(48, 54, 61, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 6px 12px;
    transition: all 0.3s ease;
}

.input-wrapper:focus-within {
    border-color: #58a6ff;
    box-shadow: 0 0 0 1px #58a6ff;
}

.chat-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #e6edf3;
    font-size: 0.95rem;
    font-family: "Inter", sans-serif;
    padding: 8px;
    outline: none;
}

.chat-input::placeholder {
    color: #7d8590;
}

.send-btn {
    background: #58a6ff;
    color: #0d1117;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s;
}

.send-btn:hover {
    transform: scale(1.05);
    background: #79c0ff;
}

.send-btn:disabled {
    background: #7d8590;
    cursor: not-allowed;
    transform: none;
}

.typing-indicator {
    display: inline-flex;
    gap: 4px;
    align-items: center;
    padding: 12px 16px;
    background: rgba(48, 54, 61, 0.8);
    border-radius: 16px;
    border-bottom-left-radius: 4px;
    align-self: flex-start;
    display: none;
}

.typing-dot {
    width: 5px;
    height: 5px;
    background: #7d8590;
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) {
    animation-delay: -0.32s;
}

.typing-dot:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes bounce {
    0%,
    80%,
    100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
        background: #e6edf3;
    }
}

/* Suggestions logic */
.suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.suggestion-chip {
    background: rgba(88, 166, 255, 0.1);
    border: 1px solid rgba(88, 166, 255, 0.3);
    color: #58a6ff;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
}

.suggestion-chip:hover {
    background: rgba(88, 166, 255, 0.2);
}

.x-small {
    font-size: 12px;
}
/* .py-5{
    padding: 4rem 0 !important;
} */

.fs-14 {
    font-size: 14px;
}
.fs-18 {
    font-size: 18px;
}
.rounded-8 {
    border-radius: 0.5rem;
}
.sub-taxt-14 {
    font-weight: 600;
    font-size: 14px;
    color: #333b46;
}
.text-muted {
    color: var(--text-muted) !important;
}

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

.slider-nav .btn {
    width: 3rem;
    height: 3rem;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.slider-nav .slick-prev-product {
    border: 1px solid #d1c5b5;
}

.slider-nav .slick-arrow svg {
    color: var(--text-title);
}
.slider-nav .slick-arrow:hover svg {
    color: var(--primary-color);
}

.text-title {
    color: #333b46;
}
.text-p {
    color: rgba(51, 59, 70, 0.88);
}

.text-danger {
    color: #ff4646;
    /* font-weight: 600; */
}

.card-shadow {
    box-shadow: 0px 40px 90px 0px rgba(51, 59, 70, 0.1);
}
p {
    font-size: 1rem;
    color: var(--theme-base-color);
}
.small {
    font-size: 14px;
}
.btn-outline-dark {
    background: #fafafa;
    border: none !important;
}
.btn-dark {
    background: var(--primary-color);
}
ul .list-unstyled li {
    color: #011612;
    font-weight: 500 !important;
}
.btn-check:focus + .btn-outline-dark,
.btn-outline-dark:focus {
    box-shadow: none;
}
.btn-black {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    box-shadow: 0px 20px 35px 0px rgba(0, 0, 0, 0.15);
    border-radius: 0.5rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.slick-dots li button:before {
    font-size: 11px;
    width: 27px;
    height: 27px;
    border-radius: 100%;
    line-height: 27px;
    color: #b6b6b6;
    opacity: 1;
}

.slick-dots li.slick-active button:before {
    color: var(--primary-color);
    opacity: 1;
    border: 1px solid var(--primary-color);
}

.search-bar .btn,
.search-bar input {
    font-weight: 600;
}

.btn-black:hover {
    background-color: #333;
    color: #fff;
}
.cm-price span {
    font-size: 1.125rem;
    color: var(--primary-color);
    font-weight: 600;
}

.cm-price .text-p {
    display: none;
}

.text-danger .text-danger {
    display: none;
}
.btn-white {
    background-color: #fff;
    color: var(--primary-color);
    border: none;
    border-radius: 0.5rem;
}

.fill-warning {
    fill: #ffc107;
}

/* Header */
.main-header .search-bar {
    background-color: #f9f9f9;
    border-radius: 4px;
    font-weight: 600;
}

.header-icons .badge {
    padding: 0 !important;
    width: 12px;
    height: 12px;
    line-height: 13px;
}
.bg-black {
    background-color: var(--primary-color);
}
.text-black {
    color: var(--primary-color);
}
/* Navigation */
.navbar-nav .nav-link {
    padding: 13px 16px;
    text-transform: capitalize;
    color: var(--theme-base-color) !important;
    font-family: "Open Sans";
    font-size: 14px;
    font-weight: 600;
}

.navbar-nav .nav-link.active {
    border-bottom: 2px solid var(--primary-color) !important;
    text-transform: uppercase;
    color: var(--primary-color) !important;
    font-weight: 900;
}

.footer .border-bottom {
    padding-bottom: 2rem;
}

.search-bar .dropdown {
    position: relative;
}

.dropdown-toggle::after {
    border: 0;
    content: "";
    right: 0;
    width: 20px;
    height: 20px;
    background-image: var(--menu-dropdown-image);
    background-repeat: no-repeat;
    background-size: contain;

    filter: brightness(0) saturate(100%) invert(24%) sepia(10%) saturate(1073%)
        hue-rotate(358deg) brightness(95%) contrast(87%);
}

.search-bar .dropdown-toggle::after {
    border: 0;
    content: "";
    right: 0;
    background-image: var(--menu-dropdown-image);
    width: 20px;
    height: 20px;
    position: absolute;
    bottom: 3px;
    right: 0;
}

.hero-slider .slick-next {
    right: 2rem;
}
.hero-slider .slick-prev {
    left: 2rem;
    z-index: 9;
}
.nav-item.dropdown {
    position: relative;
}
.nav-item .dropdown-toggle::after {
    /* bottom: 12px; */
    position: absolute;
    right: 12px;
}
.header-icons svg {
    height: 24px;
}

.categories-section h3 {
    font-family: var(--body-font-family);
}

.categories-section .category-card span {
    font-weight: 600;
}

/* Hero Slider */
.hero-img {
    height: 810px;
    object-fit: cover;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.2);
}

.hero-heading-slide p {
    font-size: 64px;
    color: var(--primary-color);
    font-weight: 400;
}

/* BRAND CAROUSEL */
.brand-carousel .brand-img {
    max-height: 35px;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: opacity 0.3s;
    width: 100%;
}

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

.carousel-fade-left,
.carousel-fade-right {
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.carousel-fade-left {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.carousel-fade-right {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

/* Categories */
.category-card {
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-img-large {
    height: 80%;
    width: auto;
}

.category-img-small-wrapper {
    width: 40%;
}

/* PRODUCT CARD */
.product-card {
    transition: all 0.3s ease;
    border-radius: 0.75rem;
    background-color: transparent;
    height: 100%;
}

.product-img-wrapper {
    background: #f8f8f8;
    position: relative;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.action-icons {
    display: flex;
    gap: 1rem;
}

.action-icons .icon-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(20px) scale(0.8);
    transition: all 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-card:hover .icon-btn {
    transform: translateY(0) scale(1);
}

.icon-btn:hover {
    background: var(--primary);
    color: white;
}

.star-icon {
    width: 14px;
    height: 14px;
}

.fill-warning {
    fill: var(--warning);
    color: var(--warning);
}

/* Tabs Style */
.custom-tabs .nav-link {
    border: none;
    border-radius: 10px;
    padding: 10px 18px;
    color: #333;
    font-weight: 400;
    transition: 0.3s ease;
    font-size: 1.125rem;
}

.custom-tabs .nav-link:hover {
    background: #e5e5e5;
}

.custom-tabs .nav-link.active {
    background: #000;
    color: var(--theme-background-color);
}

.custom-tabs .nav-link:focus {
    outline: 0;
    box-shadow: none;
}

/* Image Wrapper */
.product-img-wrapper {
    border-radius: 0.625rem;
}

/* Image */

.product-card h5 {
    font-family: var(--body-font-family);
    font-size: 1rem;
    color: #1b1c1a;
    font-weight: var(----body-font-weight);
}

/* .section-sub-title{
        font-family: var(--body-font-family);
        font-size: 1.625rem;
} */

/* Overlay */
.product-card .overlay {
    position: absolute;
    inset: 0;
    background: rgba(117, 90, 39, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s ease;
}

/* Icons */
.actions {
    display: flex;
    gap: 12px;
    /* transform: translateY(20px); */
    transition: 0.4s ease;
}

.actions button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: 0.3s;
}

.actions button:hover {
    background: var(--primary-color);
    color: #fff;
}
.actions button:hover svg path {
    fill: #fff;
}

.card-wrapper .row > * {
    margin-top: 2rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
}

/* Hover Effects */
.product-card:hover .overlay {
    opacity: 1;
}

.product-card:hover .actions {
    transform: translateY(0);
}

.product-card:hover img {
    transform: scale(1.05);
}
.tab-pane {
    opacity: 1 !important;
}

/* Deals */
.countdown-box {
    background: white;
    padding: 15px;
    border-radius: 10px;
    min-width: 80px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 0.9375rem;
}

.countdown-box .h3 {
    font-family: "Digital Numbers", var(--body-font-family);
    font-size: 2rem;
    color: #484848;
}

.deal-card img {
    height: 550px;
    object-fit: cover;
}
.deal-info h4 {
    font-family: var(--body-font-family);
    font-size: 1.75rem;
}

.deal-info {
    bottom: 1.5rem;
    left: 1.5rem;
    width: 13.5625rem;
}

.deal-text .text-shadow {
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.deal-text {
    font-weight: 600;
}

/* make slides align bottom */
.deals-slider .slick-track {
    display: flex;
    align-items: flex-start;
}

/* image full height */
.deal-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.deals-slider .slick-slide .deal-card {
    height: 486px;
}
.deals-slider .slick-current .deal-card {
    height: 582px;
}

/* info box position */
.deal-info {
    bottom: 20px;
    left: 20px;
}

/* spacing */
.deals-slider .px-2 {
    padding-left: 8px;
    padding-right: 8px;
}
.arrow-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.arrow-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Feature section */

.features-section p {
    color: #7c7c7c;
}

.features-section h4 {
    font-family: var(--body-font-family);
    margin-bottom: 1rem;
    color: #1a1e23;
    font-weight: 700;
}

.features-section svg {
    margin-bottom: 1.5rem;
}
.features-section svg path {
    fill: var(--primary-color);
}

.features-section .feature-item {
    padding: 0.5rem;
    text-align: center;
}

/* Instagram */
.instagram-slider img {
    aspect-ratio: 1/1;
    object-fit: cover;
    height: 100%;
}

/* make slides align bottom */
.instagram-slider .slick-track {
    display: flex;
    align-items: center;
}

/* default height (odd slides) */
.instagram-slider .img-wrapper {
    height: 308px;
}

/* even slides taller */
.instagram-slider .slick-slide:nth-child(even).img-wrapper {
    height: 380px;
}

/* image fit */
.instagram-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.testimonials-section {
    overflow: hidden;
}
.insta-link {
    font-size: 16px;
    font-weight: 400;
    vertical-align: middle;
    line-height: 24px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--primary-color);
}

section.features-section {
    border-bottom: 1px solid rgb(29 27 23 / 25%);
}

.join-liberty-section .content-wrapper {
    background-color: #1d1b17;
    border-radius: 1rem;
}

.join-liberty-section .content-wrapper {
    background-color: #1d1b17;
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
}

/* Top-left circle - 256x256 */
.join-liberty-section .content-wrapper::before {
    content: "";
    position: absolute;
    top: -128px;
    left: -128px;
    width: 256px;
    height: 256px;
    border-radius: 50%;
    border: 1px solid rgba(228, 226, 222, 0.1);
    pointer-events: none;
}

/* Bottom-right circle - 384x384 */
.join-liberty-section .content-wrapper::after {
    content: "";
    position: absolute;
    bottom: -192px;
    right: -192px;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    border: 1px solid rgba(228, 226, 222, 0.1);
    pointer-events: none;
}

.join-liberty-section .section-title {
    color: #fbf9f5;
}

.join-liberty-section p {
    color: #e8e2da;
}

.news-letter-control-wraper {
    max-width: 448px;
    margin: 0 auto;
}
.news-letter-control-wraper .form-control {
    background: transparent;
    border: 1px solid #c6a46a;
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.08em;
    padding: 14px 24px;
    outline: none;
    box-shadow: none;
}

.news-letter-control-wraper .form-control::placeholder {
    color: #d1c5b5;
    letter-spacing: 0.08em;
}

.news-letter-control-wraper .form-control:focus {
    background: transparent;
    border-color: #c6a46a;
    box-shadow: none;
    color: #fff;
}

/* .news-letter-control-wraper .btn-primary {
    background-color: #c6a46a;
    color: #513a09;
    padding: 20px 48px;
    border-color: #c6a46a;
} */

.btn-secondary {
    background-color: #c6a46a;
    color: #513a09;
    border: 1px solid #c6a46a;
}
.btn-secondary:hover {
    border-color: #fbf9f5;
    background-color: #fbf9f5;
    color: #513a09;
}

.news-letter-control-wraper .btn-primary:focus {
    box-shadow: none;
    border-color: #c6a46a;
}

.testimonial-slider {
    color: #484848;
    height: fit-content;
}
.testimonial-slider .img-wrapper {
    position: relative;
    width: 100%;
}

.testimonial-slider .img-wrapper img {
    object-fit: cover;
}

.testimonial-slider .slick-center .testimonial-card {
    display: flex;
    align-items: center;
}

/* .testimonial-slider .slick-track{
display:flex !important;
align-items:center;
} */
.testimonial-slider .img-wrapper img {
    height: 100%;
    width: 100%;
    border-radius: 1rem;
    position: relative;
    z-index: 9;
}

.testimonial-slider .img-wrapper {
    z-index: 9;
}

.testimonial-slider .img-wrapper::after {
    content: "";
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background: #f2f3f4;
    border-radius: 1rem;
    z-index: 0;
}

/* center slide fixed width */
.testimonial-slider .slick-center {
    opacity: 1;
    z-index: 3;
}

.testimonial-slider .slick-slide {
    height: unset;
    margin: 0 0.75rem;
}

/* allow overflow so center card can expand */
.testimonial-slider .slick-list {
    overflow: visible;
    margin: 0 -15px;
}

/* optional card width full */
.testimonial-slider .testimonial-card {
    width: 100%;
    padding: 2.5rem;
}

.testimonial-slider .slick-track {
    display: flex !important;
    align-items: stretch;
}

.testimonial-slider .slick-slide {
    height: inherit !important;
}

.testimonial-slider .slick-slide > div {
    height: 100%;
}

.testimonial-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Blogs */
.blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
}

.blog-card h4 {
    font-family: var(--body-font-family);
}

.blog-card img {
    width: 100%;
    border-radius: 0.625rem;
}

/* Footer */
footer {
    background-color: #fff;
}
.footer .logo {
    font-weight: 700;
}

.footer a:hover {
    opacity: 1 !important;
    text-decoration: underline !important;
}
.footer .input-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}
.footer h6 {
    font-family: var(--body-font-family);
    font-size: 1rem;
    color: #1b1c1a;
    font-weight: 600;
}

.footer .newsletter {
    width: 331px;
}

.footer .newsletter .input-group {
    border: 1px solid var(--theme-background-color) !important;
    padding: 12px 16px;
    border-radius: 8px;
}

.footer .newsletter .input-group input {
    padding: 0 !important;
}

.footer ul {
    margin-bottom: 0;
}
.footer,
.footer a,
.footer a:hover {
    color: var(--theme-base-color);
}

.footer .cm-language-list,
.footer .cm-language-list:hover {
    color: #212529;
}

.category-circle {
    width: 188px;
    height: 188px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
}

.category-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-title {
    font-size: 24px;
    font-family: var(--heading-font-family);
    color: #1b1c1a;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0px;
    vertical-align: middle;
    margin-top: 34px;
}

.testimonial-footer {
    /* margin-top: auto; */
    text-align: center;
}

.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 25px 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 320px;
    text-align: center;
    /* justify-content: space-between; */
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-avatar {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.testimonial-avatar img {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #c7a46a;
    display: block;
}

.testimonial-rating {
    margin-bottom: 1rem;
}

.testimonial-rating span svg path {
    fill: #d4d4d4;
}

.testimonial-rating span.active svg path {
    fill: var(--primary-color);
}

.testimonial-text {
    font-size: 16px;
    color: var(--theme-base-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 10;
    line-clamp: 10;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonial-name {
    margin-bottom: 4px;
    font-size: 1rem;
    font-family: var(--body-font-family);
    font-weight: 400;
    line-height: 1.5rem;
    color: #1b1c1a;
}

.verified-buyer {
    color: var(--primary-color);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Shop by occasion */

.categories-section {
    padding: 64px 0;
    color: var(--primary-color);
    /* font-family: var(--heading-font-family); */
    font-weight: 400;
    font-size: var(--h2-font-size);
    /* line-height: 72px; */
    letter-spacing: -1.28px;
    vertical-align: middle;
}

.occasion-card {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 0.625rem;
    text-decoration: none;
}

.occasion-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(117, 90, 39, 0) 0%,
        rgba(117, 90, 39, 1) 100%
    );
    border-radius: 0.625rem;
    z-index: 1;
    transition: opacity 0.4s ease;
}

.occasion-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(166, 111, 79, 0.15);
    border-radius: 0.625rem;
    z-index: 1;
    transition: opacity 0.4s ease;
}

/* Remove gradient on hover */
/* .occasion-card:hover::before,
.occasion-card:hover::after {
    opacity: 0;
} */

.occasion-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
    display: block;
}

.occasion-card:hover img {
    transform: scale(1.05);
}

.occasion-content {
    position: absolute;
    left: 24px;
    bottom: 24px;
    color: #fff;
    z-index: 2;
}

.occasion-content span {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 6px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 2%;
}

.occasion-content h3 {
    font-size: 1.5rem;
    margin-top: 9px;
    font-weight: 700;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 2%;
}

/* Figma: large card matches full right column height */
.occasion-large {
    height: 40.8125rem;
}

/* Figma: top right ~half height */
.occasion-top {
    height: 19.6563rem;
}

/* Figma: bottom two cards same as top */
.occasion-small {
    height: 19.6563rem;
}
/* Shop by occasion */

/* story */

.story-section .sub-text {
    font-family: var(--heading-font-family);
    color: #1b1c1a;
    line-height: 1.5rem;
}
.story-section .descreption.fst-italic {
    line-height: 1.5rem;
    color: var(--theme-base-color);
    max-width: 381px;
    border-left: 2px solid var(--primary-color);
}

/* Search Modal */

.search-modal {
    position: fixed;
    inset: 0;
    z-index: 1100;
    visibility: hidden;
    opacity: 0;
    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}

.search-modal.show {
    visibility: visible;
    opacity: 1;
}

.search-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(28, 25, 20, 0.25);
    backdrop-filter: blur(3px);
}

.search-modal-content {
    position: relative;
    height: 100%;
    width: 100%;
    background: rgba(251, 249, 245, 0.55);
    backdrop-filter: blur(3px) saturate(160%);
    -webkit-backdrop-filter: blur(3px) saturate(160%);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 24px 40px;
    transform: translateY(-24px);
    transition: transform 0.4s ease;
    overflow-y: auto;
}

.search-modal.show .search-modal-content {
    transform: translateY(0);
}

.search-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: #4e463a;
    cursor: pointer;
    padding: 8px;
    display: flex;
    transition: opacity 0.2s ease;
}

.search-modal-close:hover {
    opacity: 0.6;
}

.search-modal-inner {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(198, 164, 106, 0.3);
    border-radius: 20px;
    padding: 28px 32px;
    box-shadow: 0 20px 60px rgba(28, 25, 20, 0.12);
}

.search-modal-form {
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--primary-color);
    padding-bottom: 16px;
}

.search-modal-icon {
    color: var(--primary-color);
    margin-right: 14px;
    flex-shrink: 0;
}

.search-modal-input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 24px;
    color: var(--theme-base-color);
}

.search-modal-input::placeholder {
    color: #a39b8b;
}

.search-modal-suggestions {
    margin-top: 36px;
}

.search-modal-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #8a8070;
    margin-bottom: 14px;
}

.search-modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.search-tag {
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid #c6a46a;
    border-radius: 50px;
    font-size: 13px;
    color: var(--primary-color);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.4);
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

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

.search-modal-results {
    margin-top: 24px;
}

.product-img-wrapper img {
    height: 100%;
    object-fit: cover;
}
/* Search Modal End */

.auth-page form {
    margin-bottom: 0;
}

/* Responsive */

@media (min-width: 1200px) {
    .story-section {
        flex-wrap: nowrap;
    }
}

@media (min-width: 992px) {
    .offcanvas-collapse {
        bottom: auto !important;
        display: block;
        height: auto !important;
        left: auto !important;
        position: static;
        right: auto !important;
        top: auto !important;
        transform: none !important;
        visibility: visible;
        width: 100% !important;
    }

    .offcanvas-start {
        border-right: 1px solid rgba(0, 0, 0, 0.125);
    }

    .best-selling .product-img-wrapper {
        height: 453px;
    }

    /* .best-selling .product-img-wrapper img {
        height: 453px;
    } */

    /* .product-img-wrapper {
        height: 453px;
    } */

    /* .navbar-nav .nav-link {
        padding: 13px 16px !important;
    } */

    /* .navbar-nav .nav-link.active {
        padding: 13px 34px !important;
    } */

    .navbar-nav .nav-link {
        padding: 13px 34px !important;
    }
    .navbar .dropdown-menu {
        border: none;
        border-radius: 8px;
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
        padding: 8px 0;
        margin-top: 8px;
        position: relative;
    }
    .slider-item .row {
        height: 100%;
    }

    .slider_section .slick-slider .slick-slide {
        height: calc(100vh - 100px);
    }
}

@media (max-width: 991px) {
    .occasion-large,
    .occasion-top,
    .occasion-small {
        height: 300px;
    }

    .row.align-items-center.our-heritage-section {
        gap: 2rem 0;
    }

    .story-section {
        gap: 2rem 0;
    }

    .nav-item .dropdown-toggle::after {
        top: 15px;
        position: absolute;
        right: 0;
    }

    .navbar .dropdown-menu {
        border: none;
    }

    .header_search .search-input {
        width: 100%;
        left: 0;
    }

    .contact-page .container-width > .row {
        gap: 1.5rem 0;
    }
}

@media (max-width: 768px) {
    .category-circle {
        width: 120px;
        height: 120px;
    }

    .category-title {
        font-size: 18px;
    }
}

@media (max-width: 1199px) {
    .footer-bottom p {
        width: 100%;
        text-align: center;
    }
    .footer-bottom ul {
        width: 100%;
        justify-content: center;
    }
    .header_logo,
    .footer_logo {
        max-width: 200px;
    }
}

@media (max-width: 991px) {
    .hero-img {
        height: 450px;
    }

    .display-3 {
        font-size: 2.5rem;
    }

    .testimonial-slider {
        overflow: hidden;
    }
}

/* offcanvas css start */
@media (max-width: 991px) {
    /* body.menu-open::after {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 98;
    } */

    body.menu-open {
        overflow: hidden;
        height: 100vh;
    }

    .navbar-light .navbar-toggler {
        border: 0;
        padding: 0;
    }

    .navbar-light .navbar-toggler:focus {
        box-shadow: none;
        outline: 0;
    }
    .offcanvas.hiding,
    .offcanvas.show,
    .offcanvas.showing {
        visibility: visible;
    }

    .offcanvas.offcanvas-start {
        left: 0;
        top: 0;
        transform: translateX(0%);
        width: 320px;
    }

    .offcanvas {
        background-clip: padding-box;
        bottom: 0;
        color: var(--theme-base-color);
        display: flex;
        flex-direction: column;
        max-width: 100%;
        outline: 0;
        position: fixed;
        transition: none;
        visibility: hidden;
        z-index: 2;
        border: 0;
    }

    .navbar-collapse {
        position: fixed;
        background: #fff;
        width: 100%;
        left: 0;
        top: 90px;
        z-index: 99;
        height: 100% !important;
        padding: 1.5rem;
        transform: translateY(-100%);
        transition: transform 0.45s ease;
        visibility: hidden;
        pointer-events: none;
        overflow: hidden;
    }

    .navbar-collapse.show {
        transform: translateY(0);
        visibility: visible;
        pointer-events: auto;
    }

    .navbar-collapse .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 0 !important;
    }

    body.menu-open {
        overflow: hidden;
        height: 100vh;
    }

    /* body.menu-open::after {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 90;
    } */

    .navbar-collapse .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 0 !important;
    }

    .navbar-collapse .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .navbar-collapse .nav-link {
        display: block;
        padding: 16px 0;
        font-size: 14px;
        color: #1d1b17;
    }

    .navbar-collapse .nav-link.active {
        color: #755a27;
        border-bottom: 2px solid #755a27;
    }

    .badges-wrapper .row {
        gap: 16px 0;
    }

    .hero-heading-slide p {
        font-size: 48px;
    }

    .hero-slider .slider-item .btn.btn-outline-primary {
        border-color: #fbf9f5;
        background-color: #fbf9f5;
    }
    .hero-slider .slider-item .btn-outline-primary:hover {
        color: var(--primary-color);
    }
    .hero-slider .slick-prev {
        left: 6px;
    }
    .hero-slider .slick-next {
        right: 6px;
    }

    .header-top .grid {
        display: flex;
        justify-content: space-between;
        gap: 0.5rem;
    }

    .header-top .grid .theme_logo {
        order: 2;
    }
    .header-top .grid .header_right_menu {
        order: 3;
    }

    .header-top .grid .header-bottom {
        order: 1;
        display: flex;
        width: 86px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .slider_section .cm-slider-content .hero-heading-slide {
        max-width: 65%;
    }
}

@media (min-width: 768px) {
    .deals-slider-wrapper {
        padding-left: 8.5rem;
    }
    .deals-slider-wrapper .slider-nav {
        width: 120px;
        position: absolute;
        bottom: 0;
        left: 0;
    }

    .testimonial-slider .slick-center .img-wrapper {
        height: 15.125rem;
    }

    .testimonial-slider .slick-center .testimonial-card {
        height: 25rem;
        display: flex;
        align-items: center;
    }

    /* .testimonial-slider .testimonial-card {
        height: 18.75rem;
    } */

    .testimonial-slider .slick-center .testimonial-card {
        min-height: 25rem;
    }

    .slider-nav {
        display: flex;
    }
    .deals-slider-wrapper .slick-dots {
        bottom: 0;
    }

    .testimonial-slider .img-wrapper {
        height: 11.25rem;
    }
}

@media (max-width: 767px) {
    .category-img-large {
        position: relative !important;
        width: 100%;
        height: auto;
    }

    .category-img-small-wrapper {
        width: 100%;
    }

    .category-card.d-flex {
        flex-direction: column;
    }
    .slider-nav {
        display: none;
    }
    .deals-slider-wrapper .slick-dots {
        bottom: -50px;
    }

    .footer .border-bottom {
        gap: 1rem;
    }
    .countdown-box .h3 {
        font-size: 1.5rem;
    }
    .countdown-box {
        min-width: auto;
    }

    .countdown {
        justify-content: center;
    }

    .header-icons span {
        display: none;
    }

    .testimonial-card .row {
        gap: 2rem;
    }

    .slick-dots {
        bottom: -40px;
    }

    .hero-heading-slide p {
        font-size: 42px;
        color: var(--primary-color);
        font-weight: 400;
    }

    .section-title {
        font-size: 32px;
    }

    .auth-page .section-title {
        font-size: 32px;
        margin-bottom: 1rem;
    }

    .hero-slider .cm-slider-content {
        padding: 0 30px;
    }

    .best-selling .pt-64 {
        padding-top: 32px;
    }
    /*
    .header_right_menu {
        display: none;
    } */
}

@media (max-width: 767px) {
    .hero-slider .slider-description .banner_desc {
        display: none;
    }

    .hero-slider .slider-description .btn {
        line-height: 1.2;
        padding: 0.3rem 0.5rem;
        font-size: 0.8rem;
    }

    .slider_section .hero-slider .slick-dots {
        bottom: 10px;
    }

    .footer {
        padding-top: 50px;
    }

    .footer .footer-bottom {
        margin-top: 40px;
    }

    .footer .nav-link {
        padding-block: 0.2rem;
    }

    .header-top {
        padding: 0.75rem 0;
    }

    .header_right_menu {
        gap: 5px;
    }

    .header .avatar {
        width: 30px;
        height: 30px;
    }
}

/* @media (max-width: 767.98px) {
    .search-modal-content {
        padding: 64px 16px 32px;
    }

    .search-modal-input {
        font-size: 20px;
    }

    .search-modal-close {
        top: 16px;
        right: 16px;
    }
} */

@media (max-width: 767px) {
    /* .section+.section,
    .footer {
        margin-top: 50px;
    } */

    /* .mb-3 {
        margin-bottom: .5rem !important;
    } */

    .mb-4 {
        margin-bottom: 1rem !important;
    }

    .mt-4 {
        margin-top: 1rem !important;
    }

    .search-modal-content {
        padding: 64px 16px 32px;
    }

    .search-modal-input {
        font-size: 20px;
    }

    .search-modal-close {
        top: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .chat-container {
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%;
        max-height: 100vh;
        border-radius: 0;
        border: none;
        transition: transform 0.3s ease;
    }

    .chat-container:not(.active) {
        transform: translateY(100%);
    }
}

@media (max-width: 575px) {
    .slider_section .cm-slider-content {
        max-width: 100%;
    }
    .header_logo,
    .footer_logo {
        max-width: 150px;
    }

    .filter-btn-wrap-main .filter-btn-wrap {
        width: 100%;
    }

    .filter-btn-wrap-main .sort-wrap {
        width: 100%;
    }
}
