* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, -apple-system, BlinkMacSystemFont, sans-serif;
    color: #2d3748;
    line-height: 1.65;
    letter-spacing: -0.005em;
    background: #f7fafc;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* CSS Variables */
:root {
    --font-size-xs: 12px;
    --font-size-sm: 14px;
    --font-size-md: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 20px;
    --font-size-2xl: 24px;
    --font-size-3xl: 30px;
    --font-size-4xl: 36px;
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    --border-radius-2xl: 20px;
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 12px;
    --spacing-lg: 16px;
    --spacing-xl: 20px;
    --spacing-2xl: 24px;
    --spacing-3xl: 32px;
    --spacing-4xl: 40px;
    --spacing-5xl: 48px;
    --spacing-6xl: 64px;
    --color-primary: #1e40af;
    --color-primary-hover: #1d4ed8;
    --color-primary-light: #dbeafe;
    --color-secondary: #10b981;
    --color-secondary-hover: #059669;
    --color-accent: #f59e0b;
    --color-accent-hover: #d97706;
    --color-danger: #ef4444;
    --color-text-primary: #1a202c;
    --color-text-secondary: #4a5568;
    --color-text-muted: #718096;
    --color-border: #e2e8f0;
    --color-border-light: #f1f5f9;
    --color-background: #ffffff;
    --color-background-alt: #f8fafc;
    --color-surface: #edf2f7;
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --color-brand-secondary: #1570ef;
    --color-brand-secondary-hover: #175cd3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
}

/* Header Styles */
.promo-banner {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    color: white;
    padding: var(--spacing-md) 0;
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--font-size-sm);
}

.banner-message {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    font-weight: 500;
}

.banner-cta {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.2);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--border-radius-sm);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.banner-cta:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.primary-header {
    background: var(--color-background);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg) 0;
}

.brand-navigation {
    display: flex;
    align-items: center;
    gap: var(--spacing-6xl);
}

.site-brand {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    text-decoration: none;
    color: var(--color-text-primary);
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #3b82f6 100%);
    color: white;
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--font-size-sm);
    box-shadow: var(--shadow-md);
}

.brand-name {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--color-text-primary);
    letter-spacing: -0.02em;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: var(--spacing-4xl);
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--font-size-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) 0;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--color-primary);
    text-decoration: none;
}

.dropdown-icon {
    font-size: var(--font-size-xs);
    transition: transform 0.3s ease;
}

.has-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-panel {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    padding: var(--spacing-lg);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.has-dropdown:hover .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.panel-link {
    display: block;
    color: var(--color-text-secondary);
    text-decoration: none;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-sm);
    font-size: var(--font-size-sm);
    transition: all 0.2s ease;
    margin-bottom: var(--spacing-xs);
}

.panel-link:hover {
    color: var(--color-primary);
    background: var(--color-primary-light);
    text-decoration: none;
}

.header-tools {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.search-container {
    position: relative;
}

.search-field-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    width: 340px;
    padding: var(--spacing-md) var(--spacing-5xl) var(--spacing-md) var(--spacing-lg);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-xl);
    font-size: var(--font-size-sm);
    background: var(--color-background-alt);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-xs);
}

.search-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
    background: var(--color-background);
}

.search-button {
    position: absolute;
    right: var(--spacing-md);
    background: var(--color-primary);
    border: none;
    color: white;
    cursor: pointer;
    padding: var(--spacing-sm);
    border-radius: var(--border-radius-md);
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-button:hover {
    background: var(--color-primary-hover);
    transform: scale(1.05);
}

.country-selector {
    position: relative;
}

.country-button {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md) var(--spacing-lg);
    cursor: pointer;
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-xs);
}

.country-button:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-sm);
    background: var(--color-primary-light);
}

.country-flag {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
}

.country-arrow {
    font-size: var(--font-size-xs);
    transition: transform 0.3s ease;
}

.country-dropdown {
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    padding: var(--spacing-sm);
    background: var(--color-background);
}

.country-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-sm);
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: var(--font-size-sm);
    transition: all 0.2s ease;
}

.country-dropdown .dropdown-item:hover {
    background: var(--color-background-alt);
    color: var(--color-text-primary);
    text-decoration: none;
}

/* User Notification */
.user-notification {
    position: fixed;
    bottom: var(--spacing-xl);
    left: var(--spacing-xl);
    z-index: 9999;
    animation: slideInFromLeft 0.5s ease-out;
}

.notification-wrapper {
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
    max-width: 400px;
    overflow: hidden;
}

.notification-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: var(--color-background-alt);
    border-bottom: 1px solid var(--color-border);
}

.notification-status {
    color: var(--color-secondary);
    font-size: var(--font-size-lg);
}

.notification-heading {
    color: var(--color-text-primary);
    font-weight: 600;
    font-size: var(--font-size-sm);
    flex: 1;
}

