@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary-purple: #8B5CF6;
    --light-purple: #A78BFA;
    --dark-purple: #6D28D9;
    --accent-purple: #C084FC;
    --neon-purple: #DDD6FE;
    --bg-dark: #0F0F0F;
    --bg-secondary: #1A1A1A;
    --bg-tertiary: #2A2A2A;
    --text-primary: #FFFFFF;
    --text-secondary: #B8B8B8;
    --text-muted: #6B7280;
    --border-subtle: rgba(139, 92, 246, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 50%, #2A1A40 100%);
    min-height: 100vh;
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 400;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(167, 139, 250, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 70%, rgba(196, 132, 252, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-purple), var(--light-purple));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--light-purple), var(--accent-purple));
}

/* Navigation */
nav {
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    margin: 1.5rem auto;
    padding: 1rem 2rem;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(139, 92, 246, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav:hover {
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(139, 92, 246, 0.2),
        0 0 24px rgba(139, 92, 246, 0.1);
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
}

nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

nav a:hover {
    color: var(--neon-purple);
    background: rgba(139, 92, 246, 0.1);
    transform: translateY(-1px);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-purple), var(--light-purple));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav a:hover::after {
    width: 80%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.9), rgba(26, 26, 26, 0.9));
    backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 4rem 3rem;
    margin: 2rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.1) 0%, 
        transparent 50%, 
        rgba(167, 139, 250, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero:hover::before {
    opacity: 1;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--neon-purple) 50%, var(--primary-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 60px rgba(139, 92, 246, 0.3);
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* User Info Card */
.user-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.9), rgba(26, 26, 26, 0.9));
    backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.user-info:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(139, 92, 246, 0.1);
}

.user-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid var(--primary-purple);
    box-shadow: 
        0 0 20px rgba(139, 92, 246, 0.4),
        0 0 40px rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
}

.user-avatar:hover {
    transform: scale(1.05);
    border-color: var(--light-purple);
    box-shadow: 
        0 0 30px rgba(139, 92, 246, 0.6),
        0 0 60px rgba(139, 92, 246, 0.3);
}

.user-details h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.user-details p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 400;
}

/* Category Sections */
.category-section {
    margin: 5rem 0;
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
}

.category-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
    letter-spacing: -0.02em;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-purple), var(--light-purple));
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.category-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 400;
    max-width: 500px;
    margin: 0 auto;
}

