body { 
    font-family: 'Montserrat', sans-serif; 
    scroll-behavior: smooth; 
    overflow-x: hidden;
}

.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 30px -10px rgba(16, 185, 129, 0.2), 
                0 15px 15px -10px rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
}

.green-gradient {
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #10b981; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #059669; }

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Modal Transition */
#product-modal.hidden { opacity: 0; pointer-events: none; transform: scale(0.95); }
#product-modal { transition: all 0.3s ease-out; }

/* Badge styles */
.badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    color: #ffffff;
    z-index: 10;
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: #10b981;
    z-index: 100;
}

.fade-in-list {
    animation: fadeIn 0.5s ease-in;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }