:root {
    --color-text: #232323;
    --color-text2: #969696;
    --color-global: #232323;
    --color-white: #FFFFFF;
    --color-grey: #868686;
    --color-black: #202020;
    --color-black-light: #3a3a3a;
	
    --font-body-family: "Montserrat", sans-serif;
    --font-body-size: 14px;
    --font-body-weight: 500;
    --body-line-height: 22px;
    --body-letter-spacing: .02em;
    --font-heading-family: "Outfit", sans-serif;
    --font-heading-size: 28px;
    --font-heading-weight: 500;
    --font-heading-style: normal;
    --heading-letter-spacing: .05em;
	
	--ratio-1x1: 100%;
    --ratio-4x3: 75%;
    --ratio-16x9: 56.25%;
    --ratio-21x9: 42.8571%;

    --ratio-4x5: 125%;
    --ratio-3x4: 133.3333%;
    --ratio-2x3: 150%;
    --ratio-9x16: 177.7778%;
    --ratio-10x16: 160%;
}

.ratio-1x1 { --bs-aspect-ratio: var(--ratio-1x1); }
.ratio-4x3 { --bs-aspect-ratio: var(--ratio-4x3); }
.ratio-16x9 { --bs-aspect-ratio: var(--ratio-16x9); }
.ratio-21x9 { --bs-aspect-ratio: var(--ratio-21x9); }
.ratio-4x5 { --bs-aspect-ratio: var(--ratio-4x5); }
.ratio-3x4 { --bs-aspect-ratio: var(--ratio-3x4); }
.ratio-1x1 { --bs-aspect-ratio: 100%; }
.ratio-9x16 { --bs-aspect-ratio: var(--ratio-9x16); }
.ratio-10x16 { --bs-aspect-ratio: var(--ratio-10x16); }
.ratio-ad-feed { --bs-aspect-ratio: 125%; } /* 4x5 */
.ratio-ad-banner { --bs-aspect-ratio: 25%; }
.ratio-ad-square { --bs-aspect-ratio: 100%; } /* 1x1 */
.ratio-ad-vertical { --bs-aspect-ratio: 177.7778%; } /* 9x16 */
.ratio-yt-thumb { --bs-aspect-ratio: 56.25%; } /* 16x9 */
.ratio-cinematic { --bs-aspect-ratio: 42.8571%; } /* 21x9 */

body {
    background: #fff;
    color: var(--color-text);
    font-family: var(--font-body-family);
    font-size: var(--font-body-size);
    font-weight: var(--font-body-weight);
    letter-spacing: var(--body-letter-spacing);
}

h1,
h2,
h3,
h4,
h5,
.h0,
.h1,
.h2,
.h3,
.h4,
.h5 {
    font-family: var(--font-heading-family);
    font-style: var(--font-heading-style);
    font-weight: var(--font-heading-weight);
    color: var(--color-text);
}

.cursor-pointer {
    cursor: pointer;
}

