:root {
    /* Light Mode Colors */
    --light-bg-primary: #ffffff;
    --light-bg-secondary: #f8f9fa;
    --light-bg-card: #ffffff;
    --light-bg-hover: #f1f3f5;
    --light-text-primary: #212529;
    --light-text-secondary: #6c757d;
    --light-text-muted: #adb5bd;
    --light-border-color: #dee2e6;
    --light-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --light-shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    
    /* Dark Mode Colors */
    --dark-bg-primary: #0f172a;
    --dark-bg-secondary: #1e293b;
    --dark-bg-card: #334155;
    --dark-bg-hover: #475569;
    --dark-text-primary: #f1f5f9;
    --dark-text-secondary: #cbd5e1;
    --dark-text-muted: #94a3b8;
    --dark-border-color: #475569;
    --dark-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    --dark-shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.6);
    --dark-shadow-glow: 0 0 20px rgba(49, 203, 182, 0.3);
    
    /* Accent Colors */
    --primary: #ef6259;
    --primary-dark: #d6453e;
    --secondary: #31cbb6;
    --accent: #31cbb6;
    --mint-green: #e8f5f1;
    --light-mint: #d1f2eb;
    
    /* UI Elements */
    --success: #28a745;
    --success-light: rgba(40, 167, 69, 0.2);
    --info: #17a2b8;
    --info-light: rgba(23, 162, 184, 0.2);
    --warning: #ffc107;
    --white: #ffffff;
    
    /* Social & Brand Colors */
    --whatsapp: #25D366;
    --whatsapp-hover: #128C7E;
    --udemy: #A435F0;
    --udemy-hover: #8E2AE0;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #ef6259, #d6453e);
    --gradient-secondary: linear-gradient(135deg, #31cbb6, #2aa896);
    --gradient-success: linear-gradient(135deg, #28a745, #218838);
    --gradient-hero: linear-gradient(135deg, rgba(239, 98, 89, 0.9), rgba(49, 203, 182, 0.9));
    
    /* Spacing & Sizing */
    --radius: 12px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

/* Theme-based variables */
html[data-theme="light"] {
    --bg-primary: var(--light-bg-primary);
    --bg-secondary: var(--light-bg-secondary);
    --bg-card: var(--light-bg-card);
    --bg-hover: var(--light-bg-hover);
    --text-primary: var(--light-text-primary);
    --text-secondary: var(--light-text-secondary);
    --text-muted: var(--light-text-muted);
    --border-color: var(--light-border-color);
    --shadow: var(--light-shadow);
    --shadow-hover: var(--light-shadow-hover);
}

html[data-theme="dark"] {
    --bg-primary: var(--dark-bg-primary);
    --bg-secondary: var(--dark-bg-secondary);
    --bg-card: var(--dark-bg-card);
    --bg-hover: var(--dark-bg-hover);
    --text-primary: var(--dark-text-primary);
    --text-secondary: var(--dark-text-secondary);
    --text-muted: var(--dark-text-muted);
    --border-color: var(--dark-border-color);
    --shadow: var(--dark-shadow);
    --shadow-hover: var(--dark-shadow-hover);
    --shadow-glow: var(--dark-shadow-glow);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
    transition: var(--transition);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(49, 203, 182, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(239, 98, 89, 0.05) 0%, transparent 50%);
}

/* Theme Toggle Button - Moved to avoid hamburger menu */
.theme-toggle-container {
    position: fixed;
    bottom: 80px; /* Moved up to avoid overlapping with social proof */
    right: 20px;
    z-index: 1002;
    transition: transform 0.3s ease;
}

.theme-toggle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.theme-toggle:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.theme-toggle i {
    font-size: 20px;
    color: var(--text-primary);
    transition: var(--transition);
}

.theme-toggle .sun-icon {
    display: none;
}

.theme-toggle .moon-icon {
    display: block;
}

html[data-theme="light"] .theme-toggle .sun-icon {
    display: block;
}

html[data-theme="light"] .theme-toggle .moon-icon {
    display: none;
}

/* Global Search Bar - Added hide on scroll functionality */
.global-search-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-primary);
    backdrop-filter: blur(10px);
    z-index: 1001;
    padding: 15px 20px;
    box-shadow: var(--shadow);
    border-bottom: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.global-search-container .search-bar {
    display: flex;
    align-items: center;
    background: var(--bg-card);
    border-radius: 50px;
    padding: 12px 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.global-search-container .search-bar:focus-within {
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.global-search-container .search-bar i {
    color: var(--text-muted);
    margin-right: 10px;
}

.global-search-container .search-input {
    border: none;
    background: none;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--text-primary);
    width: 100%;
    outline: none;
}

.global-search-container .search-input::placeholder {
    color: var(--text-muted);
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    border: 1px solid var(--border-color);
    margin-top: 10px;
    max-height: 300px;
    overflow-y: auto;
    display: none;
    z-index: 1002;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.search-result-item:hover {
    background: var(--bg-hover);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-logo {
    width: 40px;
    height: 40px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.search-result-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.search-result-content {
    flex: 1;
}

.search-result-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.search-result-type {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--text-muted);
}

.search-result-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-result-discount {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--primary);
}

.search-no-results {
    padding: 15px;
    text-align: center;
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

/* Animated Header - Mobile First with hide on scroll */
.main-header {
    position: fixed;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 9px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border-color);
    animation: slideDown 0.8s ease forwards;
    transition: transform 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.brand-logo {
    height: 70px;
    object-fit: contain;
    max-width: 180px;
    transition: var(--transition);
}

.brand-logo:hover {
    transform: scale(1.05);
}

/* Mobile Menu Button - Enhanced */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
    padding: 0;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: var(--transition);
    position: relative;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.main-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary);
}

.auth-item-mobile {
    display: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.auth-btn {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.auth-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(239, 98, 89, 0.3);
}

/* WhatsApp Support Button - Mobile Enhanced */
.whatsapp-support-container {
    display: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 100;
}

.whatsapp-support {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--whatsapp);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    z-index: 102;
}

.whatsapp-support:hover {
    background-color: var(--whatsapp-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.6);
}

.whatsapp-support i {
    font-size: 24px;
    animation: whatsappIconFloat 3s ease-in-out infinite;
}

@keyframes whatsappIconFloat {
    0%, 100% { 
        transform: translateY(0); 
    }
    50% { 
        transform: translateY(-5px); 
    }
}

.need-help-bubble {
    position: absolute;
    top: 60px;
    right: 0;
    background-color: var(--whatsapp);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 8px rgba(37, 211, 102, 0.3);
    opacity: 0;
    transform: translateY(10px);
    animation: needHelpAnimation 8s infinite;
    z-index: 101;
    white-space: nowrap;
}

.need-help-bubble::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    border-width: 0 8px 8px 8px;
    border-style: solid;
    border-color: transparent transparent var(--whatsapp) transparent;
}

@keyframes needHelpAnimation {
    0%, 100% { 
        opacity: 0; 
        transform: translateY(10px); 
    }
    20%, 80% { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.whatsapp-tooltip {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--bg-card);
    color: var(--text-primary);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 99;
    border: 1px solid var(--border-color);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent var(--bg-card);
}

.whatsapp-support:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Container - Mobile First */
.container {
    display: flex;
    flex-direction: column;
    padding: 20px;
    max-width: 100%;
    position: relative;
    z-index: 1;
    padding-top: 140px;
}

/* Section Headers - Mobile Enhanced */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top:10px;
    margin-bottom: 25px;
    padding: 0 5px;
    flex-wrap: wrap;
    gap: 15px;
}

.section-title-container {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(22px, 4vw, 28px);
    color: var(--text-primary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    color: var(--primary);
    font-size: 0.9em;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 98, 89, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(239, 98, 89, 0.3);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 98, 89, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(239, 98, 89, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(239, 98, 89, 0);
    }
}

.live-indicator span {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

.section-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.view-all-btn, .filter-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.view-all-btn:hover, .filter-btn:hover {
    background: var(--bg-hover);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Newest Coupons Section - Mobile Enhanced */
.newest-coupons-section {
    margin-bottom: 40px;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

.newest-coupons-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.newest-coupons-carousel {
    display: flex;
    gap: 20px;
    padding: 10px 0 20px;
    transition: transform 0.5s ease;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.newest-coupons-carousel::-webkit-scrollbar {
    display: none;
}

.newest-coupon-card {
    flex: 0 0 clamp(280px, 40vw, 320px);
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border-color);
    position: relative;
}

.newest-coupon-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--primary);
}

.newest-coupon-header {
    position: relative;
    padding: 20px;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-card));
    border-bottom: 1px solid var(--border-color);
}

.newest-coupon-logo {
    width: 90px;
    height: 90px;
    background: transparent;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.newest-coupon-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.newest-coupon-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-primary);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(239, 98, 89, 0.4);
}