.notification-dismiss {
    background: none;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    padding: var(--spacing-xs);
    border-radius: var(--border-radius-sm);
    transition: all 0.2s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-dismiss:hover {
    color: var(--color-text-secondary);
    background: var(--color-border-light);
}

.notification-body {
    padding: var(--spacing-lg);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.activity-flag {
    width: 24px;
    height: 18px;
    border-radius: 3px;
    flex-shrink: 0;
}

.activity-details {
    flex: 1;
}

.activity-message {
    color: var(--color-text-primary);
    font-weight: 500;
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-xs);
}

.activity-timestamp {
    color: var(--color-text-muted);
    font-size: var(--font-size-xs);
}

.notification-cta {
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md) var(--spacing-xl);
    font-weight: 600;
    font-size: var(--font-size-sm);
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.notification-cta:hover {
    background: var(--color-primary-hover);
    transform: translateY(-1px);
}

@keyframes slideInFromLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Store Directory Section */
.store-directory-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: var(--spacing-6xl) 0;
}

.directory-header {
    text-align: center;
    margin-bottom: var(--spacing-5xl);
}

.directory-header h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--color-text-primary);
}

.directory-header p {
    color: var(--color-text-secondary);
    font-size: var(--font-size-lg);
}

.store-directory-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--spacing-lg) var(--spacing-xl);
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.directory-store {
    color: var(--color-primary);
    text-decoration: none;
    font-size: var(--font-size-sm);
    font-weight: 500;
    line-height: 1.8;
    transition: all 0.2s ease;
}

.directory-store:hover {
    color: var(--color-primary-hover);
    text-decoration: underline;
}

.directory-expand {
    text-align: center;
    margin-top: var(--spacing-4xl);
}

.expand-directory-btn {
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-lg) var(--spacing-2xl);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    color: var(--color-text-secondary);
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.expand-directory-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    box-shadow: var(--shadow-md);
    background: var(--color-primary-light);
}

.expand-arrow {
    font-size: var(--font-size-sm);
    transition: transform 0.3s ease;
}

.expand-directory-btn:hover .expand-arrow {
    transform: rotate(180deg);
}

/* Email Subscription */
.email-subscription {
    padding: var(--spacing-6xl) 0;
    background: var(--color-background);
}

.subscription-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-5xl);
    max-width: 950px;
    margin: 0 auto;
}

.subscription-info h4 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--color-text-primary);
}

.subscription-info p {
    color: var(--color-text-secondary);
    font-size: var(--font-size-lg);
    line-height: 1.6;
}

.email-signup-form {
    flex-shrink: 0;
}

.email-input-container {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-xs);
    box-shadow: var(--shadow-sm);
}

.email-field {
    flex: 1;
    border: none;
    padding: var(--spacing-lg) var(--spacing-lg);
    font-size: var(--font-size-md);
    background: transparent;
    min-width: 300px;
}

.email-field:focus {
    outline: none;
}

.signup-btn {
    background: linear-gradient(135deg, var(--color-primary) 0%, #3b82f6 100%);
    color: white;
    border: none;
    padding: var(--spacing-lg) var(--spacing-2xl);
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    font-size: var(--font-size-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    transition: all 0.3s ease;
}

.signup-btn:hover {
    background: linear-gradient(135deg, var(--color-primary-hover) 0%, #2563eb 100%);
    transform: translateY(-1px);
}

/* Main Footer */
.main-footer {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #94a3b8;
    padding: var(--spacing-6xl) 0 var(--spacing-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-5xl);
    margin-bottom: var(--spacing-5xl);
}

.footer-brand-section {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.footer-brand-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #3b82f6 100%);
    color: white;
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--font-size-sm);
}

.footer-brand-text {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: white;
}

.brand-description {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: var(--spacing-xl);
    font-size: var(--font-size-md);
}

.footer-social {
    display: flex;
    gap: var(--spacing-lg);
}

.social-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    color: white;
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-xl);
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: var(--spacing-md);
}

.footer-menu-link {
    color: #94a3b8;
    text-decoration: none;
    font-size: var(--font-size-md);
    transition: all 0.3s ease;
    line-height: 1.6;
}

.footer-menu-link:hover {
    color: white;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-xl);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--spacing-xl);
}

.legal-navigation {
    display: flex;
    gap: var(--spacing-2xl);
    flex-wrap: wrap;
}

.legal-link {
    color: #64748b;
    text-decoration: none;
    font-size: var(--font-size-sm);
    transition: all 0.3s ease;
}

.legal-link:hover {
    color: #94a3b8;
    text-decoration: none;
}

.copyright-info {
    text-align: right;
    flex-shrink: 0;
}

.copyright {
    color: #64748b;
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

.trademark-notice {
    color: #475569;
    font-size: var(--font-size-xs);
    line-height: 1.5;
    max-width: 420px;
}

/* ALL ORIGINAL INTERNAL PAGE STYLES BELOW */

/* Alert Banner */
.alert-banner {
    background: #e8f4fd;
    border: 1px solid #cce7f0;
    color: #0c5460;
    padding: 12px 0;
    text-align: center;
    font-size: 14px;
}

.alert-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #edf7ff 0%, #f8fbff 100%);
    padding: 60px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #333;
}

