* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Roboto, Helvetica, Arial, sans-serif;
    color: #333;
    line-height: 1.35;
    letter-spacing: 0.2px;
    background: #f8f9fa;
    -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: 22px;
    --font-size-3xl: 30px;
    --font-size-4xl: 36px;
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 10px;
    --border-radius-xl: 12px;
    --border-radius-2xl: 16px;
    --spacing-xxs: 2px;
    --spacing-xs: 4px;
    --spacing-sm: 6px;
    --spacing-md: 8px;
    --spacing-lg: 12px;
    --spacing-xl: 16px;
    --spacing-2xl: 20px;
    --spacing-3xl: 24px;
    --spacing-4xl: 32px;
    --spacing-7xl: 40px;
    --color-brand: #fb6d56;
    --color-brand-hover: #f4583f;
    --color-brand-back: #fedad5;
    --color-brand-light: #fff6f5;
    --color-brand-secondary: #1570ef;
    --color-brand-secondary-hover: #175cd3;
    --color-brand-secondary-back: #d1e9ff;
    --color-primary: #333;
    --color-secondary: #333;
    --color-secondary-hover: #1a1a1a;
    --color-trust: #079455;
    --color-trust-hover: #0be986;
    --color-red: #d92d20;
    --color-red-hover: #e65f54;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Header Bar */
.top-header-bar {
    background: #264e90;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.add-to-chrome {
    color: white;
    text-decoration: underline;
}

/* Main Header */
.main-header {
    background: white;
    border-bottom: 1px solid #e5e5e5;
    padding: 15px 0;
}

.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo {
    color: #264e90;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    line-height: 1;
}
.logo i { color: #ff6b35; font-size: 21px; }
.logo span { color: #ff6b35; }
.logo:hover { opacity: .88; text-decoration: none; }

.main-nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: #264e90;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-input {
    border: 1px solid #ddd;
    padding: 10px 15px;
    border-radius: 5px;
    width: 300px;
    font-size: 14px;
}

.country-selector .country-btn {
    background: #264e90;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.flag-icon {
    width: 20px;
    height: 15px;
}

/* 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: #ff6b35;
    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;
}

/* 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: #264e90;
    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; /* Increased gap */
    flex-wrap: wrap;
    margin: 40px 0;
}

.store-logos img {
    height: 120px; /* Made much larger */
    max-width: 140px; /* Made much larger */
    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; /* Made taller to accommodate larger logo */
}

.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;  /* Made larger */
    height: 60px; /* Made larger */
    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: #264e90;
    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 - FIXED WITH ROUNDED LEFT SIDE */
.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; /* Made slightly taller */
    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: #1570ef;
    border-radius: 8px 0 0 8px; /* FIXED: Now rounded on left side */
    color: rgb(255, 255, 255);
    cursor: pointer;
    display: flex;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    height: 48px; /* Made slightly taller */
    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 #1570ef;
    border-radius: 0 8px 8px 0;
    color: #1570ef;
    cursor: pointer;
    display: flex;
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 14px;
    font-weight: 700;
    height: 48px; /* Made slightly taller */
    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);
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .show-code-btn-new {
        width: 136px;
        height: 40px;
        margin: 12px 0 0 auto;
    }
    
    .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 Button - EXACT MATCH */
.get-deal-btn-new {
    align-items: center;
    background-color: #1570ef;
    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; /* Made slightly taller to match */
    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;
}

@media (max-width: 767px) {
    .show-code-btn-new {
        width: 136px;
        height: 42px;
        margin: 12px 0 0 auto;
    }
    
    .show-code-btn-new .code-action {
        width: 100px;
        height: 42px;
        font-size: 14px;
    }
    
    .show-code-btn-new .code-preview-new {
        height: 42px;
        width: 136px;
        padding-left: 100px;
        font-size: 12px;
    }
    
    .get-deal-btn-new {
        height: 42px;
        width: 136px;
        font-size: 14px;
        justify-content: center;
    }
    
    .store-logo-new {
        width: 50px;
        height: 50px;
    }
    
    .store-logos img {
        height: 40px;
        max-width: 80px;
    }
}