.newest-coupon-badge i {
    font-size: 10px;
}

.newest-coupon-content {
    padding: 20px;
}

.newest-coupon-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.newest-coupon-discount {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 12px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newest-coupon-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
}

.newest-coupon-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.newest-coupon-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}

.newest-coupon-feature i {
    color: var(--secondary);
    font-size: 12px;
}

.newest-coupon-footer {
    padding: 0 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.newest-coupon-cta {
    background: var(--gradient-secondary);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(49, 203, 182, 0.4);
}

.newest-coupon-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(49, 203, 182, 0.5);
}

.newest-coupon-timer {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
}

.newest-coupon-timer i {
    font-size: 10px;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    pointer-events: all;
}

.carousel-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: scale(1.1);
}

/* Today's Deals Section - Mobile Enhanced */
.today-deals-section {
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.deal-countdown {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(49, 203, 182, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(49, 203, 182, 0.3);
}

.deal-countdown i {
    color: var(--secondary);
    font-size: 14px;
}

.deal-countdown span {
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary);
}

#dealTimer {
    font-family: 'Courier New', monospace;
    font-weight: 700;
}

.today-deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.today-deal-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border-color);
    position: relative;
}

.today-deal-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--secondary);
}

.deal-card-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.deal-store-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.deal-store-logo {
    width: 80px;
    height: 80px;
    background: transparent;
    border-radius: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.deal-store-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.deal-store-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-primary);
}

