@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

.gap-30 {
    gap: 24px;
}

.gap-20 {
    gap: 20px;
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
}

:root {
    --alt-font: "Kanit", sans-serif;
    --primary-font: "Instrument Sans", sans-serif;
    --text-color: #212529;
    --base-color: #357b7f;
    --dark-color: #a1a4a3;
    --closed: 14rem;
    --open: 36rem;
    --gap: 1.25rem;
    --speed: 400ms;
    --accent: #b45309;
    --card-height: 600px;
}

@media (max-width: 1024px) {
    :root {
        --closed: 10rem;
        --open: 28rem;
    }
}

@media (max-width: 768px) {
    :root {
        --closed: 8rem;
        --open: 22rem;
    }
}

@media (max-width: 425px) {
    :root {
        --closed: 6rem;
        --open: 18rem;
        --card-height: 500px;
    }
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body,
html {
    height: 100%;
}

html {
    scroll-behavior: smooth;
}

html,
body,
div,
span,
img,
ol,
ul,
li,
a,
p,
h1,
h2,
h3,
h4,
h5,
h6,
option,
legend,
label,
table,
th,
td,
tr,
article,
aside,
caption,
figure,
footer,
header,
hgroup,
mark,
nav,
section,
time,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}

img {
    max-width: 100%;
}

a:hover,
a:focus,
a:active {
    text-decoration: none;
    outline: none !important;
    border: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

input:focus {
    outline: none;
}

input::-moz-focus-inner {
    border: 0;
    display: none;
}

input::-webkit-focus-inner {
    border: 0;
    display: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}

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

::-webkit-input-placeholder {
    color: var(--third-color);
    opacity: 1;
    /* Firefox */
}

:-ms-input-placeholder {
    color: var(--third-color);
    opacity: 1;
    /* Firefox */
}

::-ms-input-placeholder {
    color: var(--third-color);
    opacity: 1;
    /* Firefox */
}

::placeholder {
    color: var(--third-color);
    opacity: 1;
    /* Firefox */
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: var(--third-color);
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color: var(--third-color);
}

table {
    border-collapse: collapse;
}

html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
}

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

figure {
    margin: 0px;
}

form {
    position: relative;
}

.form-control:focus {
    outline: none !important;
    -webkit-box-shadow: 0 0 0;
    box-shadow: 0 0 0;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    font-size: inherit;
    color: inherit;
    font-weight: inherit;
    line-height: inherit;
}

h1:hover a,
h2:hover a,
h3:hover a,
h4:hover a,
h5:hover a,
h6:hover a {
    font-size: inherit;
    color: inherit;
    font-weight: inherit;
}

hr {
    margin: 0;
    padding: 0;
    border-color: var(--primary-black);
}

ul {
    list-style-type: none;
}

li {
    list-style: none;
}

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

input,
textarea,
button {
    border: 0px;
}

body {
    font-family: var(--primary-font);
    font-size: 16px;
    line-height: 1.6;
    color: #212529;
    background-color: #f4f6f6;
}

.modal-open {
    padding-right: 0 !important;
}

.bx-wrapper .bx-loading {
    display: none !important;
}

.form-select:focus {
    border-color: none;
    outline: 0;
    box-shadow: none;
}

.form-control {
    color: var(--dark-color);
}

.form-control:focus {
    color: var(--dark-color);
    border-color: #dfe1e1;
    outline: 0;
    box-shadow: none;
}

.search-input::-webkit-input-placeholder {
    color: var(--dark-color);
}

.search-input::-moz-placeholder {
    color: var(--dark-color);
}

.search-input:-ms-input-placeholder {
    color: var(--dark-color);
}

.search-input::placeholder {
    color: var(--dark-color);
}

h1,
h2,
h3 {
    line-height: 1.1;
}

.heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.heading-title {
    color: #181c1d;
    font-family: Kanit;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
}

.row {
    --bs-gutter-x: 1.875rem;
}

.custom-gutter-x {
    --bs-gutter-x: 40px;
}

.custom-gutter-y {
    --bs-gutter-y: 30px;
}

.ml-6 {
    margin-left: 6px;
}

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

.py-40 {
    padding-top: 40px;
    padding-bottom: 40px;
}

.py-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.pb-24 {
    padding-bottom: 24px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-70 {
    padding-bottom: 70px;
}

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

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

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

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

.pr-30 {
    padding-right: 30px;
}

.pl-30 {
    padding-left: 30px;
}

.p-30 {
    padding: 30px;
}

.p-40 {
    padding: 40px;
}

.ptb-30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.p-20 {
    padding: 20px;
}

.pb-70 {
    padding-bottom: 70px;
}

.py-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.gap-20 {
    gap: 20px;
}

.gap-24 {
    gap: 24px;
}

.gap-12 {
    gap: 12px;
}

.wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.bg-cover {
    background-size: cover !important;
}

.bg-center {
    background-position: center !important;
}

.bg-no-repeat {
    background-repeat: no-repeat !important;
}

input[type=checkbox] {
    accent-color: #357b7f;
}

.error-text {
    color: red;
    font-size: 14px;
    margin-top: 4px;
    display: block;
}

.input-error {
    border: 1px solid red !important;
    color: inherit !important;
}

.footer-list li a {
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.footer-list li a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: currentColor;
    transition: width 0.3s ease;
}

.footer-list li a:hover::after {
    width: 100%;
}

.footer__left__social--list svg {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: center;
}

.footer__left__social--list:hover svg {
    transform: scale(1.2);
}

.footer__bottom__links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s ease;
}