.screen-reader-text {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.discount-badge {
background: #ff0000;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #fdcf58, #ff0000);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #ff8d00, #f30000); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    font-size: 0.7rem;
    font-weight: 500;
    color: #fff;
    border-radius: 8px !important;
    padding: 5px 10px !important;
}

.topbar-slider {
    background: linear-gradient(57deg, rgba(249, 119, 255, 1) 8%, rgba(54, 212, 255, 1) 47%, rgba(43, 252, 135, 1) 83%);
    height: 42px;
    overflow: hidden;
    position: relative;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.topbar-typing-wrap {
    position: relative;
    height: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.topbar-typing-item {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 9;
}

.topbar-typing-item * {
    color: #000000;
	font-size: 0.9rem;
	font-weight: 600;
}

.topbar-typing-item.active {
    opacity: 1;
    transform: translateY(0);
    z-index: 9;
}

.typing-text {
    font-size: 0.75rem;
    line-height: 1rem;
    display: inline-block;
    white-space: nowrap;
    clip-path: inset(0 100% 0 0);
}

.topbar-typing-item.active .typing-text {
    animation: revealText 1.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes revealText {
    from {
        clip-path: inset(0 100% 0 0);
    }

    to {
        clip-path: inset(0 0 0 0);
    }
}

.site-header {
    background: #fff;
    height: 96px;
    display: flex;
    align-items: center;
}

.header-inner {
    min-height: 96px;
}

.site-logo {
    min-width: 220px;
}

.site-logo img {
    max-height: 55px;
    width: auto;
}

.main-menu .menu-list {
    display: flex;
    align-items: center;
    gap: 45px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu .menu-list li {
    margin: 0;
}

.main-menu .menu-list a {
    text-decoration: none;
    color: var(--color-black-light);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: .2px;
    transition: .2s ease;
}

.main-menu .menu-list a:hover {
    color: #ee0777;
}

.header-icons {
    min-width: 220px;
    justify-content: flex-end;
}

.header-icon {
    color: var(--color-black);
    text-decoration: none;
    position: relative;
}

.header-icon i {
    font-size: 1.2rem;
}

#open-search {
    background: none;
    border: 0px;
    padding: 0px;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    width: 20px;
    height: 20px;
    background: var(--color-black);
    color: #ffffff;
    border-radius: 50%;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease;
}

.mobile-menu-btn {
    background: transparent;
    border: none;
    width: 65px;
    font-size: 28px;
    text-align: left;
}

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

.mobile-menu-list li {
    margin-bottom: 15px;
}

.mobile-menu-list a {
    text-decoration: none;
    color: var(--color-black);
    font-size: 18px;
}

.product-card {
    transition: 0.2s ease;
}

.product-card:hover {
    transform: translateY(-3px);
}

.product-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.product-price {
    color: var(--color-black);
}

.product-price del bdi {
    color: var(--color-text2);
    font-weight: 500;
    font-size: 1.1rem;
    margin-right: 6px;
}

.product-price ins {
    text-decoration: none !important;
    margin-top: -5px !important;
}

.product-price ins bdi {
    color: var(--color-text);
    font-size: 1.5rem;
    font-weight: 500;
}

.woocommerce ul.products,
.woocommerce-page ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.woocommerce table.shop_table {
    border-radius: 12px;
    overflow: hidden;
}

.shop-page {
    background: #fff;
}

.shop-title {
    font-size: 2rem;
}

.shop-sidebar {
    top: 100px;
}

.filter-box {
    border-bottom: 1px solid #eee;
    padding-bottom: 25px;
}

.filter-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.filter-list li {
    margin-bottom: 10px;
}

.filter-list a {
    text-decoration: none;
    color: #111;
}

.product-card {
    transition: .25s ease;
}

.product-card:hover {
    transform: translateY(-4px);
}

.product-image-wrap {
    background: #f8f8f8;
}

.product-image {
    transition: .3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.04);
}

.product-price {
    font-weight: 700;
    font-size: 15px;
}

.product-card .discount-badge,
.sale-badge {
    position: absolute;
    top: 0px;
    left: 0px;
    background: var(--color-black-light);
    color: #fff;
    padding: 5px 10px;
    font-size: 11px;
    z-index: 2;
    border-top-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

.product-card .discount-badge {
    background: #7b4397;  /* fallback for old browsers */
	background: -webkit-linear-gradient(to right, #dc2430, #7b4397);  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to left, #dc2430, #7b4397); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    top: auto;
    right: 0px;
    bottom: 0px;
    left: auto;
    border-radius: 0 !important;
    border-bottom-right-radius: 0.5rem !important;
    border-top-left-radius: 0.5rem !important;
}

.woocommerce ul.products {
    margin: 0 !important;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    width: 100%;
    background: #000 !important;
    color: #fff !important;
    border: none;
    border-radius: 12px;
    padding: 12px;
    font-size: 14px;
}

.woocommerce nav.woocommerce-pagination ul {
    border: none;
}

.woocommerce nav.woocommerce-pagination ul li {
    border: none;
    margin: 0 5px;
}

.woocommerce nav.woocommerce-pagination ul li span,
.woocommerce nav.woocommerce-pagination ul li a {
    border-radius: 10px;
    padding: 10px 15px;
}

.woocommerce-ordering select {
    min-width: 220px;
    height: 45px;
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 0 15px;
}

.shop-page .product-title {
    font-size: 1rem !important;
    font-weight: 400 !important;
}

.shop-page .product-price {
    display: flex;
    flex-direction: column;
    font-family: var(--font-heading-family);
}

.shop-page .product-price del bdi {
    font-weight: 500;
    font-size: 1rem;
}

.shop-page .product-price ins bdi {
    font-weight: 500;
    font-size: 1.2rem;
}

.shop-page a.add_to_cart_button {
    background: var(--color-black) !important;
    color: #ffffff !important;
    text-transform: uppercase;
    text-decoration: none !important;
    border-radius: 6px !important;
    padding: 0px 0px !important;
    font-size: 0.75rem !important;
}

.add-cart-btn {
    position: relative;
    overflow: hidden;
    height: 37px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease;
}

.cart-btn-inner {
    position: relative;
    width: 134px;
    height: 100%;
}

.cart-default,
.cart-added {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    transition: all .35s ease;
}

.cart-added {
    opacity: 0;
    transform: translateY(100%);
}

.add-cart-btn.added-success .cart-default {
    opacity: 0;
    transform: translateY(-100%);
}

.add-cart-btn.added-success .cart-added {
    opacity: 1;
    transform: translateY(0);
}

.add-cart-btn i {
    font-size: 18px;
    line-height: 1;
}

.added_to_cart {
    display: none !important;
}

.btn-add-cart {
    position: relative;
    transition: all 0.2s ease;
}

.btn-add-cart.loading {
    pointer-events: none;
    opacity: 0.85;
}

#openCodModal.loading {
    pointer-events: none;
    opacity: 1;
}

.btn-add-cart .spinner,
#openCodModal .spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    display: none;
    margin-right: 0px;
    margin-bottom: -5px;
}

#openCodModal .spinner {
    width: 26px;
    height: 26px;
    margin-bottom: -2px;
}

.btn-add-cart.loading .spinner,
#openCodModal.loading .spinner {
    display: inline-block;
}

.btn-add-cart.loading .btn-text,
#openCodModal.loading .btn-text {
    display: none;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* .trust-section {
    background: #ffffff;
    padding: 30px 0;
}

.trust-item {
    background: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 24px;
    padding: 12px 20px 15px;
}

.trust-icon {
    color: var(--color-black);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.trust-item h4 {
    color: var(--color-black);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.trust-item p {
    color: var(--color-black-light);
    font-size: 0.9rem;
    margin: 0;
} */

.site-footer {
    background: #f4f4f4;
    padding-top: 60px;
    margin-top: 0px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 35px;
    color: #111;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 18px;
}

.footer-links a,
.footer-contact a {
    text-decoration: none;
    color: #444;
    transition: .2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #000;
}

.footer-contact p {
    margin-bottom: 18px;
    color: #444;
}

.footer-about {
    color: #444;
    line-height: 2;
    max-width: 520px;
}

.footer-bottom {
    border-top: 1px solid #ddd;
    margin-top: 70px;
    padding: 35px 0;
}

.footer-bottom p {
    margin: 0;
    color: #666;
    font-size: 15px;
}

#wa-footer {
    position: fixed;
    bottom: 35px;
    right: 20px;
    display: flex;
    align-items: center;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 14px;
    z-index: 9999;
}

#wa-footer .text {
    background-color: #ffff;
    color: #000;
    padding: 6px 10px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin-right: 8px;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
    transform: translateX(-10px);
    transition: all 0.35s ease;
}

#wa-footer:hover .text {
    max-width: 200px;
    opacity: 1;
    transform: translateX(0);
}

