:root {
    --primary: #3B82F6;
    --primary-dark: #2563EB;
    --cta: #F97316;
    --cta-dark: #EA580C;
    --bg: #F8FAFC;
    --text: #1E293B;
    --border: #E2E8F0;
}

* { box-sizing: border-box; }

body {
    font-family: 'Work Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
}

.font-heading { font-family: 'Outfit', sans-serif; }

a { transition: color 0.2s; }
.hover-white:hover { color: #fff !important; }

.btn-primary { background: var(--primary); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }

.deal-card {
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
    cursor: pointer;
}
.deal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -8px rgba(0,0,0,0.1);
}

.deal-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: transform 0.3s;
}
.deal-card:hover .deal-img { transform: scale(1.05); }

.hero-gradient {
    background: linear-gradient(135deg, #1E3A5F 0%, #3B82F6 50%, #60A5FA 100%);
}

.badge-off {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #EF4444;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
}

.badge-store {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(255,255,255,0.9);
    color: #1E293B;
    font-size: 10px;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 20px;
}

.snap-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}
.snap-carousel::-webkit-scrollbar { display: none; }
.snap-carousel > * { scroll-snap-align: start; }

.hover-card {
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}
.hover-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -8px rgba(0,0,0,0.1) !important;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
