    /* Design System Tokens */
:root {
    /* Brand Colors */
    --primary-full: #259dd5;
    --primary-light: #66bae2;
    --primary-gradient: linear-gradient(135deg, #259dd5 0%, #66bae2 100%);
    --secondary-full: #f3792a;
    --secondary-light: #eba97c;
    --secondary-gradient: linear-gradient(135deg, #f3792a 0%, #eba97c 100%);

    /* Facet Colors */
    --facet-red: #ec1c24;
    --facet-green: #3aa756;
    --facet-purple: #7569a1;
    --facet-yellow: #ebbb3d;
    --facet-magenta: #b271a4;

    /* Neutrals */
    --gray-dark: #1e1e1e;
    --gray-medium: #808080;
    --gray-light: #d9d9d9;
    --white: #ffffff;

    /* Semantic Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;

    /* Typography */
    --font-heading: 'Manrope', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;

    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-xxl: 48px;

    /* Type Scale */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;

    /* Borders & Shadows */
    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    /* Animation */
    --duration-150: 150ms;
    --duration-200: 200ms;
    --duration-300: 300ms;
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
}
.product-card.spotlight{border-color: var(--secondary-full);
    background: linear-gradient(135deg, #fff8f2 0%, #ffebdb 100%);
    box-shadow: 0 0 30px rgba(243, 121, 42, 0.6), 0 0 60px rgba(243, 121, 42, 0.4), 0 8px 32px rgba(243, 121, 42, 0.3);
    position: relative;
    overflow: hidden;}
.product-card.bi-weekly{border-color: var(--secondary-full);
    background: linear-gradient(135deg, #fff8f2 0%, #ffebdb 100%);
    box-shadow: 0 0 30px rgba(243, 121, 42, 0.6), 0 0 60px rgba(243, 121, 42, 0.4), 0 8px 32px rgba(243, 121, 42, 0.3);
    position: relative;
    overflow: hidden;}

.cart-button {
    position: relative;
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    cursor: pointer;
    transition: all var(--duration-200) var(--ease-out);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    box-shadow: var(--shadow);
}

.cart-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--secondary-full);
    color: var(--white);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xs);
    font-weight: 600;
    min-width: 22px;
}

.cart-count.visible {
    display: flex;
    animation: cartBounce 0.6s ease-out;
}

@keyframes cartBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

/* Hero Section */
.hero {
    background: var(--primary-gradient);
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
            radial-gradient(circle at 25% 25%, rgba(255,255,255,0.1) 2px, transparent 2px),
            radial-gradient(circle at 75% 75%, rgba(255,255,255,0.1) 2px, transparent 2px);
    background-size: 60px 60px, 80px 80px;
    animation: heroFloat 25s infinite linear;
}

@keyframes heroFloat {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-40px, -40px); }
}

.hero__container {
    position: relative;
    z-index: 1;
    padding: var(--spacing-xxl) 0;
    text-align: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-xl);
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
}

.hero__title {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
}

@media (min-width: 768px) {
    .hero__title { font-size: var(--text-5xl); }
}

.hero__subtitle {
    font-size: var(--text-lg);
    opacity: 0.95;
    max-width: 650px;
    margin: 0 auto var(--spacing-xl);
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    max-width: 500px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .hero__stats {
        grid-template-columns: repeat(4, 1fr);
        max-width: 700px;
    }
}

.stat {
    text-align: center;
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
    transition: transform var(--duration-200) var(--ease-out);
}

.stat:hover {
    transform: translateY(-4px);
}

.stat__number {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    display: block;
}

.stat__label {
    font-size: var(--text-sm);
    opacity: 0.9;
}

/* Search Section */
.search-section {
    background: var(--white);
    padding: var(--spacing-xl) 0;
    border-bottom: 1px solid var(--gray-light);
    position: relative;
    z-index: 1000;
}

.search-bar {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-xl);
    padding: var(--spacing-sm);
    transition: all var(--duration-200) var(--ease-out);
    box-shadow: var(--shadow-sm);
    max-width: 1000px;
    margin: 0 auto;
}