.deal-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 193, 7, 0.1);
    padding: 6px 10px;
    border-radius: 20px;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.deal-rating i {
    color: #ffc107;
    font-size: 12px;
}

.deal-rating span {
    font-size: 13px;
    font-weight: 600;
    color: #ffc107;
}

.deal-card-body {
    padding: 20px;
}

.deal-discount {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 36px;
    color: var(--secondary);
    margin-bottom: 12px;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.deal-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.4;
}

.deal-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.deal-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-secondary);
}

.deal-stat i {
    color: var(--primary);
    font-size: 12px;
}

.deal-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.deal-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}

.deal-feature i {
    color: var(--success);
    font-size: 12px;
}

.deal-card-footer {
    padding: 0 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.deal-cta {
    background: var(--gradient-secondary);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(49, 203, 182, 0.4);
}

.deal-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(49, 203, 182, 0.5);
}

.deal-urgency {
    background: rgba(239, 98, 89, 0.1);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(239, 98, 89, 0.3);
}

/* Main Coupons Section - Mobile First */
.coupons-section {
    background: transparent;
    border-radius: 0px;
    padding: 30px 20px;
    margin: 30px 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.5s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.coupons-header {
    text-align: center;
    margin-bottom: 30px;
}

.coupons-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(24px, 5vw, 32px);
    color: var(--text-primary);
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--primary), #ff9a76);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coupons-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(14px, 2vw, 16px);
    color: var(--text-secondary);
    margin-bottom: 25px;
}

/* Search Container - Mobile Enhanced */
.search-container {
    max-width: 500px;
    margin: 0 auto 25px;
}

.search-container .search-bar {
    display: flex;
    align-items: center;
    background: var(--bg-secondary);
    border-radius: 50px;
    padding: 12px 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.search-container .search-bar:focus-within {
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.search-container .search-bar i {
    color: var(--text-muted);
    margin-right: 10px;
}

.search-container .search-input {
    border: none;
    background: none;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--text-primary);
    width: 100%;
    outline: none;
}

.search-container .search-input::placeholder {
    color: var(--text-muted);
}

/* Category Tabs - Mobile Enhanced */
.category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.category-tab {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: clamp(12px, 2vw, 14px);
    color: var(--text-secondary);
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.category-tab:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    background: var(--bg-hover);
}

.category-tab.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(239, 98, 89, 0.4);
    border-color: transparent;
}

/* Featured Deals Section - Mobile Enhanced */
.featured-deals-section {
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.5s forwards;
}

.featured-deals-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(20px, 4vw, 24px);
    color: var(--text-primary);
    margin-bottom: 20px;
    text-align: center;
}

.featured-deals-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--bg-secondary);
}

.featured-deals-carousel::-webkit-scrollbar {
    height: 8px;
}

.featured-deals-carousel::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: 10px;
}

