:root{
    --font-weight-semibold: 700;
    --text-xl: 1.25rem;
    --text-xl--line-height: calc(1.75 / 1.25);
    --default-transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    --default-transition-duration: .15s;
    --primary: #171717;
    --text-4xl: 1.5rem;
    --text-4xl--line-height: calc(2.5 / 2.25);
    --text-2xl: 1.2rem;
    --text-2xl--line-height: calc(2 / 1.5);
}

* {
    border-color: #e5e5e5;
    outline-color: #a1a1a1;
}

.outline-none {
    --tw-outline-style: none;
    outline-style: none;
}

.font-semibold {
    --tw-font-weight: var(--font-weight-semibold);
    font-weight: var(--font-weight-semibold) !important;
}

.text-xl {
    font-size: var(--text-xl) !important;
    line-height: var(--tw-leading, var(--text-xl--line-height)) !important;
}

.gb-element-cd73220a{
    margin-left: 200px;
}

.spf-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns by default */
    gap: 20px;
    margin: 20px 0;
}

.spf-product-tile {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

.spf-product-tile:hover {
    transform: translateY(-5px);
}

.spf-product-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

.spf-product-title {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0;
}

.spf-product-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.4;
}

.spf-product-points {
    font-weight: bold;
    color: #2c7;
}

/* 🔹 Responsive Styles */
@media (max-width: 1024px) {
    .spf-product-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    }
}

@media (max-width: 600px) {
    .spf-product-grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
    }
}


.bg-muted,.bg-muted\/50 {
    background-color: #f5f5f5 !important;
}



.shadow-sm {
        --tw-shadow: 0 1px 3px 0 #0000001a,0 1px 2px -1px #0000001a;
    }

.transition-all {
    transition-property: all;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
}

.bg-primary, .bg-primary\/10 {
    background-color: var(--primary) !important;
}

/* Utility: remove any background image (supports existing typo in template) */
.backgound-image-none { /* kept typo to match current markup */
    background-image: none !important;
}
.background-image-none { /* correct alias */
    background-image: none !important;
}

.tile-card {
    padding: 0;
        border-radius: 20px;
        gap: 0;
        max-width: 320px;
        margin: 0 auto;
}

.cover-image {
    padding: 0;
    aspect-ratio: 1 / 1.162;
}

.cover-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
        border-radius: 20px;
}

.tile-tag {
    position: absolute;
    top: 8px;
    left: 8px;
    width: max-content;
    z-index: 2;
    width: max-content;
    box-shadow: 0 0 8px #000;
    text-align: center;
}

.price-text{
    font-size: 12px;
}

.discount-price {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.card-content {
    padding: 2px 0 5px;
}
.card-footer {
    padding: 6px 10px 5px;
    border-top: 1px solid #f3f3f3;
    text-align: center;
    background-color: #000000;
    font-weight: 700;
}

/* Product image utilities */
.product-image-wrapper {
    aspect-ratio: 16 / 9;
    position: relative;
    border-radius: 0.75rem; /* matches rounded-lg */
    overflow: hidden;
    background: #fff; /* fallback background */
}
    .product-image-full {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain; /* show entire image without cropping */
        display: block;
        background: #fff; /* ensures letterbox areas look intentional */
    }

    /* Mobile: allow full image without cropping, natural height */
    @media (max-width: 640px) {
        .product-image-wrapper {
            aspect-ratio: auto;
            height: auto;
        }
        .product-image-full {
            width: 100% !important;
            height: auto !important;
            object-fit: contain;
            object-position: center top;
            background: #fff;
        }
    }

.w-full {
    width: 100% !important;
}

/* .elementor-kit-25859 button.no-bg-hover:hover {
    background-color: transparent !important;
    background-image: linear-gradient(90deg, var(--e-global-color-primary) 0%, var(--e-global-color-514c504) 100%);
} */

/* Red (Destructive) variants mirroring green utility pattern */
:root {
    --color-red-500: oklch(70.4% 0.191 22.216); /* base red from request */
    --color-red-600: oklch(60% 0.191 22.216);   /* slightly darker for text */
}

.bg-red-500\/10 {
    background-color: color-mix(in oklab, var(--color-red-500) 10%, transparent) !important;
}

.hover\:bg-red-500\/20:hover {
    background-color: color-mix(in oklab, var(--color-red-500) 20%, transparent) !important;
}

.text-red-600 {
    color: var(--color-red-600) !important;
}

.border-red-500\/20 {
    border-color: color-mix(in oklab, var(--color-red-500) 20%, transparent) !important;
}

.available-points {
        background-color: 
 color-mix(in oklab, var(--primary) 10%, transparent);
    }

/* Available Points responsive refinement */
.available-points {
    max-width: 220px;
}
.available-points .points-row-top { margin-bottom: 2px; }
.available-points .points-label { display: inline-block; }
.available-points .points-value { line-height: 1; }

@media (max-width: 640px) {
    .available-points {
        flex-direction: row; /* place icon+value next to label */
        align-items: center;
        max-width: 100%;
        padding: 0.75rem 1rem;
        gap: .75rem;
    }
    .available-points .points-row-top,
    .available-points .points-row-bottom {
        display: contents; /* flatten for simpler wrapping */
    }
    .available-points .points-label { order: 1; }
    .available-points svg { order: 2; }
    .available-points .points-value { order: 3; font-size: 1.125rem; }
}


.text-4xl {
    font-size: var(--text-4xl) !important;
    line-height: var(--tw-leading, var(--text-4xl--line-height)) !important;
}


.text-balance {
    text-wrap: balance !important;
}


.text-2xl {
    font-size: var(--text-2xl) !important;
    line-height: var(--tw-leading, var(--text-2xl--line-height)) !important;
}
.not-log-in-user{
    max-width: 1260px;
    width: 90%;
    margin: 0 auto;
    padding: 72px 20px;
    text-align: center;
    font-weight: 700;

}
.not-log-in-user a {
    color: #0058CC;
    text-decoration: underline;
}

/* Out of Stock Tile Styling */
.out-of-stock-tile {
    opacity: 0.7;
}



/* Disabled state for filter checkboxes */
.ajax-term-filter.disabled,
.ajax-size-click.disabled,
.ajax-type-click.disabled,
.ajax-firm-click.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.ajax-term-filter.disabled input,
.ajax-size-click.disabled input,
.ajax-type-click.disabled input,
.ajax-firm-click.disabled input {
    opacity: 0.5;
    cursor: not-allowed;
}

.out-stock-color{
    background-color: red !important;
    color: white !important;
}

/* Ajax Filter Loading States */
.opacity-70 {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

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

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.text-gray-500 {
    color: #6b7280;
}

.text-red-500 {
    color: #ef4444;
}

/* Smooth transitions for Ajax content updates */
#ajax-response-products {
    transition: opacity 0.3s ease;
}

#ajax-response-products.loading {
    opacity: 0.5;
    pointer-events: none;
}