/* Store Grid */
.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Product Cards */
.product-card {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.9), rgba(26, 26, 26, 0.9));
    backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.05) 0%, 
        transparent 50%, 
        rgba(167, 139, 250, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 
        0 24px 80px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(139, 92, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Category-specific accents */
.menu-clients .product-card {
    border-left: 3px solid var(--primary-purple);
}

.menu-clients .product-card:hover {
    border-left-color: var(--light-purple);
    box-shadow: 
        0 24px 80px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.item-options .product-card {
    border-left: 3px solid var(--accent-purple);
}

.item-options .product-card:hover {
    border-left-color: var(--neon-purple);
    box-shadow: 
        0 24px 80px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(196, 132, 252, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.product-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.product-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--light-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(139, 92, 246, 0.3);
}

/* Options Container */
.options-container {
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.options-container label {
    display: block;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.options-container label:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateX(4px);
}

.options-container input[type="checkbox"],
.options-container input[type="radio"] {
    margin-right: 1rem;
    width: 18px;
    height: 18px;
    accent-color: var(--primary-purple);
    cursor: pointer;
}

.selected-total {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--light-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Modern Buttons */
.btn-add-single,
.btn-add-multiple,
.btn-add-exclusive {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-purple), var(--light-purple));
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 24px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-add-single::before,
.btn-add-multiple::before,
.btn-add-exclusive::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-add-single:hover::before,
.btn-add-multiple:hover::before,
.btn-add-exclusive:hover::before {
    left: 100%;
}

.btn-add-single:hover,
.btn-add-multiple:hover,
.btn-add-exclusive:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 40px rgba(139, 92, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-add-single:active,
.btn-add-multiple:active,
.btn-add-exclusive:active {
    transform: translateY(0);
    box-shadow: 
        0 4px 16px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Login Section */
.login-section {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.9), rgba(26, 26, 26, 0.9));
    backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 4rem 3rem;
    margin: 2rem 0;
    text-align: center;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.login-button {
    background: linear-gradient(135deg, #5865F2, #4752C4);
    color: white;
    border: none;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 24px rgba(88, 101, 242, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.login-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.login-button:hover::before {
    left: 100%;
}

.login-button:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 40px rgba(88, 101, 242, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: white;
}

/* Cart Count */
#cart-count {
    background: linear-gradient(135deg, var(--primary-purple), var(--light-purple));
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 0.5rem;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    color: var(--text-muted);
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.6), rgba(26, 26, 26, 0.6));
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    font-size: 0.9rem;
}

/* Toast Notifications */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95), rgba(26, 26, 26, 0.95));
    backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    color: var(--text-primary);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: 10000;
    max-width: 300px;
    font-weight: 500;
}

.toast.success {
    border-left: 3px solid #10B981;
}

.toast.error {
    border-left: 3px solid #EF4444;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-purple);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 3rem 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .store-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-card {
        padding: 2rem;
    }
    
    .user-info {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    nav {
        padding: 1rem;
    }
    
    nav ul {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 1.5rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .category-title {
        font-size: 1.8rem;
    }
    
    .product-card {
        padding: 1.5rem;
    }
    
    .btn-add-single,
    .btn-add-multiple,
    .btn-add-exclusive {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .login-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus States */
*:focus {
    outline: 2px solid var(--primary-purple);
    outline-offset: 2px;
}

/* Selection */
::selection {
    background: rgba(139, 92, 246, 0.3);
    color: var(--text-primary);
}
/* Enhanced Product Card Sizing */
.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: start; /* Prevent cards from stretching */
}

/* Single Item Cards (like Battlepass) */
.product-card.single-item {
    max-width: 400px;
    justify-self: center;
}

.product-card {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.9), rgba(26, 26, 26, 0.9));
    backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    height: fit-content; /* Don't stretch to match other cards */
}

/* Compact layout for single-option items */
.product-card .price {
    font-size: 2rem; /* Slightly smaller for single items */
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem; /* Reduced margin */
    background: linear-gradient(135deg, var(--primary-purple), var(--light-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(139, 92, 246, 0.3);
}

/* Compact button spacing for single items */
.product-card.single-item .btn-add-single {
    margin-top: 0.5rem; /* Reduced top margin */
}

/* Grid adjustments for mixed content */
.item-options .store-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    grid-auto-rows: max-content; /* Each row only as tall as needed */
}

/* Specific styling for different card types */
.battlepass-card {
    background: linear-gradient(135deg, 
        rgba(15, 15, 15, 0.9), 
        rgba(26, 26, 26, 0.9),
        rgba(42, 26, 64, 0.1)); /* Subtle purple tint */
    border-left: 3px solid #FFD700; /* Gold accent for battlepass */
    max-width: 380px;
    justify-self: center;
}

.battlepass-card:hover {
    border-left-color: #FFA500;
    box-shadow: 
        0 24px 80px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.battlepass-card .price {
    color: #FFD700;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

.battlepass-card .btn-add-single {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3);
}

.battlepass-card .btn-add-single:hover {
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.4);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .store-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card.single-item,
    .battlepass-card {
        max-width: none;
        justify-self: stretch;
    }
}
/* Enhanced Mobile-Friendly Option Labels */
.option-label {
    display: block;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid transparent;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
    min-height: 48px; /* Ensure minimum touch target size */
    display: flex;
    align-items: center;
    gap: 1rem;
}

.option-label:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateX(4px);
}

.option-label:active {
    transform: scale(0.98);
    background: rgba(139, 92, 246, 0.15);
}

.option-text {
    flex: 1;
    pointer-events: none; /* Prevent text selection issues */
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Enhanced Input Styling */
.option-label input[type="checkbox"],
.option-label input[type="radio"] {
    width: 20px;
    height: 20px;
    margin: 0;
    accent-color: var(--primary-purple);
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
}

/* Custom checkbox/radio styling for better mobile experience */
.option-label input[type="checkbox"]:focus,
.option-label input[type="radio"]:focus {
    outline: 2px solid var(--primary-purple);
    outline-offset: 2px;
}

/* Enhanced checked state styling */
.option-label:has(input:checked) {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.2);
}

/* Mobile-specific enhancements */
@media (max-width: 768px) {
    .option-label {
        padding: 1.25rem;
        margin-bottom: 0.75rem;
        min-height: 52px; /* Larger touch targets on mobile */
        border-radius: 16px;
    }
    
    .option-label input[type="checkbox"],
    .option-label input[type="radio"] {
        width: 22px;
        height: 22px;
    }
    
    .option-text {
        font-size: 1rem;
    }
    
    /* Enhanced touch feedback */
    .option-label:active {
        transform: scale(0.96);
        transition: transform 0.1s ease;
    }
}

@media (max-width: 480px) {
    .option-label {
        padding: 1rem;
        min-height: 48px;
    }
    
    .option-text {
        font-size: 0.9rem;
    }
}

/* Remove default focus styles and add custom ones */
.option-label input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.3);
    border-radius: 4px;
}

/* Better visual feedback for selected states */
.option-label input:checked + .option-text {
    color: var(--primary-purple);
    font-weight: 600;
}

/* Smooth transitions for all states */
.option-label,
.option-label input,
.option-text {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Fix for iOS Safari touch behavior */
.option-label {
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(139, 92, 246, 0.1);
}

/* Prevent text selection issues on mobile */
.options-container {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Re-enable text selection for other elements */
.product-card h3,
.product-card p,
.category-title,
.category-subtitle {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}
@media (max-width: 480px) {
    .product-card {
        padding: 2rem 1.5rem;
    }
    
    .product-card .price {
        font-size: 1.8rem;
        margin-bottom: 1.25rem;
    }
}