.featured-deals-carousel::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.featured-deal-card {
    flex: 0 0 clamp(120px, 20vw, 150px);
    height: clamp(120px, 20vw, 150px);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.featured-deal-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.featured-deal-image {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.featured-deal-card:hover .featured-deal-image {
    transform: scale(1.1);
}

/* Coupon Grid - Mobile First */
.coupons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.coupon-card {
    background: var(--bg-secondary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid var(--border-color);
}

.coupon-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.coupon-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
}

.coupon-store-logo {
    width: 80px;
    height: 80px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
}

.coupon-discount-badge {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: white;
    background: var(--gradient-primary);
    padding: 5px 10px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(239, 98, 89, 0.4);
    position: relative;
    overflow: hidden;
}

.coupon-discount-badge.shimmer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    100% {
        left: 100%;
    }
}

.coupon-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.coupon-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.coupon-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.4;
}

.coupon-features {
    margin-bottom: 15px;
}

.coupon-feature {
    display: flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.coupon-feature i {
    margin-right: 8px;
    color: var(--secondary);
    font-size: 14px;
}

.coupon-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.coupon-remaining, 
.coupon-uses {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

.coupon-remaining i, 
.coupon-uses i {
    margin-right: 4px;
}

.remaining-count, 
.uses-count {
    font-weight: 600;
    color: var(--primary);
    margin-left: 4px;
}

.coupon-trust {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--success);
    display: flex;
    align-items: center;
    margin-top: auto;
}

.coupon-trust i {
    margin-right: 4px;
}

.coupon-cta-container {
    padding: 0 20px 20px;
    display: flex;
    justify-content: center;
}

.coupon-cta {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: white;
    background: var(--gradient-secondary);
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    cursor: pointer;
    width: 65%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(49, 203, 182, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.coupon-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(49, 203, 182, 0.5);
}

.coupon-cta i {
    margin-right: 8px;
}

/* Animated CTA Button */
@keyframes pulse-cta {
    0% {
        transform: translateY(0);
        box-shadow: 0 4px 10px rgba(49, 203, 182, 0.4);
    }
    50% {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(49, 203, 182, 0.6);
    }
    100% {
        transform: translateY(0);
        box-shadow: 0 4px 10px rgba(49, 203, 182, 0.4);
    }
}

.animated-cta {
    animation: pulse-cta 2s infinite;
}

/* Animated Verified Label */
@keyframes glow {
    0% {
        text-shadow: 0 0 5px rgba(40, 167, 69, 0.5);
    }
    50% {
        text-shadow: 0 0 15px rgba(40, 167, 69, 0.8);
    }
    100% {
        text-shadow: 0 0 5px rgba(40, 167, 69, 0.5);
    }
}

.animated-label {
    animation: glow 2s infinite;
}

/* No Results Message */
.no-results {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-secondary);
}

.no-results i {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 15px;
    opacity: 0.7;
}

.no-results h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.no-results p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    margin: 0;
}

/* Load More Button */
.load-more-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.load-more-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(239, 98, 89, 0.4);
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(239, 98, 89, 0.5);
}

/* Testimonial Section - Mobile Enhanced */
.testimonial-section {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 30px 20px;
    margin: 30px 0;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.6s forwards;
    border: 1px solid var(--border-color);
}

.testimonial-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(20px, 4vw, 24px);
    color: var(--text-primary);
    margin-bottom: 20px;
    text-align: center;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 20px;
    text-align: center;
}

.testimonial-content {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    font-size: 60px;
    color: var(--primary);
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    text-align: left;
}

.testimonial-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-primary);
}

.testimonial-role {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-muted);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

/* Review Button */
.review-button-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.review-btn {
    display: inline-flex;
    align-items: center;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(239, 98, 89, 0.4);
}

.review-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(239, 98, 89, 0.5);
}

.review-btn i {
    margin-right: 8px;
    font-size: 18px;
}

/* Value Proposition - Mobile Enhanced */
.value-prop {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 30px 20px;
    margin: 30px 0;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.8s forwards;
    border: 1px solid var(--border-color);
}

.value-prop-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--text-primary);
    text-align: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-prop-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.value-prop-item {
    display: flex;
    align-items: center;
    background: var(--bg-secondary);
    padding: 12px 20px;
    border-radius: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.value-prop-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    background: var(--bg-hover);
}

.value-prop-item i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 18px;
}

.value-prop-item span {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

/* How It Works Section - Mobile Enhanced */
.how-it-works {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 30px 20px;
    margin: 30px 0;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.9s forwards;
    border: 1px solid var(--border-color);
}

.how-it-works-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--text-primary);
    text-align: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.how-it-works-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.step-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: var(--bg-secondary);
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.step-number {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(239, 98, 89, 0.4);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(49, 203, 182, 0.4);
}

.step-icon i {
    font-size: 24px;
}