.search-bar:focus-within {
    border-color: var(--primary-full);
    box-shadow: var(--shadow-md), 0 0 0 3px rgba(37, 157, 213, 0.1);
    transform: translateY(-2px);
}

.search-input {
    flex: 1;
    border: none;
    background: none;
    outline: none;
    font-size: var(--text-base);
    color: var(--gray-dark);
    padding: var(--spacing-md);
}

.search-input::placeholder {
    color: var(--gray-medium);
}

.filter-triggers {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    align-items: center;
}

.filter-trigger {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: var(--text-sm);
    cursor: pointer;
    transition: all var(--duration-200) var(--ease-out);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: 500;
    white-space: nowrap;
    min-width: 120px;
    justify-content: space-between;
}

.filter-trigger:hover,
.filter-trigger.active {
    border-color: var(--primary-full);
    background: var(--primary-full);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Products Section */
.products-section {
    padding: var(--spacing-xxl) 0;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
    gap: var(--spacing-lg);
}

.products-meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.results-count {
    font-weight: 600;
    color: var(--gray-dark);
    font-size: var(--text-lg);
}

.view-toggle {
    display: flex;
    background: var(--gray-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xs);
}

.view-btn {
    background: none;
    border: none;
    padding: var(--spacing-sm);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--duration-200) var(--ease-out);
    color: var(--gray-medium);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-btn.active {
    background: var(--white);
    color: var(--primary-full);
    box-shadow: var(--shadow-sm);
}

.sort-select {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    font-size: var(--text-sm);
    cursor: pointer;
    min-width: 180px;
    box-shadow: var(--shadow-sm);
}

.products-grid {
    display: grid;
    gap: var(--spacing-xl);
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.products-grid.list-view {
    grid-template-columns: 1fr;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--duration-300) var(--ease-out);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(20px);
}

.product-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.product-image {
    height: 180px;
    background: linear-gradient(135deg, var(--gray-light) 0%, #e6e6e6 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-medium);
    font-size: var(--text-sm);
    overflow: hidden;
}

.product-category {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(8px);
}
.product-category2 {
    top:50px;
}

.product-category.individual { background: rgba(37, 157, 213, 0.9); color: var(--white); }
.product-category.group { background: rgba(243, 121, 42, 0.9); color: var(--white); }
.product-category.toolkit { background: rgba(59, 130, 246, 0.9); color: var(--white); }
.product-category.assessment { background: rgba(16, 185, 129, 0.9); color: var(--white); }
.product-category.service { background: rgba(245, 158, 11, 0.9); color: var(--white); }
.product-category.bundle { background: rgba(178, 113, 164, 0.9); color: var(--white); }

.sample-badge {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: rgba(30, 30, 30, 0.8);
    color: var(--white);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius);
    font-size: var(--text-xs);
    font-weight: 600;
    text-decoration: none;
}

.sample-badge ~ img{filter:blur(5px)}

.product-content {
    padding: var(--spacing-xl);
}

.product-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--gray-dark);
    line-height: 1.3;
}

.product-description {
    color: var(--gray-medium);
    font-size: var(--text-sm);
    line-height: 1.5;
    margin-bottom: var(--spacing-lg);
}

.product-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--text-sm);
    color: var(--gray-medium);
    background: rgba(37, 157, 213, 0.05);
    padding: var(--spacing-sm);
    border-radius: var(--radius);
}

.product-price {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--primary-full);
    margin-bottom: var(--spacing-lg);
}

.product-actions {
    display: flex;
    gap: var(--spacing-md);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: var(--text-base);
    cursor: pointer;
    transition: all var(--duration-200) var(--ease-out);
    text-decoration: none;
    border: none;
    flex: 1;
}