.btn-enter-giveaway {
    background: linear-gradient(135deg, var(--color-primary) 0%, #3b82f6 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Main Content */
.main-content {
    padding: 60px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #333;
}

/* Stats Row */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.stat-label {
    color: #666;
    font-size: 14px;
    margin-top: 8px;
}

.store-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    margin: 40px 0;
}

.store-logos img {
    height: 120px;
    max-width: 140px;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    padding: 8px;
    border: 1px solid #e0e6ed;
    border-radius: 8px;
    background: white;
}

.store-logos img:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Popular Deals Section */
.popular-deals-section {
    margin: 60px 0;
}

.popular-deals-section h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

.deals-grid-new {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.deals-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.deal-card-new {
    background: white;
    border: 1px solid rgba(228, 231, 236, 0.6);
    border-bottom-color: rgba(228, 231, 236, 0.8);
    border-radius: var(--border-radius-md);
    filter: drop-shadow(0 3px 6px rgba(228, 231, 236, 0.7));
    padding: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    min-height: 120px;
}

.deal-card-new:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 6px 12px rgba(228, 231, 236, 0.9));
}

.deal-left-new {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.store-logo-section {
    flex-shrink: 0;
}

.store-logo-new {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 6px;
    border: 1px solid #e0e6ed;
    padding: 6px;
    background: white;
}

.deal-info-new {
    flex: 1;
    min-width: 0;
}

.deal-badges-new {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.badge-exclusive-new {
    background: var(--color-primary);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-verified-new {
    background: #28a745;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.store-name-new {
    color: #6c757d;
    font-weight: 500;
    font-size: 13px;
}

.deal-title-new h4 {
    font-size: 16px;
    font-weight: 600;
    color: #212529;
    margin: 0;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.deal-right-new {
    flex-shrink: 0;
    margin-left: 16px;
}

/* Show Code Button */
.show-code-btn-new {
    align-self: center;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    display: flex;
    flex-shrink: 0;
    font-size: var(--font-size-md);
    font-weight: 500;
    height: 48px;
    line-height: 1;
    margin: 0;
    max-width: 400px;
    position: relative;
    width: 168px;
    border: 0;
    padding: 0;
    overflow: visible;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    letter-spacing: 0.2px;
    text-rendering: optimizelegibility;
    -webkit-font-smoothing: antialiased;
    transition: all 0.25s ease-out;
    background: transparent;
}

.show-code-btn-new .code-action {
    align-items: center;
    background-color: var(--color-brand-secondary);
    border-radius: 8px 0 0 8px;
    color: rgb(255, 255, 255);
    cursor: pointer;
    display: flex;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    height: 48px;
    justify-content: center;
    letter-spacing: 0.2px;
    line-height: 16px;
    text-align: center;
    text-rendering: optimizelegibility;
    text-shadow: none;
    transition: all 0.25s ease-out;
    width: 123px;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
}

.show-code-btn-new .code-preview-new {
    align-items: center;
    background-color: #ffffff;
    border: 2px dashed var(--color-brand-secondary);
    border-radius: 0 8px 8px 0;
    color: var(--color-brand-secondary);
    cursor: pointer;
    display: flex;
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 14px;
    font-weight: 700;
    height: 48px;
    justify-content: center;
    letter-spacing: 1px;
    line-height: 1;
    text-align: center;
    width: 168px;
    padding-left: 123px;
    padding-right: 15px;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

.show-code-btn-new:hover .code-action {
    background-color: var(--color-brand-secondary-hover);
}

.show-code-btn-new:hover .code-preview-new {
    border-color: var(--color-brand-secondary-hover);
    color: var(--color-brand-secondary-hover);
}

/* Get Deal Button */
.get-deal-btn-new {
    align-items: center;
    background-color: var(--color-brand-secondary);
    border: 0;
    border-radius: var(--border-radius-md);
    color: white;
    cursor: pointer;
    display: flex;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-size: var(--font-size-md);
    font-weight: 500;
    height: 48px;
    justify-content: center;
    letter-spacing: 0.2px;
    line-height: 1;
    padding: 0 24px;
    text-decoration: none;
    text-rendering: optimizelegibility;
    transition: all 0.25s ease-out;
    width: 168px;
    -webkit-font-smoothing: antialiased;
}

.get-deal-btn-new:hover {
    background-color: var(--color-brand-secondary-hover);
    color: white;
    text-decoration: none;
}

/* Categories Section */
.categories-section {
    margin: 60px 0;
}

.categories-section h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
    color: #333;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.category-item {
    text-align: center;
    text-decoration: none;
    color: #666;
    transition: all 0.3s ease;
}

.category-item:hover {
    color: var(--color-primary);
    text-decoration: none;
}

.category-item i {
    font-size: 32px;
    margin-bottom: 10px;
    display: block;
}

.category-item span {
    font-size: 14px;
    font-weight: 500;
}

/* Popular Stores Section */
.popular-stores-section {
    background: #f8f9fa;
    padding: 50px 0;
}

.popular-stores-section h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
    color: #333;
}

.stores-grid-footer {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px 20px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.store-link-footer {
    color: var(--color-primary);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.8;
}

.store-link-footer:hover {
    text-decoration: underline;
}

.expand-stores {
    text-align: center;
    margin-top: 30px;
    color: #666;
    font-size: 20px;
    cursor: pointer;
}

/* Newsletter */
.newsletter-section {
    padding: 50px 0;
    text-align: center;
}

.newsletter-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #333;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 450px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    border: 1px solid #ddd;
    padding: 12px 15px;
    border-radius: 5px 0 0 5px;
    font-size: 16px;
}

.btn-signup {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 0 5px 5px 0;
    font-weight: 600;
    cursor: pointer;
}

/* Footer */
.main-footer {
    background: #333;
    color: #999;
    padding: 40px 0 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: white;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-social a {
    color: #999;
    font-size: 18px;
}

.footer-social a:hover {
    color: white;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-legal a {
    color: #999;
    text-decoration: none;
    font-size: 13px;
}

.footer-legal a:hover {
    text-decoration: underline;
}

.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    font-size: 13px;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    line-height: 1.4;
}

/* Code Popup */
.code-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.code-popup {
    background: white;
    border-radius: 12px;
    max-width: 520px;
    width: 90%;
    position: relative;
    overflow: hidden;
    animation: slideUp 0.3s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    z-index: 1;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.popup-close:hover {
    background: #f1f1f1;
    color: #333;
}

.popup-header {
    padding: 30px 20px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.popup-header h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: #333;
}

.popup-body {
    padding: 25px 20px 30px;
}

.code-box {
    background: #f8f9fa;
    border: 2px dashed var(--color-primary);
    border-radius: 10px;
    padding: 30px 25px;
    text-align: center;
    margin-bottom: 25px;
    position: relative;
}

.code-box span {
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 4px;
    display: block;
    margin-bottom: 20px;
    word-break: break-all;
}

.copy-btn {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
}

.copy-btn:hover {
    background: var(--color-primary-hover);
    transform: translateY(-1px);
}

.continue-section {
    text-align: center;
    margin-bottom: 25px;
}

.continue-btn {
    background: var(--color-primary);
    color: white;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
    transition: all 0.2s ease;
    font-size: 16px;
}

.continue-btn:hover {
    background: var(--color-primary-hover);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

.terms {
    color: #999;
    font-size: 14px;
}

.vote-section {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 25px;
}

.vote-section p {
    margin-bottom: 15px;
    font-weight: 500;
    color: #333;
}

.vote-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.vote-yes, .vote-no {
    background: white;
    border: 2px solid #ddd;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.vote-yes {
    color: #28a745;
    border-color: #28a745;
}

.vote-yes:hover {
    background: #28a745;
    color: white;
}

.vote-no {
    color: #dc3545;
    border-color: #dc3545;
}

.vote-no:hover {
    background: #dc3545;
    color: white;
}

.extension-promo {
    background: linear-gradient(135deg, #fff5f5 0%, #fff8f8 100%);
    border: 1px solid #fecaca;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
}

.extension-promo h6 {
    margin-bottom: 12px;
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

.extension-promo p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.add-extension-btn {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    font-size: 14px;
}

.add-extension-btn:hover {
    background: #e55a2b;
    transform: translateY(-1px);
}

/* Popup Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(30px) scale(0.95); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

/* Fake Notification */
.fake-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9998;
    animation: slideInLeft 0.5s ease;
}

.fake-notification .toast {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    max-width: 350px;
}

.fake-notification .toast-header {
    background: #f8f9fa;
    border-bottom: 1px solid #ddd;
    padding: 12px 16px;
}

.fake-notification .toast-body {
    padding: 16px;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .deals-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .deal-card-new {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        min-height: auto;
    }
    
    .deal-right-new {
        margin-left: 0;
        align-self: stretch;
    }
    
    .show-code-btn-new {
        width: 136px;
        height: 40px;
        margin: 12px 0 0 auto;
        font-size: var(--font-size-md);
        line-height: normal;
    }
    
    .show-code-btn-new .code-action {
        width: 100px;
        height: 40px;
        font-size: 14px;
    }
    
    .show-code-btn-new .code-preview-new {
        height: 40px;
        width: 136px;
        padding-left: 100px;
        font-size: 12px;
    }
    
    .get-deal-btn-new {
        height: 40px;
        width: 136px;
        font-size: 14px;
        justify-content: center;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .stores-grid-footer {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .header-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .header-left {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-nav {
        gap: 20px;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .search-input {
        width: 250px;
    }
    
    .store-logos {
        gap: 20px;
    }
    
    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 20px;
    }
    
    .footer-links, .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .code-popup {
        max-width: 95%;
        margin: 10px;
    }
    
    .code-box span {
        font-size: 24px;
        letter-spacing: 2px;
    }
    
    .vote-buttons {
        flex-direction: column;
        gap: 10px;
    }
}

/* Utility classes */
.counter { font-weight: 700; }
.text-success { color: #28a745; }
.text-muted { color: #999; }
.me-2 { margin-right: 8px; }
.me-auto { margin-right: auto; }
.mt-2 { margin-top: 8px; }
.w-100 { width: 100%; }
.d-flex { display: flex; }
.align-items-center { align-items: center; }
.img-fluid { max-width: 100%; height: auto; }
.btn-close { 
    background: none; 
    border: none; 
    font-size: 16px; 
    cursor: pointer; 
    color: #999; 
}
.btn { 
    padding: 6px 12px; 
    border-radius: 4px; 
    font-weight: 500; 
    text-decoration: none;
    border: none;
    cursor: pointer;
}
.btn-sm { padding: 4px 8px; font-size: 12px; }
.btn-primary { background: var(--color-primary); color: white; }

/* Category Page Styles */
.category-banner {
    background: linear-gradient(135deg, #ff6b47 0%, #ff8566 100%);
    color: white;
    padding: 12px 0;
    font-size: 14px;
}

.banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.category-page-header {
    margin-top: 20px;
}

.category-sidebar {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.category-sidebar h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.category-list, .store-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.category-list li, .store-list li {
    margin-bottom: 8px;
}

.category-list a, .store-list a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
}

.category-list a:hover, .store-list a:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

.category-main-header h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

.coupons-list-category {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.coupon-item-category {
    background: white;
    border: 1px solid rgba(228, 231, 236, 0.6);
    border-bottom-color: rgba(228, 231, 236, 0.8);
    border-radius: 8px;
    filter: drop-shadow(0 3px 6px rgba(228, 231, 236, 0.7));
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.coupon-item-category:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 6px 12px rgba(228, 231, 236, 0.9));
}

.store-info-section {
    flex-shrink: 0;
}

.store-logo-category {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 6px;
    border: 1px solid #e0e6ed;
    padding: 4px;
    background: white;
}

.coupon-content-section {
    flex: 1;
    min-width: 0;
}

.coupon-badges {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.badge-verified {
    background: #28a745;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.store-name-category {
    color: #6c757d;
    font-weight: 500;
    font-size: 13px;
}

.coupon-title-category {
    font-size: 18px;
    font-weight: 600;
    color: #212529;
    margin: 8px 0;
    line-height: 1.4;
}

.coupon-description-category {
    color: #666;
    font-size: 14px;
    margin: 8px 0;
    line-height: 1.4;
}

.coupon-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 12px;
}

.expiry-info {
    color: #999;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.coupon-action-section {
    flex-shrink: 0;
}

/* Category Page Show Code Button */
.show-code-btn-category {
    align-self: center;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    display: flex;
    flex-shrink: 0;
    font-size: var(--font-size-md);
    font-weight: 500;
    height: 48px;
    line-height: 1;
    margin: 0;
    max-width: 400px;
    position: relative;
    width: 168px;
    border: 0;
    padding: 0;
    overflow: visible;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    letter-spacing: 0.2px;
    text-rendering: optimizelegibility;
    -webkit-font-smoothing: antialiased;
    transition: all 0.25s ease-out;
    background: transparent;
}

.show-code-btn-category .code-action {
    align-items: center;
    background-color: var(--color-brand-secondary);
    border-radius: 8px 0 0 8px;
    color: rgb(255, 255, 255);
    cursor: pointer;
    display: flex;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    height: 48px;
    justify-content: center;
    letter-spacing: 0.2px;
    line-height: 16px;
    text-align: center;
    text-rendering: optimizelegibility;
    text-shadow: none;
    transition: all 0.25s ease-out;
    width: 123px;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
}

.show-code-btn-category .code-preview-category {
    align-items: center;
    background-color: #ffffff;
    border: 2px dashed var(--color-brand-secondary);
    border-radius: 0 8px 8px 0;
    color: var(--color-brand-secondary);
    cursor: pointer;
    display: flex;
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 14px;
    font-weight: 700;
    height: 48px;
    justify-content: center;
    letter-spacing: 1px;
    line-height: 1;
    text-align: center;
    width: 168px;
    padding-left: 123px;
    padding-right: 15px;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

.get-deal-btn-category {
    align-items: center;
    background-color: var(--color-brand-secondary);
    border: 0;
    border-radius: var(--border-radius-md);
    color: white;
    cursor: pointer;
    display: flex;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-size: var(--font-size-md);
    font-weight: 500;
    height: 48px;
    justify-content: center;
    letter-spacing: 0.2px;
    line-height: 1;
    padding: 0 24px;
    text-decoration: none;
    text-rendering: optimizelegibility;
    transition: all 0.25s ease-out;
    width: 168px;
    -webkit-font-smoothing: antialiased;
}

.get-deal-btn-category:hover {
    background-color: var(--color-brand-secondary-hover);
    color: white;
    text-decoration: none;
}

/* Store Page Styles */
.store-page-header {
    margin-bottom: 30px;
}

.store-header-main {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.store-logo-section {
    flex-shrink: 0;
}

.store-logo-large {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border: 1px solid #e0e6ed;
    border-radius: 8px;
    padding: 8px;
    background: white;
}

.store-title-section {
    flex: 1;
}

.store-title-section h1 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    color: #333;
}

.store-action-section {
    flex-shrink: 0;
}

.btn-shop {
    background: var(--color-primary);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-shop:hover {
    background: var(--color-primary-hover);
    color: white;
    text-decoration: none;
}

.store-offers-section {
    margin: 40px 0;
}

.store-offers-section h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

.store-offer-card {
    background: white;
    border: 1px solid rgba(228, 231, 236, 0.6);
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.offer-header {
    background: #f8f9fa;
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.offer-badge-code,
.offer-badge-deal {
    background: #28a745;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
}

.offer-badge-verified {
    color: #666;
    font-weight: 500;
}

.offer-store-name {
    color: #666;
    font-weight: 500;
    margin-left: auto;
}

.offer-main-content {
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 20px;
}

.offer-discount-display {
    flex-shrink: 0;
}

.discount-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4285f4 0%, #1a73e8 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.discount-value {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.discount-text {
    font-size: 12px;
    font-weight: 500;
}

.offer-details-section {
    flex: 1;
}

.offer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.offer-description {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.offer-meta {
    font-size: 13px;
    color: #999;
}

.offer-action-section {
    flex-shrink: 0;
}

/* Store Show Code Button */
.store-show-code-btn {
    align-self: center;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    font-weight: 500;
    height: 48px;
    position: relative;
    width: 168px;
    border: 0;
    padding: 0;
    overflow: visible;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    transition: all 0.25s ease-out;
}

.store-show-code-btn .code-action {
    background-color: var(--color-brand-secondary);
    border-radius: 8px 0 0 8px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    width: 123px;
    font-size: 16px;
    font-weight: 500;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
}

.store-show-code-btn .code-preview-store {
    background-color: #ffffff;
    border: 2px dashed var(--color-brand-secondary);
    border-radius: 0 8px 8px 0;
    color: var(--color-brand-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Monaco', monospace;
    font-size: 14px;
    font-weight: 700;
    height: 48px;
    width: 168px;
    padding-left: 123px;
    padding-right: 15px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

.store-get-deal-btn {
    background-color: var(--color-brand-secondary);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    width: 168px;
    text-decoration: none;
    font-weight: 500;
}

.offer-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f8f9fa;
    border-top: 1px solid #eee;
}

.btn-details {
    background: none;
    border: none;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.offer-social-proof {
    display: flex;
    align-items: center;
    gap: 15px;
}

.proof-text {
    font-size: 14px;
    color: #666;
}

.vote-buttons-store {
    display: flex;
    gap: 8px;
}

.btn-vote-store {
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 6px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
}

.btn-vote-store.btn-yes {
    color: #28a745;
}

.btn-vote-store.btn-no {
    color: #dc3545;
}

.offer-details-expanded {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #f9f9f9;
}

.store-stats-section,
.store-faq-section {
    margin: 40px 0;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

.store-stats-section h3,
.store-faq-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.stats-grid-store {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.stat-item-store {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-icon-store {
    font-size: 20px;
}

.btn-submit-offer {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
}

.faq-item {
    margin-bottom: 25px;
}

.faq-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Stores Page Styles */
.stores-grid-page {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.store-item-page {
    background: white;
    border: 1px solid rgba(228, 231, 236, 0.6);
    border-radius: 8px;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.store-item-page:hover {
    color: inherit;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.store-logo-container-page {
    flex-shrink: 0;
}

.store-logo-page {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 6px;
    border: 1px solid #e0e6ed;
    padding: 4px;
    background: white;
}

.store-details-page {
    flex: 1;
}

.store-name-page {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: #333;
}

.store-count-page {
    font-size: 14px;
    color: #666;
}

/* Search Page Styles */
.search-stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.search-store-item {
    background: white;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.search-store-item:hover {
    color: inherit;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.search-store-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 4px;
}

.search-store-info h5 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
}

.search-store-info p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.search-results-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.search-coupon-item {
    background: white;
    border: 1px solid rgba(228, 231, 236, 0.6);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-store-section {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-coupon-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 4px;
    border: 1px solid #e0e6ed;
}

.search-store-badge {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.store-name-search {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.search-coupon-content {
    flex: 1;
}

.search-coupon-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #333;
}

.search-coupon-content p {
    font-size: 14px;
    color: #666;
    margin: 0 0 8px 0;
}

.search-coupon-meta {
    font-size: 13px;
    color: #999;
}

.search-coupon-action {
    flex-shrink: 0;
}

/* Search Show Code Button */
.search-show-code-btn {
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    height: 48px;
    position: relative;
    width: 168px;
    border: 0;
    padding: 0;
    overflow: visible;
}

.search-show-code-btn .code-action {
    background-color: var(--color-brand-secondary);
    border-radius: 8px 0 0 8px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    width: 123px;
    font-size: 16px;
    font-weight: 500;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
}

.search-show-code-btn .code-preview-search {
    background-color: #ffffff;
    border: 2px dashed var(--color-brand-secondary);
    border-radius: 0 8px 8px 0;
    color: var(--color-brand-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Monaco', monospace;
    font-size: 14px;
    font-weight: 700;
    height: 48px;
    width: 168px;
    padding-left: 123px;
    padding-right: 15px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

.search-get-deal-btn {
    background-color: var(--color-brand-secondary);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    width: 168px;
    text-decoration: none;
    font-weight: 500;
}

.search-get-deal-btn:hover {
    background-color: var(--color-brand-secondary-hover);
    color: white;
    text-decoration: none;
}

/* Page Header Styles */
.page-header {
    margin: 40px 0;
}

.page-header h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

.alphabet-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-active {
    background: var(--color-primary);
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
}

.filter-link {
    color: #666;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-link:hover {
    background: #f8f9fa;
    color: var(--color-primary);
    text-decoration: none;
}

/* Categories Grid Vertical */
.categories-grid-vertical {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: #e0e6ed;
    border-radius: 8px;
    overflow: hidden;
}

.category-item-vertical {
    background: white;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.category-item-vertical:hover {
    background: #f8f9fa;
    color: inherit;
    text-decoration: none;
}

.category-icon-container {
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.category-icon-container i {
    font-size: 24px;
    color: var(--color-primary);
}

.category-details {
    flex: 1;
}

.category-name {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: #333;
}

.category-count {
    font-size: 14px;
    color: #666;
}

.category-arrow {
    flex-shrink: 0;
    color: #ccc;
}

/* Store Page Sidebar Layout */
.store-sidebar {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.store-logo-container-sidebar {
    text-align: center;
    margin-bottom: 20px;
}

.store-logo-sidebar {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border: 1px solid #e0e6ed;
    border-radius: 8px;
    padding: 8px;
    background: white;
}

.store-actions-sidebar {
    text-align: center;
    margin-bottom: 20px;
}

.btn-shop-sidebar {
    background: var(--color-primary);
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #ddd;
}

.btn-shop-sidebar:hover {
    background: var(--color-primary-hover);
    color: white;
    text-decoration: none;
}

.advertiser-disclosure {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 25px;
    padding: 15px;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 6px;
}

.store-stats-sidebar,
.store-faqs-sidebar {
    margin-bottom: 30px;
}

.store-stats-sidebar h4,
.store-faqs-sidebar h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.store-stats-sidebar p {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 15px;
}

.stats-list {
    margin: 15px 0;
}

.stat-row {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
}

.stat-icon {
    color: #28a745;
    margin-right: 8px;
    width: 16px;
}

.stat-label {
    flex: 1;
    color: #666;
}

.stat-value {
    font-weight: 600;
    color: #333;
}

.btn-submit-offer-sidebar {
    background: white;
    border: 1px solid #ddd;
    color: #666;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    width: 100%;
    cursor: pointer;
}

.faq-item-sidebar {
    margin-bottom: 15px;
}

.faq-item-sidebar h5 {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* Store Main Content */
.store-main-header h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.store-subheader h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

.store-coupons-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.store-coupon-card {
    background: white;
    border: 1px solid rgba(228, 231, 236, 0.6);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.coupon-header-main {
    background: #f8f9fa;
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
}

.coupon-badges-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.coupon-badge-code,
.coupon-badge-deal {
    background: #28a745;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.coupon-badge-verified {
    color: #666;
    font-weight: 500;
}

.coupon-store-name {
    color: #666;
    font-weight: 500;
}

.coupon-action-header {
    /* Uses justify-content: space-between */
}

/* Store Show Code Button in Main Area */
.store-show-code-btn-main {
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    height: 40px;
    position: relative;
    width: 140px;
    border: 0;
    padding: 0;
    overflow: visible;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    transition: all 0.25s ease-out;
}

.store-show-code-btn-main .code-action-main {
    background-color: var(--color-brand-secondary);
    border-radius: 8px 0 0 8px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 100px;
    font-size: 14px;
    font-weight: 500;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
}

.store-show-code-btn-main .code-preview-main {
    background-color: #ffffff;
    border: 2px dashed var(--color-brand-secondary);
    border-radius: 0 8px 8px 0;
    color: var(--color-brand-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Monaco', monospace;
    font-size: 12px;
    font-weight: 700;
    height: 40px;
    width: 140px;
    padding-left: 100px;
    padding-right: 10px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

.store-get-deal-btn-main {
    background-color: var(--color-brand-secondary);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 140px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.coupon-content-main {
    display: flex;
    padding: 20px;
    gap: 20px;
}

.coupon-left-content {
    display: flex;
    gap: 20px;
    flex: 1;
}

.discount-display-main {
    flex-shrink: 0;
}

.discount-circle-main {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4285f4 0%, #1a73e8 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.discount-value-main {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.discount-text-main {
    font-size: 10px;
    font-weight: 500;
}

.coupon-details-main {
    flex: 1;
}

.coupon-title-main {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.coupon-description-main {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.coupon-meta-main {
    font-size: 13px;
    color: #999;
}

.coupon-right-content {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.social-proof-main {
    text-align: right;
}

.proof-text-main {
    font-size: 14px;
    color: #666;
}

.coupon-footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f8f9fa;
    border-top: 1px solid #eee;
}

.btn-details-main {
    background: none;
    border: none;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.vote-section-main {
    display: flex;
    align-items: center;
}

.vote-buttons-main {
    display: flex;
    gap: 8px;
}

.btn-vote-main {
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 6px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
}

.btn-vote-main.btn-thumbs-up {
    color: #28a745;
    border-color: #28a745;
}

.btn-vote-main.btn-thumbs-down {
    color: #dc3545;
    border-color: #dc3545;
}

.coupon-details-expanded {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #f9f9f9;
}

.details-content-main h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Header Search Form */
.search-form {
    display: flex;
    align-items: center;
    position: relative;
}

.search-btn {
    position: absolute;
    right: 5px;
    background: none;
    border: none;
    color: #666;
    padding: 8px;
    cursor: pointer;
}

.search-btn:hover {
    color: var(--color-primary);
}

/* Dropdown Styles */
.dropdown-menu {
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 8px 0;
}

.dropdown-item {
    padding: 8px 16px;
    font-size: 14px;
    color: #666;
    text-decoration: none;
}

.dropdown-item:hover {
    background: #f8f9fa;
    color: var(--color-primary);
}

/* Mobile Responsive for ALL pages */
@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-lg);
    }
    
    .promo-banner {
        padding: var(--spacing-sm) 0;
    }
    
    .banner-content {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }
    
    .header-container {
        flex-direction: column;
        gap: var(--spacing-lg);
        padding: var(--spacing-lg) 0;
    }
    
    .brand-navigation {
        flex-direction: column;
        gap: var(--spacing-lg);
        width: 100%;
    }
    
    .main-navigation {
        gap: var(--spacing-xl);
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .header-tools {
        flex-direction: column;
        gap: var(--spacing-md);
        width: 100%;
    }
    
    .search-input {
        width: 100%;
        min-width: auto;
    }
    
    .store-sidebar {
        order: 2;
        margin-top: var(--spacing-3xl);
    }
    
    .coupon-content-main {
        flex-direction: column;
        gap: var(--spacing-lg);
    }
    
    .coupon-left-content {
        flex-direction: column;
        gap: var(--spacing-lg);
    }
    
    .coupon-header-main {
        flex-direction: column;
        gap: var(--spacing-md);
        align-items: flex-start;
    }
    
    .coupon-action-header {
        align-self: stretch;
    }
    
    .store-show-code-btn-main,
    .store-get-deal-btn-main {
        width: 100%;
    }
    
    .coupon-footer-main {
        flex-direction: column;
        gap: var(--spacing-lg);
        align-items: flex-start;
    }
    
    .category-page-header .row {
        flex-direction: column;
    }
    
    .coupon-item-category {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-lg);
        text-align: left;
    }
    
    .coupon-action-section {
        align-self: stretch;
    }
    
    .show-code-btn-category,
    .get-deal-btn-category {
        width: 100%;
    }
    
    .store-header-main {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-lg);
    }
    
    .stores-grid-page {
        grid-template-columns: 1fr;
    }
    
    .search-coupon-item {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-lg);
    }
    
    .stats-grid-store {
        grid-template-columns: 1fr;
    }
    
    .store-directory-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
    
    .subscription-content {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-4xl);
    }
    
    .email-input-container {
        flex-direction: column;
        gap: var(--spacing-md);
        padding: var(--spacing-md);
    }
    
    .email-field {
        min-width: auto;
        width: 100%;
    }
    
    .signup-btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-4xl);
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-xl);
        text-align: center;
    }
    
    .legal-navigation {
        justify-content: center;
        flex-wrap: wrap;
        gap: var(--spacing-lg);
    }
    
    .copyright-info {
        text-align: center;
    }
}