#wa-footer .icon {
    background-color: #25D366;
    color: #fff;
    padding: 5px 11px 5px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

#wa-footer .icon i {
    font-size: 24px;
}

.mini-cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 9998;
}

.mini-cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mini-cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 380px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transition: 0.35s ease;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.15);
}

.mini-cart-drawer.active {
    right: 0;
}

.mini-cart-header {
    padding: 6px 16px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    font-weight: 600;
}

.close-btn {
    border: none;
    background: transparent;
    font-size: 2rem;
}

.mini-cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
}

.mini-cart-item {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f2f2f2;
}

.mini-cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.item-details {
    flex: 1;
}

.item-details>div {
    font-size: 0.8rem;
}

.mini-cart-price-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1rem;
}

.mini-cart-price-actions del {
    color: var(--color-grey);
    font-size: 0.8rem;
    font-weight: 500;
    margin-right: 5px;
}

.mini-cart-price-actions ins {
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
}

.qty-control {
    display: flex;
    align-items: center;
    gap: 6px;
}

.qty-control button {
    width: 26px;
    height: 26px;
    border: 1px solid #ddd;
    background: #fff;
}

.mini-cart-summary {
    padding: 15px;
    border-top: 1px solid #eee;
}

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

#miniCartTotalDiscount:before {
    content: 'Save ';
}

#miniCartTotalDiscount.discount-badge {
    font-size: 0.75rem;
    padding: 3px 8px !important;
}

.summary-row.total {
    font-weight: bold;
    font-size: 16px;
}

.mini-cart-footer {
    padding: 15px;
    border-top: 1px solid #eee;
}