.btn--primary {
    background: var(--primary-gradient);
    color: var(--white);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--outline {
    background: transparent;
    color: var(--gray-dark);
    border: 1px solid var(--gray-light);
}

.btn--outline:hover {
    border-color: var(--primary-full);
    color: var(--primary-full);
}

.btn--small {
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: var(--text-sm);
}

/* Spotlight Section */
.spotlight-section {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    position: relative;
    z-index: 1;
}

.spotlight-grid {
    display: grid;
    gap: var(--spacing-xl);
}

@media (min-width: 1024px) {
    .spotlight-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.spotlight-card {
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xxl);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.spotlight-badge {
    background: var(--secondary-full);
    color: var(--white);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: var(--spacing-lg);
}

.spotlight-title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
}

.spotlight-description {
    font-size: var(--text-lg);
    opacity: 0.95;
    margin-bottom: var(--spacing-lg);
}

.spotlight-pricing {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.price-original {
    font-size: var(--text-lg);
    text-decoration: line-through;
    opacity: 0.7;
}

.price-discounted {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
}

.discount-badge {
    background: var(--error);
    color: var(--white);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius);
    font-size: var(--text-xs);
    font-weight: 700;
}

.spotlight-actions {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.btn--secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn--secondary:hover {
    background: var(--white);
    color: var(--primary-full);
}

/* Deals Sidebar */
.deals-sidebar {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    border: 1px solid var(--gray-light);
    box-shadow: var(--shadow-lg);
    height: fit-content;
}

.deals-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    text-align: center;
    color: var(--gray-dark);
}

.deal-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    transition: all var(--duration-300) var(--ease-out);
    border-left: 4px solid var(--secondary-full);
}

.deal-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.deal-badge {
    background: var(--secondary-gradient);
    color: var(--white);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: var(--spacing-sm);
}

.deal-name {
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.deal-pricing {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.deal-price-original {
    text-decoration: line-through;
    color: var(--gray-medium);
    font-size: var(--text-sm);
}

.deal-price-discounted {
    color: var(--secondary-full);
    font-weight: 700;
}

.deal-btn {
    width: 100%;
    background: var(--secondary-gradient);
    color: var(--white);
    border: none;
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--duration-200) var(--ease-out);
}

.deal-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Fixed Dropdown CSS - Clean Implementation */
.dropdown {
    position: relative;
    z-index: 1;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    pointer-events: none;
    max-height: 250px;
    overflow-y: auto;
}

.dropdown.open {
    z-index: 10000;
}

.dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-item {
    padding: var(--spacing-md);
    cursor: pointer;
    transition: all var(--duration-150) var(--ease-out);
    border-bottom: 1px solid rgba(217, 217, 217, 0.3);
    font-size: var(--text-sm);
    position: relative;
    background: var(--white);
}

.dropdown-item:hover {
    background: rgba(37, 157, 213, 0.05);
    color: var(--primary-full);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item.selected {
    background: var(--primary-full);
    color: var(--white);
    font-weight: 600;
}

.dropdown-item.selected::after {
    content: '✓';
    position: absolute;
    right: var(--spacing-md);
    top: 50%;
    transform: translateY(-50%);
}

/* Cart Modal */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 10400;
    opacity: 0;
    transition: all var(--duration-300) var(--ease-out);
    pointer-events: none;
}

.modal-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: var(--white);
    border-radius: var(--radius-xl);
    z-index: 1050;
    max-width: 600px;
    width: 95%;
    max-height: 85vh;
    overflow: hidden;
    transition: all var(--duration-300) var(--ease-out);
    opacity: 0;
    box-shadow: var(--shadow-xl);
}

.modal-backdrop.open .modal {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    display: block;
}

.modal-header {
    background: var(--primary-gradient);
    color: var(--white);
    padding: var(--spacing-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: var(--spacing-sm);
    border-radius: var(--radius);
    transition: all var(--duration-200) var(--ease-out);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-body {
    padding: var(--spacing-xl);
    max-height: 400px;
    overflow-y: auto;
}

.cart-empty {
    text-align: center;
    padding: var(--spacing-xxl);
    color: var(--gray-medium);
}

.cart-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg) 0;
    border-bottom: 1px solid var(--gray-light);
}