.step-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.step-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Stores Section - Mobile Enhanced */
.stores-section {
    margin-bottom: 30px;
}

.store-cards-section {
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.store-cards-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(18px, 3vw, 20px);
    color: var(--text-primary);
    margin-bottom: 15px;
    text-align: center;
}

.store-cards-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

.store-cards-track {
    display: flex;
    animation: scroll 15s linear infinite;
    gap: 15px;
}

.store-cards-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.store-card-item {
    flex: 0 0 clamp(140px, 20vw, 160px);
    height: clamp(140px, 20vw, 160px);
    background: transparent;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.store-card-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.store-card-image {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    transition: all 0.3s ease;
}

.store-card-item:hover .store-card-image {
    transform: scale(1.1);
}

.store-card-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

/* Footer - Mobile Enhanced */
.main-footer {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 40px 20px 20px;
    margin: 30px 0;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 1s forwards;
    border: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 15px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-secondary);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(239, 98, 89, 0.4);
}

.newsletter-form {
    margin-top: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(239, 98, 89, 0.2);
}

.subscribe-btn {
    width: 100%;
    padding: 12px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(239, 98, 89, 0.4);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-link {
    display: flex;
    align-items: center;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    padding: 8px 15px;
    border-radius: 30px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
}

.contact-link:hover {
    color: var(--primary);
    background: var(--bg-hover);
    transform: translateY(-2px);
    border-color: var(--primary);
}

.contact-link i {
    color: var(--primary);
    margin-right: 8px;
}

.copyright {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
}

.trademark-disclaimer {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Background Elements */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.particle {
    position: absolute;
    background-color: var(--primary);
    border-radius: 50%;
    opacity: 0.2;
    animation: particle-animation 15s linear infinite;
}

@keyframes particle-animation {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.2;
    }
    90% {
        opacity: 0.2;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

/* Notification - Mobile Enhanced */
.notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 14px;
    opacity: 0;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: var(--shadow-hover);
    border: 1px solid var(--border-color);
    max-width: 90%;
}

.notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Modal System - Mobile First and Enhanced */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
    box-sizing: border-box;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background-color: var(--bg-card);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
}

.modal-overlay.show .modal-card {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0;
}

.modal-body {
    padding: 25px;
    overflow-y: auto;
    flex-grow: 1;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.modal-body::-webkit-scrollbar {
    display: none;
}

.modal-footer {
    padding: 15px 20px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    flex-shrink: 0;
}

.modal-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--text-primary);
    margin: 0;
}

.modal-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-secondary);
    margin: 3px 0 0 0;
}

.close-modal {
    background: none;
    border: none;
    font-size: 22px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.close-modal:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.btn {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: 50px;
    padding: 14px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    color: white;
    background: var(--gradient-primary);
    box-shadow: 0 8px 25px rgba(239, 98, 89, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(239, 98, 89, 0.5);
}

.btn-secondary {
    color: var(--primary);
    background: var(--bg-card);
    border: 1px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--bg-hover);
    transform: translateY(-2px);
}

.btn i {
    margin-right: 8px;
    font-size: 18px;
}

/* Coupon Modal - Mobile Enhanced */
.coupon-modal .modal-card {
    max-width: 550px;
}

.store-info {
    display: flex;
    align-items: center;
}

.store-logo {
    width: 48px;
    height: 48px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-right: 15px;
    border-radius: 0;
    background-color: transparent;
    padding: 0;
    box-shadow: none;
}

.coupon-preview {
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 25px 20px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    text-align: center;
}

.discount-badge {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 12px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coupon-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: var(--text-primary);
}

.coupon-code {
    font-family: 'Courier New', monospace;
    font-weight: bold;
    font-size: 24px;
    color: var(--secondary);
    background: var(--bg-card);
    padding: 12px 20px;
    border-radius: 12px;
    letter-spacing: 2px;
    border: 1px dashed var(--secondary);
    transition: filter 0.5s ease;
}

.progress-container {
    margin-bottom: 30px;
    position: relative;
}

.progress-track {
    height: 8px;
    background: var(--bg-card);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-secondary);
    border-radius: 4px;
    width: 0%;
    transition: width 0.5s ease;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    gap: 10px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80px;
    transition: all 0.3s ease;
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-card);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.step-icon i {
    font-size: 20px;
}

.step-label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
}

.progress-step.active .step-icon {
    background: var(--gradient-secondary);
    color: white;
    box-shadow: 0 4px 15px rgba(49, 203, 182, 0.4);
}

.progress-step.completed .step-icon {
    background: var(--gradient-success);
    color: white;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
}