.footer__bottom__links a img,
.footer__bottom__links a p {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer__bottom__links a:hover img {
    transform: scale(1.1) rotate(5deg);
}

.footer__bottom__links a:hover p {
    transform: translateX(4px);
    opacity: 0.9;
}

.follow__us__icon a svg {
    transition: transform 0.3s ease;
}

.follow__us__icon a:hover svg {
    transform: scale(1.1) rotate(5deg);
}

@media screen and (max-width: 991px) {
    .heading-title {
        font-size: 26px;
        line-height: 36px;
    }

    .mb-24 {
        margin-bottom: 24px !important;
    }

    .py-60 {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .layout .pagination__nav {
        margin: 10px 0 20px !important;
    }

    .pb-70 {
        padding-bottom: 20px;
    }
}

@media screen and (max-width: 767.98px) {
    .layout .pagination__nav {
        margin: 0 !important;
    }

    .layout .pagination__nav li.page-item a {
        font-size: 16px !important;
        padding: 5px 16px !important;
    }

    .layout .pagination__nav li.page-item.active a {
        font-size: 16px !important;
        padding: 5px 16px !important;
    }

    .py-40 {
        padding-top: 20px;
        padding-bottom: 20px;
    }

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

    .pb-60 {
        padding-bottom: 20px;
    }
}

main {
    display: grid;
    gap: 1.5rem;
    justify-items: center;
}

.breadcrumb {
    gap: 12px;
    margin-bottom: 25px;
}

.breadcrumb .breadcrumb-item a {
    color: #357b7f;
    font-family: "Instrument Sans";
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

.breadcrumb .breadcrumb-item.active {
    color: #5a6464;
}

.content-section {
    background: #fff;
    padding: 24px;
    border-radius: 16px;
}

.gap-24 {
    gap: 24px;
}

.tag-new {
    color: #fff;
    font-family: "Instrument Sans";
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    position: absolute;
    top: 20px;
    display: inline-flex;
    padding: 3px 12px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    left: 20px;
    z-index: 22;
    border-radius: 2px 17px 17px 2px;
    background: #f9791d;
}

.mid-content-block {
    border-radius: 16px;
    padding: 24px;
}

.pro-store {
    color: var(--Orange-500, #f9791d);
    font-family: "Instrument Sans";
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    margin-bottom: 14px;
}

.product-title {
    color: var(--Dark-900, #181c1d);
    font-family: "Instrument Sans";
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 20px;
}

.product-weight-block {
    padding: 36px 0;
}

.weight-title {
    color: var(--Dark-900, #181c1d);
    font-family: "Instrument Sans";
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 12px;
}

.product-offer-price {
    color: var(--Dark-900, #181c1d);
    font-family: Kanit;
    font-size: 40px;
    font-weight: 600;
    line-height: 40px;
}

.product-regular-price {
    color: var(--Dark-500, #919f9f);
    font-family: "Instrument Sans";
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    text-decoration-line: line-through;
}

.product-price-block {
    border-bottom: 1px solid var(--Dark-100, #e9eeee);
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.product-variant {
    justify-content: space-between;
}

.product-variant-info-list {
    border-radius: 24px;
    background: var(--Dark-10, #f4f6f6);
    padding: 6px 17px;
    gap: 10px;
}

.product-variant-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.product-variant-info .variant-title {
    color: var(--Dark-900, #181c1d);
    font-family: "Instrument Sans";
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}

.product-variant-info .variant-value {
    color: var(--Light-Green-500, #357b7f);
    font-family: "Instrument Sans";
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
}

.promo-banner {
    border-radius: 16px;
    background: var(--Yellow-500, #f9c71d);
    padding: 23px 30px;
    margin-bottom: 12px;
}

.promo-banner-off {
    color: var(--Dark-900, #181c1d);
    font-family: "Instrument Sans";
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
}

.promo-banner-order {
    color: var(--Dark-800, #323b3a);
    font-family: "Instrument Sans";
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}

.promo-banner-badge {
    border-radius: 8px;
    background: var(--Yellow-300, #fbdd75);
    padding: 6px 10px;
    color: var(--Dark-900, #181c1d);
    font-family: "Instrument Sans";
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}

.order-details-title {
    color: var(--Dark-900, #181c1d);
    font-family: "Instrument Sans";
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--Dark-100, #e9eeee);
    margin-bottom: 24px;
}

.quantity-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.quantity-container .quantity-label {
    margin-right: 10px;
    color: var(--Gray-1000, #211e1e);
    font-family: "Instrument Sans";
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
}

.quantity-container .quantity-controls {
    display: flex;
}

.quantity-container .quantity-controls button {
    display: flex;
    padding: 11px 10px;
    align-items: center;
    gap: 10px;
    background: var(--Dark-10, #f4f6f6);
    border-radius: 4px;
}

.quantity-container .quantity-controls button:hover {
    background: var(--Light-Green-500, #357b7f);
}

.quantity-container .quantity-controls .btn-decrease:hover path,
.quantity-container .quantity-controls .btn-increase:hover path {
    fill: #fff;
}

.quantity-container .quantity-controls input {
    display: flex;
    width: 36px;
    padding: 4px 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--Dark-10, #f4f6f6);
}

.quantity-container .quantity-controls #increase path,
.quantity-container .quantity-controls #decrease path {
    transition: fill 0.3s ease;
}

.order-variant {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-self: stretch;
}

.order-variant-item {
    color: var(--Dark-600, #5a6464);
    font-family: "Instrument Sans";
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
}

.order-variant .variant-picker-label {
    color: var(--Dark-900, #181c1d);
    text-align: right;
    font-family: "Instrument Sans";
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
}

.order-subtotal {
    border-top: 1px solid var(--Dark-100, #e9eeee);
    margin-top: 27px;
    padding-top: 27px;
    margin-bottom: 24px;
}

.order-subtotal-label,
.order-subtotal-amount {
    color: var(--Dark-900, #181c1d);
    font-family: "Instrument Sans";
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
}

.details-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
}

.details-buttons .coupon-btn {
    border-radius: 8px;
    border: 1px solid var(--Yellow-500, #f9c71d);
    background: var(--Yellow-50, #fef8e2);
    color: var(--Dark-900, #181c1d);
    text-align: left;
    font-family: "Instrument Sans";
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    padding: 12px 16px;
}

.details-buttons button.btn.buy-now-btn {
    border-radius: 8px;
    background: var(--Light-Green-500, #357b7f);
    color: #fff;
    text-align: center;
    font-family: "Instrument Sans";
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    padding: 12px 16px;
}

.details-buttons .add-cart-btn {
    border-radius: 8px;
    border: 1px solid var(--Light-Green-300, #7cabae);
    color: var(--Dark-900, #181c1d);
    text-align: center;
    font-family: "Instrument Sans";
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    background: #fff;
    padding: 12px 16px;
}

.details-buttons .add-cart-btn:hover {
    background: var(--Light-Green-500, #357b7f);
    color: #fff;
}

.details-buttons button.btn.buy-now-btn:hover:hover {
    background: #fff;
    color: #181c1d;
}

.pro-banner {
    border-radius: 16px;
    background: var(--Magenta-400, #9d4ca9);
    padding: 40px 0 0 40px;
}

.pro-banner-title {
    color: #fff;
    font-family: Kanit;
    font-size: 60px;
    font-weight: 700;
    line-height: 72px;
}

.pro-banner .juice-highlight {
    color: var(--Yellow-500, #f9c71d);
    font-family: Kanit;
    font-size: 60px;
    font-weight: 700;
    line-height: 72px;
}

.pro-banner .btn.details-banner-btn {
    border-radius: 30px;
    background: #fff;
    margin-top: 60px;
    color: var(--Dark-900, #181c1d);
    font-family: "Instrument Sans";
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
}

.mySwiper {
    box-sizing: border-box;
    padding-top: 14px;
}

.mySwiper .swiper-slide {
    height: auto;
    padding: 14px 22px;
    border-radius: 10px;
    border: 1px solid var(--Light-Green-500, #fff);
    background: var(--White, #fff);
    cursor: pointer;
}

.mySwiper .swiper-slide:hover {
    border: 1px solid var(--Light-Green-500, #357b7f);
}

.mySwiper .swiper-slide-thumb-active {
    opacity: 1;
}

.tab-block.product-detalis-tab .nav-tabs .nav-item .nav-link {
    border-bottom: 3px solid var(--Light-Green-500, #357b7f);
    border-radius: 0;
    background: #fff;
    color: #fff;
    font-family: "Instrument Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    height: 74px;
    padding: 0;
}

.tab-block.product-detalis-tab .nav-tabs .nav-item .nav-link.active {
    border-bottom: 3px solid var(--Orange-500, #f9791d);
}

.tab-block.product-detalis-tab ul.nav.nav-fill.nav-tabs {
    gap: 60px;
}

.product-details-tab-section .product-detalis-tab {
    border-radius: 12px;
    border: 1px solid var(--Dark-200, #dfe1e1);
    background: none !important;
    margin-top: 0;
}

.product-details-tab-section .tab-block-inner {
    background: var(--Light-Green-500, #357b7f);
    border-radius: 12px;
    border: 1px solid var(--Dark-200, #dfe1e1);
    padding: 0 40px;
}

.product-details-tab-section .tab-product-list {
    padding: 40px;
}

.product-details-tab-section .description-title {
    color: var(--Dark-900, #181c1d);
    font-family: "Instrument Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
}

.product-details-tab-section .description-subtitle,
.product-details-tab-section .description-list-order-title {
    color: var(--Dark-900, #181c1d);
    font-family: "Instrument Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
}

.product-details-tab-section .description-text,
.product-details-tab-section .description-list-order ul li {
    color: var(--Dark-900, #181c1d);
    font-family: "Instrument Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
}

.product-details-tab-section ul.description-list-order-items li {
    list-style-type: disc;
}

.product-details-tab-section .description-list-order ul {
    padding-left: 20px;
}

.details-reviews {
    color: var(--Dark-900, #181c1d);
    font-family: "Instrument Sans";
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 42px;
}

.details-reviews-btn {
    border-radius: 6px;
    background: var(--Light-Green-500, #357b7f);
    padding: 10px 16px;
    color: var(--White, #fff);
    font-family: "Instrument Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
}

.details__separator__left {
    margin: 0 24px;
    height: 120px;
    width: 1px;
    background: #e9eeee;
}

.rating-breakdown .progress {
    width: 315px;
    border-radius: 4px;
}

.rating-breakdown .progress-bar.bg-warning {
    border-radius: 4px;
}

.rating-breakdown .progress-count {
    color: var(--Dark-500, #919f9f);
    font-family: "Instrument Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
}

.customer-review-list,
.total-customer-reviews {
    border-radius: 12px;
}

.total-customer-reviews .total-reviews,
.total-customer-reviews .average-rating {
    color: var(--Dark-800, #323b3a);
    font-family: "Instrument Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    padding-bottom: 14px;
}

.total-customer-reviews .total-reviews-count {
    color: var(--Dark-900, #181c1d);
    font-family: Kanit;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
}

.total-customer-reviews .average-rating {
    color: var(--Dark-800, #323b3a);
    font-family: "Instrument Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    padding-bottom: 12px;
}

.average-rating-value .product-info .product-review li i {
    font-size: 18px;
}

.average-rating-value .product-info .product-review li .rating {
    font-size: 18px;
}

.average-rating-description {
    color: var(--Dark-800, #323b3a);
    font-family: "Instrument Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    margin-top: 8px;
}

.review-card-body .rating-count {
    color: var(--Dark-500, #919f9f);
    font-family: "Instrument Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
}

.review-card .review-card-sub-title {
    color: var(--Dark-900, #181c1d);
    font-family: "Instrument Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
}

.review-card .review-card-description.mb-0 {
    color: var(--Dark-700, #414d4f);
    font-family: "Instrument Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    margin-top: 16px;
}

.customer-review-list button.btn.btn-teal {
    color: var(--White, #fff);
    font-family: "Instrument Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
}

.product-variant {
    justify-content: space-between;
}

@media (min-width: 1441px) {
    .tab-block .col-xl-3 {
        flex: 0 0 auto;
        width: 20%;
    }
}

@media screen and (min-width: 992px) and (max-width: 1440px) {
    .tab-block .col-xl-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .tab-block .product-card .card-img-top {
        margin: 0 auto;
    }

    .promo-banner div {
        flex-direction: column;
        gap: 12px;
    }

    .rating-breakdown .progress {
        width: 145px;
    }
}

@media (max-width: 991px) {
    .rating-breakdown .progress {
        width: 145px;
    }

    .product-details-tab-section {
        margin-bottom: 24px;
    }

    .mid-content-block,
    .tab-block.product-detalis-tab {
        margin-top: 24px !important;
    }
}

@media screen and (min-width: 990px) and (max-width: 1399px) {

    .pro-banner-title,
    .pro-banner .juice-highlight {
        font-size: 34px;
        line-height: 45px;
    }
}

@media screen and (max-width: 767px) {
    .promo-banner-off {
        font-size: 18px;
    }

    .promo-banner {
        padding: 23px 20px;
    }

    .promo-banner-badge {
        font-size: 14px;
    }

    .order-details-title {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .quantity-container .quantity-label {
        font-size: 16px;
    }

    .order-variant {
        gap: 18px;
    }

    .order-variant-item {
        font-size: 16px;
    }

    .order-subtotal-label,
    .order-subtotal-amount {
        font-size: 18px;
    }

    .order-subtotal {
        margin-top: 20px;
        padding-top: 20px;
        margin-bottom: 18px;
    }

    .pro-banner-title {
        font-size: 45px;
        line-height: 35px;
    }

    .pro-banner .juice-highlight {
        font-size: 45px;
    }

    .pro-banner .btn.details-banner-btn {
        margin-top: 45px;
        font-size: 18px;
        line-height: 18px;
    }

    .product-details-tab-section .tab-block-inner {
        padding: 0 16px;
    }

    .tab-block.product-detalis-tab .nav-tabs .nav-item .nav-link {
        font-size: 18px;
    }

    .tab-block.product-detalis-tab ul.nav.nav-fill.nav-tabs {
        gap: 18px;
    }

    .product-details-tab-section .tab-product-list {
        padding: 25px;
    }

    .customer-review-action {
        gap: 10px;
    }

    .rating-breakdown .progress {
        width: 230px;
    }

    .details-reviews {
        font-size: 20px;
        line-height: 25px;
    }

    .details__separator__left {
        height: 30px;
    }

    .total-customer-reviews {
        padding-right: 20px !important;
        padding-left: 20px !important;
    }

    .total-customer-reviews-wrapper {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 10px;
    }

    .details-reviews-btn {
        padding: 10px;
        font-size: 15px;
        line-height: 20px;
    }

    .customer-review-list {
        padding: 20px;
    }

    .customer-review-list button.btn.btn-teal {
        font-size: 16px;
    }

    .tag-new {
        font-size: 14px;
        top: 10px;
        left: 10px;
        padding: 2px 8px;
    }

    .details__separator__left {
        display: none;
    }
}

@media (max-width: 575px) {
    .product-details-tab-section .tab-block-inner {
        padding: 0 16px;
    }

    .tab-block.product-detalis-tab .nav-tabs .nav-item .nav-link {
        font-size: 16px;
    }

    .tab-block.product-detalis-tab ul.nav.nav-fill.nav-tabs {
        gap: 14px;
    }
}

.product-variant {
    align-items: flex-start !important;
    gap: 12px;
}

.product-review-block {
    gap: 12px;
}

@media (max-width: 1199px) {
    .product-variant-info .variant-title {
        font-size: 12px;
    }

    .product-variant-info .variant-value {
        font-size: 12px;
    }

    .product-weight-block {
        padding: 20px 0;
    }

    .pro-banner-title,
    .pro-banner .juice-highlight {
        font-size: 40px;
        line-height: 46px;
    }

    .pro-banner {
        padding: 15px 0 0 15px;
    }

    .promo-banner {
        padding: 20px 15px;
    }

    .tab-block.product-detalis-tab ul.nav.nav-fill.nav-tabs {
        gap: 15px;
    }

    .tab-block.product-detalis-tab .nav-tabs .nav-item .nav-link {
        font-size: 16px;
    }

    .product-details-tab-section .tab-block-inner {
        padding: 0 15px;
    }

    .product-details-tab-section .tab-product-list {
        padding: 15px;
    }

    .details-reviews {
        font-size: 16px;
    }

    .details-reviews-btn {
        font-size: 14px;
    }

    .promo-banner-badge {
        padding: 6px 6px;
        font-size: 12px;
    }

    .product-offer-price {
        font-size: 35px;
        line-height: 35px;
    }
}

@media (max-width: 359.98px) {
    .promo-banner-off {
        font-size: 16px;
    }

    .promo-banner {
        padding: 23px 16px;
    }

    .promo-banner-badge {
        font-size: 14px;
    }

    .pro-banner-title {
        font-size: 40px;
        line-height: 30px;
    }

    .pro-banner .juice-highlight {
        font-size: 40px;
    }

    .pro-banner .btn.details-banner-btn {
        margin-top: 40px;
        font-size: 18px;
        line-height: 18px;
    }

    .product-details-tab-section .tab-block-inner {
        padding: 0 16px;
    }

    .tab-block.product-detalis-tab .nav-tabs .nav-item .nav-link {
        font-size: 16px;
    }

    .tab-block.product-detalis-tab ul.nav.nav-fill.nav-tabs {
        gap: 14px;
    }

    .product-details-tab-section {
        margin-bottom: 20px;
    }

    .customer-review-action {
        gap: 10px;
    }

    .rating-breakdown .progress {
        width: 195px !important;
    }

    .details-reviews {
        font-size: 20px;
        line-height: 25px;
    }

    .details__separator__left {
        height: 30px;
    }

    .total-customer-reviews {
        padding-right: 20px !important;
        padding-left: 20px !important;
    }

    .total-customer-reviews-wrapper {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 10px;
    }

    .details-reviews-btn {
        padding: 10px;
        font-size: 15px;
        line-height: 20px;
    }

    .product-details-tab-section .tab-product-list {
        padding: 12px;
    }

    .customer-review-list {
        padding: 15px;
    }

    .customer-review-list button.btn.btn-teal {
        font-size: 14px;
    }

    .tag-new {
        font-size: 12px;
        padding: 2px 6px;
        top: 8px;
        left: 8px;
    }
}

@media screen and (min-width: 360px) and (max-width: 1440px) {

    .product-info .product-review li i,
    .product-info .product-review li .rating,
    .rating-count,
    .product-sold-number {
        font-size: 12px !important;
    }

    .product-sold-number::before {
        width: 10px !important;
        height: 10px !important;
    }
}

.flex-direction-nav a::before {
    font-size: 15px !important;
    background: #fff;
    padding: 5px 12px;
    border-radius: 50%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.flexslider-wrap.product-image-full-size .flexslider {
    margin: 0 0 15px;
    background: #fff;
    border: none;
    position: relative;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;
    padding: 30px 0;
}

.thumbs-gallery .flexslider {
    margin: 0;
    border: none;
    -webkit-border-radius: unset;
    -moz-border-radius: unset;
    border-radius: unset;
    background: transparent;
}

.thumbs-gallery li img {
    border-radius: 10px;
    cursor: pointer;
}

.thumbs-gallery .flex-viewport li {
    border: 1px solid #fff;
    border-radius: 10px;
}

.thumbs-gallery li.flex-active-slide {
    border: 1px solid var(--Light-Green-500, #357B7F);
    border-radius: 10px;
}

.product-weight-list {
    display: inline-block;
    cursor: pointer;
    transition: 0.3s;
}

.product-weight-list.active {
    background-color: #357b7f;
    color: #fff;
}

.layout .layout__sidbear {
    padding: 24px;
    border-radius: 16px;
}

.layout .layout__sidbear .sidebar__widget .sidebar__widget--title {
    font-size: 1.5rem;
    color: #181c1d;
    line-height: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e9eeee;
}

.layout .layout__sidbear .sidebar__widget .category__list--wrapper {
    padding: 20px 0 30px;
}

.layout .layout__sidbear .sidebar__widget .category__list--wrapper a {
    font-size: 1.125rem;
    color: #357b7f;
    line-height: 25px;
    margin-top: 20px;
}

.layout .layout__sidbear .sidebar__widget .category__list--wrapper .category__list .category__list__item a {
    margin-bottom: 16px;
}

.layout .layout__sidbear .sidebar__widget .category__list--wrapper .category__list .category__list__item a .category__text__icon {
    gap: 8px;
}

.layout .layout__sidbear .sidebar__widget .category__list--wrapper .category__list .category__list__item a .category__text__icon .category__list__text {
    font-size: 1.125rem;
    color: #181c1d;
    line-height: 25px;
}

.layout .layout__sidbear .sidebar__widget .category__list--wrapper .category__list .category__list__item--has-children .category__sub-list {
    display: none;
    padding-left: 1.5rem;
    margin-top: 6px;
}

.layout .layout__sidbear .sidebar__widget .category__list--wrapper .category__list .category__list__item--has-children .category__sub-list__item {
    margin-bottom: 10px;
}

.layout .layout__sidbear .sidebar__widget .category__list--wrapper .category__list .category__list__item--has-children .category__sub-list__item a {
    font-size: 0.875rem;
    color: #323b3a;
    line-height: 20px;
    text-decoration: none;
}

.layout .layout__sidbear .sidebar__widget .category__list--wrapper .category__list .category__list__item--has-children .category__sub-list__item a:hover {
    color: #357b7f;
}

.layout .layout__sidbear .sidebar__widget .category__list--wrapper .category__list .category__list__item--has-children .category__sub-list__item:last-child {
    margin-bottom: 0;
}

.layout .layout__sidbear .sidebar__widget .category__list--wrapper .category__list .category__list__item--has-children.category__list__item--open .category__sub-list {
    display: block;
}

.layout .layout__sidbear .sidebar__widget .category__list--wrapper .category__list .category__list__item--has-children.category__list__item--open .plus-icon {
    display: none;
}

.layout .layout__sidbear .sidebar__widget .category__list--wrapper .category__list .category__list__item--has-children.category__list__item--open .minus-icon {
    display: inline;
}

.layout .layout__sidbear .sidebar__widget .category__list--wrapper .category__list .category__list__item--has-children .plus-icon {
    display: inline;
}

.layout .layout__sidbear .sidebar__widget .category__list--wrapper .category__list .category__list__item--has-children .minus-icon {
    display: none;
}

.layout .layout__sidbear .sidebar__widget .brands__list--wrapper {
    padding: 20px 0 30px;
}

.layout .layout__sidbear .sidebar__widget .brands__list--wrapper a {
    font-size: 1.125rem;
    color: #357b7f;
    line-height: 25px;
    margin-top: 20px;
}

.layout .layout__sidbear .sidebar__widget .brands__list--wrapper .brands__list .product-review li i {
    color: #f9c71d;
    font-size: 16px;
}

.layout .layout__sidbear .sidebar__widget .brands__list--wrapper .brands__list .product-review li .rating {
    color: #ccc;
    font-size: 16px;
}

.layout .layout__sidbear .sidebar__widget .brands__list--wrapper .brands__list .brands__list__item .form-check.brands__list--checkbox.d-flex.align-items-center {
    margin-bottom: 12px;
}

.layout .layout__sidbear .sidebar__widget .brands__list--wrapper .brands__list .brands__list__item .brands__list--checkbox {
    gap: 8px;
}

.layout .layout__sidbear .sidebar__widget .brands__list--wrapper .brands__list .brands__list__item .brands__list--checkbox .brands__list--checkbox__input {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    border: 1px solid #dfe1e1;
    margin: 0 0 0px -24px;
}

.layout .layout__sidbear .sidebar__widget .brands__list--wrapper .brands__list .brands__list__item .brands__list--checkbox .brands__list__text {
    font-size: 1.125rem;
    color: #181c1d;
    line-height: 0;
}

.layout .layout__sidbear .price-filter {
    display: flex;
    align-items: flex-start !important;
    gap: 8px;
    margin-top: 20px;
}

.layout .layout__sidbear .price-filter__field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

.layout .layout__sidbear .price-filter__label {
    font-size: 0.875rem;
    color: #181c1d;
    line-height: 20px;
}

.layout .layout__sidbear .price-filter__input {
    width: 100% !important;
    min-width: 130px;
    padding: 6px 12px;
    font-size: 0.875rem;
    color: #b8c7c7;
    line-height: 20px;
    border: 1px solid #e9eeee;
    border-radius: 6px;
}

.layout .layout__sidbear .price-filter__input::placeholder {
    color: #94a3b8;
}

.layout .layout__sidbear .price-filter__button {
    padding: 5px 22px;
    background-color: #7a3185;
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    cursor: pointer;
    margin: 8px 0 30px;
}

.layout .layout__sidbear .price-filter__button:hover {
    background-color: #5a247a;
}

.layout .layout__content .layout__content--header .layout__content--headline {
    font-family: var(--alt-font, "Kanit", sans-serif);
    font-size: 2.5rem;
    color: #181c1d;
    line-height: 48px;
    margin-bottom: 0;
}

.layout .layout__content .layout__content--header .layout__content--headline--light {
    color: #b8c7c7;
    font-family: var(--alt-font, "Kanit", sans-serif);
    font-size: 2.5rem;
    line-height: 48px;
}

.layout .layout__content .layout__content--header .layout__content__sort__view {
    width: 100%;
    gap: 20px;
}

.layout .layout__content .layout__content--header .layout__content__sort__view .layout__content__sort--wrapper {
    width: 320px;
    border-radius: 6px;
}

.layout .layout__content .layout__content--header .layout__content__sort__view .layout__content__sort--wrapper .layout__content__sort {
    font-size: 1.25rem;
    color: #181c1d;
    line-height: 28px;
    padding: 12px 0 12px 12px;
    width: 127px;
}

.layout .layout__content .layout__content--header .layout__content__sort__view .layout__content__sort--wrapper .sort__select__option {
    padding: 12px 20px 12px 8px;
    font-size: 1.25rem;
    color: #181c1d;
    line-height: 28px;
}

.layout .layout__content .layout__content--header .layout__content__sort__view .layout__content__view--wrapper .layout__content__view {
    font-size: 1.25rem;
    color: #181c1d;
    line-height: 28px;
    padding: 12px 0 12px 12px;
    margin-right: 12px;
}

.layout .layout__content .layout__content--header .layout__content__sort__view .layout__content__view--wrapper .grid {
    padding: 8px;
    border-radius: 8px;
    margin-right: 6px;
}

.layout .layout__content .layout__content--header .layout__content__sort__view .layout__content__view--wrapper .view-btn.active {
    background-color: #357b7f;
}

.layout .layout__content .layout__content--header .layout__content__sort__view .layout__content__view--wrapper .view-btn img {
    transition: filter 0.3s ease;
}

.layout .layout__content .layout__content--header .layout__content__sort__view .layout__content__view--wrapper .view-btn.active img {
    filter: brightness(0) saturate(100%) invert(45%) sepia(15%) saturate(982%) hue-rotate(136deg) brightness(90%) contrast(91%);
}

.layout .layout__content .layout__content--header .layout__content__sort__view .layout__content__view--wrapper .list {
    padding: 8px;
    border-radius: 8px;
}

.layout .pagination__nav {
    margin: 60px 0 80px;
}

.layout .pagination__nav .pagination .page-link {
    border: 1px solid transparent;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.layout .pagination__nav ul.pagination {
    gap: 8px;
    justify-content: center;
}

.layout .pagination__nav li.page-item a {
    font-size: 1.25rem;
    color: #000;
    line-height: 28px;
    background-color: #fff;
    border-radius: 18px;
    padding: 8px 18px;
}

.layout .pagination__nav li.page-item.active a {
    font-size: 1.25rem;
    color: #fff;
    line-height: 28px;
    background-color: #357b7f;
    border-radius: 18px;
    padding: 8px 18px;
}

.layout .pagination__nav .pagination .page-link:not([aria-label]):hover {
    background-color: #357b7f;
    color: #fff;
    border-color: transparent;
}

@media screen and (max-width: 767.98px) {
    .product-card-head {
        padding-top: 30px;
    }
}

@media screen and (max-width: 575.98px) {
    .product-card-head {
        padding-top: 30px;
    }

    .layout__content--headline {
        font-size: 32px !important;
        line-height: 38px !important;
    }

    .layout__content--headline--light {
        font-size: 32px !important;
        line-height: 38px !important;
    }

    .sort__select__option.form-select {
        background-position: right 8px center !important;
        padding-right: 28px !important;
        background-size: 12px 12px !important;
    }

    .layout__content__sort {
        font-size: 1rem !important;
        line-height: 24px !important;
    }

    .sort__select__option {
        font-size: 1rem !important;
        line-height: 24px !important;
    }

    .sidebar__widget--title {
        font-size: 20px !important;
        padding-bottom: 12px !important;
    }
}

.layout .layout__sidbear {
    padding: 24px;
    border-radius: 16px;
}

.layout .layout__sidbear .sidebar__widget .sidebar__widget--title {
    font-size: 1.5rem;
    color: #181c1d;
    line-height: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e9eeee;
}

.layout .layout__sidbear .sidebar__widget .category__list--wrapper {
    padding: 20px 0 30px;
}

.layout .layout__sidbear .sidebar__widget .category__list--wrapper a {
    font-size: 1.125rem;
    color: #357b7f;
    line-height: 25px;
    margin-top: 20px;
}

.layout .layout__sidbear .sidebar__widget .category__list--wrapper .category__list .category__list__item a {
    margin-bottom: 16px;
}

.layout .layout__sidbear .sidebar__widget .category__list--wrapper .category__list .category__list__item a .category__text__icon {
    gap: 8px;
}

.layout .layout__sidbear .sidebar__widget .category__list--wrapper .category__list .category__list__item a .category__text__icon .category__list__text {
    font-size: 1.125rem;
    color: #181c1d;
    line-height: 25px;
}

.layout .layout__sidbear .sidebar__widget .category__list--wrapper .category__list .category__list__item--has-children .category__sub-list {
    display: none;
    padding-left: 1.5rem;
    margin-top: 6px;
}

.layout .layout__sidbear .sidebar__widget .category__list--wrapper .category__list .category__list__item--has-children .category__sub-list__item {
    margin-bottom: 10px;
}

.layout .layout__sidbear .sidebar__widget .category__list--wrapper .category__list .category__list__item--has-children .category__sub-list__item a {
    font-size: 0.875rem;
    color: #323b3a;
    line-height: 20px;
    text-decoration: none;
}

.layout .layout__sidbear .sidebar__widget .category__list--wrapper .category__list .category__list__item--has-children .category__sub-list__item a:hover {
    color: #357b7f;
}

.layout .layout__sidbear .sidebar__widget .category__list--wrapper .category__list .category__list__item--has-children .category__sub-list__item:last-child {
    margin-bottom: 0;
}

.layout .layout__sidbear .sidebar__widget .category__list--wrapper .category__list .category__list__item--has-children.category__list__item--open .category__sub-list {
    display: block;
}

.layout .layout__sidbear .sidebar__widget .category__list--wrapper .category__list .category__list__item--has-children.category__list__item--open .plus-icon {
    display: none;
}

.layout .layout__sidbear .sidebar__widget .category__list--wrapper .category__list .category__list__item--has-children.category__list__item--open .minus-icon {
    display: inline;
}

.layout .layout__sidbear .sidebar__widget .category__list--wrapper .category__list .category__list__item--has-children .plus-icon {
    display: inline;
}

.layout .layout__sidbear .sidebar__widget .category__list--wrapper .category__list .category__list__item--has-children .minus-icon {
    display: none;
}

.layout .layout__sidbear .sidebar__widget .brands__list--wrapper {
    padding: 20px 0 30px;
}

.layout .layout__sidbear .sidebar__widget .brands__list--wrapper a {
    font-size: 1.125rem;
    color: #357b7f;
    line-height: 25px;
    margin-top: 20px;
}

.layout .layout__sidbear .sidebar__widget .brands__list--wrapper .brands__list .product-review li i {
    color: #f9c71d;
    font-size: 16px;
}

.layout .layout__sidbear .sidebar__widget .brands__list--wrapper .brands__list .product-review li .rating {
    color: #ccc;
    font-size: 16px;
}

.layout .layout__sidbear .sidebar__widget .brands__list--wrapper .brands__list .brands__list__item .form-check.brands__list--checkbox.d-flex.align-items-center {
    margin-bottom: 12px;
}

.layout .layout__sidbear .sidebar__widget .brands__list--wrapper .brands__list .brands__list__item .brands__list--checkbox {
    gap: 8px;
}

.layout .layout__sidbear .sidebar__widget .brands__list--wrapper .brands__list .brands__list__item .brands__list--checkbox .brands__list--checkbox__input {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    border: 1px solid #dfe1e1;
    margin: 0 0 0px -24px;
}

.layout .layout__sidbear .sidebar__widget .brands__list--wrapper .brands__list .brands__list__item .brands__list--checkbox .brands__list__text {
    font-size: 1.125rem;
    color: #181c1d;
    line-height: 0;
}

.layout .layout__sidbear .price-filter {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin-top: 20px;
}

.layout .layout__sidbear .price-filter__field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.layout .layout__sidbear .price-filter__label {
    font-size: 0.875rem;
    color: #181c1d;
    line-height: 20px;
}

.layout .layout__sidbear .price-filter__input {
    width: 130px;
    padding: 6px 12px;
    font-size: 0.875rem;
    color: #b8c7c7;
    line-height: 20px;
    border: 1px solid #e9eeee;
    border-radius: 6px;
}

.layout .layout__sidbear .price-filter__input::placeholder {
    color: #94a3b8;
}

.layout .layout__sidbear .price-filter__button {
    padding: 5px 22px;
    background-color: #7a3185;
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    cursor: pointer;
    margin: 8px 0 30px;
}

.layout .layout__sidbear .price-filter__button:hover {
    background-color: #5a247a;
}

.layout .layout__content .layout__content--header {
    margin-bottom: 30px;
}

.layout .layout__content .layout__content--header .layout__content--headline {
    font-size: 2.5rem;
    color: #181c1d;
    line-height: 48px;
}

.layout .layout__content .layout__content--header .layout__content--headline span {
    color: #b8c7c7;
}

.layout .layout__content .layout__content--header .layout__content__sort__view {
    gap: 20px;
}

.layout .layout__content .layout__content--header .layout__content__sort__view .layout__content__sort--wrapper {
    width: 291px;
    border-radius: 6px;
}

.layout .layout__content .layout__content--header .layout__content__sort__view .layout__content__sort--wrapper .layout__content__sort {
    font-size: 1.25rem;
    color: #181c1d;
    line-height: 28px;
    padding: 12px 0 12px 12px;
    width: 132px;
}

.layout .layout__content .layout__content--header .layout__content__sort__view .layout__content__sort--wrapper .sort__select__option {
    padding: 12px 20px 12px 3px;
    font-size: 1.25rem;
    color: #181c1d;
    line-height: 28px;
}

.layout .layout__content .layout__content--header .layout__content__sort__view .layout__content__view--wrapper .layout__content__view {
    font-size: 1.25rem;
    color: #181c1d;
    line-height: 28px;
    padding: 12px 0 12px 12px;
    margin-right: 12px;
}

.layout .layout__content .layout__content--header .layout__content__sort__view .layout__content__view--wrapper .grid {
    padding: 8px;
    border-radius: 8px;
    margin-right: 6px;
}

.layout .layout__content .layout__content--header .layout__content__sort__view .layout__content__view--wrapper .view-btn.active {
    background-color: #357b7f;
}

.layout .layout__content .layout__content--header .layout__content__sort__view .layout__content__view--wrapper .view-btn img {
    transition: filter 0.3s ease;
}

.layout .layout__content .layout__content--header .layout__content__sort__view .layout__content__view--wrapper .view-btn.active img {
    filter: brightness(0) saturate(100%) invert(45%) sepia(15%) saturate(982%) hue-rotate(136deg) brightness(90%) contrast(91%);
}

.layout .layout__content .layout__content--header .layout__content__sort__view .layout__content__view--wrapper .list {
    padding: 8px;
    border-radius: 8px;
}

.layout .grid__list--product-card {
    display: flex;
    gap: 40px;
    background: #f9fdfd;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 24px;
}

.layout .grid__list--product-card:last-child {
    margin-bottom: 0;
}

.layout .grid__list--product-card__image {
    position: relative;
    max-width: 298px;
    flex-shrink: 0;
    border-radius: 12px;
}

.layout .grid__list--product-card__image img {
    width: 100%;
    max-height: 274px;
    border-radius: 8px;
}

.layout .grid__list--product-card__content {
    flex: 1;
}

.layout .grid__list--product-card__content .grid__list--product-card__badge {
    background-color: #e74c3c;
    padding: 1px 6px;
    display: inline-block;
    position: relative;
    border-radius: 0;
    color: var(--White, #fff);
    font-size: 14px;
    font-style: normal;
    line-height: 20px;
}

.layout .grid__list--product-card__content .grid__list--product-card__badge::before {
    content: "";
    position: absolute;
    top: 0;
    left: -7px;
    width: 0;
    height: 0;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-right: 7px solid #e74c3c;
}

.layout .grid__list--product-card__tags {
    margin-bottom: 30px;
}

.layout .grid__list--product-card__tags .tag {
    display: inline-block;
    border: 1px solid #e9eeee;
    font-size: 1rem;
    color: #181c1d;
    padding: 4px 10px;
    margin-right: 8px;
    border-radius: 30px;
    line-height: 22px;
}

.layout .grid__list--product-card__title {
    max-width: 487px;
    font-family: var(--alt-font, "Kanit", sans-serif);
    font-size: 2.5rem;
    color: #181c1d;
    line-height: 48px;
}

.layout .grid__list--product-card__rating {
    font-size: 16px;
    color: #f9c71d;
    margin: 40px 0;
}

.layout .grid__list--product-card__rating .rating-count {
    font-size: 1.25rem;
    color: #323b3a;
    font-weight: 500;
    margin-left: 12px;
}

.layout .grid__list--product-card__price {
    margin-bottom: 15px;
}

.layout .grid__list--product-card__price .current {
    font-family: var(--alt-font, "Kanit", sans-serif);
    font-size: 2.5rem;
    color: #181c1d;
    line-height: 48px;
    margin-right: 16px;
}

.layout .grid__list--product-card__price .old {
    font-size: 2.5rem;
    color: #a1a4a3;
    line-height: 40px;
}

.layout .grid__list--product-card .grid__list--product-card__actions {
    display: flex;
    gap: 12px;
    max-width: 676px;
}

.layout .grid__list--product-card .grid__list--product-card__actions .btn {
    gap: 12px;
    font-size: 1rem;
    color: #181c1d;
    line-height: 22px;
    cursor: pointer;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.layout .grid__list--product-card .grid__list--product-card__actions .btn-cart {
    background: #e7f4f5;
    color: #357b7f;
    border: 1px solid #cceeee;
    border-radius: 12px;
    padding: 13px 20px;
    flex: 1;
}

.layout .grid__list--product-card .grid__list--product-card__actions .btn-cart:hover {
    background: #357b7f;
    color: #fff;
}

.layout .grid__list--product-card .grid__list--product-card__actions .btn-wishlist {
    background: #fff;
    border: 1px solid #e9eeee;
    color: #181c1d;
    padding: 13px 20px;
    border-radius: 12px;
    flex: 0 0 97px;
}

.layout .grid__list--product-card .grid__list--product-card__actions .btn-wishlist:hover {
    border-color: #357b7f;
    color: #357b7f;
}

.layout .pagination__nav {
    margin: 60px 0 80px;
}

.layout .pagination__nav .pagination .page-link {
    border: 1px solid transparent;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.layout .pagination__nav ul.pagination {
    gap: 8px;
    justify-content: center;
}

.layout .pagination__nav li.page-item a {
    font-size: 1.25rem;
    color: #000;
    line-height: 28px;
    background-color: #fff;
    border-radius: 18px;
    padding: 8px 18px;
}

.layout .pagination__nav li.page-item.active a {
    font-size: 1.25rem;
    color: #fff;
    line-height: 28px;
    background-color: #357b7f;
    border-radius: 18px;
    padding: 8px 18px;
}

.layout .pagination__nav .pagination .page-link:not([aria-label]):hover {
    background-color: #357b7f;
    color: #fff;
    border-color: transparent;
}

@media (min-width: 992px) and (max-width: 1440px) {
    .list-card {
        padding: 20px !important;
    }

    .card-list-title {
        font-size: 32px !important;
        line-height: 38px !important;
    }

    .card-list-price {
        font-size: 32px !important;
        line-height: 38px !important;
    }
}

@media screen and (max-width: 992px) {
    .card-list-title {
        font-size: 24px !important;
        line-height: 32px !important;
    }

    .price-wrapper {
        margin-bottom: 0 !important;
    }

    .card-list-price {
        font-size: 24px !important;
        line-height: 32px !important;
    }

    .review {
        margin-top: 16px !important;
        margin-bottom: 20px !important;
    }
}

@media screen and (max-width: 575.98px) {
    .list-card {
        padding: 20px !important;
    }

    .card-list-title {
        font-size: 20px !important;
        line-height: 28px !important;
        font-weight: 500 !important;
    }

    .price-wrapper {
        margin-bottom: 0 !important;
    }

    .card-list-price {
        font-size: 20px !important;
        line-height: 28px !important;
        font-weight: 500 !important;
    }

    .review {
        margin-top: 16px !important;
        margin-bottom: 20px !important;
    }

    .product-card-head {
        padding-top: 30px;
    }

    .layout__content--headline {
        font-size: 32px !important;
        line-height: 38px !important;
    }

    .layout__content--headline--light {
        font-size: 32px !important;
        line-height: 38px !important;
    }

    .sort__select__option.form-select {
        background-position: right 8px center !important;
        padding-right: 28px !important;
        background-size: 12px 12px !important;
    }

    .layout__content__sort {
        font-size: 1rem !important;
        line-height: 24px !important;
    }

    .sort__select__option {
        font-size: 1rem !important;
        line-height: 24px !important;
    }

    .card-list-btn {
        padding: 12px 14px !important;
    }

    .sidebar__widget--title {
        font-size: 20px !important;
        padding-bottom: 12px !important;
    }
}

.blog__heading {
    margin-bottom: 2rem;
}

.blog__title {
    font-size: 1.25rem;
    font-weight: 600;
}

.blog-cards__container {
    margin-bottom: 80px;
}

.blog-cards__container .blog-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-radius: 20px;
    background: #fff;
}

.blog-cards__container .blog-card__image-wrapper {
    width: 100%;
    background: #e5e5e5;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    overflow: hidden;
}

.blog-cards__container .blog-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-cards__container .blog-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    padding: 30px 0 0;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 26px;
}

.blog-cards__container .blog-card__date {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #357b7f;
    background: #e7f4f5;
    padding: 4px 16px;
    border: 1px solid #c3dcdd;
    border-radius: 30px;
}

.blog-cards__container .blog-card__date__icon {
    width: 20px;
    height: 20px;
}

.blog-cards__container .blog-card__tag {
    color: #9d4ca9;
    background: #e8d5eb;
    padding: 4px 16px;
    border: 1px solid #dcc3df;
    border-radius: 30px;
}

.blog-cards__container .blog-card__content {
    padding: 20px 0 0;
    flex: 1;
}

.blog-cards__container .blog-card__title {
    font-size: 1.5rem;
    color: #181c1d;
    font-weight: 500;
    line-height: 32px;
}

.blog-cards__container .blog-card__description {
    font-size: 1.125rem;
    color: #5a6464;
    font-weight: 400;
    line-height: 25px;
    margin: 16px 0 34px;
}

.blog-cards__container .blog-card__link {
    font-size: 1.25rem;
    color: #357b7f;
    font-weight: 500;
    line-height: 28px;
}

.blog-cards__container .blog-card__link .arrow {
    margin-left: 12px;
}

.blog-cards__container .blog-card__link:hover {
    text-decoration: underline;
}

.blog-cards__container .blog-card__image-wrapper {
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-cards__container .blog-card__image-wrapper:hover {
    transform: scale(1.03);
}

.blog-cards__container .blog-card__link .arrow {
    transition: transform 0.3s ease-in-out;
}

.blog-cards__container .blog-card__link:hover .arrow {
    transform: translateX(5px) scale(1.1);
}

.blog-cards__container .blog__load-more {
    margin-top: 20px;
}

.blog-cards__container .blog__load-more a {
    background: #357b7f;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
}

.blog-cards__container .blog__load-more a .arrow {
    margin-left: 12px;
}

@media (max-width: 576px) {
    .blog .blog-cards__container {
        padding: 0 !important;
        margin-top: 0 !important;
    }

    .blog .heading-title {
        font-size: 2rem;
        line-height: 38px;
    }

    .blog .heading {
        margin-bottom: 0;
    }

    .blog .blog-cards__container .blog-card {
        padding: 16px;
    }

    .blog .blog-cards__container .blog-card__meta {
        font-size: 0.875rem;
        line-height: 20px;
    }

    .blog .blog-cards__container .blog-card__description {
        margin: 10px 0 22px;
    }

    .blog .blog-cards__container .blog-card__content {
        padding: 20px 0 0;
    }

    .blog .custom-gutter-y {
        --bs-gutter-y: 20px;
    }

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

    .blog .blog-cards__container .blog__load-more a {
        padding: 8px 16px;
    }
}

@media (max-width: 768px) {
    .blog .blog-cards__container .blog-card {
        padding: 16px;
    }

    .blog .blog-cards__container .blog-card__meta {
        font-size: 0.875rem;
    }
}

.layout .layout__content--headline {
    font-family: var(--alt-font, "Kanit", sans-serif);
    font-size: 2.5rem;
    color: #181c1d;
    line-height: 48px;
    margin-bottom: 40px;
}

.layout .layout__content--headline span {
    color: #b8c7c7;
}

.layout .cart__list--product-card {
    display: flex;
    gap: 40px;
    background: #f9fdfd;
    border-radius: 12px;
    padding: 24px 40px 24px 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.layout .cart__list--product-card:last-child {
    margin-bottom: 0;
}

.layout .cart__list--product-card__image {
    position: relative;
    flex-shrink: 0;
    border-radius: 12px;
    width: 140px;
    height: 140px;
    overflow: hidden;
    background: #f2f3f7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.layout .cart__list--product-card__image img {
    border-radius: 12px;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 18px;
    background: transparent;
}

.layout .cart__list--product-card__content {
    flex: 1;
}

.layout .cart__list--product-card__content .card__title--wrapper {
    gap: 8px;
}

.layout .cart__list--product-card__content .cart__list--product-card__badge {
    background-color: #e74c3c;
    padding: 1px 6px;
    display: inline-block;
    position: relative;
    border-radius: 0;
    color: var(--White, #fff);
    font-size: 14px;
    line-height: 20px;
}

.layout .cart__list--product-card__content .cart__list--product-card__badge::before {
    content: "";
    position: absolute;
    top: 0;
    left: -7px;
    width: 0;
    height: 0;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-right: 7px solid #e74c3c;
}

.layout .cart__list--product-card__content .returns-text {
    margin-left: 12px;
}

.layout .cart__list--product-card__tags {
    margin-bottom: 30px;
}

.layout .cart__list--product-card__tags .tag {
    display: inline-block;
    border: 1px solid #e9eeee;
    font-size: 1rem;
    color: #181c1d;
    padding: 4px 10px;
    margin-right: 8px;
    border-radius: 30px;
    line-height: 22px;
}

.layout .cart__list--product-card__title {
    width: 513px;
    color: var(--Dark-900, #181c1d);
    font-family: "Instrument Sans";
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
}

.layout .cart__list--product-card__rating {
    font-size: 16px;
    color: #f9c71d;
    margin: 16px 0 10px;
}

.layout .cart__list--product-card__rating .rating-count {
    font-size: 1.25rem;
    color: #323b3a;
    font-weight: 500;
    margin-left: 12px;
}

.layout .cart__list--product-card__price {
    margin-bottom: 15px;
}

.layout .cart__list--product-card__price .current {
    color: var(--Light-Green-500, #357b7f);
    font-family: Kanit;
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;
}

.layout .cart__list--product-card .cart__list--product-card__actions {
    display: flex;
    gap: 12px;
}

.layout .cart__list--product-card .cart__list--product-card__actions .btn {
    gap: 12px;
    font-size: 1rem;
    color: #181c1d;
    line-height: 22px;
    cursor: pointer;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.layout .cart__list--product-card .cart__list--product-card__actions .btn-cart {
    background: #e7f4f5;
    color: #357b7f;
    border: 1px solid #cceeee;
    border-radius: 12px;
    padding: 13px 20px;
    flex: 1;
}

.layout .cart__list--product-card .cart__list--product-card__actions .btn-cart:hover {
    background: #357b7f;
    color: #fff;
}

.layout .cart__list--product-card .cart__list--product-card__actions .btn-wishlist {
    background: #fff;
    border: 1px solid #e9eeee;
    color: #181c1d;
    padding: 13px 20px;
    border-radius: 12px;
    flex: 0 0 97px;
}

.layout .cart__list--product-card .cart__list--product-card__actions .btn-wishlist:hover {
    border-color: #357b7f;
    color: #357b7f;
}

.layout .quantity-container {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.layout .cart-instock {
    color: #357b7f;
    font-family: "Instrument Sans";
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    padding-bottom: 12px;
}

.layout .cart__list--product-card__actions-free__shipping,
.layout .cart__list--returns {
    color: var(--Dark-900, #181c1d);
    font-family: "Instrument Sans";
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    padding-bottom: 8px;
}

.layout .cart-subtotal {
    border-radius: 12px;
    background: var(--Light-Green-500, #357b7f);
}

.layout .sidebar__widget--title {
    font-size: 1.5rem;
    color: #181c1d;
    line-height: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e9eeee;
}

.layout .order-summary {
    border-radius: 12px;
    background: #2e7d82;
    color: #fff;
    padding: 30px;
}

.layout .order-summary h5 {
    font-family: "Instrument Sans";
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 40px;
}

.layout .order-summary .coupon-box {
    border-radius: 30px;
    background: #f9c526;
    display: flex;
    padding: 4px;
    height: 44px;
    margin-bottom: 40px;
    line-height: 0;
}

.layout .order-summary .coupon-box input {
    flex: 1;
    border: none;
    outline: none;
    border-radius: 30px;
    background: #f9c526;
    color: var(--Dark-700, #414d4f);
    font-family: "Instrument Sans";
    font-size: 16px;
    padding: 10px;
}

.layout .order-summary .coupon-box button {
    height: 36px;
    width: 80px;
    right: 5px;
    border-radius: 24px;
    background: var(--Yellow-50, #fef8e2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    padding: 9px 14px;
    color: var(--Dark-900, #181c1d);
    font-family: "Instrument Sans";
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.layout .order-summary .summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.layout .order-summary .summary-item span {
    color: var(--Light-Green-10, #e7f4f5);
    font-family: "Instrument Sans";
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
}

.layout .order-summary .summary-item strong {
    color: #fff;
    font-family: "Instrument Sans";
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
}

.layout .order-summary .subtotal {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
    font-family: "Instrument Sans";
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
}

.layout .order-summary .checkout-btn {
    height: 48px;
    width: 100%;
    cursor: pointer;
    color: var(--Dark-900, #181c1d);
    font-family: "Instrument Sans";
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    border-radius: 12px;
    background: #fff;
}

.layout .order-summary .checkout-btn:hover {
    background: #e9ecef;
}

@media screen and (min-width: 992px) and (max-width: 1740px) {
    .layout .cart__list--product-card .card__title--wrapper {
        flex-direction: column !important;
    }
}

@media (max-width: 1400px) {
    .layout {
        padding-bottom: 40px;
    }

    .layout .cart__list--product-card {
        gap: 20px;
        padding: 24px;
        margin-bottom: 20px !important;
    }

    .layout .cart__list--product-card__title {
        width: 100%;
    }

    .layout .layout .cart__list--product-card__actions-free__shipping {
        padding-bottom: 16px;
    }

    .layout .cart__list--returns {
        flex-direction: column;
        justify-content: start !important;
        align-items: start !important;
        padding-bottom: 0;
    }

    .layout .returns-text {
        margin-left: 12px;
    }

    .layout .save-for-later,
    .layout .remove-item {
        gap: 8px !important;
    }
}

@media (max-width: 1199.98px) {
    .layout {
        padding-bottom: 40px;
    }

    .layout .cart__list--product-card {
        flex-direction: column;
        padding: 24px;
        margin-bottom: 20px !important;
    }

    .layout .cart__list--product-card__title {
        width: 100%;
    }

    .layout .layout .cart__list--product-card__actions-free__shipping {
        padding-bottom: 16px;
    }

    .layout .cart__list--returns {
        flex-direction: column;
        justify-content: start !important;
        align-items: start !important;
        padding-bottom: 0;
    }

    .layout .returns-text {
        margin-left: 12px;
    }

    .layout .save-for-later,
    .layout .remove-item {
        gap: 8px !important;
    }
}

@media (max-width: 991.98px) {
    .layout {
        padding-bottom: 40px;
    }

    .layout .cart__list--product-card {
        flex-direction: column;
        padding: 24px;
        margin-bottom: 20px !important;
    }

    .layout .cart__list--product-card__title {
        width: 100%;
    }

    .layout .cart__list--product-card .card__title--wrapper {
        flex-direction: column !important;
    }

    .layout .cart__list--product-card .cart__list--product-card__price {
        margin-bottom: 0;
    }

    .layout .layout .cart__list--product-card__actions-free__shipping {
        padding-bottom: 16px;
    }

    .layout .free-shipping-text {
        font-size: 16px;
    }

    .layout .cart__list--returns {
        flex-direction: column;
        justify-content: start !important;
        align-items: start !important;
        padding-bottom: 0;
        font-size: 16px;
    }

    .layout .returns-text {
        margin-left: 12px;
    }

    .layout .save-for-later,
    .layout .remove-item {
        gap: 8px !important;
    }
}

@media (max-width: 767.98px) {
    .layout {
        padding-bottom: 40px;
    }

    .layout .cart__list--product-card {
        flex-direction: column;
        padding: 24px;
        margin-bottom: 20px !important;
    }

    .layout .cart__list--product-card__title {
        width: 100%;
    }

    .layout .layout .cart__list--product-card__actions-free__shipping {
        padding-bottom: 16px;
    }

    .layout .free-shipping-text {
        font-size: 16px;
    }

    .layout .cart__list--returns {
        flex-direction: column;
        justify-content: start !important;
        align-items: start !important;
        padding-bottom: 0;
        font-size: 16px;
    }

    .layout .returns-text {
        margin-left: 12px;
    }

    .layout .save-for-later,
    .layout .remove-item {
        gap: 8px !important;
    }
}

@media (max-width: 575.98px) {
    .layout .cart__list--product-card__title {
        font-size: 1.25rem;
        line-height: 28px;
    }

    .layout .cart__list--product-card .card__title--wrapper {
        flex-direction: column !important;
    }

    .layout .cart__list--product-card__price {
        margin-bottom: 0;
    }

    .layout .cart__list--product-card__price .current {
        font-size: 26px;
        line-height: 28px;
    }
}

.blog-details {
    display: flex;
    gap: 40px;
    margin-bottom: 80px;
}

.blog-details__content {
    flex: 1;
    padding: 40px;
    border-radius: 20px;
    background: #fff;
}

.blog-details__title {
    font-family: var(--alt-font, "Kanit", sans-serif);
    font-size: 2.5rem;
    color: #181c1d;
    line-height: 48px;
    font-weight: 600;
    margin-bottom: 30px;
}

.blog-details__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
    font-size: 1.125rem;
    align-items: center;
}

.blog-details__image__social-icon {
    gap: 40px;
}

.blog-details__share {
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style: none;
    width: 100px;
    max-height: 339px;
    border: 1px solid #e9eeee;
    border-radius: 12px;
}

.blog-details__share li {
    width: 100%;
}

.blog-details__share li a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px 32px;
    border-bottom: 1px solid #e9eeee !important;
}

.blog-details__share li a:hover svg path:not([fill=white]) {
    fill: #b2d0d2;
}

.blog-details__share li:last-child a {
    border-bottom: none !important;
}

.blog-details__date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #357b7f;
    background: #e7f4f5;
    padding: 4px 16px;
    border-radius: 30px;
    border: 1px solid #c3dcdd;
}

.blog-details__tag {
    color: #9d4ca9;
    background: #e8d5eb;
    padding: 4px 16px;
    border-radius: 30px;
    border: 1px solid #dcc3df;
}

.blog-details__image-wrapper {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 48px;
}

.blog-details__image {
    width: 100%;
    object-fit: cover;
    display: block;
}

.blog-details__body p {
    font-size: 1.5rem;
    color: #5a6464;
    line-height: 32px;
    font-weight: 500;
}

.blog-details__body__subtitle-paragraph {
    margin-top: 48px;
}

.blog-details__body__subtitle-paragraph .blog-details__body__subtitle {
    font-family: var(--alt-font, "Kanit", sans-serif);
    font-size: 2.5rem;
    color: #181c1d;
    line-height: 48px;
    font-weight: 600;
    margin-bottom: 24px;
}

.blog-details__body__subtitle-paragraph p {
    font-size: 1.5rem;
    color: #5a6464;
    line-height: 32px;
    font-weight: 500;
}

.blog-details__back {
    display: flex;
    align-items: center;
    margin-top: 48px;
    color: #357b7f;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 28px;
}

.blog-details__back:hover {
    text-decoration: underline;
}

.blog-details__back .arrow {
    margin-right: 6px;
}

.blog-details__sidebar {
    display: flex;
    justify-content: flex-start;
}

@media (max-width: 991.98px) {
    .blog-details__body p {
        font-size: 16px !important;
        line-height: 28px;
    }

    .blog-details__body__subtitle-paragraph {
        margin-top: 28px;
    }

    .blog-details__body__subtitle-paragraph .blog-details__body__subtitle {
        font-size: 2rem;
        line-height: 40px;
        margin-bottom: 12px;
    }

    .blog-details__body__subtitle-paragraph p {
        font-size: 1.25rem;
        line-height: 28px;
    }

    .blog-details__image__social-icon {
        gap: 20px;
    }

    .blog-details__sidebar {
        margin-bottom: 48px;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .blog-details .blog-details__share {
        width: unset !important;
        max-height: 339px !important;
    }

    .blog-details .blog-details__share li a svg {
        height: 18px;
        width: 18px;
    }

    .blog-details .blog-details__sidebar {
        margin-bottom: 28px;
    }

    .blog-details .blog-details__sidebar {
        margin-bottom: 28px;
    }

    .blog-details .blog-details__image-wrapper {
        margin-bottom: 28px;
    }
}

@media (max-width: 991px) {
    .blog-details {
        margin-bottom: 40px !important;
    }

    .blog-details__title {
        font-size: 2rem;
        line-height: 38px;
    }

    .blog-details__content {
        padding: 30px;
    }

    .blog-details__meta {
        margin-bottom: 40px;
        font-size: 0.875rem;
    }

    .blog-details__image__social-icon {
        gap: 10px;
        flex-direction: column;
    }

    .blog-details__image-wrapper {
        margin-bottom: 18px;
    }

    .blog-details__share {
        flex-direction: row;
        border: none;
        gap: 30px;
        margin-bottom: 0;
    }

    .blog-details__share li {
        width: 100%;
    }

    .blog-details__share li a {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
        border-bottom: none !important;
    }

    .blog-details__share li a svg {
        width: 25px;
        height: 25px;
    }

    .blog-details__share li:last-child a {
        border-bottom: none !important;
    }

    .blog-details__body p {
        font-size: 1.25rem;
        line-height: 28px;
    }

    .blog-details__body__subtitle-paragraph {
        margin-top: 28px;
    }

    .blog-details__body__subtitle-paragraph .blog-details__body__subtitle {
        font-size: 2rem;
        line-height: 40px;
        margin-bottom: 12px;
    }

    .blog-details__body__subtitle-paragraph p {
        font-size: 1.25rem;
        line-height: 28px;
    }
}

.contact {
    margin-bottom: 80px;
}

.contact-wrapper {
    padding: 80px 0;
    border-radius: 20px;
}

.contact__header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 60px;
}

.contact__title {
    font-family: var(--alt-font, "Kanit", sans-serif);
    font-size: 3rem;
    font-weight: 600;
    color: #181c1d;
    line-height: 56px;
    margin-bottom: 20px;
    text-align: center;
}

.contact__description {
    font-size: 1.25rem;
    font-weight: 400;
    color: #5a6464;
    line-height: 28px;
    text-align: center;
}

.contact__inner-wrapper {
    display: flex;
    gap: 98px;
    align-items: center;
    max-width: 1120px;
    margin: 0 auto;
}

.contact__info {
    flex: 1;
}

.contact__heading {
    font-family: var(--alt-font, "Kanit", sans-serif);
    font-size: 2.5rem;
    font-weight: 600;
    color: #181c1d;
    line-height: 48px;
    margin-bottom: 16px;
}

.contact__text {
    font-size: 1.125rem;
    font-weight: 400;
    color: #5a6464;
    line-height: 25px;
    margin-bottom: 30px;
    max-width: 366px;
}

.contact__item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
}

.contact__item__image {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: #7a3185;
}

.contact__item__image img.contact__icon {
    max-width: 24px;
    height: auto;
}

.contact__label {
    font-size: 1.125rem;
    font-weight: 600;
    color: #181c1d;
    margin-bottom: 4px;
}

.contact .error-text {
    color: red;
    font-size: 14px;
    margin-top: 4px;
    display: block;
}

.contact__value {
    font-size: 1rem;
    color: #5a6464;
}

.contact__form {
    flex: 1;
    background: #f6f8f8;
    border-radius: 16px;
    padding: 40px;
}

.contact__form-heading {
    font-family: var(--alt-font, "Kanit", sans-serif);
    font-size: 2.5rem;
    font-weight: 600;
    color: #181c1d;
    line-height: 48px;
    margin-bottom: 30px;
}

.contact__form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.contact__form-group label {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 500;
    color: #414d4f;
}

.contact__form-group input {
    border: 1px solid #e9eeee;
    border-radius: 8px;
    padding: 12px;
    font-size: 1rem;
    outline: none;
}

.contact__form-group input::placeholder {
    color: #5a6464;
}

.contact__form-group input:focus {
    border-color: #357b7f;
}

.contact__form-checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
}

.contact__form-checkbox label {
    font-size: 0.75rem;
    color: #5a6464;
    margin-bottom: 0;
}

.contact__form-checkbox input {
    margin-top: 4px;
}

.contact__submit {
    width: 100%;
    padding: 14px;
    background: #357b7f;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.contact__submit:hover {
    background: #2a6266;
}

@media (max-width: 767.98px) {
    .contact {
        margin-bottom: 40px !important;
    }

    .contact-wrapper {
        padding: 40px 0;
    }

    .contact__header {
        margin-bottom: 40px;
    }

    .contact__title {
        font-size: 40px;
        line-height: 40px;
        margin-bottom: 15px;
    }

    .contact__inner-wrapper {
        flex-direction: column;
        gap: 0;
    }

    .contact__description {
        padding: 0 10px;
    }

    .contact__heading {
        font-size: 32px;
        line-height: 32px;
        margin-bottom: 10px;
    }

    .contact__form {
        flex: 1;
        background: #f6f8f8;
        border-radius: 16px;
        padding: 20px;
        margin: 0 20px;
    }

    .contact__form-heading {
        font-size: 32px;
        line-height: 32px;
        margin-bottom: 20px;
    }

    .contact__info {
        flex: 1;
        padding: 0 20px;
    }

    .contact__item__image {
        flex: 0 0 30px;
        width: 32px;
        height: 32px;
    }

    .contact__item__image img.contact__icon {
        max-width: 20px;
    }
}

@media (max-width: 991.98px) {
    .contact .contact__inner-wrapper {
        gap: 10px;
    }

    .contact .contact__info {
        padding-left: 16px;
    }

    .contact .contact__form {
        flex: 1;
        background: #f6f8f8;
        border-radius: 16px;
        padding: 20px;
        margin: 0 20px;
    }
}

@media screen and (min-width: 992px) and (max-width: 1440px) {
    .contact .contact__inner-wrapper {
        padding: 0 10px;
    }
}

@media (max-width: 1399.98px) {
    .contact__info {
        padding-left: 16px;
    }
}

.checkout {
    padding: 30px 0 80px;
}

.checkout__main-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 1px 0 rgba(16, 24, 40, 0.03);
    overflow: hidden;
}

.checkout__section-title {
    font-family: var(--alt-font, "Kanit", sans-serif);
    font-size: 2.5rem;
    color: #181c1d;
    font-weight: 600;
    line-height: 48px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e9eeee;
}

.checkout__shipping-method-row {
    margin: 30px 0;
}

.checkout__label {
    display: block;
    font-size: 1.125rem;
    color: #181c1d;
    font-weight: 500;
    margin-bottom: 14px;
}

.checkout .checkout__save-info input[type=checkbox] {
    accent-color: #357b7f;
}

.checkout .checkout__save-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-top: 10px;
}

.checkout .checkout__save-info input {
    width: 18px;
    height: 18px;
}

.checkout__field {
    width: 100%;
    border: 1px solid #e6eef0;
    border-radius: 8px;
    padding: 11px 15px;
    margin-bottom: 30px;
    font-size: 1rem;
    background: #fff;
}

.checkout__field::placeholder {
    color: #9ca3af;
}

.checkout .checkout__phone-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.checkout .checkout__field--with-prefix {
    padding-left: 14px;
}

.checkout .checkout__shipping-method--title {
    font-size: 1.5rem;
    color: #181c1d;
    line-height: 32px;
    margin: 40px 0 30px;
}

.checkout .checkout__section__payment-title {
    font-size: 1.5rem;
    color: #181c1d;
    line-height: 32px;
    margin: 40px 0 12px;
}

.checkout .checkout__note {
    font-size: 1.25rem;
    color: #5a6464;
    line-height: 28px;
    margin-bottom: 30px;
}

.checkout .checkout__radio {
    position: relative;
    display: inline-flex;
    width: 100%;
    cursor: pointer;
}

.checkout .checkout__radio input {
    position: absolute;
    inset: 0;
    width: 0;
    height: 0;
    opacity: 0;
}

.checkout .checkout__radio .radio-box {
    display: flex;
    align-items: center;
    border: 1px solid #e5e7eb;
    padding: 12px 16px;
    border-radius: 10px;
    background: #fff;
    width: 100%;
    transition: all 0.14s ease;
    min-height: 48px;
}

.checkout .checkout__radio .radio-box .delivery-vehicle,
.checkout .checkout__radio .radio-box .delivery-box {
    margin: 0 8px 0 12px;
}

.checkout .checkout__radio .radio-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #cbd5db;
    background: #fff;
    flex-shrink: 0;
    position: relative;
}

.checkout .checkout__radio .radio-dot::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: transparent;
}

.checkout .checkout__radio .radio-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0f766e;
    flex-shrink: 0;
}

.checkout .checkout__radio .radio-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 1.125rem;
    color: #181c1d;
    font-weight: 500;
    line-height: 25px;
}

.checkout .checkout__radio .radio-text small {
    font-size: 12px;
    color: #6b7280;
    font-weight: 400;
}

.checkout .checkout__radio .radio-text strong {
    font-weight: 600;
}

.checkout .checkout__radio input:checked+.radio-box {
    border-color: #10b981;
    background: #ecfdf3;
    box-shadow: 0 1px 0 rgba(16, 185, 129, 0.06);
}

.checkout .checkout__radio input:checked+.radio-box .radio-dot {
    border-color: #10b981;
    background: #10b981;
}

.checkout .checkout__radio input:checked+.radio-box .radio-dot::after {
    background: #ffffff;
}

.checkout .shipping-option .radio-box {
    display: flex;
    align-items: start;
    gap: 12px;
}

.checkout .shipping-price {
    margin-left: auto;
    font-weight: 700;
    color: #06403b;
}

.checkout__note {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 12px;
}

.checkout__payment-form__wrapper {
    padding: 40px;
}

.checkout__payment-form {
    background: #f8fafb;
    position: relative;
    border-radius: 16px;
}

.checkout .checkout__card-title {
    font-size: 1.5rem;
    color: #181c1d;
    background: #f9c71d;
    line-height: 32px;
    padding: 21px 30px;
    font-weight: 600;
    border-radius: 16px 16px 0 0;
}

.checkout .checkout__checkbox input[type=checkbox] {
    accent-color: #357b7f;
}

.checkout__checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-top: 10px;
}

.checkout__checkbox input {
    width: 18px;
    height: 18px;
}

.checkout__btn {
    width: 100%;
    padding: 12px;
    background: #0d9488;
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 12px;
}

.checkout__btn:hover {
    background: #0f766e;
}

.checkout__cart {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    position: sticky;
    top: 20px;
}

.checkout .checkout__cart-title {
    font-size: 1.5rem;
    color: #181c1d;
    line-height: 32px;
    margin-bottom: 30px;
}

.checkout .checkout__cart-item__wrapper {
    gap: 24px;
}

.checkout__cart-item {
    margin-bottom: 16px;
}

.checkout__cart-item .cart-thumb {
    padding: 20px;
    width: 130px;
    height: 130px;
    background: #fbfcfb;
    border-radius: 8px;
    border: 1px solid #e9eeee;
    border-radius: 8px;
    flex-shrink: 0;
}

.checkout__cart-item .cart-title {
    max-width: 375px;
    font-size: 1.25rem;
    color: #181c1d;
    line-height: 28px;
    margin-bottom: 16px;
}

.checkout__cart-item .cart-rating {
    font-size: 12px;
    color: #f59e0b;
}

.checkout__cart-item .cart-price {
    font-size: 1.25rem;
    color: #357b7f;
    line-height: 28px;
    margin-left: 12px;
}

.checkout__cart-item .product-review {
    gap: 2px;
}

.checkout__cart-item .product-review li i {
    color: #f9c71d;
    font-size: 1rem;
}

.checkout__cart-item .product-review li .rating {
    color: #ccc;
    font-size: 1rem;
}

.checkout__cart-item .rating-count {
    font-size: 1rem;
    color: #323b3a;
    line-height: 22px;
    margin-left: 6px;
}

.checkout__discount {
    display: block;
    margin: 20px 0;
}

.checkout__discount .discount-pill {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #e6eef0;
    padding: 11px;
    border-radius: 40px;
}

.checkout__discount .discount-pill__img {
    margin-left: 11px;
}

.checkout__discount input {
    border: none;
    outline: none;
    padding: 6px 10px;
    font-size: 1.25rem;
    color: #000;
    line-height: 28px;
    background: transparent;
    flex: 1;
}

.checkout__discount .btn-apply {
    position: absolute;
    right: 10px;
    background: #0d9488;
    font-size: 1.25rem;
    line-height: 28px;
    padding: 10px 22.68px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
}

.checkout__summary p {
    font-size: 1.25rem;
    color: #181c1d;
    line-height: 28px;
    margin-bottom: 24px;
}

.checkout__summary p p:last-child {
    margin-bottom: 40px;
}

.checkout__summary h5 {
    font-size: 1.5rem;
    color: #181c1d;
    line-height: 32px;
}

.checkout {
    /* responsive */
}

@media (min-width: 1400px) and (max-width: 1740px) {
    .checkout .checkout__cart-item__wrapper {
        gap: 10px;
    }

    .checkout__cart-item {
        margin-bottom: 16px;
    }

    .checkout__cart-item .cart-thumb {
        padding: 10px;
        width: 104px;
        height: 104px;
    }
}

@media (min-width: 992px) and (max-width: 1399.98px) {
    .checkout__discount .discount-pill {
        padding: 5px;
    }

    .checkout__discount input {
        font-size: 16px;
        padding-left: 4px;
    }

    .checkout__discount .btn-apply {
        font-size: 14px;
        line-height: 28px;
        padding: 6px 22.68px;
    }

    .checkout__discount .discount-pill__img {
        margin-left: 0;
    }

    .checkout__cart {
        padding: 20px;
    }

    .checkout__cart-item__wrapper {
        flex-direction: column;
    }

    .checkout__cart-item .cart-thumb {
        padding: unset;
        width: unset;
        height: unset;
        background: none;
        border-radius: none;
        border: unset;
        border-radius: unset;
        flex-shrink: 0;
    }

    .checkout .checkout__summary .shipping {
        text-align: end;
        gap: 20px;
    }
}

@media (max-width: 991.98px) {
    .checkout .checkout__main-card {
        margin-bottom: 20px !important;
    }
}

@media (max-width: 767.98px) {
    .checkout {
        padding: 20px 0 50px;
    }

    .checkout__main-card {
        padding: 20px;
        margin-bottom: 20px !important;
    }

    .checkout__cart {
        padding: 20px;
    }

    .checkout__discount .discount-pill {
        padding: 5px;
    }

    .checkout__discount input {
        font-size: 16px;
        padding-left: 4px;
    }

    .checkout__discount .btn-apply {
        font-size: 14px;
        line-height: 28px;
        padding: 6px 22.68px;
    }

    .checkout__payment-form__wrapper {
        padding: 20px;
    }

    .checkout__shipping-method-row,
    .checkout__shipping-method {
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .checkout__cart-item .cart-thumb {
        padding: 10px;
        width: 100px;
        height: 100px;
    }

    .checkout__cart-item__wrapper {
        gap: 10px !important;
    }

    .checkout__cart-item .product-review li i {
        font-size: 12px;
    }

    .checkout__cart-item .product-review li .rating {
        font-size: 12px;
    }

    .checkout__cart-item .cart-title {
        font-size: 1rem;
        line-height: 22px;
        margin-bottom: 10px;
    }

    .checkout__cart-item .rating-count {
        font-size: 16px;
    }

    .checkout__cart-item .cart-price {
        font-size: 16px;
    }

    .checkout__summary p {
        font-size: 1rem;
        line-height: 22px;
        margin-bottom: 14px;
    }

    .checkout__summary p p:last-child {
        margin-bottom: 30px;
    }

    .checkout__summary h5 {
        font-size: 1.25rem;
        line-height: 28px;
    }
}

.electronic-slider-block {
    padding: 50px 0;
    background: #F8F8F8;
}

.electronic-slider-block .hero-inner-content {
    left: 60px;
}

.banner-top-text {
    border-radius: 30px;
    border: 1px solid #9BB5B7;
    background: #789799;
    font-family: "Instrument Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    padding: 4px 15px;
}

.electronic-slider-block .grid-one__slider__title {
    color: var(--colors-white, #FFF);
    font-family: "Instrument Sans";
    font-size: var(--type-size-6xl, 60px);
    font-style: normal;
    font-weight: var(--type-weight-bold, 700);
    line-height: 78px;
}

.electronic-slider-block .grid-one__slider__content p {
    color: var(--colors-neutral-300, #D4D4D4);
    font-family: "Instrument Sans";
    font-size: var(--type-size-lg, 18px);
    font-style: normal;
    font-weight: var(--type-weight-normal, 400);
    line-height: 25px;
}

.electronic-slider-block button.hero-btn {
    border-radius: var(--radius-md, 8px);
    border: 1px solid var(--colors-gray-light-mode-300, #D0D5DD);
    background: var(--colors-white, #FFF);
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
    color: var(--colors-slate-800, #1E293B);
    font-family: Figtree;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    /* 150% */
}

.electronic-slider-block .grid-one__slider__content h2 {
    margin: 16px 0 20px;
}

.electronic-slider-block .hero-btn {
    margin-top: 40px;
}

.electronics-main-heading .electronics-title .title {
    color: var(--colors-slate-900, #0F172A);
    font-family: "Instrument Sans";
    font-size: var(--type-size-4xl, 36px);
    font-style: normal;
    font-weight: var(--type-weight-semibold, 600);
    line-height: 47px;
}

.electronics-main-heading .electronics-subtitle {
    color: var(--colors-slate-600, #475569);
    font-family: "Instrument Sans";
    font-size: var(--type-size-sm, 14px);
    font-style: normal;
    font-weight: var(--type-weight-normal, 400);
    line-height: 21px;
    margin-top: 16px;
}

.electronics-viewmore span {
    color: var(--colors-gray-800, #1F2937);
    text-align: center;
    font-family: "Instrument Sans";
    font-size: var(--type-size-lg, 18px);
    font-style: normal;
    font-weight: var(--type-weight-medium, 500);
    line-height: 25px;
}

.electronics-grid-block {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    padding: 30px;
}

.electronics-grid-item {
    text-decoration: none;
    color: #0f172a;
    text-align: center;
    position: relative;
    background: transparent;
    border-right: 1px solid #D9D9D9 !important;
}

.electronics-grid-item:nth-child(-n+5) {
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 30px;
}

.electronics-grid-item:nth-child(5),
.electronics-grid-item:nth-child(10) {
    border-right: 0 !important;
}

.electronics-grid-item-media {
    place-items: center;
    margin-bottom: 24px;
}

.electronics-grid-item-media img {
    object-fit: contain;
    display: block;
}

.electronics-grid-item-title {
    color: #111827;
    text-align: center;
    font-family: "Instrument Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
}

.electronics-grid-item-title:hover {
    text-decoration: underline;
}

.electronics-grid-item-meta {
    margin-top: 12px;
    color: #4B5563;
    text-align: center;
    font-family: "Instrument Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
}

.electronics-grid-item:nth-child(-n+4)::after {
    content: "";
    position: absolute;
    bottom: -7px;
    right: -8px;
    width: 14px;
    height: 14px;
    background: #D9D9D9;
    border: 1px solid #D9D9D9 !important;
    transform: rotate(45deg);
}

.electronics-grid-item:nth-child(n+2):nth-child(-n+5)::before {
    content: "";
    position: absolute;
    bottom: -7px;
    left: -8px;
    width: 14px;
    height: 14px;
    background: #D9D9D9;
    border: 1px solid #D9D9D9;
    transform: rotate(45deg);
}

.flash-sale-banner-section .flash-sale-wrap {
    border-radius: 20px;
    background: #FCC094;
    display: flex;
    padding: 65px 47px;
    flex-direction: column;
    gap: 10px;
}

.flash-sale-banner-section .flash-sale-title {
    color: #181C1D;
    font-family: "Instrument Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
}

.flash-sale-banner-section .countdown {
    color: #181C1D;
    font-family: "Instrument Sans";
    font-size: 60px;
    font-style: normal;
    font-weight: 600;
    line-height: 78px;
    margin: 0;
    padding: 0;
    gap: 0;
}

.flash-sale-subtitle {
    color: #181C1D;
    font-family: "Instrument Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 34px;
}

.flash-sale-banner-section .btn.flash-sale-btn {
    border-radius: 24px;
    background: #7D3A0A;
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
    display: flex;
    padding: var(--spacing-lg, 12px) 18px;
    justify-content: center;
    align-items: center;
    color: #FFF;
    font-family: Figtree;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.electronic-sale-banner-section .bx-wrapper {
    background: none;
}

.electronic-sale-banner-section .categories-block__title {
    color: var(--colors-white, #FFF);
    font-family: "Instrument Sans";
    font-size: var(--type-size-xl, 20px);
    font-style: normal;
    font-weight: var(--type-weight-semibold, 600);
    line-height: 28px;
}

.electronic-sale-banner-section .sale-banner-ticker {
    background: var(--colors-red-500, #EF4444);
    border-radius: 0 0 24px 24px;
    padding: 18px 0;
}

.electronic-sale-banner-section .sale-banner-ticker .ticker-carousel-block-text ul li {
    color: var(--colors-white, #FFF);
    font-family: "Instrument Sans";
    font-size: var(--type-size-xl, 20px);
    font-style: normal;
    font-weight: var(--type-weight-semibold, 600);
    line-height: 28px;
    font-weight: 700;
    white-space: nowrap;
    display: inline-block;
    text-transform: uppercase;
    color: #fff;
}

.electronic-sale-banner-section .sale-banner {
    position: relative;
    border-radius: 24px 24px 0 0;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.electronic-sale-banner-section .sale-banner .sale-banner-content {
    position: relative;
    z-index: 2;
    min-height: 370px;
    padding: 0 60px;
}

.electronic-sale-banner-section .sale-banner .title {
    color: var(--colors-white, #FFF);
    font-family: "Instrument Sans";
    font-size: var(--type-size-5xl, 48px);
    font-style: normal;
    font-weight: var(--type-weight-semibold, 600);
    line-height: 62px;
}

.electronic-sale-banner-section .sale-banner .sale-cta-btn {
    border-radius: var(--borderRadius-3xl, 24px);
    background: var(--colors-amber-600, #D97706);
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
    padding: 10px var(--spacing-xl, 16px);
    color: #fff;
    font-family: Figtree;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    margin-top: 50px;
    border: none;
}

.electronic-sale-banner-section .sale-banner .sale-banner-ticker {
    position: relative;
    z-index: 3;
    background-color: #ff4e4e;
    color: #fff;
    padding-block: 0.75rem;
    padding-inline: 1.5rem;
    margin-inline: -0.05rem;
    border-radius: 0 0 2rem 2rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.electronic-sale-banner-section .sale-banner .sale-banner-ticker .ticker-inner {
    gap: 1.5rem;
    white-space: nowrap;
}

.electronic-sale-banner-section .sale-banner .sale-banner-ticker .ticker-separator {
    font-size: 1.2rem;
}

.electronic-sale-banner-section .full-width__categories {
    padding: 8px;
}

.trending-product-slider .swiper-slide {
    margin-top: 0 !important;
}

.trending-product .deals-card-block {
    padding: 6px 20px 6px 6px;
    border-radius: 16px;
    border: 2px solid var(--Light-Green-500, #357b7f);
    background: var(--White, #fff);
    display: flex;
    width: auto;
    height: auto;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.trending-product .deals-card-image {
    border-radius: 16px;
    background: var(--Dark-10, #f4f6f6);
    width: auto;
    height: auto;
    padding: 0;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.trending-product .category-title {
    color: var(--colors-slate-500, #64748B);
    font-family: "Instrument Sans";
    font-size: var(--type-size-base, 16px);
    font-style: normal;
    font-weight: var(--type-weight-normal, 400);
    line-height: 24px;
}

.trending-product .electronic__card-price.card-title {
    color: var(--colors-gray-950, #030712);
    font-family: "Instrument Sans";
    font-size: var(--type-size-lg, 18px);
    font-style: normal;
    font-weight: var(--type-weight-semibold, 600);
    line-height: 25px;
    margin: 8px 0 12px;
}

.trending-product .price-new {
    color: var(--colors-red-600, #DC2626);
    font-family: "Instrument Sans";
    font-size: var(--type-size-base, 16px);
    font-style: normal;
    font-weight: var(--type-weight-medium, 500);
    line-height: 24px;
    margin-bottom: 20px;
}

.trending-product button.btn.btn-shop-primary {
    border-radius: var(--borderRadius-3xl, 24px);
    background: var(--colors-gray-100, #F3F4F6);
    display: flex;
    width: 95px;
    padding: 8px 12px;
    justify-content: center;
    align-items: center;
    color: var(--colors-gray-900, #111827);
    font-family: "Instrument Sans";
    font-size: var(--type-size-xs, 12px);
    font-style: normal;
    font-weight: var(--type-weight-medium, 500);
    line-height: 18px;
    /* 150% */
    border: none;
    transition: background-color 0.2s ease;
}

.trending-product .btn-check:checked+.btn.btn-shop-primary,
.trending-product .btn.btn-shop-primary.active,
.trending-product .btn.btn-shop-primary:active,
.trending-product .btn.btn-shop-primary:first-child:active {
    color: #fff;
    background: var(--colors-amber-600, #D97706) !important;
    border: none;
    transform: none !important;
    box-shadow: none !important;
}

.trending-product button.btn.btn-shop-primary:hover {
    background-color: #D97706;
    color: #fff;
}

.trending-product .row {
    row-gap: 30px;
}

.top-deals-hero-section .top-deals-hero-banner {
    border-radius: 1.75rem;
    min-height: 100%;
}

.top-deals-hero-section .top-deals-hero-banner {
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(90deg, rgba(13, 8, 8, 0.35) 31.86%, rgba(24, 15, 15, 0) 89.3%), url("../img/electronic/deals/06.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.top-deals-hero-section .top-deals-hero-content {
    top: 70px;
    left: 30px;
}

.top-deals-hero-section .top-deals-badge-small {
    color: var(--colors-white, #FFF);
    font-family: "Instrument Sans";
    font-size: var(--type-size-base, 16px);
    font-style: normal;
    font-weight: var(--type-weight-medium, 500);
    line-height: 24px;
}

.top-deals-hero-section .top-deals-hero-title {
    color: var(--colors-white, #FFF);
    font-family: "Instrument Sans";
    font-size: var(--type-size-5xl, 48px);
    font-style: normal;
    font-weight: var(--type-weight-bold, 700);
    line-height: 62px;
    padding: 12px 0 20px;
}

.top-deals-hero-section a.btn.top-deals-hero-btn {
    border-radius: var(--borderRadius-3xl, 24px);
    background: var(--colors-amber-600, #D97706);
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
    padding: 10px var(--spacing-xl, 16px);
    color: #FFF;
    font-family: Figtree;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    border: none;
}

.exclusive-grid-banner .ex-card.ex-hero {
    min-height: 100%;
    border-radius: 20px;
    background: url(<path-to-image>) lightgray 50%/cover no-repeat;
    inset: 0;
    background-image: url("../img/electronic/banner/01.png");
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.exclusive-grid-banner .countdown {
    display: flex;
    gap: 15px;
    margin-top: 0;
}

.exclusive-grid-banner .time-box {
    border-radius: 30px;
    opacity: 0.6;
    background: var(--colors-gray-900, #111827);
    width: 50px;
    height: 50px;
    aspect-ratio: 1/1;
    padding: 5px;
    text-align: center;
}

.exclusive-grid-banner .time-box .number {
    color: var(--colors-white, #FFF) !important;
    text-align: center;
    font-family: "Instrument Sans";
    font-size: var(--type-size-xl, 20px);
    font-style: normal;
    font-weight: var(--type-weight-semibold, 600);
    line-height: 28px;
    margin-top: 6px;
}

.exclusive-grid-banner .deals-of-the-day.style-1 .time-box .number {
    color: var(--Light-Green-500, #357b7f) !important;
}

.exclusive-grid-banner .time-box .label {
    color: var(--colors-white, #FFF);
    text-align: center;
    /* xs/bold */
    font-family: "Instrument Sans";
    font-size: var(--type-size-xs, 12px);
    font-style: normal;
    font-weight: var(--type-weight-bold, 700);
    line-height: 18px;
    /* 150% */
    margin-top: 15px;
}

.exclusive-grid-banner .ex-hero-content {
    top: 40px;
    left: 40px;
    overflow: hidden;
}

.exclusive-grid-banner .ex-hero-title {
    color: var(--colors-white, #FFF);
    font-family: "Instrument Sans";
    font-size: 44px;
    font-style: normal;
    font-weight: var(--type-weight-semibold, 600);
    line-height: 61.674px;
    margin: 40px 0 30px;
}

.exclusive-grid-banner a.btn.ex-btn-shop {
    border-radius: var(--borderRadius-3xl, 24px);
    background: var(--Colors-Base-white, #FFF);
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
    padding: 10px var(--spacing-xl, 16px);
    color: var(--colors-gray-800, #1F2937);
    font-family: Figtree;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    border: none;
}

/* Tab product */
.electronic-tab-porduct .nav-tabs .nav-item .nav-link {
    isolation: unset;
    border-radius: 24px;
    border: 1px solid #E5E7EB;
    background: #FFF;
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
    color: #374151;
    font-family: Figtree;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    display: flex;
    padding: 8px 21px;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.electronic-tab-porduct .nav-tabs .nav-item .nav-link.active {
    isolation: unset;
    border-radius: 24px;
    border: 1px solid #C3DCDD;
    background: #fff !important;
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
    color: #357B7F !important;
    font-family: Figtree;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    display: flex;
    padding: 8px 21px;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.electronic-tab-porduct .nav-tabs .nav-item .nav-link:focus,
.electronic-tab-porduct .nav-tabs .nav-item .nav-link:hover {
    border: 1px solid #C3DCDD !important;
    isolation: unset;
}

.electronic-tab-porduct .product-card {
    padding: 0;
}

.electronic-tab-porduct .product-card:hover .cart-icon {
    opacity: 1;
    transform: transform 0.2s ease;
}

.cart-icon {
    opacity: 0;
    right: 30px;
    bottom: 30px;
}

.electronic-tab-porduct .card-img [type=button]:not(:disabled),
.electronic-tab-porduct .card-img [type=reset]:not(:disabled),
.electronic-tab-porduct .card-img [type=submit]:not(:disabled) {
    cursor: pointer;
    background: none;
    background-color: unset;
}

/* Title */
.na-title {
    font-weight: 900;
    letter-spacing: -0.02em;
    font-size: clamp(26px, 3vw, 40px);
}

/* Pills */
.na-pill {
    border: 1px solid #e5e7eb;
    background: #fff;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
    transition: 0.15s ease;
}

.na-pill:hover {
    background: rgba(244, 244, 245, 0.65);
}

.na-pill.is-active {
    border-color: rgba(56, 189, 248, 0.35);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.12);
}

/* Arrows */
.na-arrow {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 0;
    background: #f3f4f6;
    font-size: 22px;
    line-height: 1;
    display: grid;
    place-items: center;
    color: #0f172a;
}

.na-arrow:hover {
    filter: brightness(0.98);
}

.electronic-tab-porduct .product-card {
    display: block;
}

.electronic-tab-porduct .card-img {
    background: #f4f4f5;
    border-radius: 14px;
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.electronic-tab-porduct .card-img img {
    object-fit: contain;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

.electronic-tab-porduct .product-card:hover .card-img img {
    transform: scale(1.06);
}

.electronic-tab-porduct .product-info-category {
    color: #71717A;
    font-family: "Instrument Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 6px;
}

.electronic-tab-porduct .product-category-title {
    color: #111827;
    font-family: "Instrument Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 34px;
    margin-bottom: 12px;
}

.electronic-tab-porduct .product-category-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.electronic-tab-porduct .product-category-price-new {
    color: #EF4444;
    font-family: "Instrument Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
}

.electronic-tab-porduct .product-category-price-old {
    color: #A1A1AA;
    font-family: "Instrument Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
    text-decoration-line: line-through;
}

.electronic-tab-porduct .product-category-colors {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-left: 4px;
}

.electronic-tab-porduct .product-category-swatch {
    --c: #111827;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: var(--c);
    border: 0;
    padding: 0;
    position: relative;
    cursor: pointer;
    outline: none;
}

.electronic-tab-porduct .product-category-swatch.is-active::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 999px;
    border: 1px solid #599397;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.12);
}

.electronic-tab-porduct .product-info {
    padding-top: 20px;
    padding-bottom: 6px;
}

.limited-hero {
    background-color: #e6f3ff;
}

.limited-hero .limited-label {
    color: #000;
    font-family: "Instrument Sans";
    font-size: var(--type-size-2xl, 24px);
    font-style: normal;
    font-weight: var(--type-weight-medium, 500);
    line-height: 34px;
    margin-bottom: 40px;
}

.limited-hero .limited-tabs-wrapper {
    display: flex;
    align-items: flex-start;
}

.limited-hero .limited-line {
    width: 2px;
    border-radius: 5px;
    background: var(--colors-sky-200, #BAE6FD);
    min-height: 220px;
    margin-right: 30px;
}

.limited-hero .limited-tabs {
    gap: 40px;
}

.limited-hero {
    /* Boutons de tabs verticaux */
}

.limited-hero .limited-tab {
    border: none;
    background: transparent;
    text-align: left;
    padding: 0;
    color: var(--colors-slate-400, #94A3B8);
    font-family: "Instrument Sans";
    font-size: var(--type-size-4xl, 36px);
    font-style: normal;
    font-weight: var(--type-weight-semibold, 600);
    line-height: 47px;
    /* 130.556% */
}

.limited-hero .limited-tab.active {
    color: var(--colors-slate-900, #0F172A);
    font-family: "Instrument Sans";
    font-size: var(--type-size-4xl, 36px);
    font-style: normal;
    font-weight: var(--type-weight-semibold, 600);
    line-height: 47px;
    /* 130.556% */
}

.limited-hero {
    /* Card droite */
}

.limited-hero .limited-card {
    border-radius: 16px;
    background: var(--colors-white, #FFF);
    box-shadow: var(--shadow-md-offsetX2, 0) var(--shadow-md-offsetY2, 4px) var(--shadow-md-radius2, 6px) var(--shadow-md-spread2, -4px) rgba(2, 132, 199, 0.1), var(--shadow-md-offsetX1, 0) var(--shadow-md-offsetY1, 10px) var(--shadow-md-radius1, 15px) var(--shadow-md-spread1, -3px) rgba(2, 132, 199, 0.1);
    padding: 20px;
}

.limited-hero .limited-card-title {
    color: var(--colors-gray-900, #111827);
    font-family: "Instrument Sans";
    font-size: var(--type-size-2xl, 24px);
    font-style: normal;
    font-weight: var(--type-weight-semibold, 600);
    line-height: 34px;
    margin: 20px 0 8px;
}

.limited-hero .limited-card-text {
    color: var(--colors-gray-600, #4B5563);
    font-family: "Instrument Sans";
    font-size: var(--type-size-lg, 18px);
    font-style: normal;
    font-weight: var(--type-weight-normal, 400);
    line-height: 25px;
    margin-bottom: 20px;
}

.limited-hero .limited-card-btn {
    border-radius: var(--borderRadius-3xl, 24px);
    border: 1px solid var(--colors-slate-800, #1E293B);
    background: var(--colors-slate-900, #0F172A);
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
    color: var(--Component-colors-Components-Buttons-Primary-button-primary-fg, #FFF);
    font-family: Figtree;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    /* 142.857% */
}

.limited-hero .inner-gap {
    gap: 140px;
}

.trusted-section .trusted-card-body {
    border-radius: 20px;
    border: 1px solid var(--colors-gray-200, #E5E7EB);
    background: var(--colors-white, #FFF);
}

.trusted-section .trusted-img-wrapper {
    border-radius: 20px 20px 0 0;
}

.trusted-section .trusted-card-content {
    padding: 30px;
}

.trusted-section .trusted-title {
    color: var(--colors-gray-950, #030712);
    font-family: "Instrument Sans";
    font-size: var(--type-size-xl, 20px);
    font-style: normal;
    font-weight: var(--type-weight-semibold, 600);
    line-height: 28px;
    margin: 14px 0 16px;
}

.trusted-section .trusted-text {
    color: var(--colors-gray-900, #111827);
    font-family: "Instrument Sans";
    font-size: var(--type-size-xl, 20px);
    font-style: normal;
    font-weight: var(--type-weight-normal, 400);
    line-height: 28px;
}

.trusted-section .trusted-author {
    color: var(--colors-gray-900, #111827);
    font-family: "Instrument Sans";
    font-size: var(--type-size-xl, 20px);
    font-style: normal;
    font-weight: var(--type-weight-medium, 500);
    line-height: 28px;
    margin-top: 30px;
}

.gram-section {
    background-color: #F3F4F6;
}

.gram-section .gram-title {
    font-size: clamp(2rem, 2.5vw, 2.6rem);
    font-weight: 700;
    color: #0f172a;
}

.gram-section .gram-card-footer {
    border-radius: 0 0 20px 20px;
    background: var(--colors-white, #FFF);
    padding: 22px 24px;
}

.gram-section .gram-username {
    color: var(--colors-gray-900, #111827);
    font-family: "Instrument Sans";
    font-size: var(--type-size-lg, 18px);
    font-style: normal;
    font-weight: var(--type-weight-medium, 500);
    line-height: 25px;
}

.electronics-grid-card .swiper-grid-column>.swiper-wrapper {
    flex-direction: unset !important;
}

.tab-new-style button.cart-icon {
    background: unset;
    background-color: unset;
}

.ex-card img {
    width: 100%;
}

.top-deals-hero-section .tab-product-list .product-card {
    margin: 0;
}

@media (max-width: 991px) {
    .top-deals-hero-section .top-deals-hero-banner {
        min-height: 400px;
        margin-bottom: 24px;
    }

    .electronic-slider-block .hero-inner-content {
        left: 30px;
    }

    .electronic-slider-block .grid-one__slider__title {
        font-size: var(--type-size-3xl, 30px);
        line-height: 39px;
        text-align: left;
    }
}

@media (max-width: 1199px) {
    .electronics-grid-item {
        border-right: 1px solid #D9D9D9 !important;
    }

    .electronics-grid-item:nth-child(-n+3) {
        border-bottom: 1px solid #D9D9D9;
    }

    .electronics-grid-item:nth-child(3),
    .electronics-grid-item:nth-child(6),
    .electronics-grid-item:nth-child(9) {
        border-right: 0;
    }

    .electronics-grid-item::before,
    .electronics-grid-item::after {
        display: none;
    }

    .flash-sale-banner-section .row {
        row-gap: 30px;
    }

    .limited-hero {
        padding: 24px 0;
    }

    .limited-hero .inner-gap {
        gap: 24px;
    }

    .electronic-sale-banner-section .sale-banner .title {
        font-size: var(--type-size-4xl, 36px);
        font-weight: var(--type-weight-bold, 700);
        line-height: 47px;
    }

    .electronic-sale-banner-section .sale-banner .sale-banner-content {
        min-height: 300px;
        padding: 30px 20px;
        align-items: flex-start !important;
    }

    .electronic-sale-banner-section .sale-banner .sale-cta-btn {
        margin-top: 30px;
    }

    .grid-one__slider img {
        min-height: 500px;
    }
}

header.header-main-block .header-style4 .nav-search.mobile-view button.nav__search__icon {
    background: unset;
    background-color: unset !important;
}

.electronics-header .primary__navbar .nav__search__icon {
    right: 105px;
}

@media (min-width: 992px) and (max-width: 1440px) {
    .top-deals-hero-section .top-deals-hero-title {
        font-size: var(--type-size-5xl, 36px);
        line-height: 42px;
    }

    .limited-hero-left {
        width: 50%;
    }

    .flash-sale-banner-section .countdown {
        font-size: 46px;
        line-height: 72px;
    }

    .flash-sale-banner-section .flash-sale-wrap {
        padding: 65px 15px;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .top-deals-hero-section .top-deals-hero-title {
        font-size: var(--type-size-5xl, 38px);
        line-height: 45px;
    }

    #limitedTabContent {
        margin-top: 24px;
    }

    .exclusive-grid-banner .ex-hero-title {
        font-size: 25px;
        line-height: 51px;
        margin: 15px 0 0;
    }

    .exclusive-grid-banner .ex-hero-content {
        top: 20px;
        left: 20px;
    }
}

@media (max-width: 767px) {
    .electronics-grid-item {
        padding: 26px 14px 22px;
    }

    .electronics-header .nav-right-account .badge {
        display: none;
    }

    .electronics-main-heading .electronics-subtitle,
    .trending-product .title {
        margin-bottom: 16px;
    }

    .electronic-slider-block {
        padding: 24px 0;
    }

    .tab-new-style .common-slider .owl-nav {
        top: -110px;
    }

    .electronics-grid-item-title {
        font-size: 16px;
    }

    .flash-sale-banner-section .countdown-product {
        display: block;
    }

    .trending-product .deals-card-block {
        width: auto;
    }

    .trending-product .electronic__card-price.card-title {
        font-size: var(--type-size-lg, 14px);
        line-height: 18px;
        margin: 8px 0 8px;
    }

    .trending-product .price-new {
        margin-bottom: 12px;
    }

    .trending-product .deals-card-image {
        margin: 0;
    }

    .exclusive-grid-banner .ex-card.ex-hero {
        min-height: 315px;
    }

    .exclusive-grid-banner .countdown-product {
        justify-content: start;
    }
}

.gram-img-wrapper img {
    width: 100%;
}

.furniture-categories__wrapper {
    margin: 30px 0;
}

.furniture-categories__wrapper .furniture-category-card {
    text-align: center;
}

.furniture-categories__wrapper .furniture-category-card .furniture-category-circle {
    width: 116px;
    height: 116px;
    margin: 0 auto;
    border-radius: 50%;
    background: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.furniture-categories__wrapper .furniture-category-card .furniture-category-circle img {
    max-width: 65%;
    max-height: 65%;
    object-fit: contain;
}

.furniture-categories__wrapper .furniture-category-card .furniture-category-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    line-height: 28px;
    margin-bottom: 4px;
    margin-top: 12px;
}

.furniture-categories__wrapper .furniture-category-card .furniture-category-title a {
    text-decoration: none;
    color: #000;
}

.furniture-categories__wrapper .furniture-category-card .furniture-category-subtitle {
    font-size: 1.5;
    font-weight: 400;
    color: #4b5563;
    line-height: 24px;
}

.grid-one__slider {
    display: grid;
    place-items: center;
}

.grid-one__slider__content p {
    font-size: 1.25rem;
    line-height: 28px;
}

.grid-one__slider__content h2 {
    font-size: 72px;
    line-height: 94px;
    margin: 10px 0 40px;
    font-family: var(--primary-font);
}

.grid-one__slider__small {
    border-radius: 20px !important;
    background: #f2f2f2 !important;
}

.grid-one__slider__small__content {
    padding: 18px 24px 20px;
}

.grid-one__slider__content {
    padding: 14px 24px 20px;
}

.grid-one__slider__content__title {
    font-size: 1.25rem;
    color: #111827;
    line-height: 28px;
}

.grid-one__slider__content .grid-one__slider__product-review {
    display: flex;
    gap: 2px;
    margin-top: 10px;
}

.grid-one__slider__content .grid-one__slider__product-review li .rating {
    color: rgb(204, 204, 204);
    font-size: 16px;
}

.grid-one__slider__content .grid-one__slider__product-review li i {
    color: rgb(249, 199, 29);
    font-size: 16px;
}

.grid-one__slider__content__currency {
    font-size: 1.25rem;
    color: #111827;
    line-height: 28px;
}

.grid-two__slider {
    padding: 60px;
    border-radius: 20px !important;
    background-image: url(../img/furniture/grid-one/grid-one-1.png) !important;
}

.grid-two__slider__content h5 {
    font-size: 1.25rem;
    line-height: 28px;
}

.grid-two__slider__content h2 {
    font-family: var(--primary-font);
    font-size: 3rem;
    line-height: 62px;
    margin: 24px 0 20px;
    max-width: 488px;
}

.grid-two__slider__content p {
    font-size: 1.125rem;
    line-height: 25px;
    margin-bottom: 30px;
    max-width: 443px;
}

.grid-two__slider__btn {
    border-radius: 30px;
    background: #fff;
    color: #111827;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 24px;
}

.grid-two__slider__small {
    border-radius: 20px !important;
    background: #f2f2f2 !important;
    padding: 24px 40px;
}

.grid-two__slider__small .grid-two__slider__title {
    font-size: 1.5rem;
    color: #030712;
    line-height: 34px;
    margin: 18px 0 8px;
}

.grid-two__slider__small .grid-two__slider__price {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 25px;
}

.product-feature {
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
}

.product-furniture-card {
    border-radius: 16px !important;
    background: #f2f2f2;
    box-shadow: none !important;
    padding: 20px !important;
}

.product-furniture-card:hover .btn-cart-primary.btn-cart-primary--furniture {
    background: #66574a !important;
}

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

.product-furniture-card .furniture-tag-new {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    position: absolute;
    top: 20px;
    display: inline-flex;
    padding: 2px 8px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    left: 20px;
    z-index: 22;
    border-radius: 9px !important;
}

.product-furniture-card .sale {
    color: #fff;
    background: #000;
}

.product-furniture-card .new {
    color: #fff;
    background: #ef4444;
}

.product-furniture-card .trending {
    color: #fff;
    background: #9e7c4f;
}

.product-furniture-card .number {
    color: #fff;
    background: #9e7c4f;
}

.product-furniture-card .card-img-top.furniture-card-img-top {
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
    margin: 0 auto;
}

.product-furniture-card .btn-cart-primary.btn-cart-primary--furniture {
    border-radius: 50%;
    background: #3e2f23;
    display: flex;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: var(--Light-Green-500, #357b7f);
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    width: 44px;
    height: 44px;
}

.product-furniture-card .card-title {
    color: #3e2f23;
    font-size: 1.125rem;
    line-height: 25px;
    margin: 0;
}

.product-furniture-card .product-info .product-review li i {
    color: #9e7c4f;
    font-size: 10px;
}

.product-furniture-card .card-price {
    padding: 8px 0 11px;
}

.product-furniture-card .card-price span {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 25px;
}

.furniture-nav-tabs.nav-tabs {
    border-bottom: none;
}

.furniture-nav-tabs.nav-tabs .nav-item {
    margin-right: 10px;
}

.furniture-nav-tabs.nav-tabs .nav-item .nav-link {
    position: relative;
    border-radius: 0 !important;
    background: transparent !important;
    color: #3e2f23;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    border: none !important;
    transition: all 0.3s ease;
}

.furniture-nav-tabs.nav-tabs .nav-item .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #a57c51;
    transition: width 0.3s ease;
}

.furniture-nav-tabs.nav-tabs .nav-item .nav-link:hover,
.furniture-nav-tabs.nav-tabs .nav-item .nav-link:focus {
    color: #a57c51 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.furniture-nav-tabs.nav-tabs .nav-item .nav-link.active,
.furniture-nav-tabs.nav-tabs .nav-item .nav-link.show,
.nav-item.show .furniture-nav-tabs.nav-tabs .nav-item .nav-link {
    color: #a57c51 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.furniture-nav-tabs.nav-tabs .nav-item .nav-link.active::after,
.furniture-nav-tabs.nav-tabs .nav-item .nav-link.show::after,
.nav-item.show .furniture-nav-tabs.nav-tabs .nav-item .nav-link::after {
    width: 100%;
}

.furniture-nav-tabs.nav-tabs .nav-item .nav-link:focus-visible {
    outline: 0 !important;
    box-shadow: none !important;
}

.furniture-grid-three__slider {
    padding: 60px;
    border-radius: 20px !important;
}

.furniture-grid-three__slider .furniture-grid-three__slider__content {
    margin-top: 130px;
}

.furniture-grid-three__slider__content h5 {
    color: #3E2F23;
    text-align: center;
    font-family: "Instrument Sans";
    font-size: var(--type-size-3xl, 30px);
    font-style: normal;
    font-weight: var(--type-weight-semibold, 600);
    line-height: 39px;
    padding: 16px 30px;
}

.furniture-grid-three__slider__content h2 {
    font-family: var(--primary-font);
    font-size: 3rem;
    color: #000 !important;
    line-height: 62px;
    margin: 0 auto;
    max-width: 400px;
}

.furniture-grid-three__slider__btn {
    border-radius: 30px;
    background: #9E7C4F;
    padding: 4px 16px;
    color: var(--colors-white, #FFF);
    text-align: center;
    font-family: "Instrument Sans";
    font-size: var(--type-size-sm, 14px);
    font-style: normal;
    font-weight: var(--type-weight-medium, 500);
    line-height: 21px;
    /* 150% */
}

.slider-two-content .furniture-grid-three__slider__btn {
    background: #3E2F23;
}

.furniture-grid-three__slider--one img,
.furniture-grid-three__slider--three img {
    border-radius: 20px !important;
}

.furniture-grid-three__slider--one img .furniture-grid-three__slider__title,
.furniture-grid-three__slider--three img .furniture-grid-three__slider__title {
    color: #3E2F23;
    text-align: center;
    font-family: "Instrument Sans";
    font-size: var(--type-size-3xl, 30px);
    font-style: normal;
    font-weight: var(--type-weight-semibold, 600);
    line-height: 39px;
    /* 130% */
}

.furniture-grid-three__slider--one img .furniture-grid-three__slider__price,
.furniture-grid-three__slider--three img .furniture-grid-three__slider__price {
    color: var(--colors-amber-700, #B45309);
    font-family: "Instrument Sans";
    font-size: var(--type-size-sm, 14px);
    font-style: normal;
    font-weight: var(--type-weight-medium, 500);
    line-height: 21px;
}

.furniture-grid-three__slider--three .furniture-grid-three__slider__title {
    font-size: 1.5rem;
    color: #030712;
    line-height: 34px;
    margin: 18px 0 8px;
}

.furniture-grid-three__slider--three .furniture-grid-three__slider__price {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 25px;
}

button.btn.btn-shop-primary {
    border-radius: 24px;
    background: #9e7c4f;
    display: flex;
    width: 95px;
    padding: 8px 12px;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
}

.card.product-card:hover button.btn.btn-shop-primary {
    background: #cab497;
    color: var(--White, #000);
}

.furniture__card-title {
    margin: 12px 0 0 !important;
}

.time-box .number {
    color: #9e7c4f !important;
}

.furniture__product-info {
    padding-top: 58px !important;
}

.furniture__blog-title {
    margin: 20px 0 24px;
    font-size: 1.5rem !important;
    color: #111827;
    line-height: 34px !important;
}

.profile-wrapper {
    gap: 10px;
}

.profile-wrapper .profile-avatar {
    width: 30px;
    height: 30px;
    aspect-ratio: 1/1;
    gap: 10px;
}

.profile-wrapper .profile-avatar p {
    font-size: 16px;
    color: #111827;
    line-height: 24px;
}

.categories-block {
    gap: 42px;
}

.categories-block__img {
    width: 80px;
    height: 80px;
    aspect-ratio: 1/1;
}

.categories-block__title {
    font-size: 36px;
    color: #9e7c4f;
    line-height: 47px !important;
}

.product-feature .row {
    --bs-gutter-x: 160px;
}

.heading-furniture-title {
    color: #181c1d;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 39px;
}

.product-feature {
    padding: 2rem;
    display: flex;
    align-items: center;
}

.product-feature__img {
    max-width: 100%;
}

.product-feature__img img {
    display: block;
    width: 100%;
    height: auto;
}

.product-feature__content {
    margin-left: 2rem;
}

.product-feature__subtitle {
    font-size: 20px;
    color: #9e7c4f;
    line-height: 28px;
    font-weight: 500;
}

.product-feature__title {
    font-size: 48px;
    color: #000;
    line-height: 62px;
    font-weight: 600;
    margin: 20px 0 24px 0;
}

.product-feature__description {
    font-size: 20px;
    color: #000;
    line-height: 28px;
    font-weight: 400;
    margin-bottom: 40px;
}

.product-feature__btn {
    border-radius: 30px;
    background: #59463c;
    color: #fff;
    padding: 10px 30px;
    font-size: 1rem;
    font-weight: 500;
    line-height: 22px;
}

.product-feature__btn:hover {
    background: #444;
}

.hotspot {
    position: absolute;
    width: 18px;
    height: 18px;
    background: #007bff;
    border-radius: 50%;
    cursor: pointer;
    transform: translate(-50%, -50%);
    transition: background 0.3s ease;
}

.hotspot:hover {
    background: #59463c;
}

.hotspot-panel {
    display: none;
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 12px 15px;
    border-radius: 6px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
    max-width: 220px;
    z-index: 10;
    white-space: normal;
}

.hotspot:hover .hotspot-panel {
    display: block;
}

.deals-of-the-day.style-2 {
    background: #f2f2f2;
    padding: 70px 0;
}

.furniture-left-banner {
    width: 1238px;
}

.furniture-right-banner {
    width: 444px;
}

.grid-one__slider img {
    border-radius: 20px;
}

.furniture-left-banner button.hero-btn {
    border-radius: 30px;
    background: var(--colors-white, #FFF);
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
    padding: 16px 30px;
    align-items: center;
    color: var(--colors-gray-900, #111827);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
}

.furniture-slider-pagination .swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: #fff;
    border-radius: 10px;
    width: 48px;
}

.furniture-slider-pagination .swiper-pagination-bullet {
    display: inline-block;
    border-radius: 7px;
    opacity: 0.6;
    background: var(--colors-white, #FFF);
}

.furniture-tab-block .tab-block-title p {
    color: #A5876A;
    font-family: "Instrument Sans";
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 10px;
}

.furniture-tab-block .tab-product-list .product-card {
    margin-top: 30px;
}

.furniture-tab-block .card.product-card .wishlist-icon {
    opacity: 1;
}

.hot_deals_grid-two__slider {
    border-radius: 16px;
}

.grid-two__slider__content.hero-inner-content {
    padding: 60px;
}

.furniture-tab-block .view-all__btn-wrapper {
    margin-top: 60px;
}

.furniture-style .categories-block__title {
    font-size: 36px;
    color: #9e7c4f;
    line-height: 47px;
}

.carouselTicker__list li img {
    min-width: 55px;
    /* adjust as needed */
    min-height: 55px;
    display: inline-block;
}

.full-width__categories .carouselTicker__list li {
    color: #9E7C4F !important;
    font-family: "Instrument Sans";
    font-size: var(--type-size-4xl, 36px);
    font-style: normal;
    font-weight: var(--type-weight-bold, 700);
    line-height: 47px;
    text-transform: capitalize !important;
}

.best.products .best.products__subtitle {
    color: #9E7C4F;
    font-family: "Instrument Sans";
    font-size: var(--type-size-xl, 20px);
    font-style: normal;
    font-weight: var(--type-weight-medium, 500);
    line-height: 28px;
}

.best.products .best.products__title {
    color: #000;
    font-family: "Instrument Sans";
    font-size: var(--type-size-5xl, 48px);
    font-style: normal;
    font-weight: var(--type-weight-semibold, 600);
    line-height: 62px;
    padding: 24px 0;
}

.best.products .best.products__description {
    color: #000;
    font-family: "Instrument Sans";
    font-size: var(--type-size-xl, 20px);
    font-style: normal;
    font-weight: var(--type-weight-normal, 400);
    line-height: 28px;
    padding-bottom: 40px;
}

.best.products button.best.products__btn {
    border-radius: 30px;
    background: #59463C;
    color: #FFF;
    font-family: "Instrument Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    padding: 10px 30px;
}

.furniture-grid-three__slider__content {
    top: 20px;
    left: 0;
    right: 0;
}

.furniture-grid-three__slider--one img {
    min-height: 400px;
}

.furniture-grid-three__slider__price {
    color: var(--colors-amber-700, #B45309);
    font-family: "Instrument Sans";
    font-size: var(--type-size-sm, 14px);
    font-style: normal;
    font-weight: var(--type-weight-medium, 500);
    line-height: 21px;
}

.furniture-grid-three__slider__content.banner-three-content {
    top: 220px;
}

.banner-three-content .furniture-grid-three__slider__title {
    color: #3E2F23;
    text-align: center;
    font-family: "Instrument Sans";
    font-size: var(--type-size-5xl, 48px);
    font-style: normal;
    font-weight: var(--type-weight-semibold, 600);
    line-height: 62px;
}

.banner-three-content button.furniture-grid-three__slider__btn {
    background: #59463C;
}

@media (max-width: 1023px) {
    .furniture-left-banner {
        width: auto;
        margin-bottom: 24px;
    }

    .furniture-slider-block {
        padding-bottom: 24px;
    }

    .furniture-categories__wrapper {
        margin: 24px 0;
    }

    .furniture-slider-block {
        display: block !important;
    }
}

@media (min-width: 991px) and (max-width: 1199px) {
    .furniture-right-banner {
        width: auto;
    }

    .furniture-left-banner {
        width: 656px;
    }

    .furniture-right-banner .hero-banner-small-one img {
        max-width: max-content;
    }

    .grid-one__slider img {
        min-height: 445px;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .furniture-right-banner {
        width: auto;
    }

    .furniture-left-banner {
        width: 815px;
    }

    .furniture-right-banner .hero-banner-small-one img {
        max-width: max-content;
    }

    .grid-one__slider img {
        min-height: 462px;
    }
}

@media (min-width: 1400px) and (max-width: 1535px) {
    .furniture-right-banner {
        width: auto;
    }

    .furniture-left-banner {
        width: 815px;
    }

    .furniture-right-banner .hero-banner-small-one img {
        max-width: max-content;
    }

    .grid-one__slider img {
        min-height: 605px;
    }
}

@media (max-width: 991px) {
    .best.products .best.products__title {
        font-size: var(--type-size-2xl, 24px);
        line-height: 34px;
    }

    .best.products .best.products__description {
        font-size: var(--type-size-sm, 14px);
        font-style: normal;
        font-weight: var(--type-weight-normal, 400);
        line-height: 21px;
    }

    .furniture-header .navigation.header-style2 .nav-bottom {
        padding: 0px 0 24px 0;
        border-bottom: 1px solid #E9EEEE;
    }

    .furniture-tab-block .view-all__btn-wrapper {
        margin: 24px 0;
    }

    .pb-40 {
        padding-bottom: 24px;
    }

    .furniture-header .navigation.header-style2 {
        padding: 30px 0 0 0;
    }

    .furniture-right-banner {
        width: auto;
    }

    .grid-one__slider__content h2 {
        font-size: var(--type-size-4xl, 36px);
        line-height: 47px;
    }
}

@media (max-width: 767px) {
    .furniture-tab-block .tab-block-header {
        display: block !important;
    }

    .furniture-tab-block .tab-block-title {
        margin-bottom: 16px;
    }

    .grid-two__slider__content h2 {
        font-size: var(--type-size-3xl, 30px);
        line-height: 39px;
    }

    .banner-three-content .furniture-grid-three__slider__title {
        text-align: center;
        font-size: var(--type-size-3xl, 30px);
        font-style: normal;
        font-weight: var(--type-weight-bold, 700);
        line-height: 39px;
    }

    .furniture-grid-three__slider__content.banner-three-content {
        top: 100px;
    }
}

.furniture-right-banner .grid-one__slider__content .grid-one__slider__title {
    color: var(--colors-gray-900, #111827);
    font-family: "Instrument Sans";
    font-size: var(--type-size-xl, 20px);
    font-style: normal;
    font-weight: var(--type-weight-medium, 500);
    line-height: 28px;
    margin: 0;
}

.top_bar_jewelry {
    background: #030712 !important;
}

.top_bar_jewelry_social {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top_bar_jewelry_social_icon {
    width: 20px;
    height: 20px;
    aspect-ratio: 1/1;
}

.top_bar_jewelry .countdown-simple .countdown {
    font-size: 1rem;
    line-height: 22px;
    margin-top: 0;
}

.expanding-slider-section {
    color: #fff;
    padding: 44px 0 60px;
    width: 100%;
    overflow: hidden;
}

/* Track and Cards */
.slider {
    overflow: visible;
    width: 100%;
}

.track {
    display: flex;
    justify-content: center;
    gap: 24px;
    align-items: flex-start;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
}

.track::-webkit-scrollbar {
    display: none;
}

.project-card {
    position: relative;
    flex: 0 0 var(--closed);
    height: var(--card-height);
    border-radius: 20px;
    overflow: hidden;
    transition: flex-basis var(--speed), transform var(--speed);
    background: #e3ab93;
    scroll-snap-align: center;
    cursor: pointer;
}

.project-card[active] {
    flex-basis: 70%;
    border-radius: 20px;
    z-index: 3;
}

.project-card:not([active]) .frosted-box {
    display: none;
}

.project-card__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--speed);
    background: #e3ab93;
}

.project-card:hover .project-card__bg {
    transform: scale(1.05);
}

.project-card__content {
    position: absolute;
    inset: 0;
    display: flex;
    gap: 60px;
    align-items: center;
    padding: 118px 80px 85px;
    justify-content: space-between;
}

.project-card:not([active]) .project-card__content {
    padding: 0 !important;
}

.project-card__title {
    font-size: 18px;
    color: #451a03;
    line-height: 25px;
    font-weight: 400;
}

.project-card__desc {
    display: none;
    font-size: 48px;
    color: #451a03;
    line-height: 62px;
    padding: 20px 0 40px;
    font-weight: 700;
    max-width: 400px;
}

.explore__btn {
    padding: 12px 18px;
    border-radius: 24px;
    background-color: #481f02;
    font-size: 16px;
    line-height: 24px;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.3s;
}

.explore__btn:hover {
    background-color: #623210;
}

.arrow-circle {
    padding: 4px;
    background-color: #623210;
    margin-left: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.arrow-circle::after {
    content: "→";
    color: white;
    font-size: 14px;
}

.project-card[active] .project-card__desc {
    display: block;
}

/* Dots */
.dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 35px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e7e5e4;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    padding: 0;
}

.dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

.shop-categories--wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
}

.shop-categories .jewelry-shop-categories-card__btn.shop-categories-card {
    flex: 1 1 400px;
    min-width: 464px;
    height: 384px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    padding: 60px 40px;
    color: #fff;
    position: relative;
    min-width: 200px;
    display: flex;
    align-items: flex-end;
}

.shop-categories .jewelry-shop-categories-card__btn.shop-categories-card__content h5 {
    font-size: 1.2rem;
    line-height: 1.4;
    font-weight: 500;
}

.shop-categories .jewelry-shop-categories-card__btn.shop-categories-card__content h2 {
    font-family: var(--primary-font);
    font-size: 2rem;
    font-weight: 700;
    margin: 10px 0 25px;
}

.shop-categories .jewelry-shop-categories-card__btn.shop-categories-card__btn {
    display: inline-block;
    border-radius: 8px;
    background: #fff;
    color: #111827;
    padding: 10px 18px;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    transition: all 0.3s ease-in-out;
}

.shop-categories .jewelry-shop-categories-card__btn.shop-categories-card__btn:hover {
    background: #9e7c4f;
    color: #fff;
    transition: all 0.3;
}

.shop-categories .categories-card {
    position: relative;
    flex: 1 1 200px;
    height: 384px;
    border-radius: 8px;
    background: #f9f9f9;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.shop-categories .categories-card h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #9a5728;
    letter-spacing: 1px;
    position: absolute;
    bottom: 0;
    background: rgba(212, 198, 194, 0.2);
    backdrop-filter: blur(50px);
    width: 100%;
    padding: 9px 0;
    border-radius: 0 0 8px 8px;
}

.shop-categories .categories-card h5:hover {
    color: #c76926;
}

.shop-categories .shop-categories-card {
    background-image: url("../img/jewelry/shop-categories/jewelry-shop.png");
    height: 384px;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
}

.shop-categories .categories-card--necklace {
    background-image: url("../img/jewelry/shop-categories/neckles.png");
}

.shop-categories .categories-card--bracelet {
    background-image: url("../img/jewelry/shop-categories/bracelets.png");
}

.shop-categories .categories-card--set {
    background-image: url("../img/jewelry/shop-categories/jewelry-set.png");
}

.shop-categories .categories-card--ring {
    background-image: url("../img/jewelry/shop-categories/rings.png");
}

.explore-collection--heading {
    margin-bottom: 30px;
}

.background-img {
    background-image: url("../img/jewelry/recommendation/recommendation.png") !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

.recomendation--wrapper {
    gap: 25px;
}

.product-jewelry-card {
    position: relative;
    border-radius: 16px !important;
    background: #f2f2f2;
    padding: 20px !important;
    overflow: hidden;
    box-shadow: none !important;
}

.product-card.product-jewelry-card .corner-cart {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.product-card.product-jewelry-card:hover .corner-cart {
    opacity: 1;
    visibility: visible;
}

.corner-cart {
    position: absolute;
    right: 0px;
    bottom: 0;
    width: 63px;
    height: 55px;
    background: white;
    border-top-left-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: end;
}

.btn-cart-primary--jewelry {
    border-radius: 50%;
    background: #3e2f23;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    padding: 0;
    z-index: 10;
    position: relative;
}

.product-jewelry-card img {
    transition: transform 0.3s ease-in-out;
    transform: scale(1);
}

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

.jewelry-rating-selected {
    color: #9e7c4f !important;
    font-size: 16px;
}

.tag-new.jewelry-tag-new {
    position: absolute;
    top: 20px;
    left: 20px;
    border-radius: 9999px !important;
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
}

.tag-new.jewelry-tag-new.new {
    background: #3e2f23;
}

.tag-new.jewelry-tag-new.sale {
    background: #ef4444;
}

.price-new.jewelry-price-new {
    color: #dc2626;
}

.card-price.jewelry-card-price {
    margin: 0 !important;
    padding: 16px 0 24px;
}

.jewelry-nav-tabs.nav-tabs {
    border-bottom: none;
}

.jewelry-nav-tabs.nav-tabs .nav-item {
    margin-right: 10px;
}

.jewelry-nav-tabs.nav-tabs .nav-item .nav-link {
    position: relative;
    border-radius: 0 !important;
    background: transparent !important;
    color: #3e2f23;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    border: none !important;
    transition: all 0.3s ease;
}

.jewelry-nav-tabs.nav-tabs .nav-item .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #a57c51;
    transition: width 0.3s ease;
}

.jewelry-nav-tabs.nav-tabs .nav-item .nav-link:hover,
.jewelry-nav-tabs.nav-tabs .nav-item .nav-link:focus {
    color: #a57c51 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.jewelry-nav-tabs.nav-tabs .nav-item .nav-link.active,
.jewelry-nav-tabs.nav-tabs .nav-item .nav-link.show,
.nav-item.show .jewelry-nav-tabs.nav-tabs .nav-item .nav-link {
    color: #a57c51 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.jewelry-nav-tabs.nav-tabs .nav-item .nav-link.active::after,
.jewelry-nav-tabs.nav-tabs .nav-item .nav-link.show::after,
.nav-item.show .jewelry-nav-tabs.nav-tabs .nav-item .nav-link::after {
    width: 100%;
}

.jewelry-nav-tabs.nav-tabs .nav-item .nav-link:focus-visible {
    outline: 0 !important;
    box-shadow: none !important;
}

.jewelry-nav-tabs {
    margin-bottom: 24px;
}

.product-jewelry-card .jewelry-recommend-title.card-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 25px;
    margin: 0;
    padding: 10px 0 8px;
}

.product-jewelry-card .jewelry-recommend-title.card-title a {
    color: #3e2f23;
}

.grid-three__slider {
    padding: 60px;
    border-radius: 20px !important;
    background-image: url(../img/jewelry/grid-three/grid-offer-2.png) !important;
}

.grid-three__slider .grid-three__slider__content {
    margin-top: 130px;
}

.grid-three__slider__content h5 {
    font-size: 1.25rem;
    color: #b45309;
    line-height: 28px;
}

.grid-three__slider__content h2 {
    font-family: var(--primary-font);
    font-size: 3rem;
    color: #000 !important;
    line-height: 62px;
    margin: 0 auto;
    max-width: 400px;
}

.grid-three__slider__btn {
    border-radius: 30px;
    background: #fff;
    color: #111827;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 150px;
}

.grid-three__slider--one {
    border-radius: 20px !important;
    padding: 30px 40px;
    background-image: url(../img/jewelry/grid-three/grid-offer-1.png) !important;
}

.grid-three__slider--one .jewelry__slider__title.grid-three__slider__title {
    font-size: 72px;
    color: #0d1203;
    line-height: 94px;
    margin: 8px 0 30px;
}

.grid-three__slider--one .grid-three__slider__price {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 25px;
}

.grid-three__slider--three {
    border-radius: 20px !important;
    padding: 30px 40px;
    background-image: url(../img/jewelry/grid-three/grid-offer-3.png) !important;
}

.grid-three__slider--three .jewelry__slider__title.grid-three__slider__title {
    font-size: 1.5rem;
    color: #030712;
    line-height: 34px;
    margin: 18px 0 8px;
}

.grid-three__slider--three .grid-three__slider__price {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 25px;
}

.jewelry-offer-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 24px;
}

.jewelry-offer-grid__ring {
    grid-column: 1/8;
    grid-row: 1;
}

.jewelry-offer-grid__bracelet {
    grid-column: 1/5;
    grid-row: 2;
}

.jewelry-offer-grid__offer {
    grid-column: 5/8;
    grid-row: 2;
}

.jewelry-offer-grid__showcase {
    grid-column: 8/13;
    grid-row: 1/3;
    min-height: 482px;
}

.deals-of-the-day {
    background: #f8f8f8;
}

button.btn.btn-shop-primary {
    border-radius: 24px;
    background: #9e7c4f;
    display: flex;
    width: 95px;
    padding: 8px 12px;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    border: none;
    transition: background-color 0.2s ease;
}

button.btn.btn-shop-primary:hover {
    background-color: #8a6a43;
    color: #fff;
}

.btn-check:checked+.btn.btn-shop-primary,
.btn.btn-shop-primary.active,
.btn.btn-shop-primary:active,
.btn.btn-shop-primary:first-child:active {
    color: #fff;
    background-color: #7a5a38;
    border: none;
    transform: none !important;
    box-shadow: none !important;
}

.btn.btn-shop-primary:focus,
.btn.btn-shop-primary:focus-visible {
    color: #fff;
    background-color: #9e7c4f;
    border: none;
    box-shadow: none;
    outline: none;
}

.card.product-card:hover button.btn.btn-shop-primary {
    background: #cab497;
    color: var(--White, #000);
}

.jewelry__card-title {
    margin: 12px 0 0 !important;
}

.jewelry__card-price {
    padding: 16px 0 24px !important;
}

.time-box .number {
    color: #9e7c4f !important;
}

.jewelry__product-info {
    padding-top: 58px !important;
}

.jewelry-price-new {
    color: #dc2626 !important;
}

.jewelry__slider--one {
    border-radius: 20px !important;
    padding: 48px;
    background-image: url(../img/jewelry/deals/deals-2.png) !important;
}

.offer__btn {
    padding: 6px 16px;
    font-size: 1rem;
    color: #000;
    line-height: 24px;
    border-radius: 8px;
    margin-bottom: 60px;
}

.view-all__btn-wrapper {
    margin-top: 48px;
}

.view-all__btn {
    padding: 12px 18px;
    border-radius: 24px;
    border: 1px solid #e5e7eb;
    font-size: 1.5;
    color: #475467;
    line-height: 24px;
}

.jewelry__slider__moto.grid-three__slider__price {
    font-size: 1.875rem;
    line-height: 39px;
    margin-bottom: 8px;
}

.jewelry__slider__title.grid-three__slider__title {
    font-size: 72px;
    line-height: 94px;
    margin-bottom: 30px;
}

.jewelry__slider__btn {
    padding: 16px 22px;
    font-size: 1.125rem;
    background-color: #d97706;
    line-height: 28px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.jewelry__slider__btn:hover {
    background-color: #8a6a43;
    color: #fff;
}

.arrow-right {
    margin-left: 12px;
}

.jewelry__blog-title {
    margin: 20px 0 24px;
    font-size: 1.5rem !important;
    color: #111827;
    line-height: 34px !important;
}

.profile-jewelry-wrapper {
    display: flex;
    align-items: center;
    gap: 18px;
}

.profile-jewelry-wrapper .avatar-jewelry {
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-jewelry-wrapper .avatar-jewelry img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-jewelry-wrapper .avatar-jewelry .author-name {
    font-size: 20px;
    font-weight: 600;
    color: #030712;
    line-height: 28px;
}

.profile-jewelry-wrapper .post-date {
    font-size: 20px;
    color: #4b5563;
    line-height: 28px;
    font-weight: 500;
}

.bx-wrapper,
.bx-viewport {
    width: 100% !important;
    max-width: 100% !important;
}

.bxsliderfashion li {
    width: auto !important;
}

.bx-wrapper {
    margin-bottom: 0;
    border: none;
    box-shadow: none;
}

.categories-block {
    gap: 0 !important;
}

.categories-block__img {
    width: 112px !important;
    height: 112px !important;
    aspect-ratio: 1/1;
}

.categories-block__title {
    font-family: var(--alt-font, "Kanit", sans-serif);
    font-size: 3rem;
    font-weight: 600;
    color: #c95137;
    line-height: 62px;
    margin-right: 80px !important;
}

.product-feature .row {
    --bs-gutter-x: 160px;
}

.heading-jewelry-title {
    font-family: var(--alt-font, "Kanit", sans-serif);
    font-size: 3rem;
    color: #3e2f23;
    font-weight: 600;
    line-height: 39px;
}

.product-feature {
    padding: 2rem;
    display: flex;
    align-items: center;
}

.product-feature__img {
    max-width: 100%;
}

.product-feature__img img {
    display: block;
    width: 100%;
    height: auto;
}

.product-feature__content {
    margin-left: 2rem;
}

.product-feature__subtitle {
    font-size: 20px;
    color: #9e7c4f;
    line-height: 28px;
    font-weight: 500;
}

.product-feature__title {
    font-size: 48px;
    color: #000;
    line-height: 62px;
    font-weight: 600;
    margin: 20px 0 24px 0;
}

.product-feature__description {
    font-size: 20px;
    color: #000;
    line-height: 28px;
    font-weight: 400;
    margin-bottom: 40px;
}

.product-feature__btn {
    border-radius: 30px;
    background: #59463c;
    color: #fff;
    padding: 10px 30px;
    font-size: 1rem;
    font-weight: 500;
    line-height: 22px;
}

.product-feature__btn:hover {
    background: #444;
}

.hotspot {
    position: absolute;
    width: 18px;
    height: 18px;
    background: #007bff;
    border-radius: 50%;
    cursor: pointer;
    transform: translate(-50%, -50%);
    transition: background 0.3s ease;
}

.hotspot:hover {
    background: #59463c;
}

.hotspot-panel {
    display: none;
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 12px 15px;
    border-radius: 6px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
    max-width: 220px;
    z-index: 10;
    white-space: normal;
}

.hotspot:hover .hotspot-panel {
    display: block;
}

.features-section {
    background-color: #fff;
}

.features-cards-wrapper {
    background: #fbfaf9;
    border-radius: 20px;
    padding: 20px;
}

.jewelry-feature-card.feature-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #edebeb;
    padding: 60px 0 40px;
    transition: all 0.3s ease;
}

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

.feature-card-text {
    font-size: 1.875rem;
    color: #111827;
    font-weight: 600;
    line-height: 39px;
    margin-top: 50px;
}

.icon-wrapper {
    width: 160px;
    height: 160px;
    margin: 0 auto;
    background-color: #fff4cf;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper i {
    font-size: 26px;
    color: #b5651d;
    /* warm orange-brown tone */
}

.jewelry-offer-wrapper {
    padding-bottom: 40px;
}

.jewelry-offer-wrapper .jewelry-offer-card--ring {
    margin-bottom: 24px;
}

.jewelry-offer-wrapper .jewelry-offer-card {
    background: #f2f2f2;
    border-radius: 16px;
    padding: 40px;
}

.jewelry-offer-wrapper .jewelry-offer-card__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4px;
}

.jewelry-offer-wrapper .jewelry-offer-card__content.text-center {
    flex-direction: column;
    text-align: center;
}

.jewelry-offer-wrapper .jewelry-offer-card__details {
    flex: 1;
}

.jewelry-offer-wrapper .jewelry-offer-card__badge {
    font-family: var(--alt-font, "Kanit", sans-serif);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: normal;
    background-color: #c36721;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 6px 16px;
    margin-bottom: 20px;
    border-radius: 30px;
    letter-spacing: 0.64px;
}

.jewelry-offer-wrapper .jewelry-offer-card__title {
    font-family: var(--alt-font, "Kanit", sans-serif);
    font-size: 36px;
    line-height: 62px;
    color: #111827;
    margin-bottom: 20px;
}

.jewelry-offer-wrapper .jewelry-offer-card__list {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
}

.jewelry-offer-wrapper .jewelry-offer-card__item {
    font-size: 20px;
    line-height: 28px;
    color: #374151;
    margin-bottom: 20px;
    padding-left: 20px;
    list-style: none;
}

.jewelry-offer-wrapper .jewelry-offer-card__item:last-child {
    margin-bottom: 66px;
}

.jewelry-offer-wrapper .jewelry-offer-card__item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    background-color: #d97706;
    border-radius: 50%;
    transform: translateY(-50%);
}

.jewelry-offer-wrapper .jewelry-offer-card__item__link {
    color: #374151;
}

.jewelry-offer-wrapper .jewelry-offer-card__list--gold {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: center;
    max-width: 295px;
}

.jewelry-offer-wrapper .jewelry-offer-card__list--gold .jewelry-offer-card__item::before {
    background-color: #fbbf24;
}

.jewelry-offer-wrapper .jewelry-offer-card__link {
    font-size: 20px;
    color: #b45309;
    line-height: 28px;
    transition: color 0.3s ease-in-out;
}

.jewelry-offer-wrapper .jewelry-offer-card__link:hover {
    color: #794520;
}

.jewelry-offer-wrapper .jewelry-offer-card__image {
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease-in-out;
}

.jewelry-offer-wrapper .jewelry-offer-card:hover .jewelry-offer-card__image {
    transform: scale(1.05);
}

.jewelry-offer-wrapper .jewelry-offer-card--bracelet {
    padding: 40px 40px 0 !important;
}

.jewelry-offer-wrapper .jewelry-offer {
    background-image: url(../img/jewelry/offer.jpg) !important;
    border-radius: 16px;
    padding: 40px 20px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100% !important;
    height: 100% !important;
    min-height: 482px;
}

.jewelry-offer-wrapper .jewelry-offer__btn {
    font-family: var(--alt-font, "Kanit", sans-serif);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: normal;
    background-color: #c36721;
    color: #fff;
    border: none;
    padding: 6px 16px;
    margin-bottom: 20px;
    border-radius: 30px;
    letter-spacing: 0.64px;
}

.jewelry-offer-wrapper .jewelry-offer__text {
    font-family: var(--alt-font, "Kanit", sans-serif);
    font-size: 60px;
    line-height: 80px;
    color: #fff;
}

.jewelry-offer-wrapper .jewelry-showcase {
    border-radius: 10px;
    background-image: url(../img/jewelry/recomendations-2.png) !important;
    min-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 482px;
}

.jewelry-offer-wrapper .jewelry-showcase__content {
    text-align: center;
}

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

.jewelry-deals-card-image.deals-card-image img {
    transition: transform 0.3s ease-in-out;
}

.footer.footer-style2.footer-jewelry .footer__style-3.footer__payment__badges {
    gap: 6px;
}

@media (max-width: 1720px) {
    .project-card[active] {
        flex-basis: 55%;
    }

    .jewelry-offer-wrapper .jewelry-offer-card__title {
        line-height: 46px;
    }
}

@media (min-width: 1166px) and (max-width: 1199px) {
    .project-card[active] {
        flex-basis: 45%;
    }
}

@media (max-width: 1119.98px) {
    .project-card[active] {
        flex-basis: 44%;
    }

    .expanding-slider-section {
        padding: 34px 0 30px;
    }
}

@media (max-width: 991.98px) {
    .project-card[active] {
        flex-basis: 53%;
    }

    .project-card__content {
        padding: 55px 31px 61px;
    }

    .top_bar_jewelry_social {
        display: show;
    }

    .top_bar p {
        display: none;
    }

    .countdown-jewelry.countdown-product.countdown-simple {
        display: show;
    }

    .jewelry-offer-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .jewelry-offer-grid__ring,
    .jewelry-offer-grid__bracelet,
    .jewelry-offer-grid__offer,
    .jewelry-offer-grid__showcase {
        grid-column: 1;
        grid-row: auto;
    }

    .jewelry-offer-grid__showcase {
        min-height: 478px;
    }

    .icon-wrapper {
        width: 100px;
        height: 100px;
    }

    .jewelry-feature-card.feature-card {
        padding: 40px 0 40px;
    }

    .feature-card-text {
        font-size: 24px;
        margin-top: 20px;
    }
}

@media (max-width: 767.98px) {
    .top_bar_jewelry_social {
        gap: 12px;
    }

    .shop-categories .shop-categories-card {
        margin-bottom: 24px;
    }

    .top_bar_jewelry_social_icon {
        width: 15px;
        height: 15px;
    }

    .frosted-box {
        padding: 30px 20px;
    }

    .project-card__desc {
        font-size: 28px;
        line-height: 36px;
        padding: 15px 0 25px;
    }

    .project-card {
        flex: 0;
    }

    .project-card[active] {
        flex-basis: 100%;
    }

    .project-card__content {
        flex-direction: column !important;
        padding: 0;
        gap: 0;
        justify-content: unset;
    }

    .frosted-img {
        display: flex;
    }

    .frosted-img img {
        width: 80%;
        object-fit: contain;
        margin: 0 auto;
        flex-shrink: 0;
    }

    .expanding-slider-section {
        padding: 34px 0 30px;
    }

    .jewelry-offer-wrapper .jewelry-offer-card__content {
        flex-direction: column-reverse;
    }

    .jewelry__blog-title.service-block-title {
        font-size: 18px !important;
        line-height: 30px;
    }

    .profile-jewelry-wrapper .post-date {
        font-size: 13px;
    }

    .profile-jewelry-wrapper .avatar-jewelry .author-name {
        font-size: 14px;
    }

    .track {
        gap: unset;
    }
}

@media (max-width: 575.98px) {
    .top_bar p {
        display: initial;
    }

    .top_bar_jewelry_social {
        display: none;
    }

    .countdown-jewelry.countdown-product.countdown-simple {
        display: none;
    }

    .top_bar_jewelry div {
        justify-content: center !important;
    }

    .frosted-box {
        padding: 30px 20px;
    }

    .frosted-img {
        display: flex;
    }

    .frosted-img img {
        width: 70%;
        object-fit: contain;
        margin: 0 auto;
        flex-shrink: 0;
    }

    .jewelry-deals-card-image img {
        object-fit: none !important;
    }

    .project-card__desc {
        font-size: 28px;
        line-height: 36px;
        padding: 15px 0 25px;
    }

    .project-card {
        flex: 0;
    }

    .project-card[active] {
        flex-basis: 100%;
    }

    .project-card__content {
        flex-direction: column !important;
        padding: 0;
        gap: 0;
        justify-content: unset;
        padding: 14px 7px 21px;
    }

    .expanding-slider-section {
        padding: 20px 0 20px;
    }

    .dots {
        margin-top: 30px;
    }

    .categories-block__title {
        font-family: var(--alt-font);
        font-size: 1.875rem;
        margin-right: 24px !important;
    }

    .categories-block-img {
        width: 62px !important;
        height: 62px !important;
        aspect-ratio: 1/1;
    }

    .categories-row.bxsliderfashion li {
        margin-right: 24px !important;
    }

    .heading-jewelry-title {
        font-size: 1.5rem;
        font-weight: 700;
        line-height: 34px;
        width: 248px;
        margin: 0 auto;
    }

    .explore-collection--heading {
        margin-bottom: 16px;
        align-items: self-start !important;
    }

    .jewelry-tab-scroll {
        overflow-x: auto;
        white-space: nowrap;
        width: 100%;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .jewelry-tab-scroll .nav-tabs {
        flex-wrap: nowrap !important;
    }

    .jewelry-tab-scroll .nav-item {
        white-space: nowrap;
        flex: 0 0 auto;
    }

    .jewelry-nav-tabs {
        margin-bottom: 0;
    }

    .jewelry-rating-count.rating-count,
    .jewelry-rating-count.rating-count span {
        font-size: 16px !important;
    }

    .product-jewelry-card .jewelry-card-price-new {
        font-size: 18px !important;
    }

    .product-jewelry-card .jewelry-card-price-old {
        font-size: 18px;
    }

    .tab-product-list .product-card {
        margin-top: 20px;
    }

    .view-all__btn-wrapper {
        margin-top: 20px;
    }

    .icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .icon-wrapper img {
        height: 26px;
        width: 26px;
        aspect-ratio: 1/1;
    }

    .jewelry-feature-card.feature-card {
        padding: 24px 0 24px;
    }

    .feature-card-text {
        font-size: 20px;
        line-height: 28px;
        margin-top: 20px;
    }

    .jewelry-deals-card-image.deals-card-image {
        margin-bottom: 0;
    }

    .jewelry-product-info.product-info {
        padding: 10px 24px 24px;
    }

    .jewelry-offer-wrapper .jewelry-offer-card {
        padding: 20px;
    }

    .jewelry-offer-wrapper .jewelry-offer-card__content {
        flex-direction: column-reverse;
    }

    .jewelry-offer-wrapper .jewelry-offer-card__title {
        line-height: 50px;
        margin-bottom: 10px;
    }

    .jewelry-offer-wrapper .jewelry-offer-card__item:last-child {
        margin-bottom: 33px;
    }

    .jewelry-offer-wrapper {
        padding-bottom: 0;
    }

    .jewelry-showcase {
        min-height: 478px;
        margin-top: 16px;
    }

    .service-block-img img {
        width: 100%;
        height: auto;
    }

    .country-selector {
        margin-top: 10px;
    }
}

.header-style5 .nav-search-inner input[type=text],
.header-style5 .nav-search-inner input[type=search] {
    height: 50px;
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
    outline: none;
    border: none;
    background-color: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    color: var(--colors-zinc-500, #71717a);
    font-family: "Instrument Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    border: 1px solid #9e7c4f;
    border-radius: 50px;
}

.header-style5 button.nav-search {
    background: transparent;
}

.header-style5 .nav-search-close-button {
    width: 28px;
    height: 28px;
    display: block;
    position: absolute;
    right: 20px;
    top: 10px;
    line-height: normal;
    color: inherit;
    font-size: 20px;
    cursor: pointer;
}

@media screen and (max-width: 991px) {
    .header-style5 .primary__navbar .cart__link {
        display: block !important;
    }

    .header-style5 .nav-search-close-button {
        top: 3px;
    }
}

.header-style5 .nav-menu>li:hover>a,
.header-style5 .nav-menu>li.active>a,
.nav-menu>li.focus>a {
    color: #9e7c4f;
}

.header-style5 .nav-menu>li:hover>a .submenu-indicator-chevron,
.header-style5 .nav-menu>.active>a .submenu-indicator-chevron,
.header-style5 .nav-menu>.focus>a .submenu-indicator-chevron {
    border-color: transparent #9e7c4f #9e7c4f transparent;
}

.deals-card-image.bg-style-2 {
    background: transparent;
}

.full-width__categories.ticker-style2 .carouselTicker__list li {
    color: #C95137 !important;
    text-align: center;
    font-family: Kanit;
    font-size: var(--type-size-5xl, 48px);
    font-style: normal;
    font-weight: var(--type-weight-semibold, 600);
    line-height: 62px;
    display: flex;
    align-items: center;
}

.shop-categories-card__content {
    position: absolute;
    bottom: 30px;
    left: 30px;
}

.banner-inner-cat-title {
    color: var(--colors-white, #FFF);
    font-family: "Instrument Sans";
    font-size: var(--type-size-4xl, 36px);
    font-style: normal;
    font-weight: var(--type-weight-semibold, 600);
    line-height: 47px;
    margin-bottom: 20px;
}

.fashion-hero-wrapper {
    padding: 40px 0;
}

.fashion-hero-wrapper .hero-content {
    top: 100px;
    width: 400px;
    text-align: center;
    left: 70px;
}

.fashion-hero-wrapper .slider-image-block {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 1140px;
    max-width: 100%;
    max-height: 100%;
    border-radius: 24px;
}

.fashion-hero-wrapper .sub-title {
    color: var(--colors-amber-950, #451A03);
    text-align: center;
    font-family: "Instrument Sans";
    font-size: var(--type-size-lg, 18px);
    font-style: normal;
    font-weight: var(--type-weight-normal, 400);
    line-height: 25px;
}

.fashion-hero-wrapper .slider-title {
    color: var(--colors-amber-950, #451A03);
    text-align: center;
    font-family: "Instrument Sans";
    font-size: var(--type-size-5xl, 48px);
    font-style: normal;
    font-weight: var(--type-weight-semibold, 600);
    line-height: 62px;
    padding: 20px 0 40px;
}

.fashion-hero-wrapper button.btn.btn-primary.hero-btn {
    border-radius: var(--borderRadius-3xl, 24px);
    background: var(--Orange-1000, #481F02);
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
    width: 160px;
    padding: var(--spacing-lg, 12px) 18px;
    border: none;
}

.fashion-category__card {
    border-radius: 20px;
    border: 1px solid var(--colors-gray-200, #E5E7EB);
    background: #FFF;
    display: flex;
    padding: 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
}

.fashion-category a.fashion-category__card:hover {
    border: 1px solid var(--colors-gray-200, #E5E7EB);
}

.fashion-category__icon {
    display: grid;
    place-items: center;
    margin: 0 auto 14px;
}

.fashion-category__icon img {
    object-fit: contain;
    display: block;
}

.fashion-category__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.fashion-category__title {
    color: var(--Text-Light-Primary, #2E2E38);
    font-family: "Instrument Sans";
    font-size: var(--type-size-2xl, 24px);
    font-style: normal;
    font-weight: var(--type-weight-medium, 500);
    line-height: 34px;
}

.fashion-category__btn {
    border-radius: 500px;
    border: 1px solid var(--colors-gray-200, #E5E7EB);
    background: #FFF;
    display: flex;
    padding: 8px;
    align-items: center;
    gap: 10px;
}

.fashion-category__card:hover .fashion-category__btn {
    border-radius: 500px;
    background: var(--colors-gray-800, #1F2937);
}

.fashion-category__card:hover .fashion-category__btn svg {
    color: #fff;
    fill: #fff;
}

.fashion-grid-two__item-content {
    border-radius: 20px;
    background: var(--colors-gray-100, #F3F4F6);
    padding: 30px 18px 42px 30px;
}

.fashion-grid-two__item-title {
    color: var(--colors-gray-900, #111827);
    font-family: "Instrument Sans";
    font-size: var(--type-size-4xl, 36px);
    font-style: normal;
    font-weight: var(--type-weight-semibold, 600);
    line-height: 47px;
}

.fashion-grid-two__image-content {
    font-size: 20px;
    color: #374151;
    line-height: 28px;
}

.fashion-grid-two__image-content .offer-badge p {
    font-size: 48px;
    color: #000;
    line-height: 62px;
}

.fashion-grid-two__item-description {
    font-size: 20px;
    color: #374151;
    line-height: 28px;
    margin: 24px 0 40px;
}

.fashion-grid-two__item-btn {
    width: 211px;
    padding: var(--spacing-xl, 16px) 22px;
    border-radius: var(--borderRadius-3xl, 24px);
    border: 1px solid var(--colors-blue-500, #3B82F6);
    background: var(--colors-blue-500, #3B82F6);
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
}

.fashion-best-sellers-product .heading-title {
    color: #000;
    font-family: "Instrument Sans";
    font-size: var(--type-size-6xl, 48px);
    font-style: normal;
    font-weight: var(--type-weight-medium, 500);
    line-height: 78px;
}

.fashion-best-sellers-product h2 {
    color: #000;
    font-family: "Instrument Sans";
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 78px;
}

.fashion-best-sellers-product .product-card {
    border-radius: 12px;
    border: 1px solid var(--colors-gray-100, #F3F4F6);
    background: var(--colors-gray-50, #F9FAFB);
    padding: 20px;
}

.badge-pill {
    top: 20px;
    left: 20px;
    display: flex;
    padding: var(--spacing-xs, 4px) var(--spacing-lg, 12px);
    align-items: center;
    border-radius: var(--radius-full, 9999px);
    color: var(--colors-white, #FFF);
    text-align: center;
    font-family: Figtree;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

.badge-red {
    background: #DC2626;
    color: #fff;
}

.badge-blue {
    background: #3B82F6;
    color: #fff;
}

.badge-green {
    background: #16A34A;
    color: #fff;
}

.product-card__thumbs {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 24px 0;
}

.fashion-best-sellers-product .thumb {
    width: 54px;
    height: 54px;
    border-radius: 6px;
    border: 1px solid var(--colors-gray-100, #F3F4F6);
    background: #fff;
    padding: 5px;
    cursor: pointer;
}

.fashion-best-sellers-product .thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.fashion-best-sellers-product .thumb.is-active {
    border-color: #D97706;
}

.product-card__content h3 {
    color: var(--colors-gray-900, #111827);
    font-family: "Instrument Sans";
    font-size: var(--type-size-xl, 20px);
    font-style: normal;
    font-weight: var(--type-weight-semibold, 600);
    line-height: 28px;
}

.product-card__content .rating {
    color: var(--colors-gray-600, #4B5563);
    font-family: "Instrument Sans";
    font-size: var(--type-size-base, 16px);
    font-style: normal;
    font-weight: var(--type-weight-normal, 400);
    line-height: 24px;
    padding: 16px 0 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-card__content .price {
    display: flex;
    gap: 10px;
    align-items: center;
}

.product-card__content .price .new {
    color: var(--colors-gray-900, #111827);
    font-family: "Instrument Sans";
    font-size: var(--type-size-2xl, 24px);
    font-style: normal;
    font-weight: var(--type-weight-semibold, 600);
    line-height: 34px;
}

.product-card__content .price .old {
    color: var(--colors-gray-400, #9CA3AF);
    font-family: "Instrument Sans";
    font-size: var(--type-size-2xl, 24px);
    font-style: normal;
    font-weight: var(--type-weight-normal, 400);
    line-height: 34px;
    text-decoration-line: line-through;
}

.fashion-sale-banner .flash-sale-wrap {
    border-radius: 16px;
    background: #EAD2CA;
}

.fashion-sale-banner .flash-sale-subtitle {
    color: var(--colors-gray-800, #1F2937);
    font-family: "Instrument Sans";
    font-size: var(--type-size-2xl, 24px);
    font-style: normal;
    font-weight: var(--type-weight-normal, 400);
    line-height: 34px;
}

.fashion-sale-banner .flash-sale-title {
    color: var(--colors-slate-900, #0F172A);
    font-family: "Instrument Sans";
    font-size: var(--type-size-6xl, 60px);
    font-style: normal;
    font-weight: var(--type-weight-semibold, 600);
    line-height: 78px;
    padding: 20px 0 30px;
}

.fashion-sale-banner .btn.flash-sale-btn {
    border-radius: var(--borderRadius-3xl, 24px);
    background: var(--colors-gray-900, #111827);
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
    color: var(--Component-colors-Components-Buttons-Primary-button-primary-fg, #FFF);
    font-family: Figtree;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    border: none;
    max-width: 150px;
}

.happy-customers .customer-card {
    border-radius: 20px;
    border: 1px solid var(--colors-gray-200, #E5E7EB);
    background: var(--colors-white, #FFF);
    box-shadow: var(--shadow-xs-offsetX, 0) var(--shadow-xs-offsetY, 1px) var(--shadow-xs-radius, 2px) var(--shadow-xs-spread, 0) var(--shadow-xs-color, rgba(0, 0, 0, 0.05));
    padding: 30px;
}

.happy-customers .customer-card .customer-rating {
    margin-bottom: 16px;
}

.happy-customers .customer-card .customer-title {
    color: var(--colors-gray-950, #030712);
    font-family: "Instrument Sans";
    font-size: var(--type-size-xl, 20px);
    font-style: normal;
    font-weight: var(--type-weight-semibold, 600);
    line-height: 28px;
    margin-bottom: 16px;
}

.happy-customers .customer-card .customer-text {
    color: var(--colors-gray-800, #1F2937);
    font-family: "Instrument Sans";
    font-size: var(--type-size-xl, 20px);
    font-style: normal;
    font-weight: var(--type-weight-normal, 400);
    line-height: 28px;
}

.happy-customers .customer-card .customer-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 34px;
    margin-top: 34px;
    border-top: 1px solid #E5E7EB;
}

.happy-customers .customer-card .customer-footer img {
    width: 118px;
    height: 118px;
    object-fit: cover;
}

.happy-customers .customer-card .customer-footer span {
    color: var(--colors-gray-900, #111827);
    font-family: "Instrument Sans";
    font-size: var(--type-size-3xl, 30px);
    font-style: normal;
    font-weight: var(--type-weight-semibold, 600);
    line-height: 39px;
    /* 130% */
}

.social-slider {
    width: 100%;
}

.social-slider .swiper-wrapper {
    display: flex;
}

.social-slider .swiper-slide {
    flex: 0 0 auto;
    width: 33.3333%;
    height: 300px;
}

@media (max-width: 768px) {
    .social-slider .swiper-slide {
        width: 50%;
        height: 200px;
    }
}

@media (max-width: 576px) {
    .social-slider .swiper-slide {
        width: 100%;
        height: 180px;
    }
}

.social-slider {
    width: 100%;
}

.social-slider .swiper-wrapper {
    display: flex;
}

.social-slider .swiper-slide {
    flex: 0 0 auto;
    width: 33.3333%;
    height: 300px;
}

@media (max-width: 768px) {
    .social-slider .swiper-slide {
        width: 50%;
        height: 200px;
    }
}

@media (max-width: 576px) {
    .social-slider .swiper-slide {
        width: 100%;
        height: 180px;
    }
}

.social-slider--wrapper .social-slider__header {
    margin: 70px 0 64px;
}

.social-slider--wrapper .social-slider-card {
    position: relative;
    width: 100%;
    height: 100%;
    transition: 0.4s ease-in-out;
    overflow: hidden;
    border-radius: 20px;
}

.social-slider--wrapper .social-slider-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: 0.3s ease-in-out;
}

.social-slider--wrapper .social-slider-card:hover::before {
    background: rgba(0, 0, 0, 0.55);
}

.social-slider--wrapper .social-slider-card .social-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    opacity: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.3));
}

.social-slider--wrapper .social-slider-card:hover .social-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.social-slider--wrapper .social-nav button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f9fafb;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.card-1 {
    background-image: url("../img/fashion/social/social-1.png");
}

.card-2 {
    background-image: url("../img/fashion/social/social-2.png");
}

.card-3 {
    background-image: url("../img/fashion/social/social-3.png");
}

.fashion-customer-support {
    padding: 40px 0;
}

.fashion-customer-support__row {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}

.fashion-customer-support__card {
    flex: 1 1 25%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-right: 1px solid #e5e7eb;
    background: #fff;
    transition: all 0.3s ease;
}

.fashion-customer-support__card:last-child {
    border-right: none;
}

.fashion-customer-support__card__icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.fashion-customer-support__card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.fashion-customer-support__card__content {
    display: flex;
    flex-direction: column;
}

.fashion-customer-support__card__title {
    font-size: 24px;
    font-weight: 600;
    color: #111827;
    line-height: 34px;
    margin-bottom: 12px;
}

.fashion-customer-support__card__text {
    font-size: 18px;
    font-weight: 400;
    color: #374151;
    line-height: 25px;
    margin-bottom: 0;
}

/* fashion-customer-collections */
.fashion-customer-collections .collection-banner {
    border-radius: 20px;
    background: #F5F3FF;
    height: 100%;
    overflow: hidden;
    padding: 30px;
}

.fashion-customer-collections .collection-banner__img {
    display: grid;
    place-items: center;
    height: 100%;
    width: 290px;
}

.fashion-customer-collections .collection-banner__img img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.fashion-customer-collections .collection-banner__headline {
    color: var(--colors-gray-900, #111827);
    font-family: "Instrument Sans";
    font-size: var(--type-size-4xl, 36px);
    font-style: normal;
    font-weight: var(--type-weight-semibold, 600);
    line-height: 47px;
}

.fashion-customer-collections .collection-banner__text {
    color: var(--colors-gray-700, #374151);
    font-family: "Instrument Sans";
    font-size: var(--type-size-xl, 20px);
    font-style: normal;
    font-weight: var(--type-weight-normal, 400);
    line-height: 28px;
    padding: 20px 0 28px;
}

.fashion-customer-collections .collection-banner__btn {
    border-radius: var(--borderRadius-3xl, 24px);
    background: var(--colors-slate-900, #0F172A);
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
    display: flex;
    padding: 10px var(--spacing-xl, 16px);
    justify-content: center;
    align-items: center;
    color: #FFF;
    font-family: "Figtree";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    width: 115px;
}

.fashion-customer-collections {
    /* Right small cards */
}

.fashion-customer-collections .collection-card {
    border-radius: 14px;
    border: 1px solid var(--colors-gray-200, #E5E7EB);
    background: var(--colors-white, #FFF);
    display: flex;
    padding: 31px 30px;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
}

.fashion-customer-collections .collection-card__name {
    color: var(--colors-gray-900, #111827);
    font-family: "Instrument Sans";
    font-size: var(--type-size-3xl, 30px);
    font-style: normal;
    font-weight: var(--type-weight-semibold, 600);
    line-height: 39px;
    margin-bottom: 8px;
}

.fashion-customer-collections .collection-card__count {
    color: var(--colors-gray-800, #1F2937);
    font-family: "Instrument Sans";
    font-size: var(--type-size-xl, 20px);
    font-style: normal;
    font-weight: var(--type-weight-normal, 400);
    line-height: 28px;
}

.fashion-customer-collections .collection-card__circle {
    border-radius: 999px;
    background: #f6f7fb;
    display: grid;
    place-items: center;
}

.fashion-customer-collections .collection-card__circle img {
    object-fit: contain;
    display: block;
}

.fashion-tab button.cart-icon {
    border-radius: var(--radius-md, 8px);
    background: var(--Colors-Base-white, #FFF);
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
    display: flex;
    width: 275px;
    padding: var(--spacing-md, 8px) var(--spacing-lg, 12px);
    justify-content: center;
    align-items: center;
    gap: var(--spacing-xs, 4px);
    left: 0;
    right: 0;
    margin: 0 auto;
    color: var(--colors-gray-800, #1F2937);
    font-family: Figtree;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
}

.fashion-tab button.cart-icon:hover {
    background: var(--colors-blue-500, #3B82F6);
    color: #fff;
}

.fashion-tab .nav-tabs .nav-item .nav-link.active {
    isolation: unset;
    border-radius: 24px;
    border: 1px solid var(--colors-blue-600, #2563EB);
    background: #fff !important;
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
    color: #2563EB !important;
    font-family: Figtree;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    display: flex;
    padding: 8px 21px;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.fashion-tab .nav-tabs .nav-item .nav-link:focus,
.fashion-tab .nav-tabs .nav-item .nav-link:hover {
    border: 1px solid #2563EB !important;
    isolation: unset;
}

.fashion-pill-categories .pill-item {
    border-radius: 12px;
    border: 1px solid var(--colors-gray-200, #E5E7EB);
    background: #FFF;
    display: flex;
    padding: 6px 6px 6px 16px;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.fashion-pill-categories .pill-item__text {
    color: #000;
    font-family: "Instrument Sans";
    font-size: var(--type-size-lg, 18px);
    font-style: normal;
    font-weight: var(--type-weight-medium, 500);
    line-height: 25px;
}

.fashion-pill-categories .swiper-button-prev,
.fashion-pill-categories .swiper-button-next {
    border-radius: 50%;
    border: 1px solid var(--colors-gray-light-mode-300, #D0D5DD);
    background: var(--Colors-Base-white, #FFF);
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
    display: flex;
    padding: var(--spacing-lg, 12px);
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md, 8px);
    width: 44px;
}

.fashion-pill-categories .swiper-button-next:after,
.fashion-pill-categories .swiper-button-prev:after {
    font-family: swiper-icons;
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
    font-size: 20px;
    color: #9CA3AF;
}

.fashion-pill-categories .swiper-button-prev,
.fashion-pill-categories .swiper-rtl .swiper-button-next {
    left: 0;
    right: auto;
}

.fashion-pill-categories .swiper-button-next,
.fashion-pill-categories .swiper-rtl .swiper-button-prev {
    right: 0;
    left: auto;
}

.fashion-pill-categories .swiper-button-next.swiper-button-disabled,
.fashion-pill-categories .swiper-button-prev.swiper-button-disabled {
    opacity: 1;
    cursor: auto;
    pointer-events: none;
}

/* ==============================
   Fashion Promo
================================ */
.fashion-promo__grid {
    display: grid;
    grid-template-columns: 1.05fr 1.95fr;
    gap: 24px;
}

.fashion-promo__right {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 24px;
}

.fashion-promo__bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* Card */
.fashion-promo__card {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: #000;
    padding: 40px;
}

/* Sizes like screenshot */
.fashion-promo__left {
    min-height: 560px;
    padding-bottom: 0;
    background: #E2F1FD;
}

.fashion-promo__top {
    min-height: 260px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    background: var(--colors-violet-50, #F5F3FF);
}

.fashion-promo__item {
    min-height: 270px;
    border-radius: 16px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.fashion-promo__title {
    color: var(--colors-gray-950, #030712);
    font-family: "Instrument Sans";
    font-size: var(--type-size-5xl, 48px);
    font-style: normal;
    font-weight: var(--type-weight-semibold, 600);
    line-height: 62px;
    margin-bottom: 16px;
}

.fashion-promo__text {
    color: var(--colors-gray-700, #374151);
    font-family: "Instrument Sans";
    font-size: var(--type-size-2xl, 24px);
    font-style: normal;
    font-weight: var(--type-weight-normal, 400);
    line-height: 34px;
    margin-bottom: 30px;
}

/* Button pill */
.fashion-promo__btn {
    display: flex;
    padding: var(--spacing-lg, 12px) 24px;
    justify-content: center;
    align-items: center;
    border-radius: var(--borderRadius-3xl, 24px);
    background: var(--colors-gray-950, #030712);
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
    color: var(--colors-white, #FFF);
    font-family: Figtree;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    width: 128px;
}

/* Center version */
.fashion-promo--center {
    display: grid;
    place-items: center;
    text-align: center;
    background: #F4F0EB;
}

.fashion-promo--center .fashion-promo__content {
    max-width: 420px;
}

.fashion-promo__text--center {
    font-size: 20px;
}

/* Small version */
.fashion-promo__content--small {
    max-width: 300px;
}

.fashion-promo__title--small {
    color: var(--colors-gray-900, #111827);
    font-family: "Instrument Sans";
    font-size: var(--type-size-3xl, 30px);
    font-style: normal;
    font-weight: var(--type-weight-semibold, 600);
    line-height: 39px;
}

.fashion-promo__text--small {
    color: var(--colors-gray-700, #374151);
    font-family: "Instrument Sans";
    font-size: var(--type-size-base, 16px);
    font-style: normal;
    font-weight: var(--type-weight-normal, 400);
    line-height: 24px;
}

/* Media */
.fashion-promo__media {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.fashion-promo__media--bottom {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.fashion-promo__img--bottom {
    width: min(86%, 460px);
    height: auto;
    transform: translateY(14px);
}

.fashion-promo__media--right {
    position: static;
    display: grid;
    place-items: center end;
}

.fashion-promo__img--right {
    width: min(92%, 520px);
    height: auto;
    transform: translateX(10px);
}

.fashion-promo__media--corner {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding-right: 18px;
}

.fashion-promo__img--corner {
    width: min(72%, 320px);
    height: auto;
    transform: translateY(10px);
}

/* Responsive */
@media (max-width: 991.98px) {
    .fashion-promo__grid {
        grid-template-columns: 1fr;
    }

    .fashion-promo__top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .fashion-promo__bottom {
        grid-template-columns: 1fr;
    }

    .fashion-promo__card {
        padding: 24px;
    }

    .fashion-promo__left {
        min-height: 520px;
    }
}

.fashion-customer-support__title {
    color: var(--colors-gray-900, #111827);
    font-family: "Instrument Sans";
    font-size: var(--type-size-2xl, 24px);
    font-style: normal;
    font-weight: var(--type-weight-semibold, 600);
    line-height: 34px;
}

.fashion-store-block .store-card {
    border-radius: 12px;
    border: 1px solid var(--colors-gray-100, #F3F4F6);
    background: var(--colors-white, #FFF);
    box-shadow: var(--shadow-xs-offsetX, 0) var(--shadow-xs-offsetY, 1px) var(--shadow-xs-radius, 2px) var(--shadow-xs-spread, 0) var(--shadow-xs-color, rgba(0, 0, 0, 0.05));
}

@media (max-width: 991px) {
    .fashion-customer-collections .collection-banner__headline {
        font-size: var(--type-size-4xl, 30px);
        line-height: 38px;
    }

    .fashion-customer-collections .collection-banner__text {
        font-size: var(--type-size-xl, 14px);
        padding: 16px 0 20px;
    }

    .fashion-customer-collections .collection-card {
        margin: 0 !important;
    }

    .slider-image-block {
        padding: 0 12px;
    }

    .fashion-hero-wrapper .hero-content.position-absolute {
        top: 20px;
        width: auto;
        left: 20px;
        right: 20px;
    }

    .fashion-hero-wrapper .slider-title {
        font-size: var(--type-size-5xl, 30px);
        line-height: 38px;
    }

    .fashion-hero-wrapper {
        padding: 20px 0 !important;
    }

    .electronics-main-heading .electronics-title .title {
        font-size: var(--type-size-4xl, 26px);
        line-height: 36px;
    }

    .flash-sale-banner-section .flash-sale-wrap {
        padding: 30px 24px;
    }

    .fashion-sale-banner .flash-sale-subtitle {
        font-size: 20px;
        line-height: 28px;
        padding: 12px 0 0;
    }

    .fashion-sale-banner .flash-sale-title {
        font-size: 24px;
        line-height: 34px;
    }

    .flash-sale-reverse {
        flex-direction: column;
        gap: 30px;
    }

    .flash-sale-banner-section .countdown {
        font-size: 40px;
        line-height: 50px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .fashion-customer-support__card {
        flex: 1 1 50%;
        justify-content: flex-start !important;
        padding: 10px;
    }
}

@media (min-width: 360px) and (max-width: 767px) {
    .fashion-customer-support {
        padding: 20px 0;
    }

    .fashion-customer-support__row {
        display: block;
    }

    .fashion-customer-support__card {
        justify-content: flex-start !important;
        padding: 12px;
        border-right: none;
    }

    .happy-customers .customer-card .customer-footer span {
        font-size: var(--type-size-2xl, 24px);
        font-weight: var(--type-weight-semibold, 600);
        line-height: 34px;
    }

    .fashion-promo__title {
        font-size: var(--type-size-3xl, 30px);
        font-weight: var(--type-weight-semibold, 600);
        line-height: 39px;
    }

    .fashion-promo__text {
        font-size: var(--type-size-base, 16px);
        font-weight: var(--type-weight-normal, 400);
        line-height: 24px;
    }

    .fashion-grid-two__item-title {
        font-size: var(--type-size-2xl, 24px);
        font-weight: var(--type-weight-semibold, 600);
        line-height: 34px;
    }

    .fashion-grid-two__item-description {
        font-size: var(--type-size-sm, 14px);
        font-weight: var(--type-weight-normal, 400);
        line-height: 21px;
    }

    .top_bar_fashion .countdown-jewelry {
        flex-direction: column;
        gap: 12px !important;
    }

    .top_bar_fashion {
        padding: 12px 0 !important;
    }

    nav.navigation.header-style3 {
        padding: 20px 0 20px 0 !important;
    }

    .top_bar_fashion p {
        font-size: 14px !important;
    }

    .fashion-category__title {
        font-size: var(--type-size-xl, 20px);
        line-height: 28px;
        /* 140% */
    }

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

    .fashion-customer-collections .collection-banner {
        padding: 20px;
    }

    .electronics-main-heading ul.nav.nav-fill.nav-tabs {
        padding-top: 20px;
    }
}

@media screen and (max-width: 1199px) {
    .collection-banner-reverse {
        flex-direction: column;
    }

    .fashion-customer-collections .row {
        row-gap: 16px;
    }

    .fashion-customer-collections .collection-card {
        padding: 15px;
    }
}

@media screen and (min-width: 1200px) and (max-width: 1500px) {
    .fashion-customer-collections .collection-banner__headline {
        font-size: var(--type-size-4xl, 24px);
        line-height: 32px;
    }

    .fashion-customer-collections .collection-banner__img {
        width: 200px;
    }
}

.primary__desktop--navbar {
    display: block !important;
}

.nav-separator {
    display: block !important;
}

.primary__mobile--navbar {
    display: none !important;
}

li.nav-item,
.nav-link {
    background: transparent !important;
}

select.form-select.search__select__option {
    min-width: 160px;
    height: 100%;
    border: none;
    background-color: transparent;
    border-radius: 10px 0 0 10px;
    padding: 0.375rem 2.25rem 0.375rem 0.75rem;
}

.country__select--wrapper {
    padding: 20px 0 24px;
}

.country__select--wrapper select.form-select.country__select__option {
    height: 100%;
    background-color: #e9eeee;
    padding: 0.44rem 2.25rem 0.44rem 0.75rem;
}

.search__select__option--wrapper {
    background-color: #f9c71d;
    border-radius: 10px 0 0 10px;
}

span.input-group-text.nav__search__icon.bg-white {
    border-radius: 10px;
}

input.search__input.form-control.border.border-end-0.border-start-0:focus {
    border: 1px solid #dfe1e1 !important;
    border-left: 0 !important;
    border-right: 0 !important;
}

.customize__modal--wrapper .btn-close.location__btn--close {
    border: 1px solid #a1a4a3;
    right: 24px !important;
    width: 11.67px !important;
    height: 11.67px !important;
}

.customize__modal--wrapper .modal-content.cart__modal__content {
    width: 690px;
}

.customize__modal--wrapper .customize__modal--title {
    font-size: 1rem !important;
    line-height: 28px !important;
}

.customize__modal--wrapper .cart__modal__title {
    font-size: 1.5rem;
    color: #181c1d;
    line-height: 28px !important;
}

.customize__modal--wrapper .customize__modal--header {
    padding: 24px 13px 24px 24px;
    background-color: #f6f8f8;
}

.customize__modal--wrapper .customize__modal__body {
    padding: 30px 40px 0px;
}

.customize__modal--wrapper .customize__modal__body p {
    font-size: 1rem;
    color: #323b3a;
    line-height: 24px;
}

.customize__modal--wrapper .customize__modal__body .sign__address--btn {
    margin: 24px 0 20px;
    font-size: 1rem;
    line-height: 25px;
    border-radius: 30px;
    background-color: #357b7f;
}

.customize__modal--wrapper .customize__modal__body .after__before__line {
    font-size: 1rem;
    color: #414d4f;
    line-height: 24px;
}

.customize__modal--wrapper .customize__modal__body .after__before__line::before,
.customize__modal--wrapper .customize__modal__body .after__before__line::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #dfe1e1;
}

.customize__modal--wrapper .customize__modal__body .after__before__line::before {
    margin-right: 15px;
}

.customize__modal--wrapper .customize__modal__body .after__before__line::after {
    margin-left: 15px;
}

.customize__modal--wrapper .customize__modal__body .zip__form--wrapper {
    display: flex;
    gap: 12px;
    width: 100% !important;
    padding: 20px 0;
}

.customize__modal--wrapper .customize__modal__body .zip__form--wrapper .zip__form--inner-wrapper {
    width: 85%;
}

.customize__modal--wrapper .customize__modal__body .zip__form--wrapper .zip__form--inner-wrapper .zip__form-control {
    padding: 0.44rem 0.75rem;
}

.customize__modal--wrapper .customize__modal__body .zip__form--wrapper .zip__form__submit--btn {
    font-size: 14px;
    line-height: 20px;
    border: 1px solid #dfe1e1 !important;
}

.customize__modal--wrapper .customize__modal__body .cart__item {
    gap: 24px;
    border-bottom: 1px solid #e9eeee;
    margin-top: 40px;
}

.customize__modal--wrapper .customize__modal__body .cart__item .cart__item--img {
    padding: 9px 18px;
    background: #fbfcfb;
    border-radius: 8px;
    border: 1px solid #e9eeee;
}

.customize__modal--wrapper .customize__modal__body .cart__item .cart__item--title {
    color: #181c1d;
    font-size: 1rem;
    line-height: 28px;
    margin-bottom: 14px;
}

.customize__modal--wrapper .customize__modal__body .cart__item .cart__item--info .product-rating {
    gap: 6px;
}

.customize__modal--wrapper .customize__modal__body .cart__item .cart__item--info .product-rating .product-review {
    gap: 2px;
}

.customize__modal--wrapper .customize__modal__body .cart__item .cart__item--info .product-rating .product-review .rating-selected {
    color: #f9c71d;
    font-size: 1rem;
}

.customize__modal--wrapper .customize__modal__body .cart__item .cart__item--info .product-rating .product-review .rating {
    color: #ccc;
    font-size: 16px;
}

.customize__modal--wrapper .customize__modal__body .cart__item .cart__item--info .product-rating .rating-count {
    font-size: 1rem;
    color: #323b3a;
    line-height: 22px;
}

.customize__modal--wrapper .customize__modal__body .cart__item .cart__item--info .cart__item--price__qty {
    margin: 16px 0 40px;
    gap: 6px;
}

.customize__modal--wrapper .customize__modal__body .cart__item .cart__item--info .cart__item--price__qty .cart__item--price {
    font-size: 1.25rem;
    color: #357b7f;
    line-height: 28px;
}

.customize__modal--wrapper .customize__modal__body .cart__item .cart__item--info .cart__item--price__qty .cart__item__qty__deleteBtn {
    gap: 20px;
}

.customize__modal--wrapper .customize__modal__body .cart__item .cart__item--info .cart__item--price__qty .cart__item__qty__deleteBtn .cart__item--qty {
    gap: 6px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.customize__modal--wrapper .customize__modal__body .cart__item .cart__item--info .cart__item--price__qty .cart__item__qty__deleteBtn .cart__item--qty .qty-btn {
    width: 52px;
    height: 40px;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
}

.customize__modal--wrapper .customize__modal__body .cart__item .cart__item--info .cart__item--price__qty .cart__item__qty__deleteBtn .cart__item--qty input {
    width: 32px;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 20px;
    color: #102526;
}

.customize__modal--wrapper .customize__modal__body .cart__item .cart__item--info .cart__item--price__qty .cart__item__qty__deleteBtn .delete-btn {
    width: 40px;
    height: 40px;
    padding: 8px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    margin-left: 8px;
    border: none;
    background: #f7edee;
    color: #dc3545;
    cursor: pointer;
}

.customize__modal--wrapper .modal__select__submit {
    background-color: #357b7f;
    border-radius: 24px;
}

.customize__modal--wrapper .customize__modal__footer {
    padding: 0 40px 30px;
}

.customize__modal--wrapper .customize__modal__footer .modal__select__submit {
    background-color: #357b7f;
    font-size: 16px;
    line-height: 24px;
    border-radius: 24px;
}

.customize__modal--wrapper .cart__footer .cart__footer--wrapper {
    margin: 40px 0 32px;
}

.customize__modal--wrapper .cart__footer .cart__footer--wrapper p {
    font-size: 24px;
    color: #181c1d;
    line-height: 32px;
}

.customize__modal--wrapper .cart__footer .cart__footer--wrapper span {
    font-size: 40px;
    color: #181c1d;
    line-height: 48px;
}

.customize__modal--wrapper .cart__footer p {
    font-size: 20px;
    color: #414d4f;
    line-height: 28px;
    margin-bottom: 40px;
}

.customize__modal--wrapper .cart__footer .checkout__btn--fill,
.customize__modal--wrapper .cart__footer .checkout__btn--outline {
    font-size: 1.125rem;
    line-height: 25px;
    padding: 17px 0 !important;
    border-radius: 8px;
}

.customize__modal--wrapper .cart__footer .checkout__btn--fill {
    background-color: #357b7f;
    color: #fff;
    border: none;
    margin-bottom: 24px;
}

.customize__modal--wrapper .cart__footer .checkout__btn--outline {
    background: #fff;
    color: #181c1d;
    border: 1px solid #357b7f;
}

.top_bar {
    background-color: #357b7f;
    padding: 11px 0;
}

.top_bar p {
    font-size: 1rem;
    line-height: 22px;
}

.primary__navbar .location {
    gap: 6px;
}

.primary__navbar .location .nav__location__text {
    font-size: 0.75rem;
    color: #a1a4a3;
}

.primary__navbar .location .nav__country__list {
    font-size: 0.875rem;
    color: #181c1d;
}

.primary__navbar .separator__left {
    margin: 0 24px;
    height: 30px;
    width: 1px;
    background: #e9eeee;
}

.primary__navbar .search__bar {
    margin-left: 114px;
}

.primary__navbar .search__bar .search__container--wrapper {
    border-radius: 12px;
    border: 1px solid #e9eeee;
    box-shadow: 0 20px 40px -8px rgba(0, 0, 0, 0.16);
    background: #fff;
    display: none;
    grid-template-columns: 200px 1fr;
}

.primary__navbar .search__bar .search__container--wrapper.active {
    display: grid;
}

.primary__navbar .search__bar .search__container--wrapper .search__container__keyword {
    background: #f4f6f6;
    border-radius: 12px 0 0 12px;
}

.primary__navbar .search__bar .search__container--wrapper .search__container__keyword .search-container__title {
    font-size: 1rem;
    font-weight: 600;
    color: #181c1d;
    line-height: 22px;
    padding: 24px 24px 18px;
    border-bottom: 1px solid #e9eeee;
}

.primary__navbar .search__bar .search__container--wrapper .search__container__keyword .search-pill--wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 8px;
    padding: 24px 24px 20px;
}

.primary__navbar .search__bar .search__container--wrapper .search__container__keyword .search-pill--wrapper .search-pill {
    color: #181c1d;
    font-size: 0.75rem;
    line-height: 20px;
    border: 1px solid #dfe1e1;
    padding: 4px 0;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.primary__navbar .search__bar .search__container--wrapper .search__container__keyword .search-pill--wrapper .search-pill:hover {
    background-color: #c3dcdd;
    color: #204a4c;
}

.primary__navbar .search__bar .search__container--wrapper .search__container__card .search__container__title {
    font-size: 1.125rem;
    color: #181c1d;
    line-height: 25px;
    padding: 24px 24px 15px;
    border-bottom: 1px solid #e9eeee;
}

.primary__navbar .search__bar .search__container--wrapper .search__container__card .product__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 20px 24px;
}

.primary__navbar .search__bar .search__container--wrapper .search__container__card .product__grid .product-card {
    display: flex;
    align-items: start;
    padding: 8px 12px 18px 12px;
    background: #f4f6f6;
    border-radius: 6px;
    transition: box-shadow 0.2s ease, transform 0.15s ease;
    gap: 8px;
}

.primary__navbar .search__bar .search__container--wrapper .search__container__card .product__grid .product-card:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.primary__navbar .search__bar .search__container--wrapper .search__container__card .product__grid .product-card__image {
    border-radius: 6px;
    flex-shrink: 0;
}

.primary__navbar .search__bar .search__container--wrapper .search__container__card .product__grid .product-card__name {
    font-size: 0.75rem;
    color: #181c1d;
    line-height: 18px;
    margin-bottom: 8px;
}

.primary__navbar .search__bar .search__container--wrapper .search__container__card .product__grid .product-card__price {
    font-size: 0.875rem;
    color: #357b7f;
    line-height: 16px;
}

.primary__navbar .order__sign__link {
    font-size: 1rem;
    color: #181c1d;
    gap: 6px;
}

.primary__navbar .separator__right {
    height: 30px;
    width: 1px;
    background: #e9eeee;
}

.primary__navbar a.cart__link,
.primary__navbar .wishlist__link {
    font-size: 1rem;
    color: #181c1d;
    gap: 6px;
    line-height: 22px;
}

.separator__navs {
    height: 1px;
    width: 100%;
    background: #e9eeee;
    margin: 20px 0;
}

.secondary__navbar .nav__list__wrapper {
    margin-left: 30px;
}

.secondary__navbar .nav__list__wrapper .nav-item a {
    color: #181c1d;
}

.secondary__navbar .nav__list__wrapper .nav-item {
    margin-right: 24px;
}

.secondary__navbar .nav__list__wrapper ul.dropdown-menu.custom__dropdown-menu.show {
    padding-top: unset;
    padding-bottom: unset;
    border-radius: 12px;
}

.secondary__navbar .nav__list__wrapper ul.dropdown-menu.show>li>a.dropdown-item {
    color: #181c1d;
    font-size: 1rem;
    font-weight: 500;
    padding-left: 30px;
    padding-top: 14px;
    padding-bottom: 19px;
    border-bottom: 1px solid #f6f8f8;
}

.secondary__navbar .nav__list__wrapper ul.dropdown-menu.show>li:first-child>a.dropdown-item:hover {
    border-radius: 12px 12px 0 0;
}

.secondary__navbar .nav__list__wrapper ul.dropdown-menu.show>li:last-child>a.dropdown-item {
    border-radius: 0 0 12px 12px;
    border-bottom: none;
}

.secondary__navbar .recent__view__hotline--wrapper {
    gap: 30px;
}

.secondary__navbar .recent__view__hotline--wrapper .dropdown-toggle {
    color: #181c1d;
    font-size: 1rem;
}

.secondary__navbar .recent__view__hotline--wrapper .dropdown-toggle::after {
    margin-left: 0.4rem;
}

.secondary__navbar .recent__view__hotline--wrapper .dropdown-menu {
    border-radius: 8px;
    overflow: hidden;
    background-color: #f6f8f8;
}

.secondary__navbar .recent__view__hotline--wrapper .dropdown-menu .dropdown__recent--wrapper {
    padding: 30px 24px 24px;
}

.secondary__navbar .recent__view__hotline--wrapper .dropdown-menu .dropdown__recent--wrapper .dropdown__recent__text {
    font-size: 1.5rem;
    color: #181c1d;
    line-height: 34px;
}

.secondary__navbar .recent__view__hotline--wrapper .dropdown-menu .dropdown__recent--wrapper .dropdown__view__all {
    font-size: 1.125rem;
    color: #357b7f;
    line-height: 8px;
}

.secondary__navbar .recent__view__hotline--wrapper .dropdown-menu .dropdown__item--wrapper {
    padding: 0 24px 24px;
    width: 691px;
}

.secondary__navbar .recent__view__hotline--wrapper .dropdown-menu .dropdown__item--wrapper a {
    padding: 10px 20px 10px 10px;
    margin-bottom: 16px;
    border-radius: 8px;
    gap: 24px;
}

.secondary__navbar .recent__view__hotline--wrapper .dropdown-menu .dropdown__item--wrapper a .dropdown__item__inner--wrapper {
    gap: 24px;
}

.secondary__navbar .recent__view__hotline--wrapper .dropdown-menu .dropdown__item--wrapper a .dropdown__item__inner--wrapper .dropdown__item__box {
    padding: 9px 18px;
    background: #fbfcfb;
    border-radius: 8px;
    border: 1px solid #e9eeee;
}

.secondary__navbar .recent__view__hotline--wrapper .dropdown-menu .dropdown__item--wrapper a .dropdown__item__inner--wrapper .dorpdown__item--name__review p {
    font-size: 1.25rem;
    color: #181c1d;
    line-height: 28px;
    margin-bottom: 16px;
}

.secondary__navbar .recent__view__hotline--wrapper .dropdown-menu .dropdown__item--wrapper a .dropdown__item__inner--wrapper .dorpdown__item--name__review .product-rating {
    gap: 6px;
}

.secondary__navbar .recent__view__hotline--wrapper .dropdown-menu .dropdown__item--wrapper a .dropdown__item__inner--wrapper .dorpdown__item--name__review .product-rating .product-review {
    gap: 2px;
}

.secondary__navbar .recent__view__hotline--wrapper .dropdown-menu .dropdown__item--wrapper a .dropdown__item__inner--wrapper .dorpdown__item--name__review .product-rating .product-review li i {
    color: #f9c71d;
    font-size: 1rem;
}

.secondary__navbar .recent__view__hotline--wrapper .dropdown-menu .dropdown__item--wrapper a .dropdown__item__inner--wrapper .dorpdown__item--name__review .product-rating .product-review li .rating {
    color: #ccc;
    font-size: 16px;
}

.secondary__navbar .recent__view__hotline--wrapper .dropdown-menu .dropdown__item--wrapper a .dropdown__item__inner--wrapper .dorpdown__item--name__review .product-rating .rating-count {
    font-size: 1rem;
    color: #323b3a;
    line-height: 22px;
}

.secondary__navbar .recent__view__hotline--wrapper .dropdown-menu .dropdown__item--wrapper a .product__item--price {
    font-size: 1.25rem;
    color: #357b7f;
    line-height: 28px;
}

.secondary__navbar .recent__view__hotline--wrapper .dropdown-menu .dropdown__item--wrapper a:last-child {
    margin-bottom: 0;
}

.secondary__navbar .recent__view__hotline--wrapper .dropdown-item {
    transition: background-color 0.2s ease;
}

.secondary__navbar .recent__view__hotline--wrapper .dropdown-item:hover {
    background-color: #e9eeee;
}

.secondary__navbar .recent__view__hotline--wrapper .hotline {
    display: inline-flex;
    align-items: center;
    background-color: #7a3185;
    color: #fff;
    padding: 5px 17px 5px 23px;
    border-radius: 0 6px 6px;
    position: relative;
}

.secondary__navbar .recent__view__hotline--wrapper .hotline::before {
    content: "";
    position: absolute;
    top: 0;
    left: -15px;
    width: 0;
    height: 0;
    border-top: 25px solid #7a3185;
    border-left: 24px solid transparent;
}

.secondary__navbar .recent__view__hotline--wrapper .hotline .hotline__icon {
    margin-right: 12px;
    display: flex;
    align-items: center;
}

.secondary__navbar .recent__view__hotline--wrapper .hotline .hotline__icon .phone-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
}

.secondary__navbar .recent__view__hotline--wrapper .hotline .hotline__content {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.secondary__navbar .recent__view__hotline--wrapper .hotline .hotline__content .hotline__label {
    font-size: 10px;
    line-height: 14px;
}

.secondary__navbar .recent__view__hotline--wrapper .hotline .hotline__content .hotline__number {
    font-size: 12px;
    line-height: 16px;
}

.secondary__navbar .browse-categories-wrapper {
    position: relative;
    z-index: 1050;
}

.secondary__navbar .browse-categories-wrapper .browse-categories-dropdown {
    position: static;
}

.secondary__navbar .browse-categories-wrapper .browse-categories-dropdown .browse-categories-btn {
    background-color: #357b7f;
    font-size: 1rem;
    border-radius: 6px;
    padding: 10px 16px;
    border: none;
}

.secondary__navbar .browse-categories-wrapper .browse-categories-dropdown .browse-categories-btn .browse-categories-icon {
    margin-right: 10px;
}

.secondary__navbar .browse-categories-wrapper .browse-categories-dropdown .header-style3 .browse-categories-btn.he-header-style {
    background-color: #357b7f;
    border-radius: 30px !important;
    background: var(--colors-amber-600, #D97706);
    border-radius: 6px;
    padding: 14px 20px;
    border: none;
}

.secondary__navbar .browse-categories-wrapper .browse-categories-dropdown .browse-categories-icon {
    width: 24px;
    height: 24px;
}

.secondary__navbar .browse-categories-wrapper .browse-categories-dropdown .browse-dropdown-menu {
    background-color: #f6f8f8;
    border-radius: 0;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    overflow: visible;
    width: 260px;
    border-radius: 12px;
    background: var(--White, #FFF);
    box-shadow: 0 20px 60px -8px rgba(0, 0, 0, 0.16);
    padding: 20px 30px;
}

.secondary__navbar .browse-categories-wrapper .browse-categories-dropdown .browse-dropdown-menu .browse-dropdown-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 0;
    gap: 3rem;
}

.secondary__navbar .browse-categories-wrapper .browse-categories-dropdown .browse-dropdown-menu .browse-categories-columns {
    display: flex;
    flex-grow: 1;
    gap: 140px;
}

.secondary__navbar .browse-categories-wrapper .browse-categories-dropdown .browse-dropdown-menu .browse-category-column {
    min-width: 160px;
}

.secondary__navbar .browse-categories-wrapper .browse-categories-dropdown .browse-dropdown-menu .browse-category-column .browse-category-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #181c1d;
}

.secondary__navbar .browse-categories-wrapper .browse-categories-dropdown .browse-dropdown-menu .browse-category-column .browse-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.secondary__navbar .browse-categories-wrapper .browse-categories-dropdown .browse-dropdown-menu .browse-category-column .browse-category-list li {
    margin-bottom: 0.5rem;
}

.secondary__navbar .browse-categories-wrapper .browse-categories-dropdown .browse-dropdown-menu .browse-category-column .browse-category-list li a {
    color: #181c1d;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.secondary__navbar .browse-categories-wrapper .browse-categories-dropdown .browse-dropdown-menu .browse-category-column .browse-category-list li a:hover {
    color: #357b7f;
    text-decoration: underline;
}

.secondary__navbar .browse-categories-wrapper .browse-categories-dropdown .browse-dropdown-menu .browse-promo-card {
    position: relative;
    width: 280px;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.secondary__navbar .browse-categories-wrapper .browse-categories-dropdown .browse-dropdown-menu .browse-promo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.secondary__navbar .browse-categories-wrapper .browse-categories-dropdown .browse-dropdown-menu .browse-promo-card .browse-promo-overlay {
    background: rgba(0, 0, 0, 0.55);
    border-radius: 12px;
    color: #fff;
}

.secondary__navbar .browse-categories-wrapper .browse-categories-dropdown .browse-dropdown-menu .browse-promo-card .browse-promo-overlay .promo-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.secondary__navbar .browse-categories-wrapper .browse-categories-dropdown .browse-dropdown-menu .browse-promo-card .browse-promo-overlay .promo-title {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.2;
    white-space: pre-line;
    margin-bottom: 1.5rem;
}

.secondary__navbar .browse-categories-wrapper .browse-categories-dropdown .browse-dropdown-menu .browse-promo-card .browse-promo-overlay .promo-btn {
    font-weight: 600;
    border-radius: 20px;
    padding: 0.4rem 1.2rem;
    font-size: 0.875rem;
    text-transform: none;
    color: #181c1d;
    background: #fff;
    box-shadow: none;
}

.secondary__navbar .browse-categories-wrapper .browse-categories-dropdown .browse-dropdown-menu .browse-promo-card .browse-promo-overlay .promo-btn:hover {
    background: #357b7f;
    color: #fff;
}

.secondary__navbar {
    /* Responsive */
}

@media (max-width: 991px) {
    .secondary__navbar .browse-dropdown-menu {
        padding: 1.5rem 1.5rem;
    }

    .secondary__navbar .browse-dropdown-menu .browse-dropdown-content {
        flex-direction: column;
        gap: 2rem;
    }

    .secondary__navbar .browse-dropdown-menu .browse-categories-columns {
        flex-wrap: wrap;
        gap: 1.5rem;
        justify-content: space-between;
    }

    .secondary__navbar .browse-dropdown-menu .browse-category-column {
        min-width: 45%;
    }

    .secondary__navbar .browse-dropdown-menu .browse-promo-card {
        width: 100%;
        height: 200px;
    }

    .secondary__navbar .browse-dropdown-menu .browse-promo-card .browse-promo-overlay {
        padding: 1rem;
    }

    .secondary__navbar .browse-dropdown-menu .browse-promo-card .browse-promo-overlay .promo-title {
        font-size: 1.1rem;
    }
}

.nav-right-account .badge {
    font-size: 0.65rem;
    font-weight: 700;
    line-height: 1;
    padding: 0.2em 0.4em;
    width: 17px;
    height: 17px;
    line-height: 10px;
}

@media screen and (max-width: 767px) {
    .primary__desktop--navbar {
        display: none !important;
    }

    .nav-separator {
        display: none !important;
    }

    .primary__mobile--navbar {
        display: block !important;
    }

    .top_bar {
        padding: 8px 19px;
        text-align: center;
    }

    .top_bar p {
        font-size: 12px;
        line-height: 16px;
    }

    .header {
        padding-bottom: 24px;
    }

    .customize__modal--wrapper .btn-close.mobile-nav__btn--close {
        border: 1px solid #a1a4a3;
        top: 11px;
        right: 12px !important;
        width: 3.67px !important;
        height: 3.67px !important;
    }

    button.btn-close.mobile-nav__btn--close.rounded-circle.position-absolute {
        width: 5px;
    }

    .customize__nav--wrapper {
        width: 90% !important;
    }

    .nav-profile {
        gap: 6px;
        margin-right: 14px;
    }

    .customize__nav--header {
        background: none !important;
    }

    .nav-bottom__line {
        width: 90%;
        height: 1px;
        border-bottom: 1px solid #e9eeee;
    }

    .hamburger__search--wrapper {
        gap: 16px;
    }

    .mobile__logo--wrapper a {
        gap: 4.2px;
    }

    .mobile__logo--wrapper a .logo__text {
        font-size: 18.67px;
        color: #181c1d;
        line-height: 100%;
    }

    .profile__cart--wrapper {
        gap: 14px;
    }

    .mobile-wishlist--wrapper {
        padding: 7.5px;
        background: #f6f8f8;
        border-radius: 28px;
    }

    .wishlist__count-position {
        top: 5px;
        left: 2px;
    }

    .country-select__recent-view {
        gap: 20px;
    }

    .hotline {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        padding: 12px 0;
        border-radius: 8px;
        border: 1px solid #7cabae;
        position: relative;
    }

    .hotline__icon {
        margin-right: 12px;
        display: flex;
        align-items: center;
    }

    .phone-icon {
        display: inline-block;
        width: 18px;
        height: 18px;
    }

    .hotline__content {
        display: flex;
        flex-direction: column;
        line-height: 1.2;
    }

    .hotline__label {
        font-size: 0.625rem;
        color: #181c1d;
        line-height: 14px;
    }

    .hotline__number {
        font-size: 0.75rem;
        color: #181c1d;
        line-height: 16px;
    }

    .customize__modal__body {
        padding: 20px 15px 0px 20px !important;
    }

    .nav__list__wrapper li.nav-item,
    .nav__list__wrapper .nav-link {
        justify-content: start;
    }

    .nav__list__wrapper .nav-item .nav-item.dropdown {
        width: 100%;
    }

    .country-select__recent-view .dropdown-toggle::after {
        display: none;
    }

    .country-select__recent-view .dropdown-toggle {
        background: url("/assets/img/icon/arrow-down.png") no-repeat right center;
        background-size: 12px;
        padding-right: 18px;
    }

    .primary__mobile--navbar .nav__list__wrapper ul.dropdown-menu.show>li>a.dropdown-item {
        color: #181c1d;
        font-size: 1rem;
        font-weight: 500;
        padding-left: 30px;
        padding-top: 14px;
        padding-bottom: 19px;
        border-bottom: 1px solid #f6f8f8;
    }

    .dropdown__recent--menu {
        right: unset !important;
    }
}

.primary__navbar.header-style3 .secondary__navbar {
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
}

.primary__navbar.header-style3 .search__bar {
    margin-left: 30px;
}

.primary__navbar.header-style3 .search__input {
    border-radius: 40px !important;
    background: var(--colors-gray-100, #F3F4F6);
}

.primary__navbar.header-style3 .nav__search__icon {
    right: 30px;
    top: 9px;
    border: none;
    background: transparent;
    z-index: 99;
}

.primary__navbar.header-style3 form.search__bar {
    width: 677px;
    max-width: 100%;
    height: 54px;
}

.primary__navbar.header-style3 .form-control {
    padding: 0 80px 0 20px;
}

.primary__navbar form.search__bar {
    width: 677px;
    max-width: 100%;
    height: 54px;
}

.nav-right-block {
    gap: 30px;
}

.secondary__navbar {
    display: none;
}

@media screen and (min-width: 992px) and (max-width: 1536px) {
    .primary__navbar .search__bar {
        margin-left: 30px;
    }

    .primary__navbar.header-style1 form.search__bar,
    .primary__navbar.header-style2 form.search__bar,
    .primary__navbar.header-style3 form.search__bar {
        width: 550px;
        max-width: 100%;
        height: 54px;
    }

    .primary__navbar form.search__bar {
        width: 550px;
        max-width: 100%;
        height: 54px;
    }

    select.form-select.search__select__option {
        padding: 0.375rem 0.75rem 0.375rem 0.75rem;
    }

    .hidden-mobile,
    span.browse-categories-title {
        display: none;
    }

    .secondary__navbar .recent__view__hotline--wrapper .hotline {
        padding: 5px 10px 5px 10px;
    }

    .secondary__navbar .browse-categories-wrapper .browse-categories-dropdown .browse-categories-btn .browse-categories-icon {
        margin-right: 0;
    }

    .navigation-landscape .nav-menu.nav-menu-centered {
        gap: 30px;
    }

    .megamenu-panel {
        padding: 30px;
    }
}

@media screen and (min-width: 992px) and (max-width: 1279px) {
    .primary__navbar .search__bar {
        margin-left: 30px;
    }

    .primary__navbar.header-style1 form.search__bar,
    .primary__navbar.header-style2 form.search__bar,
    .primary__navbar.header-style3 form.search__bar {
        width: 370px;
        max-width: 100%;
        height: 54px;
    }

    .primary__navbar form.search__bar {
        width: 370px;
        max-width: 100%;
        height: 54px;
    }

    .primary__navbar .search__bar .search__container--wrapper.active {
        display: block;
    }
}

@media screen and (min-width: 992px) {
    .secondary__navbar {
        display: block !important;
    }
}

@media screen and (max-width: 991px) {
    .location .nav__country__list p {
        font-size: 16px;
    }

    .customize__modal--wrapper .cart__footer .cart__footer--wrapper span {
        font-size: 24px;
        color: #181c1d;
        line-height: 30px;
    }
}

@media screen and (max-width: 991px) {

    .primary__navbar .secondary__navbar,
    .primary__navbar .header-style1 .primary__desktop--navbar,
    .primary__navbar .header-style2 .primary__desktop--navbar,
    .primary__navbar .header-style3 .primary__desktop--navbar,
    .primary__navbar .header-style4 .primary__desktop--navbar,
    .primary__navbar .hidden-mobile,
    .primary__navbar .cart__link,
    .primary__navbar .separator__right {
        display: none !important;
    }

    .primary__navbar .search__bar {
        margin-left: 0;
    }

    .primary__navbar .form-control {
        padding: 0 40px 0 20px;
    }

    .primary__navbar .input-group.nav-search-inner .nav__search__icon {
        right: 15px;
        top: 14px;
    }

    .primary__navbar .nav__search__icon {
        right: 95px;
        top: 2px;
        padding: 0;
        position: absolute;
    }

    .primary__navbar .search__bar .search__container--wrapper.active {
        display: block;
        top: 53px !important;
    }

    .header-style1 .nav__search__icon,
    .header-style2 .nav__search__icon,
    .header-style3 .nav__search__icon {
        right: 103px;
        top: 4px;
        padding: 0;
        position: absolute;
        z-index: 99;
        border: none;
        background: transparent;
    }

    .header-style1 .nav-top,
    .header-style2 .nav-top,
    .header-style3 .nav-top {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .header-style1,
    .header-style2,
    .header-style3 {
        padding: 10px 0 24px 0;
    }

    .header-style1 .nav-right-account .badge,
    .header-style2 .nav-right-account .badge,
    .header-style3 .nav-right-account .badge {
        left: 0 !important;
        top: 8px !important;
    }

    .secondary__navbar.mobile-recent-view-hotline {
        display: block !important;
    }

    .header-style1 .nav-deals-title.wishlist-block {
        display: flex;
        justify-content: center;
        padding: 8px 0;
        margin-top: 48px;
        border-radius: 28px;
        background: var(--Dark-50, #F6F8F8);
        border: none;
    }

    .header-style1 .nav-deals-title {
        border-radius: 8px;
        border: 1px solid var(--Light-Green-300, #7CABAE);
        display: flex;
        justify-content: center;
        padding: 12px 0;
        margin-top: 30px;
    }

    .header-style1 .nav-deals-title .hotline-num-text {
        color: var(--Dark-900, #181C1D);
        font-family: "Instrument Sans";
        font-size: 10px;
        font-style: normal;
        font-weight: 400;
        line-height: 14px;
    }

    .header-style1 .nav-deals-title .hotline-number {
        color: var(--Dark-900, #181C1D);
        font-family: "Instrument Sans";
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 16px;
    }

    .nav__wishlist p {
        color: var(--Dark-900, #181C1D);
        font-family: "Instrument Sans";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 22px;
    }

    .nav__wishlist .home-category-name a {
        font-size: 1rem;
    }

    .gap-12 {
        gap: 12px;
    }

    .nav-menu.nav-menu-centered .indicator {
        display: flex;
        align-items: center;
        gap: 10px;
        padding-left: 20px;
        line-height: 24px;
    }
}

.navigation.header-style2 {
    padding: 30px 0 20px 0;
}

.navigation.header-style2 .nav-bottom {
    padding: 30px 0 20px 0;
    border-bottom: 1px solid #E9EEEE;
}

.top-bar.style-2 {
    background: var(--colors-amber-600, #D97706);
}

.header-style2 .input-group-text.nav__search__icon {
    border-radius: 40px;
    padding-right: 24px;
    background-color: #F3F4F6;
}

.header-style2 .search__select__option--wrapper {
    border-radius: 40px 0 0 40px;
    background-color: #F3F4F6;
    border: 1px solid #dee2e6;
}

.header-style2 select.form-select.search__select__option {
    padding: 0.375rem 1rem 0.375rem 1.8rem;
    background-color: #F3F4F6;
    border-radius: 40px 0 0 40px;
}

.header-style2 input.search__input {
    background-color: #F3F4F6;
}

.header-style2 .separator__left__inner {
    border: 1px solid #D1D5DB;
}

.header-style2 .secondary__navbar .browse-categories-wrapper .browse-categories-dropdown .browse-categories-btn {
    background-color: #59463C;
    font-size: 1rem;
    border-radius: 30px;
    padding: 10px 16px;
    border: none;
}

.header-style2 button.input-group-text.nav__search__icon {
    padding: 0;
    border: none;
    background: transparent;
}

@media screen and (max-width: 991px) {
    .header-style2 .input-group-text.nav__search__icon {
        background: none;
    }

    .header-style2 .user__link {
        display: block;
    }
}

@media screen and (min-width: 992px) and (max-width: 1536px) {
    .header-style2 span.browse-categories-title {
        display: block;
    }
}

.navigation.header-style2 span.input-group-text.nav__search__icon.bg-white {
    border-radius: 50px;
    background-color: #f3f4f6 !important;
}

.top-bar.style-2 a {
    color: var(--Yellow-300, #FBDD75);
    font-family: "Instrument Sans";
    font-size: var(--type-size-base, 16px);
    font-style: normal;
    font-weight: var(--type-weight-semibold, 600);
    line-height: 24px;
}

.topbar-social-icon ul li a {
    background: #78350F;
    width: 24px;
    height: 24px;
    text-align: center;
    border-radius: 50%;
    align-items: center;
    display: flex;
    justify-content: center;
}

.navigation.header-style3 {
    padding: 30px 0;
}

.top_bar_fashion {
    background: #2563EB;
    padding: 20px 0;
}

.top_bar_fashion .countdown {
    margin: 0;
    gap: 10px;
}

.top_bar_fashion .time-box {
    border-radius: 4px;
    background: rgba(239, 246, 255, 0.2);
    box-shadow: 0 0.798px 3.191px -1.596px rgba(0, 0, 0, 0.12);
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    padding: 5px;
    text-align: center;
    border: none;
}

.top_bar_fashion .time-box .number {
    color: #FFF !important;
    text-align: center;
    font-family: "Instrument Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.top_bar_fashion .time-box .label {
    display: none;
}

.top_bar_fashion p {
    color: #FFF;
    font-family: "Instrument Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.top_bar_fashion a {
    color: #FFF;
    font-family: "Instrument Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.fashion-header .nav-search-inner input[type=text],
.fashion-header .nav-search-inner input[type=search] {
    height: 50px;
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
    outline: none;
    border: none;
    background-color: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    color: var(--colors-zinc-500, #71717A);
    font-family: "Instrument Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    border: 1px solid #2563EB;
    border-radius: 50px;
}

.fashion-header .nav-search-close-button {
    color: #fa9145;
    top: 10px;
}

nav.navigation.header-style3 {
    padding: 30px 0 20px 0;
}

.fashion-header .nav-menu>li:hover>a,
.fashion-header .nav-menu>li.active>a,
.fashion-header .nav-menu>li.focus>a {
    color: #fa9145;
}

.fashion-header .nav-menu>li:hover>a .submenu-indicator-chevron,
.fashion-header .nav-menu>.active>a .submenu-indicator-chevron,
.fashion-header .nav-menu>.focus>a .submenu-indicator-chevron {
    border-color: transparent #fa9145 #fa9145 transparent;
}

.header-style3 .input-group-text.nav__search__icon {
    border-radius: 40px;
    padding-right: 24px;
    background-color: #F3F4F6;
}

.header-style3 .search__select__option--wrapper {
    border-radius: 40px 0 0 40px;
    background-color: #F3F4F6;
    border: 1px solid #dee2e6;
}

.header-style3 select.form-select.search__select__option {
    padding: 0.375rem 1rem 0.375rem 1.8rem;
    background-color: #F3F4F6;
    border-radius: 40px 0 0 40px;
}

.header-style3 input.search__input {
    background-color: #F3F4F6;
}

.header-style3 .separator__left__inner {
    border: 1px solid #D1D5DB;
}

.header-style3 .secondary__navbar .browse-categories-wrapper .browse-categories-dropdown .browse-categories-btn {
    background-color: #59463C;
    font-size: 1rem;
    border-radius: 30px;
    padding: 10px 16px;
    border: none;
}

.header-style3 button.input-group-text.nav__search__icon {
    padding: 0;
    border: none;
    background: transparent;
}

@media screen and (max-width: 991px) {
    .header-style3 .input-group-text.nav__search__icon {
        background: none;
    }

    .header-style3 .user__link {
        display: block;
    }
}

@media screen and (min-width: 992px) and (max-width: 1536px) {
    .header-style3 span.browse-categories-title {
        display: block;
    }
}

.navigation.header-style4 {
    padding: 30px 0;
}

.top-bar.style-4 {
    background: var(--colors-amber-600, #D97706);
}

nav.navigation.header-style4 {
    padding: 34px 0;
}

.header-style4 .input-group-text.nav__search__icon {
    border-radius: 0 40px 40px 0 !important;
    padding-right: 24px;
    background-color: #F3F4F6 !important;
}

.header-style4 .search__select__option--wrapper {
    border-radius: 40px 0 0 40px;
    background-color: #F3F4F6;
    border: 1px solid #dee2e6;
}

.header-style4 select.form-select.search__select__option {
    padding: 0.375rem 1rem 0.375rem 1.8rem;
    background-color: #F3F4F6;
    border-radius: 40px 0 0 40px;
}

.header-style4 input.search__input {
    background-color: #F3F4F6;
    border-radius: 40px;
}

.header-style4 .separator__left__inner {
    border: 1px solid #D1D5DB;
}

.header-style4 .secondary__navbar .browse-categories-wrapper .browse-categories-dropdown .browse-categories-btn {
    background-color: #D97706;
    font-size: 1rem;
    border-radius: 30px;
    padding: 10px 16px;
    border: none;
}

.header-style4 button.input-group-text.nav__search__icon {
    padding: 0;
    border: none;
    background: transparent;
}

@media screen and (max-width: 991px) {
    .header-style3 .input-group-text.nav__search__icon {
        background: none;
    }

    .header-style3 .user__link {
        display: block;
    }
}

@media screen and (min-width: 992px) and (max-width: 1536px) {
    .header-style3 span.browse-categories-title {
        display: block;
    }
}

.electronics-tiker .bx-wrapper {
    background: transparent;
}

.electronics-tiker .categories-block__title {
    color: #FFF;
    font-family: "Instrument Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-right: 30px !important;
}

@media (max-width: 575.98px) {
    .electronics-top-bar .categories-block-img {
        width: auto !important;
        height: auto !important;
        aspect-ratio: 1/1;
    }
}

.header-style4 .primary__navbar .search__bar {
    margin-left: 30px;
}

.header-style4 .primary__desktop--navbar {
    margin-left: 30px;
}

.header-icon-gap {
    gap: 30px;
}

.header-style4 .nav-bottom {
    margin-top: 40px;
}

.top-bar {
    background: var(--Light-Green-500, #357B7F);
    padding: 12px 0;
}

/*------------------------------------------------*/
/*--------------[Sticky Header]-----------*/
/*------------------------------------------------*/
.sticky-header:not(.header-submenu).is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    z-index: 9999;
}

#scrollUp {
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    bottom: 5%;
    color: inherit;
    height: 40px;
    width: 40px;
    position: fixed;
    right: 1%;
    text-align: center;
    -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
    -webkit-transition: 0.3s ease-out;
    -o-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
}

#scrollUp i {
    display: block;
    font-size: 24px;
    line-height: 35px;
}

#scrollUp:hover {
    color: #fff !important;
}

.top-bar-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-dropdown>li>a {
    color: inherit;
    padding: 10px 15px;
    border-bottom: 1px solid #f6f6f6;
}

.header-style3.sticky {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 9999;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.transparent-menu {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 99;
}

.navigation-portrait .nav-menu>li>a {
    width: 100%;
    height: auto;
    padding: 10px 10px 10px 30px;
}

.nav-top {
    width: 100%;
    position: relative;
    font-family: inherit;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navigation * {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

.navigation-fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 19998;
}

.navigation-hidden {
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.navigation-hidden .nav-header {
    display: none;
}

.nav-brand:hover,
.nav-brand:focus {
    color: inherit;
}

.navigation-portrait .nav-brand {
    line-height: 48px;
}

.nav-logo>img {
    height: 48px;
    margin: 11px auto;
    padding: 0 15px;
    float: left;
}

.nav-logo:focus>img {
    outline: initial;
}

.navigation-portrait .nav-logo>img {
    height: 36px;
    margin: 6px auto 6px 15px;
    padding: 0;
}

.nav-toggle {
    position: absolute;
    top: 50%;
    margin-top: -11px;
    left: 0;
    display: none;
    cursor: pointer;
}

.nav-toggle:before {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    background-image: url("../img/icon/hamburge.png");
}

.navigation-portrait .nav-toggle {
    display: block;
}

.navigation-portrait .nav-menus-wrapper {
    width: 320px;
    height: 100%;
    top: 0;
    left: -400px;
    position: fixed;
    background-color: #fff;
    z-index: 999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-transition-duration: 0.8s;
    transition-duration: 0.8s;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
}

.navigation-portrait .nav-menus-wrapper.nav-menus-wrapper-right {
    left: auto;
    right: -400px;
}

.navigation-portrait .nav-menus-wrapper.nav-menus-wrapper-open {
    left: 0;
}

.navigation-portrait .nav-menus-wrapper.nav-menus-wrapper-right.nav-menus-wrapper-open {
    left: auto;
    right: 0;
}

.nav-menus-wrapper-close-button {
    width: 30px;
    height: 40px;
    margin: 10px 7px;
    display: none;
    float: right;
    color: inherit;
    font-size: 26px;
    cursor: pointer;
}

.navigation-portrait .nav-menus-wrapper-close-button {
    display: block;
}

.navigation-portrait .nav-menu {
    width: 100%;
    padding-left: 20px;
}

.navigation-landscape .nav-menu.nav-menu-centered {
    display: flex;
    gap: 40px;
}

.nav-menu>li {
    display: inline-block;
    float: left;
    text-align: left;
}

.navigation-portrait .nav-menu>li {
    width: 100%;
    position: relative;
    border-top: solid 1px #f0f0f0;
}

.navigation-portrait .nav-menu>li:last-child {
    border-bottom: solid 1px #f0f0f0;
}

.nav-menu+.nav-menu>li:first-child {
    border-top: none;
}

.nav-menu>li>a {
    color: var(--Dark-900, #181C1D);
    font-family: "Instrument Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: var(--type-weight-medium, 500);
    line-height: 24px;
}

.navigation-portrait .nav-menu>li>a {
    width: 100%;
    height: auto;
    padding: 12px 15px 12px 26px;
}

.nav-menu>li:hover>a,
.nav-menu>li.active>a,
.nav-menu>li.focus>a {
    color: #357b7f;
}

.nav-menu>li>a>i,
.nav-menu>li>a>[class*=ion-] {
    width: 18px;
    height: 16px;
    line-height: 16px;
    -webkit-transform: scale(1.4);
    -ms-transform: scale(1.4);
    transform: scale(1.4);
}

.nav-menu>li>a>[class*=ion-] {
    width: 16px;
    display: inline-block;
    -webkit-transform: scale(1.8);
    -ms-transform: scale(1.8);
    transform: scale(1.8);
}

.navigation-portrait .nav-menu.nav-menu-social {
    width: 100%;
    text-align: center;
}

.nav-menu.nav-menu-social>li {
    text-align: center;
    float: none;
    border: none !important;
}

.navigation-portrait .nav-menu.nav-menu-social>li {
    width: auto;
}

.nav-menu.nav-menu-social>li>a>[class*=ion-] {
    font-size: 12px;
}

.nav-menu.nav-menu-social>li>a>.fa {
    font-size: 14px;
}

.navigation-portrait .nav-menu.nav-menu-social>li>a {
    padding: 15px;
}

.nav-menu.nav-menu-centered .indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 0;
    line-height: 24px;
}

.navigation-portrait .submenu-indicator {
    width: 54px;
    height: 44px;
    margin-top: 0;
    position: absolute;
    top: 0;
    right: 0;
    text-align: center;
    z-index: 20000;
}

.submenu-indicator-chevron {
    height: 9px;
    width: 9px;
    display: block;
    border-style: solid;
    border-width: 0 1px 1px 0;
    border-color: transparent #181C1D #181C1D transparent;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: border 0.3s;
    transition: border 0.3s;
}

.navigation-portrait .submenu-indicator-chevron {
    position: absolute;
    top: 18px;
    left: 24px;
}

.nav-menu>li:hover>a .submenu-indicator-chevron,
.nav-menu>.active>a .submenu-indicator-chevron,
.nav-menu>.focus>a .submenu-indicator-chevron {
    border-color: transparent #357b7f #357b7f transparent;
}

.navigation-portrait .submenu-indicator.submenu-indicator-up {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.nav-overlay-panel {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    display: none;
    z-index: 19999;
}

.no-scroll {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* SEARCH PANEL */
.navigation-hidden .nav-search {
    display: none;
}

.nav-search-icon {
    width: 14px;
    height: 14px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    color: inherit;
    text-align: left;
    text-indent: -9999px;
    border: 2px solid;
    border-radius: 50%;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
    margin-top: -4px;
}

.nav-search-icon:after,
.nav-search-icon:before {
    content: "";
    pointer-events: none;
}

.nav-search-icon:before {
    width: 2px;
    height: 11px;
    top: 11px;
    position: absolute;
    left: 50%;
    border-radius: 0 0 1px 1px;
    box-shadow: inset 0 0 0 32px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.nav-search-button:hover .nav-search-icon {
    color: #357b7f;
}

.nav-search>form {
    width: 100%;
    height: 100%;
    padding: 0 auto;
    display: none;
    position: absolute;
    left: 0;
    top: 3px;
    background-color: transparent;
    z-index: 99999;
}

.nav-search-inner input[type=text],
.nav-search-inner input[type=search] {
    height: 50px;
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
    outline: none;
    border: none;
    background-color: transparent;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    color: var(--colors-zinc-500, #71717A);
    font-family: "Instrument Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    border: 1px solid #357b7f;
    border-radius: 50px;
}

.nav-search-inner button.nav__search__icon__mobile {
    position: absolute;
    left: 16px;
    top: 12px;
    background: transparent;
}

.nav-search-close-button {
    width: 28px;
    height: 28px;
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
    line-height: normal;
    color: inherit;
    font-size: 20px;
    cursor: pointer;
}

.navigation-portrait .nav-search-close-button {
    top: 3px;
    z-index: 99;
    right: 16px;
    text-align: right;
}

/* NAVIGATION BUTTON */
.nav-button {
    margin: 18px 15px 0;
    padding: 8px 14px;
    display: inline-block;
    color: #fff;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.nav-button:hover,
.nav-button:focus {
    color: #fff;
    text-decoration: none;
    opacity: 1;
}

.navigation-portrait .nav-button {
    width: calc(100% - 52px);
    margin: 17px 26px;
}

/* DROPDOWN EXTENSION */
.nav-dropdown {
    min-width: 180px;
    margin: 0;
    padding: 0;
    display: none;
    position: absolute;
    list-style: none;
    z-index: 98;
    white-space: nowrap;
}

.navigation-portrait .nav-dropdown {
    width: 100%;
    position: static;
    left: 0;
}

.nav-dropdown .nav-dropdown {
    left: 100%;
}

.nav-menu>li>.nav-dropdown {
    border-top: solid 1px #f0f0f0;
}

.nav-dropdown>li {
    width: 100%;
    float: left;
    clear: both;
    position: relative;
    text-align: left;
}

.nav-dropdown>li>a {
    width: 100%;
    padding: 10px 15px;
    display: inline-block;
    text-decoration: none;
    float: left;
    font-size: 16px;
    color: inherit;
    background-color: #fdfdfd;
    -webkit-transition: color 0.3s, background 0.3s;
    transition: color 0.3s, background 0.3s;
}

.nav-dropdown.nav-dropdown-left {
    right: 0;
}

.nav-dropdown>li>.nav-dropdown-left {
    left: auto;
    right: 100%;
}

.navigation-landscape .nav-dropdown.nav-dropdown-left>li>a {
    text-align: right;
}

.navigation-portrait .nav-dropdown>li>a {
    padding: 12px 20px 12px 30px;
}

.navigation-portrait .nav-dropdown>li>ul>li>a {
    padding-left: 50px;
}

.navigation-portrait .nav-dropdown>li>ul>li>ul>li>a {
    padding-left: 70px;
}

.navigation-portrait .nav-dropdown>li>ul>li>ul>li>ul>li>a {
    padding-left: 90px;
}

.navigation-portrait .nav-dropdown>li>ul>li>ul>li>ul>li>ul>li>a {
    padding-left: 110px;
}

.nav-dropdown .submenu-indicator {
    right: 15px;
    top: 15px;
    position: absolute;
}

.navigation-portrait .nav-dropdown .submenu-indicator {
    right: 0;
    top: 0;
}

.nav-dropdown .submenu-indicator .submenu-indicator-chevron {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.navigation-portrait .nav-dropdown .submenu-indicator .submenu-indicator-chevron {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.nav-dropdown>li:hover>a .submenu-indicator-chevron,
.nav-dropdown>.focus>a .submenu-indicator-chevron {
    border-color: transparent #fff #fff transparent;
}

.navigation-landscape .nav-dropdown.nav-dropdown-left .submenu-indicator {
    left: 10px;
}

.navigation-landscape .nav-dropdown.nav-dropdown-left .submenu-indicator .submenu-indicator-chevron {
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
}

/* MEGAMENU EXTENSION */
.megamenu-panel {
    width: 100%;
    padding: 80px 120px;
    display: none;
    position: absolute;
    font-size: 14px;
    z-index: 98;
    text-align: left;
    color: inherit;
    border-top: solid 1px #f0f0f0;
    background-color: #fdfdfd;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.075);
    border-radius: 12px;
}

.navigation-portrait .megamenu-panel {
    padding: 25px;
    position: static;
    display: block;
}

.megamenu-panel [class*=container] {
    width: 100%;
}

.megamenu-panel [class*=container] [class*=col-] {
    padding: 0;
}

.megamenu-panel-half {
    width: 50%;
}

.megamenu-panel-quarter {
    width: 25%;
}

.navigation-portrait .megamenu-panel-half,
.navigation-portrait .megamenu-panel-quarter {
    width: 100%;
}

/* GRID */
.megamenu-panel-row {
    width: 100%;
}

.megamenu-panel-row:before,
.megamenu-panel-row:after {
    display: table;
    content: "";
    line-height: 0;
}

.megamenu-panel-row:after {
    clear: both;
}

.megamenu-panel-row [class*=col-] {
    display: block;
    min-height: 20px;
    float: left;
    margin-left: 3%;
}

.megamenu-panel-row [class*=col-]:first-child {
    margin-left: 0;
}

.navigation-portrait .megamenu-panel-row [class*=col-] {
    float: none;
    display: block;
    width: 100% !important;
    margin-left: 0;
    margin-top: 15px;
}

.navigation-portrait .megamenu-panel-row:first-child [class*=col-]:first-child {
    margin-top: 0;
}

.megamenu-panel-row .col-1 {
    width: 5.5833333333%;
}

.megamenu-panel-row .col-2 {
    width: 14.1666666667%;
}

.megamenu-panel-row .col-3 {
    width: 22.75%;
}

.megamenu-panel-row .col-4 {
    width: 31.3333333333%;
}

.megamenu-panel-row .col-5 {
    width: 39.9166666667%;
}

.megamenu-panel-row .col-6 {
    width: 48.5%;
}

.megamenu-panel-row .col-7 {
    width: 57.0833333333%;
}

.megamenu-panel-row .col-8 {
    width: 65.6666666667%;
}

.megamenu-panel-row .col-9 {
    width: 74.25%;
}

.megamenu-panel-row .col-10 {
    width: 82.8333333333%;
}

.megamenu-panel-row .col-11 {
    width: 91.4166666667%;
}

.megamenu-panel-row .col-12 {
    width: 100%;
}

.navigation-landscape .megamenu-style2 .list-col-10 {
    width: 83%;
    padding: 0;
    margin-right: 0;
}

.navigation-landscape .list-col-17 {
    width: 17%;
}

.megamenu-lists {
    width: 100%;
    display: table;
}

.megamenu-list {
    width: 100%;
    padding: 0;
    display: inline-block;
    float: left;
    list-style: none;
}

.megamenu-list:last-child {
    margin: 0;
    border: none;
}

.megamenu-list-title {
    color: var(--Dark-900, #181C1D);
    font-family: "Instrument Sans";
    font-size: var(--type-size-xl, 20px);
    font-style: normal;
    font-weight: var(--type-weight-semibold, 600);
    line-height: 28px;
    padding-bottom: 14px;
}

.megamenu-list>li>a {
    width: 100%;
    padding: 6px;
    display: inline-block;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    color: var(--Dark-900, #181C1D);
    font-family: "Instrument Sans";
    font-size: var(--type-size-base, 16px);
    font-style: normal;
    font-weight: var(--type-weight-normal, 400);
    line-height: 24px;
}

.megamenu-list>li.megamenu-list-title>a {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    opacity: 0.8;
}

.megamenu-list>li.megamenu-list-title>a:hover {
    opacity: 1;
    background-color: inherit;
    color: inherit;
}

.navigation-landscape .list-col-2 {
    width: 50%;
}

.navigation-landscape .list-col-3 {
    width: 33%;
}

.navigation-landscape .list-col-4 {
    width: 25%;
}

.navigation-landscape .list-col-5 {
    width: 20%;
}

.always-btn-show {
    background-color: transparent;
    border: medium none;
    color: #000;
    cursor: pointer;
    float: right;
    font-size: 30px;
    margin-top: 20px;
}

.bootstrap-select .dropdown-toggle .filter-option img {
    width: 18px;
    height: 12px;
    margin-right: 6px;
}

.bootstrap-select .dropdown-menu li img {
    width: 18px;
    height: 12px;
    margin-right: 6px;
}

.primary__navbar.header-style3 .navigation.navigation-landscape {
    position: relative;
    padding-top: 34px;
}

.header-style1 {
    padding: 30px 0 40px 0;
}

.header-style5 {
    padding: 30px 0;
}

.header-style1 .nav-top {
    border-bottom: 1px solid #E9EEEE;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.header-style2 .nav-top {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.header-style5 .nav-top {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.trending-product .swiper-grid-column>.swiper-wrapper {
    flex-direction: unset;
    row-gap: 30px;
}

@media screen and (max-width: 991px) {
    .header-style4 .nav-bottom {
        margin-top: 0;
    }

    nav.navigation.header-style4 {
        padding: 12px 0 24px;
    }

    .navigation-portrait .nav-menus-wrapper.nav-menus-wrapper-open .currencies,
    .navigation-portrait .nav-menus-wrapper.nav-menus-wrapper-open button.location {
        display: block;
    }

    .nav-header {
        margin-left: 31px;
    }

    .nav-right-account-mobile-inner .nav-right-block {
        overflow: hidden;
        display: inline-flex;
        justify-content: space-between;
        width: 100%;
        margin-top: 30px;
    }

    .nav-deals-title {
        border-radius: 8px;
        border: 1px solid var(--Light-Green-300, #7CABAE);
        display: flex;
        justify-content: center;
        padding: 12px 0;
        margin-top: 30px;
    }

    .nav-right-account-mobile-inner {
        padding: 0 20px;
        overflow: hidden;
    }

    .primary__navbar.header-style3 .secondary__navbar,
    .nav-right-account .currencies,
    .nav-right-account button.location,
    .nav-right-account .cart-text,
    .nav-right-account .sign-in,
    .nav-deals-title.web-view {
        display: none !important;
    }

    .nav-right-block {
        gap: 24px !important;
    }

    .nav-search-button {
        margin-right: 0;
    }

    .nav-overlay-panel {
        z-index: 9;
    }

    .nav-menus-wrapper.nav-menus-wrapper-open .logo {
        margin-left: 20px;
        margin-top: 14px;
    }

    .nav-brand {
        width: 105px;
        height: auto;
        display: block;
    }

    .primary__navbar.header-style3 {
        padding: 16px 0;
    }

    .header-style3 .nav-right-account .badge {
        font-size: 0.65rem;
        font-weight: 700;
        width: 15px !important;
        height: 15px !important;
        line-height: 8px;
        left: 12px !important;
        top: 13px !important;
    }

    .customize__modal--wrapper .modal-content.cart__modal__content {
        width: 100% !important;
    }

    .nav-search-inner {
        position: relative;
        top: -7px;
        border-radius: 40px;
        background: var(--colors-gray-100, #F3F4F6);
    }
}

@media screen and (min-width: 992px) {

    .nav-search.mobile-view,
    .logo.mobile-logo {
        display: none !important;
    }

    .nav-bottom.menu-style2 {
        width: 100%;
        display: table;
        position: relative;
        font-family: inherit;
        padding: 40px 0 34px 0;
    }
}

.footer {
    background-color: #357b7f;
    padding: 60px 0;
    color: #0e1414;
}

.footer .footer__primary .footer__left .footer__left__text {
    font-size: 14px;
    line-height: 20px;
    max-width: 355px;
    margin: 10px 0 24px;
}

.footer .footer__primary .footer__left .footer__left__social {
    margin-top: 24px;
}

.footer .footer__primary .footer__left .footer__left__social .footer__left__social--list {
    gap: 10px;
    margin-bottom: 16px;
}

.footer .footer__primary .footer__left .footer__left__social .footer__left__social--list:last-child {
    margin-bottom: 0;
}

.footer .footer__primary .footer__left .footer__left__social .footer__left__social--list p {
    font-size: 1rem;
    line-height: 22px;
}

.footer .footer__primary .footer__col--wrapper .footer__col--heading {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 20px;
}

.footer .footer__primary .footer__col--wrapper .footer-list>li {
    font-size: 1rem;
    line-height: 22px;
    margin-bottom: 12px;
}

.footer .footer__primary .footer__col--wrapper .footer-list>li:last-child {
    margin-bottom: 0;
}

.footer .footer__primary .footer__app__payment .footer__app__heading {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 20px;
}

.footer .footer__primary .footer__app__payment .footer__app__text {
    font-size: 1rem;
    line-height: 22px;
}

.footer .footer__primary .footer__app__payment .footer__app__badges {
    gap: 5px;
    margin: 16px 0 20px;
}

.footer .footer__primary .footer__app__payment .footer__payment__text {
    font-size: 1rem;
    line-height: 22px;
    margin-bottom: 16px;
}

.footer .footer__primary .footer__app__payment .footer__payment__badges {
    gap: 6px;
    max-width: 170px;
}

.footer .footer__separator {
    width: 100%;
    height: 1px;
    background-color: #4a969a;
}

.footer .footer__secondary .footer__bottom__links {
    gap: 30px;
}

.footer .footer__secondary .footer__bottom__links a {
    gap: 8px;
}

.footer .footer__secondary .follow__us {
    gap: 16px;
}

.footer .footer__secondary .follow__us .follow__us__text {
    font-size: 1.25rem;
    line-height: 28px;
}

.footer .footer__secondary .follow__us .follow__us__icon {
    gap: 14px;
}

.footer .footer__secondary .footer__reserved__text {
    font-size: 1rem;
    line-height: 22px;
}

.footer .footer-list a {
    color: #fff;
}

.hotspot {
    position: absolute;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #fff;
    border: 2px solid #fff;
    box-shadow: 0 0 0 6px rgba(227, 224, 220, 0.8);
    cursor: pointer;
    outline: 0;
    width: 30px;
    height: 30px;
}

.hotspot::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 25px;
    height: 25px;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 50%;
}

.hotspot::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgb(227, 224, 220);
    animation: hotspotPulse 2s ease-out infinite;
}

.hotspot .hotspot-panel {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    transform: translateX(-50%);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 6px 24px -3px rgba(0, 0, 0, 0.06), 0 6px 30px -3px rgba(0, 0, 0, 0.06);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s ease, transform 0.15s ease;
    z-index: 5;
    width: 320px;
    padding: 16px;
    margin: 0 auto;
    max-width: 320px;
}

.hotspot .hotspot-panel::after {
    content: "";
    position: absolute;
    top: -7px;
    left: 0;
    right: 0;
    width: 15px;
    height: 15px;
    transform: translateX(82%) rotate(45deg);
    background: #fff;
    margin: 0 auto;
}

.hotspot .hotspot-panel h6 {
    color: #1E293B;
    font-family: "Instrument Sans";
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
}

.hotspot .hotspot-panel p {
    padding-top: 10px;
    color: #334155;
    font-family: "Instrument Sans";
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.hotspot:hover .hotspot-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

.hotspot.open .hotspot-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(-5px);
}

@keyframes hotspotPulse {
    0% {
        box-shadow: 0 0 0 0 rgb(227, 224, 220);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(227, 224, 220, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
    }
}

.home-footer-style1 .col-md-2.footer__col--wrapper {
    flex: 0 0 auto;
    width: 20%;
}

@media screen and (max-width: 768px) {
    .home-footer-style1 .col-md-2.footer__col--wrapper {
        flex: 0 0 auto;
        width: 50%;
    }
}

@media screen and (max-width: 767px) {
    .footer__secondary {
        margin: 0 auto;
    }

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

    .footer__primary.footer-style1.pb-70 {
        padding-bottom: 20px;
    }

    .footer .footer__secondary .follow__us,
    .footer .footer__secondary .footer__bottom__links {
        justify-content: center;
    }

    .footer .footer__secondary .footer__reserved__text {
        text-align: center;
    }

    .footer .footer__primary .footer__app__payment .footer__payment__badges {
        max-width: unset;
    }

    .footer {
        padding: 20px 0;
    }

    .footer__bottom__links {
        font-size: 12px;
    }

    .footer .footer__secondary .footer__bottom__links {
        gap: 20px;
    }

    .footer .footer__secondary .follow__us {
        padding: 20px 0;
    }

    .footer .footer__secondary .follow__us .follow__us__icon svg {
        width: 22px;
        height: 22px;
    }
}

@media (min-width: 1281px) and (max-width: 1535px) {
    .footer__primary.footer-style1 .col-xxl-2 {
        flex: 0 0 auto;
        width: 12.43% !important;
    }
}

@media (min-width: 1536px) {
    .footer__primary.footer-style1 .col-xxl-2 {
        flex: 0 0 auto;
        width: 13.3333333% !important;
    }
}

@media (min-width: 1441px) {
    .footer__secondary .footer-right-follow {
        gap: 370px;
    }
}

@media (min-width: 1200px) and (max-width: 1440px) {
    .footer__secondary .footer-right-follow {
        gap: 70px;
    }
}

@media (max-width: 1200px) {
    .footer__primary .row {
        row-gap: 30px;
    }
}

@media (max-width: 1535px) {

    .footer .footer__primary .footer__col--wrapper .footer__col--heading,
    .footer .footer__primary .footer__app__payment .footer__app__heading {
        font-size: 20px;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .footer .footer__secondary .footer__bottom__links {
        padding-bottom: 20px;
    }
}

@media (min-width: 1200px) and (max-width: 1535px) {
    .footer__app__badges.app-block {
        display: inline !important;
    }

    .footer__app__badges.app-block img {
        margin-top: 5px;
    }
}

.footer.footer-style2 {
    background-color: #3E2F23 !important;
    padding: 60px 0 32px;
    color: #0e1414;
}

.footer.footer-style2 .footer__primary .footer__left .footer__left__social {
    margin-top: 24px;
}

.footer.footer-style2 .footer__primary .footer__left .footer__left__social .footer__left__social--list {
    gap: 10px;
    margin-bottom: 16px;
}

.footer.footer-style2 .footer__primary .footer__left .footer__left__social .footer__left__social--list:last-child {
    margin-bottom: 0;
}

.footer.footer-style2 .footer__primary .footer__left .footer__left__social .footer__left__social--list p {
    font-size: 1rem;
    line-height: 22px;
}

.footer.footer-style2 .footer__primary .footer__col--wrapper .footer__col--heading {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 20px;
    color: #fff !important;
}

.footer.footer-style2 .footer__primary .footer__col--wrapper .footer-list>li {
    font-size: 1rem;
    line-height: 22px;
    margin-bottom: 12px;
    color: #fff !important;
}

.footer.footer-style2 .footer__primary .footer__col--wrapper .footer-list>li:last-child {
    margin-bottom: 0;
}

.footer.footer-style2 .footer__primary .footer__app__payment .footer__app__heading {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 20px;
}

.footer.footer-style2 .footer__primary .footer__app__payment .footer__app__text {
    font-size: 1rem;
    line-height: 22px;
}

.footer.footer-style2 .footer__primary .footer__app__payment .footer__app__badges {
    gap: 5px;
    margin: 16px 0 20px;
}

.footer.footer-style2 .footer__primary .footer__app__payment .footer__payment__text {
    font-size: 1rem;
    line-height: 22px;
    margin-bottom: 16px;
}

.footer.footer-style2 .footer__secondary__style-2.footer__secondary {
    margin-bottom: 70px;
}

.footer.footer-style2 .footer__secondary__style-2.footer__secondary .footer__app__payment .footer__payment__badges {
    margin-top: 24px;
    gap: 6px !important;
}

.footer.footer-style2 .footer__secondary__style-2.footer__secondary .country-selector {
    position: relative;
    display: inline-block;
}

.footer.footer-style2 .footer__secondary__style-2.footer__secondary .country-selector .selector-button {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: unset;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 280px;
    color: #fff !important;
}

.footer.footer-style2 .footer__secondary__style-2.footer__secondary .country-selector .selector-button[aria-expanded=true] .chevron {
    transform: rotate(180deg);
}

.footer.footer-style2 .footer__secondary__style-2.footer__secondary .country-selector .flag-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.footer.footer-style2 .footer__secondary__style-2.footer__secondary .country-selector .flag-text {
    font-size: 18px;
    line-height: 25px;
    font-weight: 500;
    color: #817972;
}

.footer.footer-style2 .footer__secondary__style-2.footer__secondary .country-selector .chevron {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.footer.footer-style2 .footer__secondary__style-2.footer__secondary .country-selector .dropdown-menu {
    width: 100%;
    margin-top: 8px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.footer.footer-style2 .footer__secondary__style-2.footer__secondary .country-selector .dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
}

.footer.footer-style2 .footer__secondary__style-2.footer__secondary .country-selector .dropdown-item:hover {
    background-color: #f8f9fa;
}

.footer.footer-style2 .footer__secondary__style-2.footer__secondary .country-selector .dropdown-item.active {
    background-color: var(--Orange-400, #9E7C4F);
    color: #333;
}

.footer.footer-style2 .footer__secondary__style-2.footer__secondary .footer__separator {
    width: 100%;
    height: 1px;
    background-color: #4a969a;
}

.footer.footer-style2 .footer__secondary__style-2.footer__secondary .footer__secondary .footer__bottom__links {
    gap: 30px;
}

.footer.footer-style2 .footer__secondary__style-2.footer__secondary .footer__secondary .footer__bottom__links a {
    gap: 8px;
}

.footer.footer-style2 .footer__secondary__style-2.footer__secondary .footer__secondary .footer__bottom__links a p.menu-item-text {
    color: #fff !important;
}

.footer.footer-style2 .footer__secondary__style-2.footer__secondary .footer__secondary .follow__us {
    gap: 16px;
}

.footer.footer-style2 .footer__secondary__style-2.footer__secondary .footer__secondary .follow__us .follow__us__text {
    font-size: 1.25rem;
    line-height: 28px;
}

.footer.footer-style2 .footer__secondary__style-2.footer__secondary .footer__secondary .follow__us .follow__us__icon {
    gap: 10px;
}

.footer.footer-style2 .footer__secondary__style-2.footer__secondary .footer__secondary .follow__us .follow__us__icon a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d1d5db;
}

.footer.footer-style2 .follow__us__icon a {
    border-radius: 20px;
    border: 1px solid #554538;
    display: flex;
    width: 40px;
    height: 40px;
    padding: 8px;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.footer-style2 .newsletter .newsletter-title {
    font-size: 30px;
    font-weight: 600;
    line-height: 39px;
    color: #fff;
    margin-bottom: 20px;
}

.footer-style2 .newsletter .newsletter-subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: #CFC8C3;
    margin-bottom: 30px;
    max-width: 420px;
}

.footer-style2 .newsletter .newsletter-form {
    max-width: 364px;
}

.footer-style2 .newsletter .newsletter-form .form-control {
    padding: 0.7rem;
    font-size: 1rem;
    border: none;
    box-shadow: none;
    border-radius: var(--borderRadius-3xl, 24px);
    background: #524235;
    color: #817972 !important;
}

.footer-style2 .newsletter .newsletter-form .form-control:focus {
    border-color: #9E7C4F;
    box-shadow: 0 0 0 0.25rem rgba(255, 140, 66, 0.25);
}

.footer-style2 .newsletter .newsletter-form .btn-signup {
    border-radius: var(--borderRadius-3xl, 24px);
    background: var(--Orange-400, #9E7C4F);
    color: #fff;
    font-family: inherit;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    width: 100%;
    padding: 0.75rem;
    margin-top: 12px;
}

.footer-style2 .newsletter .newsletter-form .btn-signup:hover {
    background: #9E7C4F;
}

.footer.footer-style2 .footer__secondary .footer__reserved__text {
    font-size: 1rem;
    line-height: 22px;
    color: #fff;
}

.footer.footer-style2 .follow__us__icon a path {
    fill: #DACAB4;
}

footer.footer.footer-style3.footer-style2.furniture-footer-style .footer__secondary--wrapper {
    border-top: 1px solid #594E45 !important;
}

footer.footer.footer-style3.footer-style2.furniture-footer-style .footer__bottom__links a p {
    color: #fff !important;
}

.furniture-footer-style .footer__reserved__text a {
    color: #D97706 !important;
}

.footer.footer-style3 {
    background-color: #fff;
    padding: 60px 0 32px;
    color: #0e1414;
}

.footer.footer-style3 .footer__primary .footer__left .footer__left__social {
    margin-top: 24px;
}

.footer.footer-style3 .footer__primary .footer__left .footer__left__social .footer__left__social--list {
    gap: 10px;
    margin-bottom: 16px;
}

.footer.footer-style3 .footer__primary .footer__left .footer__left__social .footer__left__social--list:last-child {
    margin-bottom: 0;
}

.footer.footer-style3 .footer__primary .footer__left .footer__left__social .footer__left__social--list p {
    font-size: 1rem;
    line-height: 22px;
}

.footer.footer-style3 .footer__primary .footer__col--wrapper .footer__col--heading {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 20px;
    color: #000;
}

.footer.footer-style3 .footer__primary .footer__col--wrapper .footer-list>li {
    font-size: 1rem;
    line-height: 22px;
    margin-bottom: 12px;
    color: #000;
    transition: color 0.1s ease-in-out;
}

.footer.footer-style3 .footer__primary .footer__col--wrapper .footer-list>li:hover {
    color: #fa9145;
    cursor: pointer;
}

.footer.footer-style3 .footer__primary .footer__app__payment .footer__app__heading {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 20px;
}

.footer.footer-style3 .footer__primary .footer__app__payment .footer__app__text {
    font-size: 1rem;
    line-height: 22px;
}

.footer.footer-style3 .footer__primary .footer__app__payment .footer__app__badges {
    gap: 5px;
    margin: 16px 0 20px;
}

.footer.footer-style3 .footer__primary .footer__app__payment .footer__payment__text {
    font-size: 1rem;
    line-height: 22px;
    margin-bottom: 16px;
}

.footer.footer-style3 .footer__secondary__style-3.footer__secondary {
    margin-bottom: 70px;
}

.footer.footer-style3 .footer__secondary__style-3.footer__secondary .footer__app__payment .footer__payment__badges {
    margin-top: 24px;
    gap: 6px !important;
}

.footer.footer-style3 .footer__secondary__style-3.footer__secondary .footer__app__payment .footer__payment__badges img {
    max-height: 32px;
}

.footer.footer-style3 .footer__secondary__style-3.footer__secondary .country-selector {
    position: relative;
    display: inline-block;
}

.footer.footer-style3 .footer__secondary__style-3.footer__secondary .country-selector .selector-button {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #ffffff;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 280px;
    border: 1px solid transparent;
    padding: 8px 12px;
}

.footer.footer-style3 .footer__secondary__style-3.footer__secondary .country-selector .selector-button:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-color: #d0d0d0;
}

.footer.footer-style3 .footer__secondary__style-3.footer__secondary .country-selector .selector-button[aria-expanded=true] .chevron {
    transform: rotate(180deg);
}

.footer.footer-style3 .footer__secondary__style-3.footer__secondary .country-selector .flag-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.footer.footer-style3 .footer__secondary__style-3.footer__secondary .country-selector .flag-text {
    font-size: 18px;
    line-height: 25px;
    font-weight: 500;
    color: #1f2937;
}

.footer.footer-style3 .footer__secondary__style-3.footer__secondary .country-selector .chevron {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: auto;
}

.footer.footer-style3 .footer__secondary__style-3.footer__secondary .country-selector .dropdown-menu {
    width: 100%;
    margin-top: 8px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 8px;
}

.footer.footer-style3 .footer__secondary__style-3.footer__secondary .country-selector .dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 6px;
}

.footer.footer-style3 .footer__secondary__style-3.footer__secondary .country-selector .dropdown-item:hover {
    background-color: #f8f9fa;
}

.footer.footer-style3 .footer__secondary__style-3.footer__secondary .country-selector .dropdown-item.active {
    background-color: #e7f3ff;
    color: #333;
}

.footer.footer-style3 .footer__secondary__style-3.footer__secondary .footer__separator {
    width: 100%;
    height: 1px;
    background-color: #4a969a;
}

.footer.footer-style3 .footer__secondary__style-3.footer__secondary .footer__secondary .footer__bottom__links {
    gap: 30px;
}

.footer.footer-style3 .footer__secondary__style-3.footer__secondary .footer__secondary .footer__bottom__links a {
    gap: 8px;
}

.footer.footer-style3 .footer__secondary__style-3.footer__secondary .footer__secondary .footer__bottom__links a img {
    width: 20px;
    height: 20px;
}

.footer.footer-style3 .footer__secondary__style-3.footer__secondary .footer__secondary .footer__bottom__links a p {
    margin: 0;
    color: #111827 !important;
}

.footer.footer-style3 .footer__secondary__style-3.footer__secondary .footer__secondary .follow__us {
    gap: 16px;
}

.footer.footer-style3 .footer__secondary__style-3.footer__secondary .footer__secondary .follow__us .follow__us__text {
    font-size: 1.25rem;
    line-height: 28px;
}

.footer.footer-style3 .footer__secondary__style-3.footer__secondary .footer__secondary .follow__us .follow__us__icon {
    gap: 10px;
}

.footer.footer-style3 .footer__secondary__style-3.footer__secondary .footer__secondary .follow__us .follow__us__icon a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d1d5db;
    transition: all 0.3s ease;
}

.footer.footer-style3 .footer__secondary__style-3.footer__secondary .footer__secondary .follow__us .follow__us__icon a:hover {
    background-color: #f3f4f6;
    border-color: #9ca3af;
}

.footer.footer-style3 .footer__secondary__style-3.footer__secondary .footer__secondary .footer__reserved__text {
    font-size: 1rem;
    line-height: 22px;
}

.footer.footer-style3 .footer__secondary--wrapper {
    border-top: 1px solid #d1d5db !important;
    padding-top: 30px;
}

.newsletter .newsletter-title {
    font-size: 30px;
    font-weight: 600;
    line-height: 39px;
    color: #111827;
    margin-bottom: 20px;
}

.newsletter .newsletter-subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: #6c757d;
    margin-bottom: 30px;
    max-width: 420px;
}

.newsletter .newsletter-form {
    max-width: 364px;
}

.newsletter .newsletter-form .form-control {
    border-radius: 50px;
    padding: 0.7rem 1rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    box-shadow: none;
    width: 100%;
    color: #6b7280;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.newsletter .newsletter-form .form-control:hover {
    color: #374151;
    border-color: #bbb;
}

.newsletter .newsletter-form .form-control:focus {
    border-color: #ff8c42;
    box-shadow: 0 0 0 0.25rem rgba(255, 140, 66, 0.25);
    outline: none;
    color: #1f2937;
}

.newsletter .newsletter-form .form-control::placeholder {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.newsletter .newsletter-form .form-control:hover::placeholder {
    color: #6b7280;
}

.newsletter .newsletter-form .btn-signup {
    border-radius: 24px;
    background: #fa9145;
    color: #fff;
    font-family: inherit;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    width: 100%;
    padding: 0.75rem;
    margin-top: 12px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter .newsletter-form .btn-signup:hover {
    background: #9e7c4f;
}

.contact-info-section {
    background: #fff;
}

.contact-info-section .contact-info .info-item {
    padding: 20px 0;
    border-right: 1px solid #e6e6e6;
}

.contact-info-section .contact-info .info-item:last-child {
    border-right: none;
}

.contact-info-section .contact-info .info-item .icon {
    font-size: 28px;
    color: #111827;
}

.contact-info-section .contact-info .info-item .content .title {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.contact-info-section .contact-info .info-item .content .subtitle {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

@media (max-width: 575.98px) {
    .footer.footer-style3 {
        padding: 20px 0 32px;
    }

    .footer.footer-style3 .footer__primary {
        padding-bottom: 0;
    }

    .footer.footer-style3 .footer__primary .footer__left {
        margin-bottom: 0;
    }

    .footer.footer-style3 .footer__primary .footer__col--wrapper {
        margin-bottom: 32px;
    }

    .footer.footer-style3 .footer__primary .footer__col--wrapper:last-child {
        margin-bottom: 0;
    }

    .footer.footer-style3 .footer__primary .footer__col--wrapper .footer__col--heading {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 16px;
    }

    .footer.footer-style3 .footer__primary .footer__col--wrapper .footer-list>li {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 10px;
    }

    .footer.footer-style3 .footer__primary .footer__left.footer__left__col {
        gap: 20px;
    }

    .footer.footer-style3 .footer__secondary__style-3.footer__secondary {
        margin-bottom: 40px;
        flex-direction: column;
        align-items: flex-start !important;
        gap: 24px;
    }

    .footer.footer-style3 .footer__secondary__style-3.footer__secondary>div {
        width: 100%;
    }

    .footer.footer-style3 .footer__secondary__style-3.footer__secondary .country-selector {
        width: 100%;
    }

    .footer.footer-style3 .footer__secondary__style-3.footer__secondary .country-selector .selector-button {
        min-width: 100%;
    }

    .footer.footer-style3 .footer__secondary__style-3.footer__secondary .footer__app__payment {
        display: flex;
        justify-content: center;
    }

    .footer.footer-style3 .footer__secondary__style-3.footer__secondary .footer__app__payment .footer__payment__badges {
        margin-top: 16px;
        justify-content: center;
    }

    .footer.footer-style3 .footer__secondary__style-3.footer__secondary .footer__app__payment .footer__payment__badges img {
        max-height: 28px;
    }

    .footer.footer-style3 .footer__secondary__style-3.footer__secondary .follow__us {
        width: 100%;
        flex-direction: column;
        align-items: center !important;
        gap: 12px;
        padding: 0;
    }

    .footer.footer-style3 .footer__secondary__style-3.footer__secondary .follow__us .follow__us__icon {
        gap: 8px;
    }

    .footer.footer-style3 .footer__secondary__style-3.footer__secondary .follow__us .follow__us__icon a {
        width: 36px;
        height: 36px;
    }

    .footer.footer-style3 .footer__secondary__style-3.footer__secondary .follow__us .follow__us__icon a svg {
        width: 16px;
        height: 16px;
    }

    .footer.footer-style3 .footer__secondary--wrapper {
        padding-top: 20px;
        flex-direction: column;
        align-items: flex-start !important;
        gap: 20px;
    }

    .footer.footer-style3 .footer__secondary--wrapper .footer__bottom__links {
        flex-wrap: wrap;
        gap: 16px !important;
        width: 100%;
    }

    .footer.footer-style3 .footer__secondary--wrapper .footer__bottom__links a {
        font-size: 14px;
    }

    .footer.footer-style3 .footer__secondary--wrapper .footer__reserved__text {
        font-size: 12px;
        line-height: 18px;
        text-align: center;
        width: 100%;
    }

    .newsletter .newsletter-title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 16px;
    }

    .newsletter .newsletter-subtitle {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 20px;
    }

    .newsletter .newsletter-form {
        max-width: 100%;
    }

    .newsletter .newsletter-form .form-control {
        font-size: 14px;
        padding: 0.6rem 1rem;
    }

    .newsletter .newsletter-form .btn-signup {
        font-size: 14px;
        padding: 0.65rem;
    }

    .contact-info-section .contact-info .info-item {
        border-right: none;
        border-bottom: 1px solid #e6e6e6;
        padding: 16px 0;
    }

    .contact-info-section .contact-info .info-item:last-child {
        border-bottom: none;
    }

    .contact-info-section .contact-info .info-item .content .title {
        font-size: 16px;
    }

    .contact-info-section .contact-info .info-item .content .subtitle {
        font-size: 13px;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .footer.footer-style3 .footer__primary {
        padding-bottom: 20px;
    }

    .footer.footer-style3 .footer__primary .footer__col--wrapper {
        margin-bottom: 32px;
    }

    .footer.footer-style3 .footer__secondary__style-3.footer__secondary {
        margin-bottom: 50px;
        flex-direction: column;
        gap: 24px;
    }

    .footer.footer-style3 .footer__secondary__style-3.footer__secondary .country-selector .selector-button {
        min-width: 100%;
    }

    .footer.footer-style3 .footer__secondary__style-3.footer__secondary .follow__us {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 12px;
    }

    .footer.footer-style3 .footer__secondary--wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .footer.footer-style3 .footer__secondary--wrapper .footer__bottom__links {
        gap: 20px !important;
    }

    .footer.footer-style3 .footer__secondary--wrapper .footer__bottom__links a {
        font-size: 14px !important;
    }

    .footer.footer-style3 .footer__secondary--wrapper .footer__reserved__text {
        text-align: center;
        width: 100%;
    }

    .newsletter .newsletter-title {
        font-size: 26px;
        line-height: 34px;
    }

    .newsletter .newsletter-subtitle {
        font-size: 18px;
        line-height: 26px;
    }

    .footer__left.footer__left__col {
        gap: 20px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .footer.footer-style3 .footer__primary .footer__col--wrapper .footer__col--heading {
        font-size: 20px;
        line-height: 28px;
    }

    .footer.footer-style3 .footer__secondary__style-3.footer__secondary {
        margin-bottom: 60px;
        flex-wrap: nowrap;
        gap: 24px;
    }

    .footer.footer-style3 .footer__secondary__style-3.footer__secondary>div:first-child {
        width: 100%;
    }

    .footer.footer-style3 .footer__secondary__style-3.footer__secondary .follow__us {
        width: 100%;
        justify-content: center;
    }

    .footer.footer-style3 .footer__secondary--wrapper {
        flex-wrap: wrap;
        justify-content: center !important;
        gap: 20px;
    }

    .footer.footer-style3 .footer__secondary--wrapper .footer__bottom__links {
        gap: 20px !important;
    }

    .footer.footer-style3 .footer__secondary--wrapper .footer__reserved__text {
        width: 100%;
        text-align: center;
    }

    .contact-info-section .contact-info .info-item {
        padding: 18px 0;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .footer.footer-style3 .footer__primary .footer__col--wrapper .footer__col--heading {
        font-size: 22px;
        line-height: 30px;
    }

    .footer.footer-style3 .footer__secondary__style-3.footer__secondary .country-selector .selector-button {
        min-width: 240px;
    }

    .footer.footer-style3 .footer__secondary__style-3.footer__secondary .footer__secondary .footer__bottom__links {
        gap: 24px !important;
    }
}

.grid-flow {
    display: grid;
    gap: 1rem;
}

.hero-banner {
    background: #2a6266;
    background: linear-gradient(90deg, rgb(42, 98, 102) 0%, rgb(95, 174, 165) 100%);
    border-radius: 16px;
}

@media screen and (max-width: 991px) {
    .hero-banner img {
        width: 193px;
        display: block;
        margin: 0 auto;
    }
}

.hero-banner-small-one {
    background: #7a3185;
    background: linear-gradient(90deg, rgb(122, 49, 133) 0%, rgb(186, 121, 196) 100%);
    border-radius: 16px;
}

.hero-banner-small-one-title {
    color: #fff;
    font-family: Kanit;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px;
    margin-bottom: 20px;
}

@media screen and (max-width: 991px) {
    .hero-banner-small-one-title {
        padding-top: 24px;
        text-align: center;
    }
}

.hero-banner-small-one .hero-banner-small-inner {
    padding-left: 30px;
}

@media screen and (max-width: 991px) {
    .hero-banner-small-one .hero-banner-small-inner {
        padding: 0 33px;
    }
}

.hero-banner-small-one .hero-banner-small-price-tag {
    color: #fff;
    font-family: "Instrument Sans";
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
}

.hero-banner-small-one .hero-banner-small-price {
    color: #fff;
    font-family: Kanit;
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;
}

.hero-banner-small-one button.hero-banner-small.btn.btn-yellow {
    border-radius: 30px;
    background: var(--Orange-500, #f9791d);
    color: #fff;
    font-family: "Instrument Sans";
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    margin-top: 28px;
}

@media screen and (max-width: 991px) {
    .hero-banner-small-one button.hero-banner-small.btn.btn-yellow {
        margin-top: 0;
    }
}

.hero-banner-small-two {
    background: #4a9397;
    background: linear-gradient(90deg, rgb(74, 147, 151) 0%, rgb(65, 200, 196) 100%);
    border-radius: 16px;
    padding: 20px 0 12px;
}

.hero-banner-small-two-title {
    color: #fff;
    text-align: center;
    font-family: Kanit;
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;
    width: 194px;
    margin: 0 auto;
}

@media screen and (max-width: 991px) {
    .hero-banner-small-two-title {
        font-size: 28px;
        width: auto;
    }
}

@media screen and (max-width: 575px) {
    .hero-banner-small-two-title {
        font-size: 22px;
        width: auto;
    }
}

.hero-banner-small-two-subtitle {
    color: #fff;
    font-family: "Instrument Sans";
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    margin-top: 8px;
}

.hero-banner-small-three {
    background: #546bd2;
    background: linear-gradient(90deg, rgb(84, 107, 210) 0%, rgb(122, 144, 242) 100%);
    border-radius: 16px;
    padding: 20px 0 12px;
}

.hero-inner-subtitle {
    border-radius: 6px 30px 30px 6px;
    background: #357b7f;
    padding: 5px 24px;
    align-items: center;
    width: 228px;
    color: #fff;
    font-family: "Instrument Sans";
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 24px;
}

@media screen and (max-width: 991px) {
    .hero-inner-subtitle {
        border-radius: 4.011px 20.055px 20.055px 4.011px;
        background: #357b7f;
        padding: 3.343px 16.044px;
        width: 155px;
        font-size: 13.37px;
        line-height: 18.718px;
        margin: 0 auto 14px;
    }
}

.hero-inner-title {
    color: #fff;
    font-family: Kanit;
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 80px;
}

@media screen and (max-width: 1199px) {
    .hero-inner-title {
        margin-bottom: 20px;
        text-align: center;
        font-size: 32px;
        line-height: 40px;
    }
}

.hero .price-title {
    color: #fff;
    font-family: "Instrument Sans";
    font-size: 1.875rem;
    font-weight: 400;
    line-height: 36px;
}

@media screen and (max-width: 991px) {
    .hero .price-title {
        font-size: 20px;
        line-height: 24px;
    }
}

.hero .hero-price {
    color: #fff;
    font-family: Kanit;
    font-size: 3.75rem;
    font-weight: 700;
    line-height: 72px;
    margin-bottom: 48px;
}

@media screen and (max-width: 991px) {
    .hero .hero-price {
        font-size: 32px;
        line-height: 48.133px;
        margin-bottom: 0;
    }
}

.hero button.hero-btn.btn.btn-yellow {
    border-radius: 48px;
    background: #f9c71d;
    padding: 8px 30px;
    font-family: Kanit;
    font-size: 1.875rem;
    font-weight: 500;
    line-height: 36px;
}

@media screen and (max-width: 991px) {
    .hero button.hero-btn.btn.btn-yellow {
        border-radius: 32.088px;
        padding: 6px 20px;
        font-size: 20px;
        line-height: 24px;
    }
}

.hero button.hero-btn.btn.btn-white {
    border-radius: 30px;
    background: #fff;
    color: #111827;
    padding: 16px 32px;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 28px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .hero-banner-small-two img {
        width: 69%;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .hero-banner img {
        width: 67.5%;
        margin: 0 auto;
        display: flex;
    }

    .hero .hero-price {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 30px;
    }

    .hero-inner-title {
        text-align: left !important;
    }

    .hero button.hero-btn.btn.btn-yellow {
        font-size: 1rem;
    }

    .hero-banner-small-one .hero-banner-small-inner {
        padding: 24px 24px 0;
    }

    .hero-banner-small-one img {
        width: 73%;
        display: block;
        margin: 0 auto;
    }

    .hero-banner-small-two-title {
        font-size: 24px;
        width: auto;
    }
}

@media (min-width: 1200px) and (max-width: 1535px) {
    .hero-banner img {
        width: 63.5%;
    }

    .hero-inner-title {
        margin-bottom: 53px;
        text-align: left;
        font-size: 32px;
        line-height: 40px;
    }

    .hero .hero-price {
        font-size: 32px;
        margin-bottom: 48px;
    }

    .hero-banner-small-one img {
        max-width: 50%;
    }

    .hero-banner-small-one-title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .hero-banner-small-one button.hero-banner-small.btn.btn-yellow {
        font-size: 15px;
        margin-top: 10px;
    }

    .hero-banner-small-one .hero-banner-small-price {
        font-size: 20px;
    }

    .hero button.hero-btn.btn.btn-yellow {
        font-size: 1rem;
    }
}

@media (min-width: 992px) and (max-width: 1535px) {
    .payment-banner {
        padding: 40px !important;
        gap: 20px;
    }

    .payment-banner-title {
        font-size: 32px !important;
        line-height: 38px !important;
    }
}

.category-card-one {
    border-radius: 0.375rem;
    background: linear-gradient(180deg, #FFAA63 -11.5%, #fff 83.75%);
    padding: 20px;
}

.category-card-two {
    border-radius: 0.375rem;
    background: linear-gradient(180deg, #FFD533 -11.5%, #fff 83.75%);
    padding: 20px;
}

.category-card-three {
    border-radius: 0.375rem;
    background: linear-gradient(180deg, #76E4FA -11.5%, #fff 83.75%);
    padding: 20px;
}

.category-card-four {
    border-radius: 0.375rem;
    background: linear-gradient(180deg, #FA9C83 -11.5%, #fff 83.75%);
    padding: 20px;
}

.category-card-five {
    border-radius: 0.375rem;
    background: linear-gradient(180deg, #FF7DB6 -11.5%, #fff 83.75%);
    padding: 20px;
}

.category-card-six {
    border-radius: 0.375rem;
    background: linear-gradient(180deg, #FF6D3D -11.5%, #fff 83.75%);
    padding: 20px;
}

.category-card-seven {
    border-radius: 0.375rem;
    background: linear-gradient(180deg, #82E64C -11.5%, #fff 83.75%);
    padding: 20px;
}

.home-category-name a {
    padding-top: 6px;
    color: #181c1d;
    font-family: "Instrument Sans";
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    text-decoration: none;
}

.view-all {
    color: #323b3a;
    font-family: "Instrument Sans";
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
}

.swiper.category {
    height: unset;
}

.swiper.category .swiper-slide img {
    aspect-ratio: inherit;
}

@media screen and (max-width: 1536px) {
    .home-category-name a {
        font-size: 1rem;
        line-height: 22px;
    }
}

.tag-new {
    color: #fff;
    font-family: "Instrument Sans";
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    position: absolute;
    top: 20px;
    display: inline-flex;
    padding: 3px 12px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    left: 20px;
    z-index: 22;
    border-radius: 2px 17px 17px 2px;
    background: #f9791d;
}

ul.list-inline {
    margin-left: 0;
}

.product-info .product-review li {
    display: inline-block;
}

.product-info .product-review li i {
    color: #f9c71d;
    font-size: 16px;
}

.product-info .product-review li .rating {
    color: #ccc;
    font-size: 16px;
}

.product-card {
    padding: 16px 20px;
}

.product-card .card-img-top {
    padding: 30px 0;
    max-width: 288px;
    object-fit: cover;
    object-position: center;
}

.deals-of-the-day.style-2 .card-img-top {
    max-width: 100%;
}

.mostselling-products .tag-block .tag-new {
    position: absolute;
}

.wishlist-icon {
    padding: 4px;
    display: flex;
    align-items: center;
    background: #f5f7f7;
    border-radius: 20px;
    opacity: 1;
    position: absolute;
    right: 20px;
    top: 16px;
}

.product-weight-list {
    border-radius: 30px;
    border: 1px solid #e9eeee;
    padding: 4px 10px;
    color: var(--Dark-900, #181c1d);
    font-family: "Instrument Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    /* 137.5% */
}

.card-title {
    color: #181c1d;
    font-family: "Instrument Sans";
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    margin: 8px 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rating-count {
    color: #323b3a;
    font-family: "Instrument Sans";
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
}

.card-price {
    padding: 20px 0;
}

.price-new {
    color: var(--Dark-900, #181c1d);
    font-family: "Instrument Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
}

.price-old {
    color: var(--Dark-500, #919f9f);
    font-family: "Instrument Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    text-decoration-line: line-through;
}

.discount-badge {
    background-color: #e74c3c;
    padding: 1px 6px;
    display: inline-block;
    position: relative;
    border-radius: 0;
    color: var(--White, #fff);
    font-family: "Instrument Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin-left: 7px;
}

.discount-badge::before {
    content: "";
    position: absolute;
    top: 0;
    left: -7px;
    width: 0;
    height: 0;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-right: 7px solid #e74c3c;
}

button.btn.btn-cart-primary {
    border-radius: 8px;
    background: var(--Light-Green-10, #e7f4f5);
    display: flex;
    width: 288px;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: var(--Light-Green-500, #357b7f);
    font-family: "Instrument Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
}

.card.product-card:hover .wishlist-icon {
    opacity: 1;
}

.card.product-card:hover svg path {
    stroke: #5a6464;
}

.card.product-card button.btn.btn-cart-primary:hover {
    background: var(--Light-Green-500, #357b7f) !important;
    color: var(--White, #fff);
}

.mostselling-products .btn-wishlist-bottom svg path {
    stroke: #5a6464 !important;
}

.mostselling-products button.btn-wishlist-bottom:hover {
    background: var(--Light-Green-500, #357b7f);
}

.mostselling-products button.btn-wishlist-bottom:hover svg path {
    stroke: #fff !important;
}

/*------------------------------------------------*/
/*--------------[SLIDER STYLE]-----------*/
/*------------------------------------------------*/
.owl-carousel .owl-item img {
    -webkit-transform-style: unset;
    transform-style: unset;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-dot {
    position: absolute;
    text-align: center;
    border-radius: 50%;
    background-color: #fff !important;
    stroke-width: 1px;
    border: 1px solid var(--Light-Green-200, #b2d0d2);
}

.owl-carousel .owl-nav button.owl-prev.disabled,
.owl-carousel .owl-nav button.owl-next.disabled {
    opacity: 0.6;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    filter: alpha(opacity=70);
}

.common-slider .owl-nav {
    position: absolute;
    top: -73px;
    right: 0;
    display: block !important;
}

.common-slider .owl-nav .owl-prev {
    left: auto;
    right: 50px;
}

.common-slider .owl-nav .owl-next {
    right: 0;
}

.common-slider button.owl-next,
.common-slider button.owl-prev {
    top: 0;
    padding: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: #fff !important;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.home-slider .owl-nav {
    bottom: 2%;
    right: 5%;
    position: absolute;
}

.card {
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.product-img {
    width: 100%;
    height: 150px;
    background-color: #d6d6d6;
    border-radius: 5px;
}

.rating-stars {
    color: #f2b01e;
    font-size: 14px;
}

.review-count {
    font-size: 12px;
    color: #666;
}

.price {
    font-weight: bold;
    font-size: 16px;
}

.old-price {
    text-decoration: line-through;
    color: #888;
    font-size: 14px;
    margin-left: 5px;
}

.discount {
    background-color: #f44336;
    color: #fff;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
}

.timer-box {
    font-size: 12px;
    background-color: #e9ecef;
    border-radius: 4px;
    padding: 4px 6px;
    margin-right: 4px;
    display: inline-block;
    min-width: 40px;
    text-align: center;
}

.main-deal {
    border: 2px solid #117a8b;
}

.add-cart-btn {
    background-color: #e0f7fa;
    color: #117a8b;
    font-size: 14px;
}

.product-sold-number {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-sold-number::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url("../img/icon/sold-icon.svg") no-repeat center;
    background-size: contain;
}

button.btn-wishlist-bottom {
    border-radius: 8px;
    background: var(--Dark-10, #f4f6f6);
    display: flex;
    width: 52px;
    padding: 8px 10px;
    justify-content: center;
    align-items: center;
}

.product-shop,
.product-shop a {
    color: var(--Orange-500, #f9791d);
    font-family: "Instrument Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
}

.deals-card-image {
    border-radius: 16px;
    background: var(--Dark-10, #f4f6f6);
    width: 214px;
    height: 258px;
    padding: 20px 30px;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.deals-card-block {
    padding: 6px 20px 6px 6px;
    border-radius: 16px;
    border: 2px solid var(--Light-Green-500, #357b7f);
    background: var(--White, #fff);
}

.deals-of-the-day.style-2 .deals-card-block {
    border: 2px solid var(--Light-Green-500, #9E7C4F);
}

.deals-center {
    padding: 30px 40px;
}

.deals-center .card-img-top {
    padding: 0;
    width: 280px;
    height: 356px;
    margin: 0 auto;
    display: block;
}

.deals-of-the-day.style-2 .deals-center .card-img-top {
    padding: 0;
    width: auto;
    height: auto;
    margin: 0 auto;
    display: block;
}

.deals-center .product-info {
    padding-top: 48px;
}

.countdown {
    display: flex;
    gap: 4px;
    margin-top: 20px;
}

.time-box {
    border-radius: 2.393px;
    border: 0.399px solid var(--Dark-100, #e9eeee);
    background: #fff;
    box-shadow: 0 0.798px 3.191px -1.596px rgba(0, 0, 0, 0.12);
    width: 36px;
    height: 32px;
    flex-shrink: 0;
    padding: 5px;
    text-align: center;
}

.time-box .number {
    text-align: center;
    font-family: "Instrument Sans";
    font-size: 8px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: block;
}

.deals-of-the-day.style-1 .time-box .number {
    color: var(--Light-Green-500, #357b7f) !important;
}

.time-box .label {
    color: var(--Dark-900, #181c1d);
    font-family: "Instrument Sans";
    font-size: 8px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: block;
    margin-top: 2px;
}

.deals-center .countdown {
    margin: 0;
    padding: 57px 0;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.deals-center .time-box {
    width: 80px;
    height: 80px;
    padding: 16px;
}

.deals-center .rating-count {
    color: var(--Dark-800, #323b3a);
    font-family: "Instrument Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
}

.deals-center .price-new {
    color: var(--Dark-900, #181c1d);
    font-family: "Instrument Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
}

.deals-center .card-title {
    color: var(--Dark-900, #181c1d);
    font-family: "Instrument Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
}

.deals-center .time-box .number {
    color: var(--Light-Green-500, #357b7f);
    text-align: center;
    font-family: "Instrument Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 25px;
}

.deals-center .card-price {
    padding: 24px 0;
}

.deals-center .time-box .label {
    color: var(--Dark-900, #181c1d);
    font-family: "Instrument Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

.deals-card-block .card-img-top {
    padding: 0;
}

.tab-block .row,
.layout__content .row {
    --bs-gutter-x: 24px;
}

@media screen and (max-width: 575px) {
    .deals-card-image {
        width: auto;
        height: auto;
        margin-bottom: 28px;
    }

    .deals-center .time-box {
        width: 70px;
        height: 60px;
        padding: 5px;
    }

    .product-card .card-img-top {
        object-fit: contain;
    }

    .countdown {
        margin-top: -25px;
    }

    .product-card.deals-card-block.deals-center {
        display: block;
    }
}

@media screen and (max-width: 767px) {
    .product-card .card-img-top {
        height: auto;
    }

    .product-card .card-img-top {
        max-width: 100%;
        height: auto;
        margin: 0 auto;
    }

    .deals-card-block {
        padding: 6px 6px 6px 6px;
    }

    .countdown-product {
        display: flex;
        justify-content: center;
        left: 0;
        right: 0;
    }
}

@media screen and (min-width: 576px) and (max-width: 1199px) {
    .product-card.deals-card-block.deals-center {
        display: flex;
        align-items: center;
    }
}

@media screen and (min-width: 1200px) and (max-width: 1535px) {
    .deals-center {
        padding: 20px 20px;
    }

    .deals-center .time-box {
        width: 70px;
        height: 50px;
        padding: 10px;
    }

    .deals-center .time-box .number {
        font-size: 15px;
        line-height: 12px;
    }

    .deals-center .time-box .label {
        font-size: 14px;
        line-height: 18px;
    }

    .deals-center .card-price {
        padding: 16px 0;
    }

    .deals-center .countdown {
        padding: 20px 0;
    }

    .deals-center .product-info {
        padding-top: 10px;
    }

    .deals-card-image {
        border-radius: 16px;
        background: var(--Dark-10, #f4f6f6);
        width: 165px;
        height: 200px;
        padding: 10px 10px;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
    }

    .price-new {
        font-size: 14px;
        line-height: 22px;
    }

    .countdown {
        margin-top: -15px;
        margin-left: -5px;
    }

    .card-title {
        font-size: 15px;
        margin: 8px 0 0;
        line-height: 22px;
    }

    .discount-badge {
        padding: 1px 4px;
        font-size: 11px;
    }

    .product-info .product-review li i,
    .product-info .product-review li .rating {
        font-size: 12px;
    }
}

@media screen and (max-width: 991px) {
    .common-slider .owl-nav {
        top: -58px;
    }

    .common-slider .owl-nav .owl-prev {
        left: auto;
        right: 40px;
    }

    .common-slider button.owl-next,
    .common-slider button.owl-prev {
        top: 0;
        padding: 0;
        width: 30px;
        height: 30px;
        line-height: 30px;
        background-color: #fff !important;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }

    .common-slider .countdown {
        margin-top: 0;
    }

    .home-slider .owl-nav {
        bottom: 2%;
        right: 5%;
        position: absolute;
    }
}

.deals-of-the-day .row {
    row-gap: 30px;
}

.tab-block.product-detalis-tab {
    border-radius: 12px;
    border: 1px solid var(--Dark-200, #dfe1e1);
    background: var(--Light-Green-500, #357b7f);
    margin-top: 60px;
}

.customer-reviews {
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.customer-reviews h5 {
    font-weight: 600;
}

.customer-reviews .btn-teal {
    background-color: #237c75;
    color: #fff;
    border-radius: 6px;
    padding: 6px 14px;
}

.customer-reviews .btn-teal:hover {
    background-color: #1e6c66;
}

.customer-reviews .progress {
    height: 8px;
    border-radius: 10px;
    background-color: #f2f4f5;
}

.customer-reviews .progress .progress-bar {
    border-radius: 10px;
}

.customer-reviews .rating-breakdown span {
    font-size: 14px;
    color: #333;
}

.customer-review-list .review-card {
    border: 1px solid #f1f1f1;
    border-radius: 12px;
    background: #fff;
}

.customer-review-list .review-card .card-body {
    padding: 1.25rem;
}

.customer-review-list .review-card h6 {
    font-size: 15px;
}

.customer-review-list .review-card p {
    font-size: 14px;
    line-height: 1.5;
}

.customer-review-list .btn-teal {
    background-color: #237c75;
    color: #fff;
    border-radius: 8px;
    padding: 10px 20px;
}

.customer-review-list .btn-teal:hover {
    background-color: #1e6c66;
}

.customer-review-list img {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

@media (max-width: 1440px) {

    .product-info .product-review li .rating,
    .product-info .product-review li i {
        font-size: 12px;
    }
}

.payment-banner {
    border-radius: 20px;
    background-color: #F3B5E5;
    padding: 74px 148px;
}

.payment-banner-title {
    color: var(--Dark-900, #181c1d);
    font-family: Kanit;
    font-size: 48px;
    font-weight: 600;
    line-height: 56px;
}

.payment-banner-subtitle {
    color: var(--Dark-800, #323b3a);
    font-family: "Instrument Sans";
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    padding: 20px 0 30px;
}

.payment-banner-left {
    max-width: 707px;
    width: 100%;
}

button.btn.btn-offer {
    border-radius: 33px;
    background: var(--Magenta-500, #7a3185);
    color: var(--White, #fff);
    font-family: "Instrument Sans";
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
}

.discount-banner {
    background: linear-gradient(90deg, #a94ba3, #9a4eae);
    border-radius: 6px;
    position: relative;
}

.discount-banner .discount-img {
    position: absolute !important;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 999;
    bottom: 0;
}

.discount-banner .banner-text {
    position: relative;
    z-index: 1;
    max-width: 70%;
    padding: 24px 0 24px 30px;
}

.discount-banner .banner-discount {
    position: relative;
    z-index: 1;
    color: #f1e9f1;
    font-size: 3rem;
    font-weight: bold;
}

.discount-banner .home-discount-banner-amount {
    font-family: "Instrument Sans";
    font-size: 100px;
    font-weight: 700;
    line-height: 100px;
    background: linear-gradient(180deg, #EDB2F6 -2%, #FFF 91.5%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-right: 30px;
}

.discount-banner .discount-banner-title {
    color: #FFF;
    font-family: "Instrument Sans";
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
}

.discount-banner .discount-banner-subtitle {
    color: var(--Magenta-10, #f4e7f6);
    font-family: "Instrument Sans";
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.discount-banner-block-single {
    margin-top: 108px;
}

.card-offer {
    background-color: #f5b3e6;
    position: relative;
    overflow: hidden;
}

.card-offer::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: url("wave-pattern.svg") no-repeat right center;
    background-size: cover;
    opacity: 0.2;
}

.card-offer h2 {
    font-size: 2rem;
    color: #222;
}

.card-offer p {
    color: #4a4a4a;
    font-size: 1rem;
}

.card-offer .btn-offer {
    background-color: #6a1b9a;
    color: #fff;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.3s;
}

.card-offer .btn-offer:hover {
    background-color: #4a136d;
}

.card-offer .cards-stack {
    position: relative;
}

.card-offer .cards-stack .card-img {
    position: absolute;
    right: 0;
    max-width: 260px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.promo-banner-card.banner-style-1,
.promo-banner-card.banner-style-2,
.promo-banner-card.banner-style-3 {
    padding: 30px;
    min-height: 310px;
    border-radius: 10px;
    height: 100%;
}

.promo-banner-card.banner-style-3 {
    text-align: right;
}

.promo-banner-card .banner-content h5 {
    color: #fff;
    font-family: Kanit;
    font-size: 28px;
    font-weight: 700;
    line-height: 38px;
    margin-bottom: 24px;
}

.promo-banner-card .promo-banner-subtitle {
    color: #fff;
    font-family: "Instrument Sans";
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}

.promo-banner-card .promo-banner-price {
    color: #fff;
    font-family: Kanit;
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;
}

.promo-banner-card a.btn.promo-banner-button {
    border-radius: 30px;
    background: #fff;
    padding: 6px 20px;
    border: none;
    margin-top: 40px;
    color: var(--Dark-900, #181C1D);
    font-family: "Instrument Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
}

.banner-style-3 .banner-content h5 {
    color: var(--Light-Green-500, #357B7F);
}

.banner-style-3 .banner-content .promo-banner-organic,
.banner-style-3 .banner-content .promo-banner-subtitle,
.banner-style-3 .banner-content .promo-banner-price {
    color: var(--Light-Green-500, #357B7F);
}

.banner-style-3 .promo-banner-organic {
    text-align: right;
    font-family: "Instrument Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
}

@media screen and (max-width: 991px) {

    .promo-banner-card.banner-style-1,
    .promo-banner-card.banner-style-2 {
        padding: 30px 30px 0 30px;
        text-align: center;
    }

    .discount-banner .discount-img {
        display: block;
    }

    .discount-banner .home-discount-banner-amount {
        font-size: 40px;
        padding-right: 30px;
    }

    .payment-banner {
        border-radius: 12px;
        padding: 20px 15px;
    }

    .payment-banner-title {
        font-size: 32px;
        line-height: 38px;
    }

    .payment-banner-subtitle {
        font-size: 16px;
        line-height: 22px;
    }

    .payment-banner .payment-banner-cards {
        margin-bottom: 30px;
    }

    .promo-banner-card .banner-content h5 {
        font-size: 20px;
        line-height: 25px;
        margin-bottom: 10px;
    }

    .promo-banner-card .promo-banner-price {
        font-size: 20px;
        line-height: 30px;
    }

    .promo-banner-card a.btn.promo-banner-button {
        margin-top: 15px;
        font-size: 20px;
        margin-bottom: 10px;
    }

    .promo-banner-card a.btn.promo-banner-button {
        font-size: 14px;
    }

    .promo-banner-card.banner-style-1,
    .promo-banner-card.banner-style-2 {
        padding: 30px 15px 0 15px;
        text-align: left;
    }

    .hero-banner-small-two,
    .hero-banner-small-three {
        min-height: 270px;
    }
}

@media screen and (max-width: 1536px) {
    .promo-banner-card .banner-content h5 {
        font-size: 24px;
        line-height: 30px;
    }
}

@media screen and (max-width: 767px) {
    .promo-banner-card.banner-style-2 {
        margin: 30px 0;
    }
}

@media screen and (min-width: 992px) and (max-width: 1535px) {
    .discount-banner .banner-text {
        max-width: 40%;
    }

    .discount-banner .home-discount-banner-amount {
        font-size: 60px;
        line-height: 70px;
    }
}

.promo-banner-card.banner-style-2 {
    background-image: url(../img/banner/banner6.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.promo-banner-card.banner-style-1 {
    background-image: url(../img/banner/banner5.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.promo-banner-card.banner-style-3 {
    background-image: url(../img/banner/banner7.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.tab-product-list .col-md-3 {
    flex: 0 0 auto;
    width: 20%;
}

.tab-product-list .product-card {
    margin-top: 24px;
}

.nav-tabs .nav-item.show .nav-link {
    border-radius: 6px;
    background: #357b7f !important;
    color: #fff;
    font-family: "Instrument Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    padding: 10px 16px;
    border: none;
    isolation: unset;
}

.nav-tabs .nav-item .nav-link {
    border-radius: 6px;
    background: #fff;
    color: #181c1d;
    font-family: "Instrument Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    border: none;
}

.nav-tabs .nav-item .nav-link:focus,
.nav-tabs .nav-item .nav-link:hover {
    color: #181c1d;
    border: none;
    isolation: unset;
}

.nav-tabs .nav-item .nav-link.active {
    border-radius: 6px;
    background: #357b7f !important;
    color: #fff;
    font-family: "Instrument Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    padding: 10px 16px;
    border: none;
    isolation: unset;
}

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

ul.nav.nav-fill.nav-tabs {
    border: none;
    gap: 12px;
}

.responsive-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}

.responsive-tabs .nav-item {
    flex: 0 0 auto;
}

.responsive-tabs::-webkit-scrollbar {
    height: 3px;
}

.responsive-tabs::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

@media (min-width: 1440px) {
    .responsive-tabs {
        overflow: visible;
        flex-wrap: wrap;
    }
}

@media (max-width: 1440px) {
    .view-all-tab-inner {
        min-width: 120px;
        text-align: right;
    }

    .view-all {
        font-size: 1rem;
    }
}

.store-card {
    border-radius: 12px;
    overflow: hidden;
}

.store-card-header {
    text-align: center;
    padding: 2rem 0 3rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.store-card-header .store-logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 4px solid #fff;
    object-fit: cover;
    position: absolute;
    left: 20px;
    top: 45px;
}

.store-card-header.bg-1 {
    background-image: url("../img/banner/store-bg-1.png");
    background-color: #EFF6FF !important;
}

.store-card-header.bg-2 {
    background-image: url("../img/banner/store-bg-2.png");
    background-color: #ff9900;
}

.store-card-header.bg-3 {
    background-image: url("../img/banner/store-bg-3.png");
    background-color: #33cc33;
}

.store-card-header.bg-4 {
    background-image: url("../img/banner/store-bg-4.png");
    background-color: #ff3366;
}

.store-card-header.bg-5 {
    background-image: url("../img/fashion/features/store-bg-5.png");
    background-color: #00c4d8;
}

.store-card-header.bg-6 {
    background-image: url("../img/fashion/features/store-bg-6.png");
    background-color: #ff9900;
}

.store-card-header.bg-7 {
    background-image: url("../img/fashion/features/store-bg-7.png");
    background-color: #33cc33;
}

.store-card-header.bg-8 {
    background-image: url("../img/fashion/features/store-bg-8.png");
    background-color: #ff3366;
}

.store-card-body {
    border-radius: 10px;
    background: #fff;
    padding: 45px 20px 20px;
}

.store-card-body .store-card-title {
    color: var(--Dark-900, #181c1d);
    font-family: "Instrument Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
}

.store-card-body .store-card-sale {
    color: var(--Dark-600, #5a6464);
    font-family: "Instrument Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    padding: 12px 0 16px;
}

.store-card-body .store-card-sale .sale-number {
    color: var(--Orange-500, #f9791d);
    font-family: "Instrument Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
}

.store-card-body .store-card-delivery {
    color: var(--Dark-900, #181c1d);
    font-family: "Instrument Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
}

.store-card-body .store-card-delivery svg {
    flex-shrink: 0;
}

.customer-support {
    border-radius: 0.375rem;
    border: 1px solid #e9eeee;
    background: #fff;
}

h3.customer-support-title {
    color: #181c1d;
    font-family: "Instrument Sans";
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
}

@media (min-width: 992px) and (max-width: 1535px) {
    h3.customer-support-title {
        font-size: 1rem;
        line-height: 28px;
    }

    .customer-support {
        padding: 20px !important;
    }
}

.customer-support-icon img {
    width: 100%;
    max-width: 64px;
}

.service-block {
    border-radius: 16px;
    background: #FFF;
}

.service-block-title {
    color: var(--Dark-900, #181C1D);
    font-family: "Instrument Sans";
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 42px;
}

.service-block-subtitle {
    color: var(--Dark-800, #323B3A);
    font-family: "Instrument Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-top: 14px;
}

@media (max-width: 991px) {
    .service-block-title {
        font-size: 20px;
        line-height: 26px;
    }
}

@media screen and (min-width: 360px) and (max-width: 1440px) {
    .service-block-title {
        font-size: 24px !important;
        line-height: 30px;
    }
}

/*------------------------------------------------*/
/*----------------[TICKER]-----------------*/
/*------------------------------------------------*/
.ticker-carousel {
    position: relative;
    overflow: hidden;
}

.home-main-contant-style.under-test-ticker-block.style4 {
    padding: 46px 0;
}

.ticker-carousel__item-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-border-radius: 500px;
    -moz-border-radius: 500px;
    -o-border-radius: 500px;
    -ms-border-radius: 500px;
    border-radius: 500px;
    border: 1px solid #1B2532;
    margin-bottom: 30px;
    background: #05090F;
}

.ticker-carousel__item-icon img {
    height: 50px;
    width: 50px;
}

.ticker-carousel__item-text .title {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.ticker-carousel__item-text p {
    color: #fff;
    font-weight: 500;
}

.ticker-carousel-block {
    position: relative;
}

.ticker-carousel-block-text ul {
    gap: 30px;
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
}

.ticker-carousel-block-text ul li {
    line-height: 1;
    color: #FFF;
    font-family: "Instrument Sans";
    font-size: var(--type-size-base, 16px);
    font-style: normal;
    font-weight: var(--type-weight-normal, 400);
    line-height: 24px;
    /* 150% */
    font-weight: 700;
    white-space: nowrap;
    display: inline-block;
    text-transform: uppercase;
    color: #fff;
}

.ticker-carousel-block-text ul li i {
    font-size: 30px;
    vertical-align: middle;
    padding: 0 36px;
}

.home-2 .under-test-ticker-block.style1 {
    background: var(--primary-color);
    padding: 48px 0;
}

.under-test-ticker-block .ticker-carousel-block-text ul li.stroke-text,
.under-test-ticker-block .ticker-carousel-block-text ul li {
    color: #fff;
    -webkit-text-stroke-color: #fff;
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.button {
    padding: 0.75em 1.5em;
    color: var(--clr-text);
    text-decoration: none;
    background-color: var(--clr-primary);
    border: 1px solid var(--clr-secondary);
    border-radius: 0.5em;
}

.button:hover {
    background-color: var(--clr-secondary);
}

.main-title {
    font-size: var(--fs-900);
    margin-block: 0;
}

.text-highlight {
    color: var(--clr-accent);
}

.sr-only {
    border: 0 !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    -webkit-clip-path: inset(50%) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
    white-space: nowrap !important;
}

.sr-only-focusable:focus,
.sr-only-focusable:active {
    clip: auto !important;
    -webkit-clip-path: none !important;
    clip-path: none !important;
    height: auto !important;
    margin: auto !important;
    overflow: visible !important;
    width: auto !important;
    white-space: normal !important;
}

.logos {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

@media (min-width: 1720px) {

    .container,
    .full-width-block {
        max-width: 1720px;
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 0;
        width: 100%;
        padding-right: calc(var(--bs-gutter-x) * 0.5);
        padding-left: calc(var(--bs-gutter-x) * 0.5);
        margin-right: auto;
        margin-left: auto;
    }
}