.cart-item-image {
    width: 60px;
    height: 60px;
    background: var(--gray-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cart-item-details {
    flex: 1;
    min-width: 0;
}

.cart-item-info {
    margin-bottom: var(--spacing-md);
}

.cart-item-name {
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.cart-item-price {
    color: var(--primary-full);
    font-weight: 600;
    font-size: var(--text-sm);
}

.cart-item-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

@media (max-width: 768px) {
    .cart-item-options {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
}

.cart-option {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.cart-option-label {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--gray-dark);
}

.cart-option-select {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: var(--spacing-sm);
    font-size: var(--text-sm);
    color: var(--gray-dark);
    cursor: pointer;
    transition: border-color var(--duration-200) var(--ease-out);
}

.cart-option-select:focus {
    outline: none;
    border-color: var(--primary-full);
    box-shadow: 0 0 0 2px rgba(37, 157, 213, 0.2);
}

.cart-option-select:hover {
    border-color: var(--primary-light);
}

.cart-item-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    flex-shrink: 0;
}

.quantity-control {
    display: flex;
    align-items: center;
    background: var(--gray-light);
    border-radius: var(--radius);
    overflow: hidden;
}

.quantity-btn {
    background: none;
    border: none;
    padding: var(--spacing-sm);
    cursor: pointer;
    color: var(--gray-medium);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover:not(:disabled) {
    background: var(--primary-full);
    color: var(--white);
}

.quantity-input {
    border: none;
    background: var(--white);
    text-align: center;
    width: 40px;
    height: 32px;
    font-weight: 600;
}

.remove-btn {
    background: var(--error);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: var(--spacing-md);
}

.modal-footer {
    background: #f9fafb;
    padding: var(--spacing-xl);
    border-top: 1px solid var(--gray-light);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    font-size: var(--text-xl);
    font-weight: 700;
}

.cart-actions {
    display: flex;
    gap: var(--spacing-md);
}


/* Responsive Design */
@media (max-width: 768px) {
    .hero__container {
        padding: var(--spacing-xl) 0;
    }

    .hero__title {
        font-size: var(--text-3xl);
    }

    .search-bar {
        flex-direction: column;
        align-items: stretch;
        gap: var(--spacing-md);
        max-width: 100%;
    }

    .filter-triggers {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
        width: 100%;
    }

    .filter-trigger {
        min-width: auto;
        justify-content: center;
        text-align: center;
    }

    .filter-trigger span {
        font-size: var(--text-xs);
    }

    .dropdown-menu {
        left: 0;
        right: 0;
        min-width: auto;
        max-width: 100%;
    }

    .spotlight-grid {
        grid-template-columns: 1fr;
    }

    .spotlight-card {
        padding: var(--spacing-xl);
    }

    .spotlight-title {
        font-size: var(--text-2xl);
    }

    .products-header {
        flex-direction: column;
        align-items: stretch;
        gap: var(--spacing-md);
    }

    .products-meta {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .modal {
        width: 95%;
        max-height: 90vh;
    }

    .modal-header,
    .modal-body,
    .modal-footer {
        padding: var(--spacing-lg);
    }

    .cart-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .filter-triggers {
        grid-template-columns: 1fr;
    }

    .hero__stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .spotlight-pricing {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
    }

    .spotlight-actions {
        flex-direction: column;
        width: 100%;
    }

    .spotlight-actions .btn {
        width: 100%;
    }
}

/* Loading & Animation */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.fade-in {
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Toast Notifications */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-xl);
    z-index: 108000;
    transform: translateX(400px);
    transition: all var(--duration-300) var(--ease-out);
    max-width: 400px;
}

.toast.show {
    transform: translateX(0);
}

.toast.success { border-left: 4px solid var(--success); }
.toast.error { border-left: 4px solid var(--error); }
.toast.warning { border-left: 4px solid var(--warning); }
.toast.info { border-left: 4px solid var(--info); }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

@media (min-width: 640px) { .container { padding: 0 var(--spacing-lg); } }
@media (min-width: 1024px) { .container { padding: 0 var(--spacing-xl); } }