/* 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: #264e90;
    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: #264e90;
    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 #264e90;
    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: #264e90;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 20px;
    word-break: break-all;
}

.copy-btn {
    background: #264e90;
    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: #1a3a73;
    transform: translateY(-1px);
}

.continue-section {
    text-align: center;
    margin-bottom: 25px;
}

.continue-btn {
    background: #264e90;
    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: #1a3a73;
    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: #264e90; 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: #264e90;
    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: #1570ef;
    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 #1570ef;
    border-radius: 0 8px 8px 0;
    color: #1570ef;
    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: #1570ef;
    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;
}

/* Mobile Responsive for Category Page */
@media (max-width: 768px) {
    .category-page-header .row {
        flex-direction: column;
    }
    
    .category-sidebar {
        order: 2;
        margin-top: 30px;
    }
    
    .coupon-item-category {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        text-align: left;
    }
    
    .coupon-action-section {
        align-self: stretch;
    }
    
    .show-code-btn-category,
    .get-deal-btn-category {
        width: 100%;
    }
}

/* Additional styles for Store, Stores, and Search pages */

/* 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: #264e90;
    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: #1a3a73;
    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: #1570ef;
    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 #1570ef;
    border-radius: 0 8px 8px 0;
    color: #1570ef;
    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: #1570ef;
    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: #1570ef;
    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 #1570ef;
    border-radius: 0 8px 8px 0;
    color: #1570ef;
    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: #1570ef;
    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: 8px;
    flex-wrap: wrap;
    max-width: 880px;
    margin: 0 auto 30px;
}

.filter-active,
.filter-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    border-radius: 11px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid #e3e9f2;
    transition: all .18s ease;
}

.filter-link {
    color: #3a4a63;
    background: #fff;
}

.filter-link:hover {
    background: #eef3fb;
    color: #264e90;
    border-color: #264e90;
    transform: translateY(-1px);
    text-decoration: none;
}

.filter-active {
    background: #264e90;
    color: #fff;
    border-color: #264e90;
    box-shadow: 0 5px 14px rgba(38,78,144,.28);
}

/* 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: #264e90;
}

.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;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .store-header-main {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .offer-main-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .offer-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .stores-grid-page {
        grid-template-columns: 1fr;
    }
    
    .search-coupon-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .stats-grid-store {
        grid-template-columns: 1fr;
    }
    
    .alphabet-filter {
        gap: 8px;
    }
    
    .filter-active,
    .filter-link {
        padding: 6px 10px;
        font-size: 13px;
    }
}

/* 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: #264e90;
    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: #1a3a73;
    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-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 {
    margin-left: auto;
}

/* 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: #1570ef;
    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 #1570ef;
    border-radius: 0 8px 8px 0;
    color: #1570ef;
    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: #1570ef;
    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-input {
    border: 1px solid #ddd;
    padding: 10px 45px 10px 15px;
    border-radius: 5px;
    width: 300px;
    font-size: 14px;
}

.search-btn {
    position: absolute;
    right: 5px;
    background: none;
    border: none;
    color: #666;
    padding: 8px;
    cursor: pointer;
}

.search-btn:hover {
    color: #264e90;
}

/* 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: #264e90;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .store-sidebar {
        order: 2;
        margin-top: 30px;
    }
    
    .coupon-content-main {
        flex-direction: column;
        gap: 15px;
    }
    
    .coupon-left-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .coupon-header-main {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .coupon-action-header {
        margin-left: 0;
        align-self: stretch;
    }
    
    .store-show-code-btn-main,
    .store-get-deal-btn-main {
        width: 100%;
    }
    
    .coupon-footer-main {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .search-input {
        width: 250px;
    }
}

/* Fixed Store Page Header Layout */
.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 {
    /* No margin-left auto needed since we're using justify-content: space-between */
}

/* Fixed stat icons */
.stat-icon {
    color: #28a745;
    margin-right: 8px;
    width: 16px;
    display: inline-block;
}

.stat-icon i {
    font-size: 12px;
}

/* Mobile responsive fix */
@media (max-width: 768px) {
    .coupon-header-main {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .coupon-action-header {
        align-self: stretch;
    }
    
    .store-show-code-btn-main,
    .store-get-deal-btn-main {
        width: 100%;
    }
    
    .coupon-badges-left {
        flex-wrap: wrap;
    }
}

.hero-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}