

.h-4.w-4 {
    display: flex;
    align-items: center;
    justify-content: center;
}

:root {
    --slate-50: #E3E3E3;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --white: #ffffff;
    --red-500: #ef4444;
    --yellow-400: #facc15;
    --indigo-500: #6366f1;

    --font-sans: 'Inter', sans-serif;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
}

/* --- Reset & Base --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    background-color: var(--slate-50);
    color: var(--slate-900);
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
select {
    font-family: inherit;
}

/* --- Layout Containers --- */
.container {
    max-width: 80rem;
    /* 7xl */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.main-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .main-layout {
        flex-direction: row;
    }
}

/* --- Header --- */
.site-header {
    background-color: var(--white);
    border-bottom: 1px solid var(--slate-200);
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    background-color: var(--slate-800);
    padding: 0.375rem;
    border-radius: var(--radius-lg);
    display: flex;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--slate-800);
}

/* Navigation */
.main-nav {
    display: none;
    gap: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-600);
}

@media (min-width: 768px) {
    .main-nav {
        display: flex;
    }
}

.main-nav a:hover,
.nav-btn:hover {
    color: var(--slate-900);
}

.nav-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: inherit;
    font-weight: inherit;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-box {
    display: none;
    position: relative;
}

@media (min-width: 1024px) {
    .search-box {
        display: block;
    }
}

.search-input {
    width: 16rem;
    padding: 0.375rem 1rem 0.375rem 2.5rem;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    background-color: var(--slate-50);
    outline: none;
}

.search-input:focus {
    border-color: var(--slate-500);
    ring: 1px solid var(--slate-500);
}

.search-icon {
    position: absolute;
    left: 0.75rem;
    top: 0.5rem;
    color: var(--slate-400);
    width: 1rem;
    height: 1rem;
}

.icon-btn {
    position: relative;
    cursor: pointer;
    color: var(--slate-600);
}

.badge {
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
    background-color: var(--slate-800);
    color: var(--white);
    font-size: 0.625rem;
    border-radius: 9999px;
    width: 1rem;
    height: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-avatar {
    height: 2rem;
    width: 2rem;
    border-radius: 50%;
    border: 1px solid var(--slate-200);
}

/* --- Sidebar Filters --- */
.sidebar {
    width: 100%;
    flex-shrink: 0;
    display: none;
}

@media (min-width: 1024px) {
    .sidebar {
        display: block;
        width: 16rem;
    }
}

.filter-card {
    background-color: #f8fafc;
    padding: 1.5rem;
    border-radius: var(--radius-2xl);
    border: 1px solid var(--slate-100);
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.filter-title {
    font-weight: 700;
    color: var(--slate-800);
}

.clear-btn {
    font-size: 0.75rem;
    color: var(--slate-400);
    background: none;
    border: none;
    cursor: pointer;
}

.clear-btn:hover {
    color: var(--slate-600);
}

.filter-section {
    margin-bottom: 2rem;
}

.filter-section h3 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--slate-700);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--slate-600);
    cursor: pointer;
}

.checkbox-input {
    border-radius: 0.25rem;
    border: 1px solid var(--slate-300);
    color: var(--slate-800);
}

.divider {
    border: 0;
    border-top: 1px solid var(--slate-200);
    margin-bottom: 2rem;
}

/* Custom Range Slider */
.range-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    background: var(--slate-300);
    border-radius: 2px;
    margin-bottom: 1rem;
    outline: none;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: var(--slate-800);
    border-radius: 50%;
    cursor: pointer;
}

.price-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--slate-700);
}

/* --- Content Area --- */
.content-area {
    flex: 1;
}

.page-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
    gap: 1rem;
}

@media (min-width: 640px) {
    .page-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.page-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-800);
    margin-bottom: 0.25rem;
}

.page-subtitle {
    font-size: 0.875rem;
    color: var(--slate-500);
}

.sort-wrapper {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 640px) {
    .sort-wrapper {
        display: flex;
    }
}

.sort-select {
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    background-color: var(--white);
    padding: 0.375rem 2.5rem 0.375rem 0.75rem;
    outline: none;
}

/* Mobile Action Buttons */
.mobile-actions {
    display: grid;
    grid-template-cols: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .mobile-actions {
        display: none;
    }
}

.mobile-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--white);
    border: 1px solid var(--slate-200);
    padding: 0.75rem;
    border-radius: var(--radius-xl);
    font-weight: 700;
    color: var(--slate-800);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: background-color 0.2s;
}