.step-details-container {
    margin-bottom: 30px;
}

.step-details {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 20px;
    display: none;
    border: 1px solid var(--border-color);
}

.step-details.active {
    display: block;
}

.step-header {
    margin-bottom: 15px;
}

.step-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: var(--text-primary);
}

.step-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.4;
}

.step-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.metric {
    flex: 1;
    min-width: 120px;
}

.metric-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-value {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-primary);
}

.verification-note {
    margin-top: 15px;
    padding: 12px;
    background: rgba(239, 98, 89, 0.1);
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(239, 98, 89, 0.3);
}

.verification-note p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
    margin: 0;
}

.coupon-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.show-coupon-btn, 
.resume-verification-btn, 
.copy-code-btn,
.shop-now-btn {
    width: 100%;
    height: 60px;
    font-size: 18px;
}

.copy-code-btn.copied {
    background: var(--gradient-success);
}

.trust-indicators {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.trust-indicator {
    display: flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-secondary);
}

.trust-indicator i {
    margin-right: 8px;
    color: var(--success);
    font-size: 16px;
}

/* Verification Message - Mobile Enhanced */
.verification-message {
    display: flex;
    align-items: center;
    background-color: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 8px;
    padding: 16px;
    margin-top: 20px;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message-icon {
    margin-right: 16px;
    font-size: 24px;
    color: #0ea5e9;
}

.message-text h4 {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 600;
    color: #0c4a6e;
}

.message-text p {
    margin: 0;
    font-size: 14px;
    color: #0369a1;
}

/* Toast Notification - Mobile Enhanced */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--bg-card);
    border-radius: 16px;
    box-shadow: var(--shadow-hover);
    padding: 0;
    overflow: hidden;
    z-index: 1002;
    transform: translateX(120%);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    max-width: 320px;
    border: 1px solid var(--border-color);
}

.toast-notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    padding: 15px 20px;
}

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-success);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.notification-icon i {
    font-size: 20px;
}

.notification-text {
    text-align: left;
}

.notification-text h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-primary);
    margin: 0 0 5px 0;
}

.notification-text p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

/* Maintenance Modal - Mobile Enhanced */
.maintenance-card .modal-card {
    max-width: 450px;
}

.maintenance-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.maintenance-icon i {
    font-size: 36px;
}

.maintenance-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 15px;
}

.maintenance-message {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.maintenance-actions {
    display: flex;
    justify-content: center;
}

/* Review Modal - Mobile Enhanced */
.review-card .modal-card {
    max-width: 450px;
}

.review-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.review-icon i {
    font-size: 36px;
}

.review-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 15px;
}

.review-message {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.review-actions {
    display: flex;
    justify-content: center;
}

/* Enhanced About Us Modal */
.about-card .modal-card {
    max-width: 600px;
}

.about-hero {
    text-align: center;
    padding: 30px 20px;
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.about-hero-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.about-hero-icon i {
    font-size: 40px;
}

.about-hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 32px;
    margin: 0 0 10px 0;
    position: relative;
    z-index: 1;
}

.about-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    opacity: 0.9;
    margin: 0;
    position: relative;
    z-index: 1;
}

.about-content {
    padding: 30px 20px;
}

.about-section {
    margin-bottom: 30px;
}

.about-section:last-child {
    margin-bottom: 0;
}

.about-section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-section-title i {
    color: var(--primary);
    font-size: 18px;
}

.about-section-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.about-stats {
    display: flex;
    justify-content: space-around;
    margin: 30px 0;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-secondary);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--text-primary);
    padding: 12px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.about-feature:hover {
    background: var(--bg-hover);
    transform: translateY(-2px);
}

.about-feature i {
    color: var(--secondary);
    font-size: 18px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.contact-item:hover {
    background: var(--bg-hover);
    transform: translateY(-2px);
}

.contact-item i {
    color: var(--primary);
    font-size: 20px;
}

.contact-item a {
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--primary);
}

/* Social Proof Container - Redesigned for Mobile */
.social-proof-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    pointer-events: none;
}

