.nav-glass { background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); border-bottom: 1px solid #eee; }

.check-item {
    transition: all 0.3s ease;
}

.check-item:hover {
    background: #eff6ff;
    border-color: #3b82f6;
    transform: scale(1.02);
}

.price-card {
    transition: transform 0.3s ease;
}

.price-card:hover {
    transform: translateY(-10px);
}