.mobile-btn:hover {
    background-color: var(--slate-50);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Product Card */
.product-card {
    background-color: var(--white);
    border-radius: var(--radius-2xl);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease-in-out;
}

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

.card-image-wrapper {
    position: relative;
    margin-bottom: 1rem;
    background-color: var(--slate-50);
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.badge-new {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background-color: var(--slate-800);
    color: var(--white);
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-sale {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background-color: var(--red-500);
    color: var(--white);
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-best {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background-color: var(--indigo-500);
    color: var(--white);
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.fav-btn {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.5rem;
    background-color: var(--white);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    color: var(--slate-400);
    box-shadow: var(--shadow-sm);
    transition: color 0.2s;
}

.fav-btn svg {
  color: #94a3b8;
  transition: color 0.2s ease, transform 0.2s ease;
}
.fav-btn.active {
    background-color: #ef4444;
}

.fav-btn.active svg {
  color: white;
}
.fav-btn:hover {
    color: var(--red-500);
    transform: scale(1.08);
}

.card-brand {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.card-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--slate-800);
    margin-bottom: 0.5rem;
    line-height: 1.25;
}

.rating-wrapper {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.stars {
    display: flex;
    color: var(--yellow-400);
}

.star-empty {
    color: var(--slate-200);
}

.review-count {
    font-size: 0.625rem;
    color: var(--slate-400);
    font-weight: 500;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
}

.price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--slate-800);
}

.price-group {
    display: flex;
    flex-direction: column;
}

.price-old {
    font-size: 0.75rem;
    color: var(--slate-400);
    text-decoration: line-through;
}

.add-btn {
    background-color: var(--slate-800);
    color: var(--white);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.add-btn:hover {
    background-color: var(--slate-700);
}

.add-text {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}



/* --- Footer --- */
.site-footer {
    background-color: var(--slate-900);
    color: var(--slate-300);
    padding-top: 4rem;
    padding-bottom: 2rem;
    margin-top: 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-brand-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.025em;
}

.footer-desc {
    font-size: 0.875rem;
    line-height: 1.625;
    margin-bottom: 1.5rem;
    max-width: 20rem;
    color: var(--slate-400);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: var(--slate-800);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.social-icon:hover {
    background-color: var(--slate-700);
}

.social-placeholder {
    width: 1rem;
    height: 1rem;
    background-color: var(--slate-300);
    border-radius: 2px;
}

.footer-heading {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: var(--white);
    transition: color 0.2s;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    background-color: var(--slate-800);
    border: none;
    border-radius: var(--radius-lg);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    width: 100%;
    color: var(--white);
    outline: none;
}

.newsletter-input:focus {
    ring: 1px solid var(--slate-500);
}

.newsletter-btn {
    background-color: var(--slate-700);
    color: var(--white);
    padding: 0.5rem;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.newsletter-btn:hover {
    background-color: var(--slate-600);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--slate-800);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a:hover {
    color: var(--white);
}

/* --- Drawers (Mobile) --- */
.drawer {
    position: fixed;
    inset: 0;
    z-index: 100;
    visibility: hidden;
    transition: visibility 0.3s;
}

.drawer.is-open {
    visibility: visible;
}

.drawer-backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(15, 23, 42, 0.5);
    /* slate-900/50 */
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s;
}

.drawer.is-open .drawer-backdrop {
    opacity: 1;
}

/* Filter Drawer Specifics */
.drawer-content-right {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 20rem;
    background-color: var(--white);
    box-shadow: var(--shadow-2xl);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.drawer.is-open .drawer-content-right {
    transform: translateX(0);
}

/* Sort Drawer Specifics */
.drawer-content-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
    box-shadow: var(--shadow-2xl);
    display: flex;
    flex-direction: column;
    max-height: 70vh;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 110;
}

.drawer.is-open .drawer-content-bottom {
    transform: translateY(0);
}

.drawer-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--slate-200);
}

.drawer-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-800);
}

.close-btn {
    padding: 0.5rem;
    color: var(--slate-400);
    background: none;
    border: none;
    cursor: pointer;
}

.close-btn:hover {
    color: var(--slate-600);
}

.drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.drawer-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--slate-200);
}

.btn-full {
    width: 100%;
    background-color: var(--slate-800);
    color: var(--white);
    padding: 0.75rem;
    border-radius: var(--radius-xl);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    border: none;
}