.checkout-btn {
    display: block;
    text-align: center;
    padding: 12px;
    background: black;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
}

.free-shipping-bar {
    padding: 10px 15px;
    background: #f7f7f7;
    border-radius: 10px;
    margin: 10px;
}

.free-shipping-bar .bar {
    height: 6px;
    background: #eee;
    border-radius: 50px;
    overflow: hidden;
    position: relative;
}

.free-shipping-bar .bar::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 0%;
    background: black;
    transition: 0.3s;
}

.mini-cart-drawer {
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mini-cart-drawer.active {
    transform: translateX(0);
}

.mini-cart-item.removing {
    opacity: 0;
    transform: translateX(-20px);
    transition: 0.25s;
}

.cart-drag-handle {
    width: 40px;
    height: 4px;
    background: #ddd;
    border-radius: 50px;
    margin: 10px auto;
}

.cart-count.bounce {
    animation: bounce 0.4s ease;
}

@keyframes bounce {
    0% {
        transform: scale(1);
    }

    30% {
        transform: scale(1.4);
    }

    60% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}

/* SEARCH PANEL */

#wc-search-panel {
    position: fixed;
    top: 0;
    right: -420px;
    width: 420px;
    max-width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 99999;
    transition: right .35s ease;
    box-shadow: 0 0 40px rgba(0, 0, 0, .12);
    display: flex;
    flex-direction: column;
}

#wc-search-panel.active {
    right: 0;
}

#search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 99998;
    backdrop-filter: blur(2px);
}

#search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 12px;
}

#wc-search-input {
    flex: 1;
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 8px 48px 9px 12px;
    font-size: 1rem;
    outline: none;
    transition: .2s;
}

#wc-search-input:focus {
    border-color: #111;
}

#close-search {
    width: 48px;
    height: 48px;
    border: none;
    background: #f5f5f5;
    border-radius: 12px;
    cursor: pointer;
}

#wc-search-results {
    overflow-y: auto;
    flex: 1;
    padding: 10px;
}

.search-input-wrap {
    position: relative;
    flex: 1;
}

.search-input-wrap:after {
    content: '';
    display: none;
    position: absolute;
    top: 50%;
    right: 16px;
    width: 18px;
    height: 18px;
    margin-top: -9px;
    border: 2px solid #ddd;
    border-top-color: #111;
    border-radius: 50%;
    animation: searchSpin .6s linear infinite;
    transition: .2s;
}

.search-input-wrap.active:after {
    display: block;
}

@keyframes searchSpin {
    to {
        transform: rotate(360deg);
    }
}

.search-product {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: 14px;
    text-decoration: none;
    color: #111;
    transition: .2s;
}

.search-product:hover {
    background: #f7f7f7;
}

.search-product img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 12px;
    background: #f3f3f3;
}

.search-product-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
}

.search-product-price {
    font-size: 14px;
    color: #666;
}

@media(max-width:991px) {

    .topbar-typewriter {
        height: 38px;
        padding: 0 12px;
    }

    .topbar-inner {
        font-size: 13px;
    }

    .site-header {
        height: 80px;
    }

    .header-inner {
        min-height: 80px;
    }

    .site-logo {
        min-width: none;
        text-align: center;
    }

    .site-logo img {
        max-height: 42px;
    }

    .header-icons {
        min-width: auto;
        justify-content: flex-end;
        margin-right: 12px;
    }

    .track-link {
        display: none;
    }

    .topbar {
        font-size: 12px;
        padding: 8px 0;
    }

    .cart-btn-inner {
        width: 42px;
    }

    /* .trust-section {
        padding: 50px 0;
    }

    .trust-item h4 {
        font-size: 18px;
    }

    .trust-item p {
        font-size: 15px;
    } */

    .site-footer {
        padding-top: 50px;
    }

    .footer-title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .footer-bottom {
        margin-top: 50px;
        padding: 25px 0;
    }

    .mini-cart-drawer {
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 70vh;
        border-radius: 18px 18px 0 0;
        transform: translateY(100%);
        transition: 0.35s ease;
    }

    .mini-cart-drawer.active {
        transform: translateY(0);
    }

    #wc-search-panel {
        width: 100%;
        right: -100%;
    }

    .search-header {
        padding: 16px;
    }
}

@media(max-width:768px) {
    .shop-title {
        font-size: 1.5rem;
    }

    .woocommerce ul.products,
    .woocommerce-page ul.products {
        grid-template-columns: repeat(2, 1fr);
    }
}