.social-proof {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border-radius: var(--radius) var(--radius) 0 0;
    padding: 15px;
    box-shadow: var(--shadow-hover);
    border: 1px solid var(--border-color);
    border-bottom: none;
    margin: 0;
    transform: translateY(100%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    pointer-events: all;
    max-width: 90%;
    margin: 0 auto;
}

.social-proof.show {
    transform: translateY(0);
    opacity: 1;
}

.social-proof.slide-out {
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.7s ease;
}

.social-proof-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.social-proof-location i {
    font-size: 10px;
}

.social-proof-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-proof-store-logo {
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.social-proof-store-logo img {
    
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.social-proof-text {
    font-size: 13px;
    color: var(--text-primary);
    line-height: 1.3;
}

.social-proof-text strong {
    color: var(--primary);
    font-weight: 600;
}

.social-proof-text i {
    color: var(--primary);
    margin-left: 5px;
}

.social-proof-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-proof-close:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Mobile Responsive Styles - Enhanced */
@media (max-width: 768px) {
    .theme-toggle-container {
        bottom: 80px; /* Adjusted to avoid overlapping with social proof */
        right: 15px;
    }
    
    .theme-toggle {
        width: 44px;
        height: 44px;
    }
    
    .container {
        padding: 15px;
        padding-top: 140px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .newest-coupons-carousel {
        gap: 15px;
    }
    
    .newest-coupon-card {
        flex: 0 0 280px;
    }
    
    .today-deals-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .carousel-controls {
        display: none;
    }
    
    .header-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 100px;
        transform: translateX(-100%);
        transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        z-index: 999;
        overflow-y: auto;
    }
    
    .main-nav.active {
        transform: translateX(0);
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        width: 100%;
        padding: 0 20px;
    }
    
    .nav-item {
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        font-size: 18px;
        padding: 15px 0;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .auth-item-mobile {
        display: block;
        margin-top: 20px;
        width: 100%;
        max-width: 250px;
    }
    
    .auth-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .brand-logo {
        height: 60px;
        max-width: 160px;
    }
    
    .whatsapp-support-container {
        display: block;
    }
    
    .whatsapp-support {
        width: 40px;
        height: 40px;
    }
    
    .whatsapp-support i {
        font-size: 20px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
    
    .need-help-bubble {
        font-size: 12px;
        padding: 6px 12px;
        top: 50px;
    }
    
    /* Mobile Modal Enhancements */
    .modal-overlay {
        padding: 15px;
    }

    .modal-card {
        max-height: 95vh;
        border-radius: 20px;
    }

    .modal-header {
        padding: 15px;
    }

    .store-logo {
        width: 40px;
        height: 40px;
        margin-right: 12px;
        border-radius: 0;
    }

    .modal-title {
        font-size: 18px;
    }

    .modal-subtitle {
        font-size: 12px;
    }

    .close-modal {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }

    .modal-body {
        padding: 20px;
    }

    .coupon-preview {
        padding: 20px 15px;
        margin-bottom: 20px;
    }

    .discount-badge {
        font-size: 28px;
    }

    .coupon-code {
        font-size: 20px;
        padding: 10px 15px;
    }

    .progress-step {
        width: 70px;
    }

    .step-icon {
        width: 40px;
        height: 40px;
    }

    .step-icon i {
        font-size: 18px;
    }

    .step-label {
        font-size: 12px;
    }

    .step-details {
        padding: 15px;
    }

    .step-title {
        font-size: 16px;
    }

    .step-description {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .metric {
        min-width: 100px;
    }

    .metric-value {
        font-size: 14px;
    }

    .show-coupon-btn, 
    .resume-verification-btn, 
    .copy-code-btn,
    .shop-now-btn {
        width: 100%;
        height: 56px;
        font-size: 16px;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 10px;
    }

    /* Mobile Notification */
    .toast-notification {
        top: 15px;
        right: 15px;
        left: 15px;
        max-width: none;
    }

    .notification-content {
        padding: 12px 15px;
    }

    .notification-icon {
        width: 36px;
        height: 36px;
    }

    .notification-icon i {
        font-size: 18px;
    }

    .notification-text h4 {
        font-size: 15px;
    }

    .notification-text p {
        font-size: 13px;
    }
    
    /* Mobile Social Proof */
    .social-proof {
        padding: 12px;
        border-radius: var(--radius) var(--radius) 0 0;
        max-width: 95%;
    }
    
    .social-proof-text {
        font-size: 12px;
    }
    
    .social-proof-store-logo {
        width: 28px;
        height: 28px;
    }
}

/* Tablet-specific styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .header-container {
        padding: 0 20px;
    }
    
    .nav-menu {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .coupons-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 18px;
    }

    .featured-deals-carousel {
        gap: 18px;
    }

    .featured-deal-card {
        flex: 0 0 120px;
        height: 120px;
    }

    .store-card-item {
        flex: 0 0 130px;
        height: 130px;
    }

    .coupon-actions {
        flex-direction: column;
        gap: 15px;
    }

    .show-coupon-btn, 
    .resume-verification-btn, 
    .copy-code-btn,
    .shop-now-btn {
        width: 100%;
        height: 56px;
        font-size: 16px;
    }
}

/* Desktop-specific styles */
@media (min-width: 1025px) {
    .header-container {
        padding: 0 30px;
    }
    
    .coupons-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 25px;
    }

    .featured-deals-carousel {
        gap: 25px;
    }

    .featured-deal-card {
        flex: 0 0 150px;
        height: 150px;
    }

    .store-card-item {
        flex: 0 0 150px;
        height: 150px;
    }

    .coupon-actions {
        flex-direction: row;
        gap: 20px;
    }

    .show-coupon-btn, 
    .resume-verification-btn, 
    .copy-code-btn,
    .shop-now-btn {
        width: 48%;
        height: 60px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .coupons-section {
        padding: 20px 15px;
    }

    .category-tabs {
        gap: 6px;
    }

    .category-tab {
        font-size: 11px;
        padding: 6px 12px;
    }

    .featured-deals-carousel {
        gap: 10px;
    }

    .featured-deal-card {
        flex: 0 0 80px;
        height: 80px;
    }

    .coupons-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .coupon-card {
        max-width: 100%;
    }

    /* Store Cards Section Small Mobile */
    .store-cards-section {
        padding: 15px;
    }

    .store-card-item {
        flex: 0 0 100px;
        height: 100px;
    }

    /* Testimonial Section Small Mobile */
    .testimonial-section {
        padding: 20px 15px;
    }

    .testimonial-content {
        font-size: 13px;
    }

    .testimonial-name {
        font-size: 13px;
    }

    .testimonial-role {
        font-size: 11px;
    }

    /* Small Mobile Modal */
    .modal-overlay {
        padding: 10px;
    }

    .modal-card {
        border-radius: 16px;
    }

    .modal-header {
        padding: 12px;
    }

    .store-logo {
        width: 36px;
        height: 36px;
        margin-right: 10px;
        border-radius: 0;
    }

    .modal-title {
        font-size: 16px;
    }

    .modal-body {
        padding: 15px;
    }

    .coupon-preview {
        padding: 15px;
        margin-bottom: 15px;
    }

    .discount-badge {
        font-size: 24px;
    }

    .coupon-code {
        font-size: 18px;
        padding: 8px 12px;
    }

    .progress-step {
        width: 60px;
    }

    .step-icon {
        width: 36px;
        height: 36px;
    }

    .step-icon i {
        font-size: 16px;
    }

    .step-label {
        font-size: 11px;
    }

    .step-details {
        padding: 12px;
    }

    .step-title {
        font-size: 15px;
    }

    .step-description {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .metric {
        min-width: 80px;
    }

    .metric-value {
        font-size: 13px;
    }

    .show-coupon-btn, 
    .resume-verification-btn, 
    .copy-code-btn,
    .shop-now-btn {
        height: 50px;
        font-size: 15px;
    }

    /* Small Mobile Verification Modal */
    .verification-icon {
        width: 50px;
        height: 50px;
    }

    .verification-icon i {
        font-size: 24px;
    }

    .verify-btn {
        height: 50px;
        font-size: 15px;
    }

    /* Small Mobile Notification */
    .notification-content {
        padding: 10px 12px;
    }

    .notification-icon {
        width: 32px;
        height: 32px;
    }

    .notification-icon i {
        font-size: 16px;
    }

    .notification-text h4 {
        font-size: 14px;
    }

    .notification-text p {
        font-size: 12px;
    }
    
    /* Small Mobile Social Proof */
    .social-proof {
        padding: 10px;
        max-width: 98%;
    }
    
    .social-proof-text {
        font-size: 11px;
    }
    
    .social-proof-store-logo {
        width: 24px;
        height: 24px;
    }
}

/* Button disabled state */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Utility classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.d-block {
    display: block;
}

.d-none {
    display: none;
}

.d-flex {
    display: flex;
}

.d-inline-flex {
    display: inline-flex;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

.align-items-center {
    align-items: center;
}

.flex-column {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-1 {
    gap: 0.25rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 0.75rem;
}

.mt-4 {
    margin-top: 1rem;
}

.p-0 {
    padding: 0;
}

.p-1 {
    padding: 0.25rem;
}

.p-2 {
    padding: 0.5rem;
}

.p-3 {
    padding: 0.75rem;
}

.p-4 {
    padding: 1rem;
}

#captchaLocker {
    margin-left:20px;
}