.btn-full-light {
    width: 100%;
    background-color: var(--slate-100);
    color: var(--slate-800);
    padding: 1rem;
    border-radius: var(--radius-xl);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    border: none;
}

.sort-option {
    width: 100%;
    text-align: left;
    padding: 1rem;
    border-radius: var(--radius-xl);
    font-weight: 600;
    color: var(--slate-600);
    background: none;
    border: none;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.sort-option:hover {
    background-color: var(--slate-50);
}

.sort-option.active {
    color: var(--slate-800);
    background-color: var(--slate-50);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Utility Helpers (SVG Sizing) */
svg {
    width: 100%;
    height: 100%;
}

.h-3 {
    height: 0.75rem;
}

.w-3 {
    width: 0.75rem;
}

.h-4 {
    height: 1rem;
}

.w-4 {
    width: 1rem;
}

.h-5 {
    height: 1.25rem;
}

.w-5 {
    width: 1.25rem;
}

.h-6 {
    height: 1.5rem;
}

.w-6 {
    width: 1.5rem;
}

.price-input-group {
    margin-bottom: 0.75rem;
}

.price-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
}

.price-input:focus {
    border-color: #111827;
}

.filter-actions {
    margin-top: 1.25rem;
}

.apply-filter-btn {
    width: 100%;
    padding: 12px 16px;
    background: #111827;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

.apply-filter-btn:hover {
    opacity: 0.9;
}

.double-range-wrapper {
    position: relative;
    height: 40px;
    margin-top: 1rem;
}

.slider-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: #dbe4f0;
    border-radius: 999px;
    transform: translateY(-50%);
}

.range-input {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    appearance: none;
    -webkit-appearance: none;
    background: none;
    pointer-events: none;
    margin: 0;
}

.range-input::-webkit-slider-runnable-track {
    height: 4px;
    background: transparent;
}

.range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #1f2a44;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
    margin-top: -8px;
}

.range-input::-moz-range-track {
    height: 4px;
    background: transparent;
}

.range-input::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #1f2a44;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
}

.price-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.75rem;
    font-weight: 600;
    color: #1f2a44;
}

.filter-actions {
    margin-top: 1.25rem;
}

.apply-filter-btn {
    width: 100%;
    padding: 12px 16px;
    background: #111827;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.search-input {
    width: 260px;
    height: 44px;
    padding: 0 14px;
    border: 1px solid #dbe2ea;
    border-radius: 10px;
    outline: none;
    font-size: 14px;
    background: #fff;
}

.search-input:focus {
    border-color: #1f2a44;
}

.search-btn {
    height: 44px;
    padding: 0 18px;
    border: none;
    border-radius: 10px;
    background: #0f1b3d;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

.search-btn:hover {
    opacity: 0.9;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-input-wrapper {
    position: relative;
    width: 300px;
    /* adjust if needed */
}

.search-input {
    width: 100%;
    height: 50px;
    padding: 0 40px 0 16px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    outline: none;
    font-size: 16px;
}

.clear-search-btn {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
    color: #6b7280;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: none;
}

.clear-search-btn:hover {
    color: #111827;
}

.cart-bounce {
    animation: cartBounce 0.3s ease;
}

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

    50% {
        transform: scale(1.25);
    }

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



.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 24px 0;
}

.page-link {
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid #dbe3ea;
    border-radius: 12px;
    background: #ffffff;
    color: #1f3f5b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.page-link:hover {
    background: #f3f7fb;
    border-color: #1f4b6e;
    color: #1f4b6e;
}

.page-link.active {
    background: #173b57;
    color: #ffffff;
    border-color: #173b57;
}

.page-link-nav {
    padding: 0 16px;
}

.page-link svg {
    width: 16px;
    height: 16px;
    stroke-width: 2;
}

.h-4.w-4 {
    display: flex;
    align-items: center;
    justify-content: center;
}

#productsContainer {
    transition: opacity 0.25s ease, transform 0.25s ease;
}

#productsContainer.is-loading {
    opacity: 0.45;
    transform: translateY(8px);
    pointer-events: none;
}

.pagination .page-link {
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.pagination .page-link:hover {
    transform: translateY(-1px);
}

.pagination .page-link:active {
    transform: scale(0.98);
}

.page-link.active {
    transform: scale(1.04);
}

.text-yellow-400 {
  color: #facc15;
}
.text-gray-300 {
  color: #d1d5db;
}
.out-stock-btn, .out-stock-btn:hover {
    background: #ccc !important;
    cursor: not-allowed !important;
    color: #666 !important;
}