/**
 * ULTRA MODERN DESIGN SYSTEM
 * BangHotDeals - Industry-Leading Design
 * Version: 1.0.0
 *
 * This CSS transforms the site into a cutting-edge,
 * React-level modern experience
 */

/* ============================================
   ROOT VARIABLES - PREMIUM COLOR SYSTEM
   ============================================ */
:root {
    /* Primary Gradient Colors */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-success: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    --gradient-warning: linear-gradient(135deg, #F2994A 0%, #F2C94C 100%);
    --gradient-danger: linear-gradient(135deg, #eb3349 0%, #f45c43 100%);
    --gradient-dark: linear-gradient(135deg, #0c0c1e 0%, #1a1a3e 100%);
    --gradient-mesh: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #667eea 100%);

    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 40px rgba(102, 126, 234, 0.4);
    --shadow-glow-pink: 0 0 40px rgba(240, 147, 251, 0.4);
}

/* ============================================
   ANIMATED BACKGROUND - SITE WIDE
   ============================================ */
body {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%) !important;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 20%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(240, 147, 251, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(118, 75, 162, 0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: -1;
}

/* ============================================
   ULTRA MODERN HEADER
   ============================================ */

/* Top Bar - Animated Gradient */
.header-top {
    background: linear-gradient(-45deg, #667eea, #764ba2, #f093fb, #667eea) !important;
    background-size: 400% 400% !important;
    animation: gradientShift 8s ease infinite !important;
    padding: 12px 0 !important;
    position: relative;
    overflow: hidden;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.header-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.header-top .container {
    position: relative;
    z-index: 2;
}

.header-top-left span {
    font-weight: 700 !important;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Main Header - Glassmorphism */
.header-main {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
    padding: 16px 0 !important;
    position: relative;
}

.header-main::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.5), rgba(240, 147, 251, 0.5), transparent);
}

/* Logo - 3D Effect */
.site-logo {
    font-size: 2rem !important;
    font-weight: 900 !important;
    background: var(--gradient-primary) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    position: relative;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    text-shadow: none !important;
}

.site-logo::before {
    content: '';
    position: absolute;
    inset: -5px;
    background: var(--gradient-primary);
    border-radius: 12px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    filter: blur(15px);
}

.site-logo:hover {
    transform: scale(1.05) translateY(-2px) !important;
}

.site-logo:hover::before {
    opacity: 0.3;
}

.site-logo span {
    font-size: 2.2rem !important;
    -webkit-text-fill-color: initial !important;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    animation: fireGlow 2s ease-in-out infinite;
}

@keyframes fireGlow {
    0%, 100% { filter: drop-shadow(0 2px 4px rgba(239, 68, 68, 0.5)); }
    50% { filter: drop-shadow(0 4px 12px rgba(239, 68, 68, 0.8)); }
}

/* Search Bar - Premium Glass Effect */
.search-form {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px) !important;
    border: 2px solid transparent !important;
    border-radius: 60px !important;
    box-shadow:
        0 4px 24px rgba(102, 126, 234, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    overflow: hidden !important;
    position: relative;
}

.search-form::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 60px;
    padding: 2px;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-form:focus-within {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow:
        0 12px 40px rgba(102, 126, 234, 0.25),
        0 0 0 4px rgba(102, 126, 234, 0.1) !important;
}

.search-form:focus-within::before {
    opacity: 1;
}

.search-form input[type="text"] {
    background: transparent !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    padding: 16px 24px !important;
}

.search-form input[type="text"]::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.search-form select {
    background: rgba(102, 126, 234, 0.08) !important;
    border-left: 1px solid rgba(102, 126, 234, 0.2) !important;
    font-weight: 600 !important;
    color: #667eea !important;
    padding: 0 20px !important;
}

.search-form button {
    background: var(--gradient-primary) !important;
    border-radius: 0 60px 60px 0 !important;
    padding: 16px 32px !important;
    font-weight: 800 !important;
    font-size: 0.95rem !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease !important;
}

.search-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.search-form button:hover::before {
    left: 100%;
}

.search-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Navigation - Modern Underline Effect */
.main-navigation {
    background: rgba(255, 255, 255, 0.6) !important;
    backdrop-filter: blur(10px) !important;
    border-top: none !important;
    padding: 8px 0 !important;
}

.nav-menu {
    gap: 8px !important;
}

.nav-menu a {
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    padding: 12px 20px !important;
    border-radius: 50px !important;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease !important;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 50px;
    transform: translateX(-50%);
    transition: all 0.3s ease;
    z-index: -1;
    opacity: 0;
}

.nav-menu a:hover,
.nav-menu .current-menu-item > a {
    color: white !important;
}

.nav-menu a:hover::before,
.nav-menu .current-menu-item > a::before {
    width: 100%;
    opacity: 1;
}

/* Quick Links - Floating Pills */
.nav-quick-links {
    display: flex;
    gap: 12px;
}

.nav-quick-links .quick-link {
    background: white !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 12px 24px !important;
    font-weight: 800 !important;
    font-size: 0.9rem !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    position: relative;
    overflow: hidden;
}

.nav-quick-links .quick-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-danger);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-quick-links .quick-link.hot {
    color: #ef4444 !important;
}

.nav-quick-links .quick-link.hot:hover {
    color: white !important;
    transform: translateY(-5px) scale(1.05) !important;
    box-shadow: 0 15px 35px rgba(239, 68, 68, 0.4) !important;
}

.nav-quick-links .quick-link.hot:hover::before {
    opacity: 1;
}

.nav-quick-links .quick-link.freebie {
    color: #10b981 !important;
}

.nav-quick-links .quick-link.freebie::before {
    background: var(--gradient-success);
}

.nav-quick-links .quick-link.freebie:hover {
    color: white !important;
    transform: translateY(-5px) scale(1.05) !important;
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4) !important;
}

.nav-quick-links .quick-link.freebie:hover::before {
    opacity: 1;
}

.nav-quick-links .quick-link.coupon {
    color: #667eea !important;
}

.nav-quick-links .quick-link.coupon::before {
    background: var(--gradient-primary);
}

.nav-quick-links .quick-link.coupon:hover {
    color: white !important;
    transform: translateY(-5px) scale(1.05) !important;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4) !important;
}

.nav-quick-links .quick-link.coupon:hover::before {
    opacity: 1;
}

/* Category Pills - Floating Tags */
.categories-menu {
    background: linear-gradient(180deg, rgba(255,255,255,0.8) 0%, rgba(245,247,250,0.9) 100%) !important;
    backdrop-filter: blur(10px) !important;
    padding: 20px 0 !important;
    border-bottom: none !important;
}

.category-pill {
    background: white !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 12px 24px !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    color: #4b5563 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    position: relative;
    overflow: hidden;
}

.category-pill::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.category-pill span {
    position: relative;
    z-index: 1;
}

.category-pill .count {
    background: rgba(102, 126, 234, 0.1);
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-left: 6px;
    transition: all 0.3s ease;
}

.category-pill:hover,
.category-pill.active {
    color: white !important;
    transform: translateY(-5px) scale(1.05) !important;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3) !important;
}

.category-pill:hover::before,
.category-pill.active::before {
    opacity: 1;
}

.category-pill:hover .count,
.category-pill.active .count {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

/* ============================================
   DEAL CARDS - 3D GLASSMORPHISM
   ============================================ */
.deal-card {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    border-radius: 24px !important;
    overflow: visible !important;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    position: relative;
}

.deal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-mesh);
    background-size: 300% 100%;
    border-radius: 24px 24px 0 0;
    animation: meshGradient 5s ease infinite;
    z-index: 10;
}

@keyframes meshGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.deal-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    border-radius: 26px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    filter: blur(20px);
}

.deal-card:hover {
    transform: translateY(-15px) rotateX(5deg) scale(1.02) !important;
    box-shadow:
        0 30px 60px rgba(102, 126, 234, 0.2),
        0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.deal-card:hover::after {
    opacity: 0.4;
}

/* Deal Image - Zoom & Shine */
.deal-image {
    border-radius: 20px 20px 0 0 !important;
    overflow: hidden !important;
    position: relative;
}

.deal-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-25deg);
    transition: left 0.7s ease;
}

.deal-card:hover .deal-image::after {
    left: 150%;
}

.deal-image img {
    transition: transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.deal-card:hover .deal-image img {
    transform: scale(1.15) !important;
}

/* Deal Badge - Floating 3D */
.deal-badge {
    background: var(--gradient-danger) !important;
    border-radius: 30px !important;
    padding: 10px 20px !important;
    font-weight: 900 !important;
    font-size: 0.8rem !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    box-shadow: 0 8px 25px rgba(235, 51, 73, 0.5) !important;
    animation: badgeFloat 3s ease-in-out infinite !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-5px) rotate(2deg); }
}

.deal-badge.verified {
    background: var(--gradient-success) !important;
    box-shadow: 0 8px 25px rgba(17, 153, 142, 0.5) !important;
}

.deal-badge.trending {
    background: var(--gradient-secondary) !important;
    box-shadow: 0 8px 25px rgba(240, 147, 251, 0.5) !important;
}

/* Deal Pricing - Gradient Text */
.deal-price-current {
    font-size: 2.5rem !important;
    font-weight: 900 !important;
    background: var(--gradient-primary) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    line-height: 1.2;
}

.deal-price-original {
    font-size: 1.1rem !important;
    color: #9ca3af !important;
    position: relative;
}

.deal-price-original::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 2px;
    background: #ef4444;
    transform: rotate(-5deg);
}

