:root {
    --bg-dark: #fff9fd;
    --neon-blue: #f9a8d4;
    --neon-purple: #fbbf24;
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(249, 168, 212, 0.28);
}

body {
    background-color: var(--bg-dark);
    color: #3f2852;
    font-family: 'Inter', sans-serif;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Glassmorphism */
.glass {
    background: var(--glass-bg);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

.header-glass {
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 242, 251, 0.88) 50%, rgba(255, 248, 227, 0.9) 100%);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
}

/* Scrollbar Compatibility Fix */
.no-scrollbar {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none;    /* Firefox */
}
.no-scrollbar::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.neon-text {
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(249, 168, 212, 0.35);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(90deg, var(--neon-blue) 0%, var(--neon-purple) 100%);
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 16px;
    font-weight: 800;
    transition: transform 0.2s ease;
}
.btn-primary:active {
    transform: scale(0.96);
}

/* Banner Mask */
.mask-gradient {
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 50%, rgba(0,0,0,0));
    mask-image: linear-gradient(to left, rgba(0,0,0,1) 50%, rgba(0,0,0,0));
}

/* Product Card Effect */
.glass-card {
    transition: all 0.3s ease;
    cursor: pointer;
}
.glass-card:active {
    transform: scale(0.95);
    border-color: rgba(0, 209, 255, 0.4);
}

.home-category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 96px;
    border-radius: 1rem;
    border: 1px solid rgba(249, 168, 212, 0.35);
    background: rgba(255, 255, 255, 0.75);
    font-size: 0.72rem;
    font-weight: 700;
    color: #6f546a;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-category-card:active {
    transform: scale(0.97);
}

/* Bottom Navigation Styles */
.summary-glass {
    background: linear-gradient(180deg, rgba(255, 251, 255, 0.96) 0%, rgba(255, 244, 251, 0.96) 60%, rgba(255, 249, 234, 0.95) 100%);
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-item {
    color: #9b7a8e; 
    font-size: 1.4rem;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-item.active {
    color: var(--neon-blue);
    filter: drop-shadow(0 0 8px rgba(249, 168, 212, 0.7));
    transform: translateY(-5px);
}

.light-theme {
    background: linear-gradient(140deg, #ffffff 0%, #fff4fb 55%, #fff7e8 100%);
    color: #3f2852;
}

.light-theme .text-white {
    color: #3f2852 !important;
}

.light-theme .text-gray-500 {
    color: #7b5a75 !important;
}

.light-theme .text-gray-400 {
    color: #6f546a !important;
}

.light-theme .text-gray-300 {
    color: #5f435e !important;
}

.light-theme .glass,
.light-theme .glass-card {
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(249, 168, 212, 0.25);
}