/* Discount Badge - Animated */
.deal-discount {
    background: var(--gradient-success) !important;
    border-radius: 30px !important;
    padding: 8px 16px !important;
    font-weight: 900 !important;
    font-size: 0.9rem !important;
    box-shadow: 0 6px 20px rgba(17, 153, 142, 0.4) !important;
    animation: discountPop 2s ease-in-out infinite !important;
}

@keyframes discountPop {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Get Deal Button - Premium CTA */
.btn-get-deal {
    background: var(--gradient-primary) !important;
    border-radius: 60px !important;
    padding: 18px 32px !important;
    font-weight: 900 !important;
    font-size: 1rem !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    position: relative;
    overflow: hidden;
    border: none !important;
}

.btn-get-deal::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.btn-get-deal:hover {
    transform: translateY(-5px) scale(1.05) !important;
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.5) !important;
}

.btn-get-deal:hover::before {
    left: 100%;
}

/* ============================================
   BUTTONS - PREMIUM STYLE
   ============================================ */
.btn-primary,
.btn.btn-primary {
    background: var(--gradient-primary) !important;
    border: none !important;
    border-radius: 60px !important;
    padding: 14px 32px !important;
    font-weight: 800 !important;
    font-size: 0.95rem !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.35) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover,
.btn.btn-primary:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.45) !important;
}

/* ============================================
   SECTION TITLES - MODERN STYLE
   ============================================ */
.section-title,
section h2 {
    font-size: 2.5rem !important;
    font-weight: 900 !important;
    background: var(--gradient-dark) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    position: relative;
    display: inline-block !important;
    margin-bottom: 40px !important;
}

.section-title::after,
section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--gradient-primary);
    border-radius: 10px;
}

/* ============================================
   FOOTER - PREMIUM DARK
   ============================================ */
.site-footer {
    background: var(--gradient-dark) !important;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-mesh);
    background-size: 300% 100%;
    animation: meshGradient 5s ease infinite;
}

.site-footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(240, 147, 251, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* ============================================
   WIDGETS - GLASSMORPHISM
   ============================================ */
.widget {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    border-radius: 24px !important;
    padding: 28px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.4s ease !important;
}

.widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12) !important;
}

.widget-title {
    font-size: 1.3rem !important;
    font-weight: 900 !important;
    background: var(--gradient-primary) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    border-bottom: 3px solid !important;
    border-image: var(--gradient-primary) 1 !important;
    padding-bottom: 15px !important;
    margin-bottom: 20px !important;
}

/* ============================================
   COUPON CODE - PREMIUM REVEAL
   ============================================ */
.coupon-code-box {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(240, 147, 251, 0.08)) !important;
    border: 3px dashed #667eea !important;
    border-radius: 20px !important;
    padding: 30px !important;
    position: relative;
    overflow: hidden;
}

.coupon-code-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(102, 126, 234, 0.1), transparent 30%);
    animation: couponSpin 8s linear infinite;
}

@keyframes couponSpin {
    100% { transform: rotate(360deg); }
}

.coupon-code {
    background: white !important;
    padding: 20px 40px !important;
    border-radius: 15px !important;
    font-size: 1.8rem !important;
    font-weight: 900 !important;
    letter-spacing: 4px !important;
    color: #667eea !important;
    -webkit-text-fill-color: #667eea !important;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.2) !important;
    border: 2px solid #667eea !important;
    position: relative;
    z-index: 2;
}

/* ============================================
   BACK TO TOP - FLOATING BUTTON
   ============================================ */
.back-to-top {
    background: var(--gradient-primary) !important;
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    box-shadow: 0 10px 35px rgba(102, 126, 234, 0.5) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    border: 3px solid rgba(255, 255, 255, 0.3) !important;
}

.back-to-top:hover {
    transform: translateY(-8px) scale(1.1) !important;
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.6) !important;
}

/* ============================================
   ANIMATIONS - SCROLL REVEAL
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.deal-card {
    animation: fadeInUp 0.6s ease forwards;
}

.deal-card:nth-child(1) { animation-delay: 0.1s; }
.deal-card:nth-child(2) { animation-delay: 0.2s; }
.deal-card:nth-child(3) { animation-delay: 0.3s; }
.deal-card:nth-child(4) { animation-delay: 0.4s; }
.deal-card:nth-child(5) { animation-delay: 0.5s; }
.deal-card:nth-child(6) { animation-delay: 0.6s; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .site-logo {
        font-size: 1.5rem !important;
    }

    .search-form {
        border-radius: 20px !important;
    }

    .search-form button {
        border-radius: 0 20px 20px 0 !important;
        padding: 12px 20px !important;
    }

    .deal-card:hover {
        transform: translateY(-8px) scale(1.01) !important;
    }

    .section-title,
    section h2 {
        font-size: 1.8rem !important;
    }

    .btn-get-deal {
        padding: 14px 24px !important;
    }
}

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