/* ==========================================================================
   DealNest - Modern High-Converting Coupon & Deals Design System
   THEME COLORING SYSTEM & PIXEL-PERFECT UI
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. ROOT THEME CONFIGURATION (Easily customize the entire website's colors)
   Default: DealNest Royal Blue (Exact match to ref/header.png)
   -------------------------------------------------------------------------- */
:root {
    /* Primary Brand Colors */
    --theme-primary:          #1877f2;
    --theme-primary-hover:    #1466d2;
    --theme-primary-active:   #0f52b8;
    --theme-primary-light:    #eff6ff;
    --theme-primary-subtle:   #dbeafe;
    --theme-primary-border:   #bfdbfe;
    --theme-primary-ring:     rgba(24, 119, 242, 0.22);
    --theme-primary-shadow:   0 2px 8px 0 rgba(24, 119, 242, 0.25);
    --theme-primary-gradient: linear-gradient(135deg, #1877f2 0%, #3b82f6 100%);
    --theme-primary-contrast: #ffffff;

    /* Secondary / Store Accent Colors (DHgate Orange & Warm Tones) */
    --theme-secondary:        #f97316;
    --theme-secondary-hover:  #ea580c;
    --theme-secondary-light:  #fff7ed;
    --theme-secondary-border: #ffedd5;
    --theme-secondary-contrast: #ffffff;

    /* Semantic Status Colors */
    --theme-success:          #10b981;
    --theme-success-hover:    #059669;
    --theme-success-light:    #ecfdf5;
    --theme-success-border:   #a7f3d0;
    
    --theme-warning:          #f59e0b;
    --theme-warning-light:    #fef3c7;
    
    --theme-danger:           #ef4444;
    --theme-danger-light:     #fef2f2;
    --theme-danger-border:    #fecaca;

    --theme-purple:           #8b5cf6;
    --theme-purple-light:     #f5f3ff;
    
    --theme-pink:             #ec4899;
    --theme-pink-light:       #fdf2f8;

    /* Neutrals, Surfaces & Backgrounds */
    --theme-bg:               #f8fafc;
    --theme-surface:          #ffffff;
    --theme-surface-subtle:   #f9fafb;
    --theme-surface-hover:    #f3f4f6;
    --theme-surface-active:   #e5e7eb;

    /* Borders & Dividers */
    --theme-border:           #e5e7eb;
    --theme-border-hover:     #d1d5db;
    --theme-border-strong:    #9ca3af;

    /* Typography Colors (Matching ref/header.png & ref/footer.png) */
    --theme-text-title:       #101828;
    --theme-text-body:        #344054;
    --theme-text-muted:       #667085;
    --theme-text-subtle:      #98a2b3;
    --theme-text-inverse:     #ffffff;

    /* Shadows & Elevations */
    --shadow-xs: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(16, 24, 40, 0.1), 0 1px 2px -1px rgba(16, 24, 40, 0.06);
    --shadow-md: 0 4px 8px -2px rgba(16, 24, 40, 0.1), 0 2px 4px -2px rgba(16, 24, 40, 0.06);
    --shadow-lg: 0 12px 16px -4px rgba(16, 24, 40, 0.08), 0 4px 6px -2px rgba(16, 24, 40, 0.03);
    --shadow-xl: 0 20px 24px -4px rgba(16, 24, 40, 0.08), 0 8px 8px -4px rgba(16, 24, 40, 0.03);

    /* Radii */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Layout */
    --container-max: 1240px;
}

/* --------------------------------------------------------------------------
   PRE-DEFINED COLOR THEMES
   -------------------------------------------------------------------------- */
[data-theme="emerald"] {
    --theme-primary:          #059669;
    --theme-primary-hover:    #047857;
    --theme-primary-active:   #065f46;
    --theme-primary-light:    #ecfdf5;
    --theme-primary-subtle:   #d1fae5;
    --theme-primary-border:   #a7f3d0;
    --theme-primary-ring:     rgba(5, 150, 105, 0.22);
    --theme-primary-shadow:   0 2px 8px 0 rgba(5, 150, 105, 0.25);
    --theme-primary-gradient: linear-gradient(135deg, #059669 0%, #10b981 100%);
}

[data-theme="indigo"] {
    --theme-primary:          #4f46e5;
    --theme-primary-hover:    #4338ca;
    --theme-primary-active:   #3730a3;
    --theme-primary-light:    #eef2ff;
    --theme-primary-subtle:   #e0e7ff;
    --theme-primary-border:   #c7d2fe;
    --theme-primary-ring:     rgba(79, 70, 229, 0.22);
    --theme-primary-shadow:   0 2px 8px 0 rgba(79, 70, 229, 0.25);
    --theme-primary-gradient: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
}

[data-theme="crimson"] {
    --theme-primary:          #e11d48;
    --theme-primary-hover:    #be123c;
    --theme-primary-active:   #9f1239;
    --theme-primary-light:    #fff1f2;
    --theme-primary-subtle:   #ffe4e6;
    --theme-primary-border:   #fecdd3;
    --theme-primary-ring:     rgba(225, 29, 72, 0.22);
    --theme-primary-shadow:   0 2px 8px 0 rgba(225, 29, 72, 0.25);
    --theme-primary-gradient: linear-gradient(135deg, #e11d48 0%, #f43f5e 100%);
}

/* --------------------------------------------------------------------------
   2. RESET & BASE STYLES
   -------------------------------------------------------------------------- */
html {
    box-sizing: border-box;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

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

body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    position: relative;
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--theme-bg);
    color: var(--theme-text-body);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

button, input, select, textarea {
    font-family: inherit;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.header-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* --------------------------------------------------------------------------
   3. EXACT HEADER & NAVBAR (Matching ref/header.png)
   -------------------------------------------------------------------------- */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #eaecf0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 20px;
}

/* Brand Logo (Exact match to ref/header.png) */
.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.brand-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.site-custom-logo {
    max-height: 38px;
    max-width: 180px;
    height: auto;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-custom-logo {
    max-height: 42px;
}

.brand-text-col {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-size: 20px;
    font-weight: 800;
    color: #101828;
    line-height: 1.1;
    letter-spacing: -0.4px;
}

.brand-tagline {
    font-size: 11px;
    font-weight: 500;
    color: #667085;
    margin-top: 1px;
    letter-spacing: -0.1px;
}

/* Navigation Links */
.nav-links-wrapper {
    margin-left: 32px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-link {
    font-size: 15px;
    font-weight: 600;
    color: #344054;
    transition: color 0.15s ease;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--theme-primary);
}

/* Right Section: Search & Auth Buttons */
.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
}

.search-bar {
    position: relative;
    width: 330px;
}

.search-bar input {
    width: 100%;
    height: 40px;
    padding: 0 32px 0 38px;
    border: 1px solid #d0d5dd;
    border-radius: var(--radius-md);
    background-color: #f9fafb;
    font-size: 13.5px;
    color: #101828;
    outline: none;
    transition: all 0.2s ease;
}

.search-bar input::placeholder {
    color: #98a2b3;
}

.search-bar input:focus {
    background-color: #ffffff;
    border-color: var(--theme-primary);
    box-shadow: 0 0 0 3px var(--theme-primary-ring);
}

.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #667085;
    pointer-events: none;
}

.search-clear-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 16px;
    color: #98a2b3;
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 50%;
    line-height: 1;
}

.search-clear-btn:hover {
    color: #101828;
    background-color: #eaecf0;
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-sign-in {
    height: 40px;
    padding: 0 18px;
    font-size: 14px;
    font-weight: 600;
    color: #344054;
    border: 1px solid #d0d5dd;
    border-radius: var(--radius-md);
    background: #ffffff;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.15s ease;
}

.btn-sign-in:hover {
    background: #f9fafb;
    border-color: #98a2b3;
    color: #101828;
}

.btn-join {
    height: 40px;
    padding: 0 22px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    background-color: var(--theme-primary);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
    transition: all 0.15s ease;
}

.btn-join:hover {
    background-color: var(--theme-primary-hover);
}

/* Mobile Menu Toggle Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
    margin-left: 4px;
}

.mobile-menu-btn span {
    display: block;
    height: 2.5px;
    width: 100%;
    background-color: #101828;
    border-radius: 2px;
    transition: all 0.25s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    padding: 20px 24px 24px 24px;
    z-index: 99;
}

.mobile-nav-drawer.active {
    display: block;
    animation: slideDownNav 0.2s ease-out;
}

@keyframes slideDownNav {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-nav-link {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #344054;
    padding: 8px 0;
    text-decoration: none;
    border-bottom: 1px solid #f1f5f9;
    transition: color 0.15s ease;
}

.mobile-nav-link.active,
.mobile-nav-link:hover {
    color: var(--theme-primary);
}

.mobile-auth-row {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* --------------------------------------------------------------------------
   4. BREADCRUMBS
   -------------------------------------------------------------------------- */
.breadcrumbs-bar {
    padding: 16px 0;
    font-size: 13px;
    color: var(--theme-text-muted);
}

.breadcrumbs-bar a {
    color: var(--theme-text-muted);
    transition: color 0.15s ease;
}

.breadcrumbs-bar a:hover {
    color: var(--theme-primary);
}

.breadcrumbs-bar .separator {
    margin: 0 8px;
    color: var(--theme-text-subtle);
}

.breadcrumbs-bar .current {
    color: var(--theme-text-body);
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   5. STORE HERO SECTION (Matching ref/hero.png)
   -------------------------------------------------------------------------- */
.store-hero-card {
    background: transparent;
    border: none;
    padding: 0;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: none;
}

.store-logo-box {
    width: 140px;
    height: 140px;
    border: 1px solid #eaecf0;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    flex-shrink: 0;
    padding: 14px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(16, 24, 40, 0.05);
}

.store-logo-img {
    max-width: 110px;
    max-height: 72px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.store-logo-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    max-width: 100%;
}

.logo-badge-text {
    font-family: 'Plus Jakarta Sans', var(--font-sans);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.15;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #1877F2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    word-break: break-word;
}

.dhgate-logo-svg {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.dhgate-logo-svg .logo-dh {
    color: #101828;
}

.dhgate-logo-svg .logo-gate {
    color: #f97316;
}

.store-subtext {
    font-size: 9.5px;
    font-weight: 500;
    color: #667085;
    margin-top: 4px;
    letter-spacing: -0.1px;
}

.store-hero-info {
    flex: 1;
    min-width: 0;
    padding: 0 4px;
}

.store-hero-title {
    font-size: 28px;
    font-weight: 800;
    color: #101828;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 14px;
}

.rating-stars {
    color: #f59e0b;
    font-size: 15px;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
}

.rating-score {
    font-weight: 700;
    color: #101828;
}

.rating-count {
    color: #667085;
    font-weight: 400;
}

.store-hero-desc {
    font-size: 13.5px;
    color: #475467;
    line-height: 1.5;
    margin-bottom: 16px;
    max-width: 530px;
}

.store-badges {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 16px;
    font-size: 13px;
    font-weight: 500;
    color: #475467;
    white-space: nowrap;
}

.store-badge-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    flex-shrink: 0;
}

.store-badge-item span {
    white-space: nowrap;
}

.store-badge-item svg {
    color: #475467;
    flex-shrink: 0;
}

.store-hero-banner-right {
    width: 440px;
    height: 168px;
    background: #fbf6f0;
    border: 1px solid #ede3d8;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(16, 24, 40, 0.04);
}

.banner-inner-content {
    padding: 24px 16px 24px 28px;
    z-index: 2;
    min-width: 190px;
}

.banner-title {
    font-size: 22px;
    font-weight: 800;
    color: #101828;
    line-height: 1.15;
    white-space: pre-line;
}

.banner-subtitle {
    font-size: 12.5px;
    font-weight: 500;
    color: #475467;
    margin-top: 5px;
}

.banner-accent-line {
    width: 36px;
    height: 3px;
    background: #ea580c;
    border-radius: 2px;
    margin-top: 14px;
}

.banner-img-wrapper {
    height: 100%;
    width: 270px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-lifestyle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-graphic {
    font-size: 40px;
    opacity: 0.9;
    z-index: 2;
}

/* --------------------------------------------------------------------------
   6. NAVIGATION TABS (Matching ref/top-coupon.png)
   -------------------------------------------------------------------------- */
.tabs-nav-bar {
    border-bottom: 1px solid #eaecf0;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.tabs-desktop-buttons {
    display: flex;
    align-items: center;
    gap: 32px;
}

.tabs-mobile-dropdown-wrapper {
    display: none !important;
}

.tabs-dropdown-container {
    position: relative;
    width: 100%;
}

.tabs-filter-dropdown {
    width: 100%;
    height: 40px;
    font-size: 13.5px;
    font-weight: 600;
    color: #0f172a;
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 9px;
    padding: 0 36px 0 14px;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(16, 24, 40, 0.05);
    transition: all 0.15s ease;
    box-sizing: border-box;
    font-family: inherit;
}

.tabs-filter-dropdown:focus {
    border-color: var(--theme-primary);
    box-shadow: 0 0 0 3px var(--theme-primary-ring);
}

.tabs-dropdown-container .select-chevron {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #64748b;
}

.tab-btn {
    padding: 10px 2px 14px 2px;
    font-size: 15px;
    font-weight: 500;
    color: #475569;
    border: none;
    background: transparent;
    cursor: pointer;
    position: relative;
    transition: color 0.15s ease;
    white-space: nowrap;
}

.tab-btn:hover {
    color: var(--theme-primary);
}

.tab-btn.active {
    color: var(--theme-primary);
    font-weight: 600;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--theme-primary);
    border-radius: 2px 2px 0 0;
}

/* --------------------------------------------------------------------------
   7. 2-COLUMN MAIN LAYOUT
   -------------------------------------------------------------------------- */
.main-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 28px;
    margin-bottom: 40px;
    align-items: start;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.3px;
    margin-bottom: 4px;
    line-height: 1.25;
}

.section-subtitle {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.4;
}

/* --------------------------------------------------------------------------
   8. COUPON CARD (Matching ref/top-coupon.png)
   -------------------------------------------------------------------------- */
.coupon-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.coupon-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.03);
    position: relative;
}

.coupon-card:hover {
    box-shadow: 0 4px 14px rgba(16, 24, 40, 0.07);
    border-color: #cbd5e1;
}

.coupon-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    min-width: 0;
}

.discount-tag {
    width: 88px;
    height: 82px;
    background: #fff5ec;
    border: 1px solid rgba(254, 215, 170, 0.35);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-align: center;
    padding: 4px;
}

.discount-prefix {
    font-size: 9.5px;
    font-weight: 700;
    color: #f95700;
    letter-spacing: 0.3px;
    line-height: 1;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.discount-amount {
    font-size: 24px;
    font-weight: 800;
    color: #f95700;
    line-height: 1.05;
    letter-spacing: -0.5px;
}

.discount-amount.has-prefix {
    font-size: 20px;
    line-height: 1;
}

.discount-amount.is-deal {
    font-size: 20px;
    line-height: 1.05;
}

.discount-unit {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #f95700;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.discount-unit.is-cashback {
    font-size: 9px;
    letter-spacing: 0.3px;
}

.coupon-details {
    flex: 1;
    min-width: 0;
}

.coupon-store-name {
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
    margin-bottom: 2px;
}

.coupon-title {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
    line-height: 1.3;
}

.coupon-desc {
    font-size: 13.5px;
    color: #475569;
    line-height: 1.45;
    margin-bottom: 8px;
}

.coupon-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #64748b;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #10b981;
    font-weight: 500;
}

.verified-badge svg {
    color: #10b981;
    flex-shrink: 0;
}

.meta-divider {
    color: #cbd5e1;
    font-weight: 300;
}

.uses-count {
    color: #64748b;
}

.coupon-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-shrink: 0;
    min-width: 186px;
}

/* Coupon Button & Code Reveal (Matching ref/most verified.png & ref/top-coupon.png) */
.btn-coupon-group {
    display: inline-flex;
    align-items: stretch;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 186px;
    height: 42px;
}

.btn-coupon-group:hover {
    box-shadow: 0 4px 14px rgba(24, 119, 242, 0.3);
    transform: translateY(-1px);
}

.btn-coupon-main {
    background-color: var(--theme-primary);
    color: #ffffff;
    padding: 0 14px;
    font-size: 13.5px;
    font-weight: 600;
    border: none;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.btn-coupon-group:hover .btn-coupon-main {
    background-color: var(--theme-primary-hover);
}

.btn-text-desktop {
    display: inline;
}

.btn-text-mobile {
    display: none;
}

.btn-coupon-code {
    background-color: #ffffff;
    color: var(--theme-primary);
    padding: 0 10px;
    font-size: 13.5px;
    font-weight: 700;
    border: 1.5px dashed var(--theme-primary);
    border-left: none;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    text-align: center;
    box-sizing: border-box;
}

.btn-deal-direct {
    background-color: var(--theme-primary);
    color: #ffffff;
    height: 42px;
    width: 186px;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.15s ease;
    white-space: nowrap;
    text-align: center;
}

.btn-deal-direct:hover {
    background-color: var(--theme-primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.25);
}

.coupon-expiry {
    font-size: 12px;
    color: #64748b;
    text-align: center;
}

/* --------------------------------------------------------------------------
   9. SIDEBAR WIDGETS (Matching ref/most verified.png & ref/top-coupon.png)
   -------------------------------------------------------------------------- */
.sidebar-widget {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 22px 20px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(16, 24, 40, 0.03);
}

.sidebar-widget-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
}

.widget-alert-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.sidebar-mail-icon {
    color: var(--theme-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.widget-alert-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
}

.widget-alert-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.45;
    margin-bottom: 14px;
}

.widget-alert-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.widget-alert-input {
    width: 100%;
    height: 42px;
    padding: 0 14px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 13.5px;
    color: #0f172a;
    background: #ffffff;
    outline: none;
    transition: all 0.15s ease;
}

.widget-alert-input:focus {
    border-color: var(--theme-primary);
    box-shadow: 0 0 0 3px var(--theme-primary-ring);
}

.widget-alert-input::placeholder {
    color: #94a3b8;
}

.btn-widget-alert {
    width: 100%;
    height: 42px;
    background-color: var(--theme-primary);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s ease;
}

.btn-widget-alert:hover {
    background-color: var(--theme-primary-hover);
}

.widget-alert-disclaimer {
    font-size: 11.5px;
    color: #64748b;
    line-height: 1.45;
    margin-top: 12px;
}

.widget-alert-disclaimer a {
    color: var(--theme-primary);
    text-decoration: none;
    font-weight: 500;
}

.widget-alert-disclaimer a:hover {
    text-decoration: underline;
}

/* About Store Sidebar */
.widget-about-title {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.widget-about-desc {
    font-size: 13px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 16px;
}

.store-meta-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.store-meta-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #475569;
}

.store-meta-row svg {
    color: #475569;
    flex-shrink: 0;
}

.store-meta-row a {
    color: var(--theme-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.15s ease;
}

.store-meta-row a:hover {
    text-decoration: underline;
}

/* Widget: Filter Coupons */
.filter-pills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 14px;
}

.pill-btn {
    padding: 7px 10px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    font-size: 12.5px;
    font-weight: 500;
    color: #475569;
    cursor: pointer;
    transition: all 0.15s ease;
    text-align: center;
    white-space: nowrap;
}

.pill-btn:hover {
    border-color: var(--theme-primary);
    color: var(--theme-primary);
}

.pill-btn.active {
    background-color: #eff6ff;
    color: var(--theme-primary);
    border-color: var(--theme-primary);
    font-weight: 600;
}

.filter-category-group {
    margin-top: 16px;
}

.filter-label {
    font-size: 13.5px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
    display: block;
}

.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.category-dropdown {
    width: 100%;
    height: 42px;
    padding: 0 36px 0 14px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 13.5px;
    color: #0f172a;
    background: #ffffff;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: all 0.15s ease;
}

.category-dropdown:focus {
    border-color: var(--theme-primary);
    box-shadow: 0 0 0 3px var(--theme-primary-ring);
}

.select-chevron {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #64748b;
}

/* Widget: Coupon Highlights */
.highlight-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 14px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13.5px;
    color: #334155;
    font-weight: 500;
}

.highlight-item svg {
    color: #475569;
    flex-shrink: 0;
}

/* Widget: Popular Categories */
.widget-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 10px;
}

.widget-header-row .sidebar-widget-title {
    margin: 0;
}

.widget-header-link {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--theme-primary);
    text-decoration: none;
    white-space: nowrap;
    word-break: keep-all;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    line-height: 1;
    transition: color 0.15s ease;
}

.widget-header-link:hover {
    text-decoration: underline;
}

.category-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.category-sidebar-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 13.5px;
    color: #475569;
    text-decoration: none;
    border-bottom: 1px solid #f8fafc;
    transition: all 0.15s ease;
    cursor: pointer;
}

.category-sidebar-link:hover,
.category-sidebar-link.active {
    color: var(--theme-primary);
    font-weight: 600;
    padding-left: 2px;
}

.cat-badge-count {
    font-size: 11.5px;
    font-weight: 600;
    color: #64748b;
    background: #f1f5f9;
    padding: 2px 7px;
    border-radius: 12px;
    transition: all 0.15s ease;
}

.category-sidebar-link:hover .cat-badge-count,
.category-sidebar-link.active .cat-badge-count {
    background: #eff6ff;
    color: var(--theme-primary);
}

.category-sidebar-link svg {
    color: #94a3b8;
    transition: transform 0.15s ease;
}

.category-sidebar-link:hover svg {
    transform: translateX(2px);
    color: var(--theme-primary);
}

/* Tip Card (Did you know?) */
.sidebar-tip-card {
    background: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: 12px;
    padding: 18px 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 20px;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.02);
}

.tip-icon-box {
    color: var(--theme-primary);
    flex-shrink: 0;
    margin-top: 1px;
}

.tip-body {
    flex: 1;
}

.tip-title {
    font-size: 14.5px;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 4px;
}

.tip-text {
    font-size: 13px;
    color: #475569;
    line-height: 1.55;
}

/* --------------------------------------------------------------------------
   10. HOW TO USE & POPULAR SAVINGS SECTIONS (Matching ref/how-to-use.png)
   -------------------------------------------------------------------------- */
.how-to-use-section {
    margin-top: 36px;
    margin-bottom: 48px;
}

.how-to-steps-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.step-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 18px 18px;
    flex: 1;
    min-width: 0;
    min-height: 145px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.02);
    transition: all 0.2s ease;
}

.step-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(16, 24, 40, 0.05);
}

.step-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.step-badge-num {
    width: 28px;
    height: 28px;
    background: #1877f2;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
}

.step-card-icon {
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
    line-height: 1.3;
}

.step-card-desc {
    font-size: 12.5px;
    color: #64748b;
    line-height: 1.45;
    margin: 0;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #94a3b8;
    padding: 0 2px;
}

/* Popular Ways to Save Block */
.popular-ways-block {
    margin-top: 36px;
}

.saving-methods-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.saving-method-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 18px 16px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.02);
    transition: all 0.2s ease;
}

.saving-method-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(16, 24, 40, 0.05);
}

.saving-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.saving-icon-orange {
    background: #fff7ed;
    color: #ea580c;
    border: 1px solid rgba(254, 215, 170, 0.5);
}

.saving-icon-blue {
    background: #eff6ff;
    color: #2563eb;
    border: 1px solid rgba(191, 219, 254, 0.5);
}

.saving-icon-green {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid rgba(187, 247, 208, 0.5);
}

.saving-icon-purple {
    background: #faf5ff;
    color: #9333ea;
    border: 1px solid rgba(233, 213, 255, 0.5);
}

.saving-card-content {
    flex: 1;
    min-width: 0;
}

.saving-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
    line-height: 1.3;
}

.saving-card-desc {
    font-size: 12.5px;
    color: #64748b;
    line-height: 1.45;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .how-to-steps-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .step-connector {
        display: none;
    }
    .saving-methods-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .how-to-steps-row {
        grid-template-columns: 1fr;
    }
    .saving-methods-grid {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   11. FAQ ACCORDION (Matching ref/faq.png)
   -------------------------------------------------------------------------- */
.faq-section-block {
    margin-top: 36px;
    margin-bottom: 48px;
}

.faq-list {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #ffffff;
    overflow: hidden;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.02);
}

.faq-item:hover {
    border-color: #cbd5e1;
}

.faq-item.active {
    border-color: #cbd5e1;
    box-shadow: 0 2px 6px rgba(16, 24, 40, 0.04);
}

.faq-question {
    padding: 13px 20px;
    font-size: 14.5px;
    font-weight: 500;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
    background: #ffffff;
    transition: background 0.15s ease, color 0.15s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-icon {
    transition: transform 0.25s ease, color 0.2s ease;
    color: #64748b;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--theme-primary);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.25s ease-out;
    font-size: 13.5px;
    color: #475569;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 12px 20px 16px 20px;
    max-height: 300px;
    border-top: 1px solid #f1f5f9;
}

/* --------------------------------------------------------------------------
   12. CALL TO ACTION BANNER (Matching ref/call-to-action.png)
   -------------------------------------------------------------------------- */
.cta-banner {
    background: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: 16px;
    padding: 26px 36px;
    margin-top: 36px;
    margin-bottom: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    box-shadow: 0 1px 3px rgba(16, 24, 40, 0.03);
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    min-width: 0;
}

.cta-icon-box {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: #dbeafe;
    color: #1877f2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-text-block {
    flex: 1;
    min-width: 0;
}

.cta-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
    line-height: 1.25;
}

.cta-desc {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.45;
    margin: 0;
}

.cta-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    flex-shrink: 0;
}

.cta-form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-input {
    width: 280px;
    height: 46px;
    padding: 0 16px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: #ffffff;
    font-size: 14px;
    color: #0f172a;
    outline: none;
    transition: all 0.15s ease;
}

.cta-input::placeholder {
    color: #94a3b8;
}

.cta-input:focus {
    border-color: #1877f2;
    box-shadow: 0 0 0 3px rgba(24, 119, 242, 0.15);
}

.btn-cta-submit {
    height: 46px;
    padding: 0 22px;
    background: #1877f2;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s ease;
}

.btn-cta-submit:hover {
    background-color: #1464cc;
}

.cta-disclaimer {
    font-size: 11.5px;
    color: #64748b;
    margin: 0;
}

.cta-disclaimer a {
    color: #1877f2;
    text-decoration: none;
    font-weight: 500;
}

.cta-disclaimer a:hover {
    text-decoration: underline;
}

@media (max-width: 991px) {
    .cta-banner {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        padding: 24px;
    }
    .cta-right {
        width: 100%;
    }
    .cta-form {
        width: 100%;
    }
    .cta-input {
        width: 100%;
        flex: 1;
    }
}

@media (max-width: 480px) {
    .cta-form {
        flex-direction: column;
    }
    .btn-cta-submit {
        width: 100%;
    }
}

/* --------------------------------------------------------------------------
   13. EXACT FOOTER (Matching ref/footer.png)
   -------------------------------------------------------------------------- */
.site-footer {
    background-color: #ffffff;
    border-top: 1px solid #eaecf0;
    padding: 48px 0 28px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr 1.15fr 1.15fr;
    gap: 32px;
    margin-bottom: 36px;
}

.footer-brand-col {
    padding-right: 20px;
}

.footer-about-text {
    font-size: 13px;
    color: #667085;
    line-height: 1.55;
    margin: 14px 0 16px 0;
    max-width: 290px;
}

.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 14px;
}

.social-icon-link {
    color: #344054;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.15s ease, transform 0.15s ease;
}

.social-icon-link:hover {
    color: var(--theme-primary);
    transform: translateY(-1px);
}

.footer-nav-col {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 14px;
    font-weight: 700;
    color: #101828;
    margin-bottom: 16px;
    letter-spacing: -0.1px;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-list a {
    font-size: 13.5px;
    color: #667085;
    transition: color 0.15s ease;
    white-space: nowrap;
}

.footer-links-list a:hover {
    color: var(--theme-primary);
}

.footer-bottom-row {
    border-top: 1px solid #eaecf0;
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: #667085;
}

.footer-copyright {
    font-size: 13px;
    color: #667085;
}

.footer-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #475467;
}

.footer-trust-badge svg {
    color: var(--theme-primary);
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   14. MODAL / POPUP
   -------------------------------------------------------------------------- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(16, 24, 40, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: var(--theme-surface);
    border-radius: var(--radius-xl);
    width: 90%;
    max-width: 480px;
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    transform: scale(0.95);
    transition: transform 0.25s ease;
    position: relative;
    border: 1px solid var(--theme-border);
}

.modal-overlay.active .modal-card {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
    color: #475569;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    margin: 0;
    z-index: 25;
    transition: all 0.15s ease;
    box-sizing: border-box;
}

.modal-close svg {
    display: block;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    pointer-events: none;
}

.modal-close:hover {
    background: #f8fafc;
    color: var(--theme-text-title);
    transform: scale(1.06);
}

.coupon-details-modal-card {
    max-width: 480px;
    padding: 28px 24px 22px 24px;
}

.modal-store-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.modal-store-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    font-weight: 600;
    color: #059669;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    padding: 3px 10px;
    border-radius: 20px;
}

.modal-discount-tag {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 6px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #ea580c;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.2px;
}

.modal-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--theme-text-title);
    margin-bottom: 8px;
    line-height: 1.35;
    word-break: break-word;
}

.modal-desc {
    font-size: 13px;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 12px;
    word-break: break-word;
}

.modal-meta-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.modal-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    font-weight: 500;
    color: #475569;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 4px 9px;
    border-radius: 6px;
}

.modal-meta-pill svg {
    color: #64748b;
    flex-shrink: 0;
}

.modal-code-container {
    margin-bottom: 14px;
    width: 100%;
}

.modal-code-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.modal-code-box {
    display: flex;
    border: 2px dashed var(--theme-primary);
    border-radius: var(--radius-md);
    background: var(--theme-surface-subtle);
    overflow: hidden;
    margin-bottom: 4px;
    height: 42px;
    box-sizing: border-box;
}

.modal-code-input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: 'Consolas', monospace;
    font-size: 16px;
    font-weight: 800;
    color: var(--theme-primary);
    padding: 0 12px;
    text-align: center;
    outline: none;
    letter-spacing: 0.5px;
}

.btn-modal-copy {
    background: var(--theme-primary);
    color: var(--theme-primary-contrast);
    border: none;
    padding: 0 20px;
    font-weight: 700;
    font-size: 13.5px;
    cursor: pointer;
    transition: background 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-modal-copy:hover {
    background-color: var(--theme-primary-hover);
}

.modal-copy-hint {
    font-size: 10.5px;
    color: #64748b;
    margin-top: 3px;
}

.modal-deal-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12.5px;
    color: #065f46;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    padding: 10px 12px;
    border-radius: 8px;
    margin-bottom: 14px;
    text-align: center;
    line-height: 1.35;
}

.modal-deal-notice svg {
    flex-shrink: 0;
}

.btn-modal-go {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 44px;
    background-color: var(--theme-primary);
    color: #ffffff;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
    word-break: keep-all;
    box-shadow: 0 2px 8px rgba(24, 119, 242, 0.25);
    transition: all 0.15s ease;
    box-sizing: border-box;
}

.btn-modal-go .btn-arrow {
    display: inline-block;
}

.btn-modal-go:hover {
    background-color: var(--theme-primary-hover);
    transform: translateY(-1px);
}

.modal-trust-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 11px;
    color: #94a3b8;
    margin-top: 10px;
}

.modal-trust-footer svg {
    color: #10b981;
    flex-shrink: 0;
}

.no-coupons-card {
    background: #ffffff;
    border: 1px solid #eaecf0;
    border-radius: 12px;
    padding: 48px 24px;
    text-align: center;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(16, 24, 40, 0.04);
}

.no-coupons-icon {
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.no-coupons-title {
    font-size: 18px;
    font-weight: 700;
    color: #101828;
    margin-bottom: 8px;
}

.no-coupons-text {
    font-size: 14px;
    color: #667085;
    margin-bottom: 20px;
}

.btn-reset-filters {
    background-color: var(--theme-primary);
    color: #ffffff;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
}

.btn-reset-filters:hover {
    background-color: var(--theme-primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.25);
}

.auth-modal-card {
    max-width: 440px;
    padding: 36px 32px;
}

.auth-modal-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #eff6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
}

/* Store Directory Modal */
.store-modal-card {
    max-width: 620px;
    text-align: left;
    max-height: 85vh;
    overflow-y: auto;
}

.stores-directory-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 16px;
}

@media (max-width: 600px) {
    .stores-directory-grid {
        grid-template-columns: 1fr;
    }
}

.store-dir-card {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    background: #ffffff;
    transition: all 0.15s ease;
}

.store-dir-card:hover {
    border-color: var(--theme-primary);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.08);
    transform: translateY(-1px);
}

.store-dir-card.active {
    border-color: var(--theme-primary);
    background: #eff6ff;
}

.store-dir-logo {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 11px;
    color: #0f172a;
    flex-shrink: 0;
    text-align: center;
}

.store-dir-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.store-dir-info strong {
    font-size: 14px;
    color: #0f172a;
}

.store-dir-info span {
    font-size: 12px;
    color: #64748b;
    margin-top: 2px;
}

.store-dir-badge {
    font-size: 11px;
    font-weight: 700;
    background: #dbeafe;
    color: #1d4ed8;
    padding: 3px 8px;
    border-radius: 6px;
}

.store-dir-btn {
    font-size: 12px;
    font-weight: 600;
    color: var(--theme-primary);
}

/* Info & Legal Modal */
.info-modal-card {
    max-width: 640px;
    text-align: left;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    padding: 28px;
}

.info-modal-header {
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 14px;
    margin-bottom: 16px;
}

.info-modal-tab-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.info-tab-btn {
    padding: 5px 12px;
    font-size: 12.5px;
    font-weight: 600;
    color: #64748b;
    background: #f1f5f9;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.15s ease;
}

.info-tab-btn:hover {
    color: var(--theme-primary);
}

.info-tab-btn.active {
    background: var(--theme-primary);
    color: #ffffff;
}

.info-modal-body {
    overflow-y: auto;
    font-size: 13.5px;
    line-height: 1.6;
    color: #334155;
    padding-right: 6px;
}

.info-modal-body h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin: 14px 0 6px 0;
}

.info-modal-body h4:first-child {
    margin-top: 0;
}

.info-modal-body p {
    margin-bottom: 12px;
}

.info-modal-body ul {
    margin-left: 20px;
    margin-bottom: 14px;
}

.info-modal-body li {
    margin-bottom: 6px;
}

.toggle-switch-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8fafc;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    margin-top: 14px;
}

/* --------------------------------------------------------------------------
   15. RESPONSIVE BREAKPOINTS & MOBILE OPTIMIZATIONS
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
    .nav-links-wrapper {
        margin-left: 18px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-link {
        font-size: 14px;
    }

    .search-bar {
        width: 240px;
    }

    .brand-title {
        font-size: 18px;
    }

    .store-hero-banner-right {
        width: 380px;
    }

    .banner-inner-content {
        padding: 20px 14px 20px 20px;
    }

    .banner-title {
        font-size: 20px;
    }
}

@media (max-width: 1024px) {
    .main-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .store-hero-card {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        margin-bottom: 22px;
    }

    .store-hero-banner-right {
        width: 100%;
        height: auto;
        min-height: 140px;
    }

    .banner-img-wrapper {
        width: 220px;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .footer-brand-col {
        grid-column: 1 / -1;
        padding-right: 0;
        margin-bottom: 10px;
    }

    .footer-about-text {
        max-width: 100%;
    }

    .how-to-steps-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .step-connector {
        display: none;
    }

    .saving-methods-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .nav-inner {
        height: 64px;
        gap: 14px;
    }

    .nav-links-wrapper {
        margin-left: 12px;
    }

    .nav-links {
        gap: 14px;
    }

    .nav-link {
        font-size: 13.5px;
    }

    .search-bar {
        width: 190px;
    }

    .search-bar input {
        height: 36px;
        font-size: 12.5px;
        padding: 0 28px 0 34px;
    }

    .btn-sign-in {
        height: 36px;
        padding: 0 14px;
        font-size: 13px;
    }

    .btn-join {
        height: 36px;
        padding: 0 16px;
        font-size: 13px;
    }
}

/* ==========================================================================
   15. FULL MOBILE RESPONSIVE ENGINE (Strict Zero Overflow & Scaled Down Typography)
   Breakpoints: 768px (Tablets/Phones), 480px (Standard Mobile), 360px (Compact Mobile)
   ========================================================================== */

@media (max-width: 768px) {
    /* 0. Strict Viewport & Global Constraints */
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
        position: relative !important;
        -webkit-text-size-adjust: 100%;
    }

    *, *::before, *::after {
        box-sizing: border-box !important;
    }

    .container, 
    .header-container, 
    .footer-container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }

    img, picture, svg, video, canvas {
        max-width: 100% !important;
        height: auto;
    }

    /* 1. Header Mobile */
    .site-header {
        position: sticky;
        top: 0;
        z-index: 1000;
        width: 100% !important;
        background: #ffffff;
        border-bottom: 1px solid var(--theme-border);
    }

    .nav-inner {
        height: 52px !important;
        gap: 6px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    .brand-wrapper {
        gap: 6px !important;
        min-width: 0 !important;
        flex: 1 1 auto !important;
        overflow: hidden !important;
        display: flex !important;
        align-items: center !important;
    }

    .brand-logo-icon {
        flex-shrink: 0 !important;
    }

    .brand-logo-icon svg {
        width: 22px !important;
        height: 22px !important;
    }

    .site-custom-logo {
        max-height: 26px !important;
        max-width: 100px !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
    }

    .brand-text-col {
        min-width: 0 !important;
        overflow: hidden !important;
    }

    .brand-title {
        font-size: 14.5px !important;
        font-weight: 800 !important;
        letter-spacing: -0.3px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        line-height: 1.1 !important;
    }

    .brand-tagline {
        font-size: 8.5px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        color: var(--theme-text-muted) !important;
        line-height: 1.1 !important;
    }

    .nav-links-wrapper, 
    .header-right > .search-bar,
    .header-right > .auth-buttons {
        display: none !important;
    }

    .header-right {
        margin-left: auto !important;
        flex: 0 0 auto !important;
        gap: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
    }

    .mobile-menu-btn {
        display: flex !important;
        width: 32px !important;
        height: 32px !important;
        padding: 5px !important;
        align-items: center !important;
        justify-content: space-around !important;
        flex-direction: column !important;
        flex-shrink: 0 !important;
        border-radius: 6px !important;
        background-color: #f8fafc !important;
        border: 1px solid #e2e8f0 !important;
        cursor: pointer !important;
    }

    .mobile-menu-btn span {
        height: 2px !important;
        width: 16px !important;
        background: #334155 !important;
        transition: all 0.25s ease !important;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(5px) rotate(45deg) !important;
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0 !important;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-5px) rotate(-45deg) !important;
    }

    .mobile-nav-drawer {
        top: 52px !important;
        padding: 12px 12px 16px 12px !important;
        width: 100% !important;
        max-width: 100vw !important;
        box-sizing: border-box !important;
    }

    .mobile-search-wrapper {
        margin-bottom: 10px !important;
        padding-bottom: 8px !important;
        border-bottom: 1px solid #f1f5f9 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .mobile-drawer-search {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
        display: block !important;
        position: relative !important;
        box-sizing: border-box !important;
    }

    .mobile-drawer-search input {
        width: 100% !important;
        height: 36px !important;
        padding: 0 30px 0 32px !important;
        font-size: 12px !important;
        border: 1px solid #d0d5dd !important;
        border-radius: var(--radius-md) !important;
        background-color: #f9fafb !important;
        outline: none !important;
        box-sizing: border-box !important;
    }

    .mobile-drawer-search input:focus {
        background-color: #ffffff !important;
        border-color: var(--theme-primary) !important;
        box-shadow: 0 0 0 2px var(--theme-primary-ring) !important;
    }

    .mobile-drawer-search .search-icon {
        position: absolute !important;
        left: 10px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        color: #667085 !important;
        width: 14px !important;
        height: 14px !important;
    }

    .mobile-drawer-search .search-clear-btn {
        position: absolute !important;
        right: 8px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        font-size: 14px !important;
    }

    .mobile-nav-links {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 0 10px 0 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 2px !important;
        width: 100% !important;
    }

    .mobile-nav-link {
        font-size: 12.5px !important;
        padding: 8px 4px !important;
        font-weight: 600 !important;
        color: #344054 !important;
        border-bottom: 1px solid #f1f5f9 !important;
        word-break: break-word !important;
    }

    .mobile-auth-row {
        margin-top: 10px !important;
        padding-top: 10px !important;
        border-top: 1px solid #f1f5f9 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 6px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .mobile-auth-row .btn-sign-in,
    .mobile-auth-row .btn-join {
        display: block !important;
        width: 100% !important;
        height: 36px !important;
        font-size: 12px !important;
        font-weight: 600 !important;
        border-radius: var(--radius-md) !important;
        text-align: center !important;
        line-height: 36px !important;
        box-sizing: border-box !important;
    }

    /* 2. Breadcrumbs Bar (Strict Single Line on Mobile) */
    .breadcrumbs-bar {
        display: flex !important;
        flex-wrap: nowrap !important;
        white-space: nowrap !important;
        align-items: center !important;
        padding: 6px 0 8px 0 !important;
        font-size: 10.5px !important;
        line-height: 1.3 !important;
        gap: 2px 4px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
    }

    .breadcrumbs-bar::-webkit-scrollbar {
        display: none !important;
    }

    .breadcrumbs-bar a {
        color: var(--theme-text-muted) !important;
        font-size: 10.5px !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
        text-decoration: none !important;
    }

    .breadcrumbs-bar .separator {
        color: #94a3b8 !important;
        font-size: 10px !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
        margin: 0 1px !important;
    }

    .breadcrumbs-bar .current {
        color: var(--theme-text-title) !important;
        font-weight: 600 !important;
        font-size: 10.5px !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
    }

    /* 3. Store Hero Mobile */
    .store-hero-card {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100% !important;
        max-width: 100% !important;
        gap: 12px !important;
        padding: 16px 14px !important;
        border-radius: 14px !important;
        margin-bottom: 14px !important;
        background: #ffffff !important;
        border: 1px solid #eaecf0 !important;
        box-shadow: 0 1px 3px 0 rgba(16, 24, 40, 0.05) !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .store-logo-box {
        width: auto !important;
        min-width: 120px !important;
        max-width: 180px !important;
        height: auto !important;
        min-height: 58px !important;
        padding: 8px 14px !important;
        border-radius: 12px !important;
        margin: 0 auto 8px auto !important;
        box-sizing: border-box !important;
        flex-shrink: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        background: #ffffff !important;
        border: 1px solid #e2e8f0 !important;
        box-shadow: 0 1px 3px rgba(16, 24, 40, 0.06) !important;
    }

    .store-logo-img {
        max-width: 95px !important;
        max-height: 42px !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
        display: block !important;
        margin: 0 auto !important;
    }

    .store-logo-badge {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 2px 4px !important;
        max-width: 100% !important;
    }

    .logo-badge-text {
        font-size: 18px !important;
        font-weight: 800 !important;
        letter-spacing: -0.4px !important;
        line-height: 1.15 !important;
        text-align: center !important;
        background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #1877F2 100%) !important;
        -webkit-background-clip: text !important;
        background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
    }

    .dhgate-logo-svg {
        font-size: 18px !important;
    }

    .store-subtext {
        font-size: 9px !important;
        font-weight: 500 !important;
        color: #64748b !important;
        text-align: center !important;
        margin-top: 3px !important;
        line-height: 1.25 !important;
        white-space: normal !important;
        word-break: normal !important;
        letter-spacing: -0.1px !important;
    }

    .store-hero-info {
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }

    .store-hero-title {
        font-size: 17px !important;
        font-weight: 800 !important;
        line-height: 1.25 !important;
        margin: 0 0 6px 0 !important;
        word-break: break-word !important;
        letter-spacing: -0.3px !important;
        color: #0f172a !important;
        text-align: center !important;
    }

    .rating-row {
        justify-content: center !important;
        font-size: 11.5px !important;
        margin-bottom: 8px !important;
        flex-wrap: wrap !important;
        gap: 6px !important;
        display: flex !important;
        align-items: center !important;
        text-align: center !important;
    }

    .rating-stars {
        font-size: 13px !important;
        color: #f59e0b !important;
        letter-spacing: 1px !important;
        display: inline-flex !important;
        align-items: center !important;
    }

    .rating-score {
        font-size: 11.5px !important;
        font-weight: 700 !important;
        color: #0f172a !important;
    }

    .rating-count {
        font-size: 11px !important;
        color: #64748b !important;
    }

    .store-hero-desc {
        font-size: 11px !important;
        line-height: 1.45 !important;
        margin: 0 auto 10px auto !important;
        max-width: 100% !important;
        word-break: break-word !important;
        color: #475569 !important;
        text-align: center !important;
    }

    .store-badges {
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 6px 8px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        display: flex !important;
        margin-bottom: 4px !important;
    }

    .store-badge-item {
        white-space: normal !important;
        text-align: center !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 4px !important;
        font-size: 10.5px !important;
        color: #334155 !important;
        font-weight: 500 !important;
        background: #f8fafc !important;
        border: 1px solid #e2e8f0 !important;
        padding: 4px 8px !important;
        border-radius: 6px !important;
    }

    .store-badge-item svg {
        width: 12px !important;
        height: 12px !important;
        flex-shrink: 0 !important;
        stroke: var(--theme-primary) !important;
    }

    /* Store Hero Lifestyle Banner - Image on top, text on bottom on mobile */
    .store-hero-banner-right {
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        height: auto !important;
        min-height: unset !important;
        max-height: unset !important;
        border-radius: 12px !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        background: #fbf6f0 !important;
        border: 1px solid #ede3d8 !important;
        margin-top: 10px !important;
        padding: 0 !important;
    }

    .banner-img-wrapper {
        order: 1 !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        height: 120px !important;
        min-height: 120px !important;
        max-height: 120px !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        flex-shrink: 0 !important;
        display: block !important;
        position: relative !important;
    }

    .banner-img-wrapper picture {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
    }

    .banner-lifestyle-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
        display: block !important;
    }

    .banner-inner-content {
        order: 2 !important;
        padding: 12px 14px 14px 14px !important;
        text-align: center !important;
        min-width: 0 !important;
        width: 100% !important;
        flex: 1 1 auto !important;
        box-sizing: border-box !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .banner-title {
        font-size: 14px !important;
        font-weight: 800 !important;
        line-height: 1.25 !important;
        color: #101828 !important;
        white-space: normal !important;
        text-align: center !important;
        margin: 0 0 3px 0 !important;
    }

    .banner-subtitle {
        font-size: 11px !important;
        font-weight: 500 !important;
        color: #64748b !important;
        text-align: center !important;
        margin: 0 !important;
        line-height: 1.3 !important;
    }

    .banner-accent-line {
        margin: 6px auto 0 auto !important;
        width: 28px !important;
        height: 2.5px !important;
        background: #ea580c !important;
        border-radius: 2px !important;
    }

    /* 4. Sub Navigation Tabs Mobile - Clean Dropdown */
    .tabs-nav-bar {
        border-bottom: none !important;
        margin-bottom: 12px !important;
        padding: 0 !important;
        width: 100% !important;
        display: block !important;
        overflow: visible !important;
    }

    .tabs-desktop-buttons {
        display: none !important;
    }

    .tabs-mobile-dropdown-wrapper {
        display: block !important;
        width: 100% !important;
    }

    .tabs-dropdown-container {
        position: relative !important;
        width: 100% !important;
    }

    .tabs-filter-dropdown {
        width: 100% !important;
        height: 38px !important;
        font-size: 13px !important;
        font-weight: 600 !important;
        color: #0f172a !important;
        background: #ffffff !important;
        border: 1.5px solid var(--theme-border) !important;
        border-radius: 8px !important;
        padding: 0 32px 0 12px !important;
        appearance: none !important;
        -webkit-appearance: none !important;
        outline: none !important;
        cursor: pointer !important;
        box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05) !important;
        transition: all 0.15s ease !important;
        box-sizing: border-box !important;
    }

    .tabs-filter-dropdown:focus {
        border-color: var(--theme-primary) !important;
        box-shadow: 0 0 0 3px var(--theme-primary-ring) !important;
    }

    /* 5. Section Titles Mobile */
    .section-title {
        font-size: 14.5px !important;
        font-weight: 800 !important;
        line-height: 1.2 !important;
        word-break: break-word !important;
        margin-bottom: 2px !important;
        color: var(--theme-text-title) !important;
        letter-spacing: -0.2px !important;
    }

    .section-subtitle {
        font-size: 10.5px !important;
        margin-bottom: 10px !important;
        line-height: 1.35 !important;
        word-break: break-word !important;
        color: var(--theme-text-muted) !important;
    }

    /* 6. Layout & Coupon Cards Mobile (Dedicated Grid Card Design) */
    .main-layout {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 16px 0 !important;
        padding: 0 !important;
        gap: 0 !important;
        box-sizing: border-box !important;
    }

    .main-content-col, .sidebar-col {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }

    .section-block,
    .top-coupons-section,
    .verified-coupons-section {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 18px 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }

    .coupon-list {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        margin: 0 0 14px 0 !important;
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .coupon-card {
        padding: 15px 14px 13px 14px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 10px !important;
        border-radius: 14px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        background: #ffffff !important;
        border: 1px solid #e2e8f0 !important;
        box-shadow: 0 2px 8px rgba(16, 24, 40, 0.05), 0 1px 2px rgba(16, 24, 40, 0.04) !important;
        transition: transform 0.15s ease, box-shadow 0.15s ease !important;
    }

    .top-coupon-item {
        border-left: 4px solid var(--theme-primary) !important;
        background: linear-gradient(180deg, #ffffff 0%, #fafcff 100%) !important;
    }

    .coupon-left {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }

    .discount-tag {
        width: fit-content !important;
        max-width: 100% !important;
        min-width: unset !important;
        height: auto !important;
        min-height: 28px !important;
        padding: 4px 10px !important;
        border-radius: 6px !important;
        flex-shrink: 0 !important;
        box-sizing: border-box !important;
        display: inline-flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 5px !important;
        text-align: left !important;
        background: linear-gradient(145deg, #fff7ed 0%, #ffedd5 100%) !important;
        border: 1.5px solid #fed7aa !important;
        box-shadow: 0 1px 3px rgba(234, 88, 12, 0.08) !important;
        margin-bottom: 2px !important;
    }

    .discount-prefix {
        font-size: 8.5px !important;
        font-weight: 700 !important;
        line-height: 1 !important;
        letter-spacing: 0.3px !important;
        text-transform: uppercase !important;
        color: #c2410c !important;
        margin: 0 !important;
    }

    .discount-amount {
        font-size: 15.5px !important;
        font-weight: 800 !important;
        line-height: 1 !important;
        color: #ea580c !important;
        letter-spacing: -0.3px !important;
    }

    .discount-amount.has-prefix {
        font-size: 14.5px !important;
        line-height: 1 !important;
    }

    .discount-amount.is-deal {
        font-size: 13.5px !important;
        line-height: 1 !important;
    }

    .discount-unit {
        font-size: 9.5px !important;
        font-weight: 800 !important;
        line-height: 1 !important;
        color: #c2410c !important;
        text-transform: uppercase !important;
        margin: 0 !important;
        letter-spacing: 0.4px !important;
    }

    .discount-unit.is-cashback {
        font-size: 8.5px !important;
    }

    .coupon-details {
        flex: 1 1 auto !important;
        min-width: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .coupon-store-name {
        display: none !important;
    }

    .coupon-title {
        font-size: 14.5px !important;
        font-weight: 700 !important;
        line-height: 1.35 !important;
        margin: 0 0 3px 0 !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        color: #0f172a !important;
    }

    .coupon-desc {
        font-size: 11.5px !important;
        line-height: 1.4 !important;
        margin: 0 0 6px 0 !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        color: #475569 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .coupon-meta {
        font-size: 11px !important;
        gap: 6px !important;
        flex-wrap: wrap !important;
        display: flex !important;
        align-items: center !important;
        color: #64748b !important;
    }

    .verified-badge {
        font-size: 11px !important;
        font-weight: 600 !important;
        color: #059669 !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 3.5px !important;
    }

    .verified-badge svg {
        width: 13px !important;
        height: 13px !important;
        flex-shrink: 0 !important;
        color: #059669 !important;
    }

    .meta-divider {
        display: none !important;
    }

    .uses-count {
        font-size: 11px !important;
        color: #64748b !important;
    }

    .coupon-right {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 5px !important;
        margin-top: 4px !important;
        padding-top: 9px !important;
        border-top: 1px dashed #e2e8f0 !important;
        box-sizing: border-box !important;
    }

    .btn-coupon-group, 
    .btn-deal-direct {
        width: 100% !important;
        max-width: 100% !important;
        height: 40px !important;
        min-height: 40px !important;
        border-radius: 8px !important;
        box-sizing: border-box !important;
        cursor: pointer !important;
        box-shadow: 0 2px 6px rgba(24, 119, 242, 0.22) !important;
    }

    .btn-coupon-group {
        display: flex !important;
        align-items: stretch !important;
        background: var(--theme-primary) !important;
        border: 1px solid var(--theme-primary-hover) !important;
        overflow: hidden !important;
    }

    .btn-coupon-main {
        font-size: 13px !important;
        font-weight: 700 !important;
        padding: 0 12px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        text-align: center !important;
        color: #ffffff !important;
        flex: 1 1 auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .btn-text-desktop {
        display: none !important;
    }

    .btn-text-mobile {
        display: inline !important;
    }

    .btn-coupon-code {
        font-size: 12.5px !important;
        font-weight: 800 !important;
        min-width: 52px !important;
        padding: 0 10px !important;
        flex-shrink: 0 !important;
        background: rgba(0,0,0,0.16) !important;
        color: #ffffff !important;
        border-left: 1.5px dashed rgba(255,255,255,0.5) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        letter-spacing: 0.5px !important;
    }

    .btn-deal-direct {
        font-size: 13px !important;
        font-weight: 700 !important;
        height: 40px !important;
        line-height: 40px !important;
        padding: 0 12px !important;
        text-align: center !important;
        background: var(--theme-primary) !important;
        color: #ffffff !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        text-decoration: none !important;
    }

    .coupon-expiry {
        font-size: 10.5px !important;
        color: #64748b !important;
        font-weight: 500 !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 2px auto 0 auto !important;
    }

    /* 7. Sidebar Widgets Mobile (Compact & Space-Optimized) */
    .sidebar-col {
        width: 100% !important;
        max-width: 100% !important;
        margin-top: 6px !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }

    .sidebar-widget {
        padding: 9px 10px !important;
        border-radius: 8px !important;
        margin-bottom: 7px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        background: #ffffff !important;
        border: 1px solid var(--theme-border) !important;
        box-shadow: var(--shadow-xs) !important;
    }

    .sidebar-widget-title,
    .widget-alert-title,
    .widget-about-title {
        font-size: 11.5px !important;
        font-weight: 700 !important;
        word-break: break-word !important;
        margin-bottom: 3px !important;
        color: var(--theme-text-title) !important;
    }

    .widget-alert-header {
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
        margin-bottom: 3px !important;
    }

    .sidebar-mail-icon svg {
        width: 15px !important;
        height: 15px !important;
        color: var(--theme-primary) !important;
    }

    .widget-alert-desc,
    .widget-about-desc {
        font-size: 9.5px !important;
        line-height: 1.35 !important;
        word-break: break-word !important;
        margin-bottom: 5px !important;
        color: var(--theme-text-body) !important;
    }

    .widget-alert-form {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 6px !important;
    }

    .widget-alert-input {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        height: 34px !important;
        font-size: 11px !important;
        padding: 0 10px !important;
        border-radius: 6px !important;
        border: 1px solid #d0d5dd !important;
        box-sizing: border-box !important;
    }

    .btn-widget-alert {
        width: 100% !important;
        max-width: 100% !important;
        height: 34px !important;
        padding: 0 12px !important;
        font-size: 11.5px !important;
        font-weight: 700 !important;
        border-radius: 6px !important;
        background: var(--theme-primary) !important;
        color: #ffffff !important;
        box-sizing: border-box !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .widget-alert-disclaimer {
        font-size: 8px !important;
        line-height: 1.25 !important;
        margin-top: 3px !important;
        color: var(--theme-text-muted) !important;
    }

    .store-meta-list {
        display: flex !important;
        flex-direction: column !important;
        gap: 7px !important;
        margin-top: 6px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .store-meta-row {
        font-size: 11px !important;
        gap: 8px !important;
        display: flex !important;
        align-items: center !important;
        color: var(--theme-text-body) !important;
        min-width: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .store-meta-row svg {
        width: 14px !important;
        height: 14px !important;
        min-width: 14px !important;
        flex-shrink: 0 !important;
        color: var(--theme-primary) !important;
    }

    .store-meta-row a,
    .store-meta-row span {
        overflow: visible !important;
        white-space: normal !important;
        word-break: break-word !important;
        line-height: 1.35 !important;
    }

    .store-meta-row a {
        color: var(--theme-primary) !important;
        text-decoration: none !important;
        font-weight: 500 !important;
    }

    .filter-label {
        font-size: 10px !important;
        font-weight: 700 !important;
        margin-bottom: 3px !important;
        display: block !important;
    }

    .custom-select-wrapper {
        position: relative !important;
        width: 100% !important;
    }

    .category-dropdown {
        width: 100% !important;
        max-width: 100% !important;
        height: 32px !important;
        font-size: 10.5px !important;
        padding: 0 24px 0 8px !important;
        border-radius: 6px !important;
        border: 1px solid #d0d5dd !important;
        box-sizing: border-box !important;
        background: #ffffff !important;
    }

    .select-chevron {
        position: absolute !important;
        right: 8px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: 13px !important;
        height: 13px !important;
        pointer-events: none !important;
    }

    .highlight-list {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
        margin-top: 8px !important;
        width: 100% !important;
    }

    .highlight-item {
        font-size: 11.5px !important;
        font-weight: 500 !important;
        gap: 8px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        display: flex !important;
        align-items: center !important;
        color: #334155 !important;
        overflow: visible !important;
    }

    .highlight-item span {
        flex: 1 1 auto !important;
        min-width: 0 !important;
        overflow: visible !important;
        text-overflow: clip !important;
        white-space: normal !important;
        line-height: 1.35 !important;
    }

    .highlight-item svg {
        width: 15px !important;
        height: 15px !important;
        min-width: 15px !important;
        flex-shrink: 0 !important;
        color: #10b981 !important;
    }

    .widget-header-row {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 8px !important;
        margin-bottom: 6px !important;
        padding-bottom: 4px !important;
        border-bottom: 1px solid #f1f5f9 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .widget-header-row .sidebar-widget-title {
        margin: 0 !important;
        font-size: 11.5px !important;
        font-weight: 700 !important;
        color: var(--theme-text-title) !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        flex: 1 1 auto !important;
        min-width: 0 !important;
        line-height: 1.2 !important;
    }

    .widget-header-link {
        font-size: 11px !important;
        color: var(--theme-primary) !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        white-space: nowrap !important;
        word-break: keep-all !important;
        flex-shrink: 0 !important;
        display: inline-flex !important;
        align-items: center !important;
        line-height: 1 !important;
    }

    .category-sidebar-list {
        display: flex !important;
        flex-direction: column !important;
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
    }

    .category-sidebar-list li {
        list-style: none !important;
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        border-bottom: 1px solid #f8fafc !important;
    }

    .category-sidebar-list li:last-child {
        border-bottom: none !important;
    }

    .category-sidebar-link {
        font-size: 11.5px !important;
        font-weight: 500 !important;
        padding: 6px 4px !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        color: #334155 !important;
        text-decoration: none !important;
        width: 100% !important;
        box-sizing: border-box !important;
        transition: all 0.15s ease !important;
    }

    .category-sidebar-link span:first-child {
        flex: 1 1 auto !important;
        min-width: 0 !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
    }

    .category-sidebar-link.active {
        color: var(--theme-primary) !important;
        font-weight: 700 !important;
        background: rgba(255, 107, 0, 0.05) !important;
        border-radius: 4px !important;
        padding-left: 6px !important;
    }

    .cat-badge-count {
        font-size: 10px !important;
        font-weight: 600 !important;
        padding: 2px 7px !important;
        background: #f1f5f9 !important;
        border-radius: 10px !important;
        color: #64748b !important;
        flex-shrink: 0 !important;
        margin-left: 8px !important;
        line-height: 1.2 !important;
    }

    .category-sidebar-link.active .cat-badge-count {
        background: var(--theme-primary) !important;
        color: #ffffff !important;
    }

    .sidebar-tip-card {
        padding: 10px 12px !important;
        gap: 8px !important;
        border-radius: 8px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        display: flex !important;
        align-items: flex-start !important;
        background: #eff6ff !important;
        border: 1px solid #dbeafe !important;
        box-shadow: 0 1px 2px rgba(16, 24, 40, 0.02) !important;
        margin-bottom: 10px !important;
    }

    .tip-icon-box {
        width: 20px !important;
        height: 20px !important;
        flex-shrink: 0 !important;
        color: var(--theme-primary) !important;
        margin-top: 1px !important;
    }

    .tip-icon-box svg {
        width: 16px !important;
        height: 16px !important;
    }

    .tip-body {
        flex: 1 1 auto !important;
        min-width: 0 !important;
    }

    .tip-title {
        font-size: 11.5px !important;
        font-weight: 700 !important;
        margin-bottom: 2px !important;
        color: #1e40af !important;
    }

    .tip-text {
        font-size: 10.5px !important;
        line-height: 1.4 !important;
        word-break: break-word !important;
        color: #475569 !important;
    }

    /* 8. How to Use Section Mobile */
    .how-to-use-section {
        margin-top: 14px !important;
        margin-bottom: 16px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .how-to-steps-row {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        width: 100% !important;
        max-width: 100% !important;
        gap: 6px !important;
        box-sizing: border-box !important;
    }

    .step-connector {
        display: none !important;
    }

    .step-card {
        padding: 8px 8px !important;
        min-height: unset !important;
        border-radius: 6px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        word-break: break-word !important;
        background: #ffffff !important;
        border: 1px solid var(--theme-border) !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .step-card-header {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        margin-bottom: 4px !important;
    }

    .step-badge-num {
        width: 18px !important;
        height: 18px !important;
        font-size: 9px !important;
        font-weight: 800 !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: var(--theme-primary) !important;
        color: #ffffff !important;
        flex-shrink: 0 !important;
    }

    .step-card-icon svg {
        width: 14px !important;
        height: 14px !important;
        stroke: var(--theme-primary) !important;
    }

    .step-card-title,
    .saving-card-title {
        font-size: 10.5px !important;
        font-weight: 700 !important;
        line-height: 1.2 !important;
        margin-bottom: 2px !important;
        word-break: break-word !important;
        color: var(--theme-text-title) !important;
    }

    .step-card-desc,
    .saving-card-desc {
        font-size: 9px !important;
        line-height: 1.3 !important;
        word-break: break-word !important;
        color: var(--theme-text-muted) !important;
    }

    .popular-ways-block {
        margin-top: 14px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .saving-methods-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        width: 100% !important;
        max-width: 100% !important;
        gap: 6px !important;
        box-sizing: border-box !important;
    }

    .saving-method-card {
        padding: 8px 8px !important;
        gap: 6px !important;
        border-radius: 6px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        word-break: break-word !important;
        background: #ffffff !important;
        border: 1px solid var(--theme-border) !important;
        display: flex !important;
        align-items: flex-start !important;
    }

    .saving-icon-box {
        width: 24px !important;
        height: 24px !important;
        min-width: 24px !important;
        border-radius: 5px !important;
        flex-shrink: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .saving-icon-box svg {
        width: 12px !important;
        height: 12px !important;
    }

    .saving-card-content {
        flex: 1 1 auto !important;
        min-width: 0 !important;
    }

    /* 9. FAQ Section Mobile */
    .faq-section-block {
        margin-top: 14px !important;
        margin-bottom: 16px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .faq-list {
        display: flex !important;
        flex-direction: column !important;
        gap: 6px !important;
    }

    .faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        border-radius: 8px !important;
        border: 1px solid var(--theme-border) !important;
        background: #ffffff !important;
        transition: all 0.2s ease !important;
    }

    .faq-question {
        padding: 10px 12px !important;
        font-size: 12px !important;
        font-weight: 600 !important;
        color: #0f172a !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        word-break: break-word !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 8px !important;
        cursor: pointer !important;
        user-select: none !important;
    }

    .faq-icon {
        width: 15px !important;
        height: 15px !important;
        flex-shrink: 0 !important;
        color: #64748b !important;
        transition: transform 0.25s ease, color 0.2s ease !important;
    }

    .faq-item.active .faq-icon {
        transform: rotate(180deg) !important;
        color: var(--theme-primary) !important;
    }

    .faq-answer {
        font-size: 11px !important;
        line-height: 1.45 !important;
        padding: 0 12px !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: all 0.25s ease-out !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        word-break: break-word !important;
        color: #475569 !important;
        border-top: none !important;
    }

    .faq-item.active .faq-answer {
        padding: 8px 12px 12px 12px !important;
        max-height: 350px !important;
        border-top: 1px solid #f1f5f9 !important;
    }

    /* 10. CTA Newsletter Banner */
    .cta-banner {
        padding: 18px 14px !important;
        margin-top: 16px !important;
        margin-bottom: 20px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 12px !important;
        border-radius: 12px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        background: #eff6ff !important;
        border: 1px solid #dbeafe !important;
        box-shadow: 0 1px 3px rgba(16, 24, 40, 0.03) !important;
    }

    .cta-left {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .cta-icon-box {
        width: 46px !important;
        height: 46px !important;
        min-width: 46px !important;
        border-radius: 12px !important;
        background: #dbeafe !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
        margin: 0 auto !important;
    }

    .cta-icon-box svg {
        width: 24px !important;
        height: 24px !important;
        stroke: #1877f2 !important;
    }

    .cta-text-block {
        width: 100% !important;
        text-align: center !important;
    }

    .cta-title {
        font-size: 14px !important;
        font-weight: 700 !important;
        word-break: break-word !important;
        color: #0f172a !important;
        margin-bottom: 3px !important;
        line-height: 1.3 !important;
        text-align: center !important;
    }

    .cta-desc {
        font-size: 11px !important;
        line-height: 1.4 !important;
        word-break: break-word !important;
        color: #64748b !important;
        text-align: center !important;
        margin: 0 !important;
    }

    .cta-right {
        min-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 6px !important;
    }

    .cta-form {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        max-width: 100% !important;
        gap: 6px !important;
        box-sizing: border-box !important;
    }

    .cta-input {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        height: 44px !important;
        font-size: 13px !important;
        text-align: left !important;
        padding: 0 14px !important;
        box-sizing: border-box !important;
        border-radius: 8px !important;
        border: 1px solid #cbd5e1 !important;
        background: #ffffff !important;
        color: #0f172a !important;
        outline: none !important;
        -webkit-appearance: none !important;
        appearance: none !important;
        box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04) !important;
    }

    .cta-input::placeholder {
        color: #94a3b8 !important;
        text-align: left !important;
    }

    .cta-input:focus {
        border-color: #1877f2 !important;
        box-shadow: 0 0 0 3px rgba(24, 119, 242, 0.15) !important;
    }

    .btn-cta-submit {
        width: 100% !important;
        max-width: 100% !important;
        height: 44px !important;
        font-size: 13px !important;
        font-weight: 700 !important;
        box-sizing: border-box !important;
        border-radius: 8px !important;
        background: #1877f2 !important;
        color: #ffffff !important;
        border: none !important;
        cursor: pointer !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04) !important;
        transition: background 0.15s ease !important;
    }

    .btn-cta-submit:hover {
        background: #1464cc !important;
    }

    .cta-disclaimer {
        font-size: 9.5px !important;
        text-align: center !important;
        color: #64748b !important;
        margin-top: 2px !important;
        line-height: 1.35 !important;
    }

    .cta-disclaimer a {
        color: #1877f2 !important;
        text-decoration: none !important;
        font-weight: 500 !important;
    }

    /* 11. Footer Mobile */
    .site-footer {
        padding: 22px 0 16px 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
        background: #ffffff !important;
        border-top: 1px solid var(--theme-border) !important;
    }

    .footer-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 16px 12px !important;
        margin-bottom: 16px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .footer-brand-col {
        grid-column: 1 / -1 !important;
        padding-right: 0 !important;
        margin-bottom: 4px !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }

    .footer-brand-col .brand-wrapper {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .footer-brand-col .brand-text-col {
        min-width: 0 !important;
        overflow: hidden !important;
    }

    .footer-about-text {
        font-size: 11px !important;
        line-height: 1.45 !important;
        margin: 6px 0 10px 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        color: var(--theme-text-muted) !important;
    }

    .footer-social-icons {
        gap: 10px !important;
        display: flex !important;
        align-items: center !important;
        flex-wrap: wrap !important;
    }

    .social-icon-link {
        width: 28px !important;
        height: 28px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .social-icon-link svg {
        width: 16px !important;
        height: 16px !important;
    }

    .footer-nav-col {
        min-width: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .footer-heading {
        font-size: 12px !important;
        font-weight: 700 !important;
        margin-bottom: 8px !important;
        color: var(--theme-text-title) !important;
        white-space: normal !important;
        word-break: break-word !important;
    }

    .footer-links-list {
        display: flex !important;
        flex-direction: column !important;
        gap: 6px !important;
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }

    .footer-links-list li {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        list-style: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .footer-links-list a {
        font-size: 11px !important;
        line-height: 1.35 !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        color: var(--theme-text-muted) !important;
    }

    .footer-bottom-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 6px !important;
        padding-top: 14px !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        border-top: 1px solid var(--theme-border) !important;
        overflow: hidden !important;
    }

    .footer-copyright {
        font-size: 10.5px !important;
        color: var(--theme-text-muted) !important;
        word-break: break-word !important;
    }

    .footer-trust-badge {
        font-size: 10.5px !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
        display: flex !important;
        align-items: center !important;
        gap: 5px !important;
        color: var(--theme-text-muted) !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .footer-trust-badge span {
        word-break: break-word !important;
    }

    .footer-trust-badge svg {
        width: 14px !important;
        height: 14px !important;
        flex-shrink: 0 !important;
    }

    /* 12. Modal Responsive Mobile */
    .modal-card {
        width: min(90vw, 380px) !important;
        max-width: 90vw !important;
        padding: 20px 14px 16px 14px !important;
        border-radius: 12px !important;
        box-sizing: border-box !important;
        position: relative !important;
    }

    .modal-close {
        position: absolute !important;
        top: -12px !important;
        right: -12px !important;
        width: 30px !important;
        height: 30px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 50% !important;
        background: #ffffff !important;
        border: 1.5px solid #e2e8f0 !important;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18) !important;
        color: #475569 !important;
        cursor: pointer !important;
        padding: 0 !important;
        margin: 0 !important;
        z-index: 25 !important;
        box-sizing: border-box !important;
        transition: transform 0.15s ease !important;
    }

    .modal-close svg {
        display: block !important;
        width: 13px !important;
        height: 13px !important;
        flex-shrink: 0 !important;
        pointer-events: none !important;
    }

    .modal-close:hover,
    .modal-close:active {
        background: #f8fafc !important;
        color: var(--theme-text-title) !important;
    }

    .modal-store-header {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 0 10px 0 !important;
        box-sizing: border-box !important;
    }

    .modal-store-badge {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 5px !important;
        font-size: 11.5px !important;
        font-weight: 600 !important;
        color: #059669 !important;
        background: #ecfdf5 !important;
        border: 1px solid #a7f3d0 !important;
        padding: 3px 10px !important;
        border-radius: 9999px !important;
        white-space: nowrap !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        line-height: 1.2 !important;
        box-shadow: 0 1px 2px rgba(16, 185, 129, 0.08) !important;
        flex-shrink: 0 !important;
    }

    .modal-store-badge svg {
        width: 13px !important;
        height: 13px !important;
        min-width: 13px !important;
        flex-shrink: 0 !important;
        color: #10b981 !important;
        fill: #10b981 !important;
        display: block !important;
    }

    .modal-store-badge span {
        white-space: nowrap !important;
        overflow: visible !important;
        text-overflow: clip !important;
        color: #059669 !important;
        font-size: 11.5px !important;
        display: inline !important;
    }

    .modal-discount-tag {
        font-size: 13px !important;
        padding: 4px 12px !important;
        margin-bottom: 8px !important;
    }

    .modal-title {
        font-size: 15px !important;
        font-weight: 800 !important;
        word-break: break-word !important;
        line-height: 1.3 !important;
        margin-bottom: 6px !important;
    }

    .modal-desc {
        font-size: 11.5px !important;
        line-height: 1.45 !important;
        margin-bottom: 10px !important;
        word-break: break-word !important;
        color: #475569 !important;
    }

    .modal-meta-box {
        gap: 6px !important;
        margin-bottom: 12px !important;
    }

    .modal-meta-pill {
        font-size: 10.5px !important;
        padding: 3px 7px !important;
    }

    .modal-code-container {
        margin-bottom: 12px !important;
        width: 100% !important;
    }

    .modal-code-label {
        font-size: 10.5px !important;
        margin-bottom: 4px !important;
    }

    .modal-code-box {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 6px !important;
        height: auto !important;
        min-height: unset !important;
        border: none !important;
        background: transparent !important;
        margin-bottom: 4px !important;
        overflow: visible !important;
    }

    .modal-code-input {
        width: 100% !important;
        height: 40px !important;
        background: #f8fafc !important;
        border: 2px dashed var(--theme-primary) !important;
        border-radius: 8px !important;
        font-size: 15.5px !important;
        font-weight: 800 !important;
        color: var(--theme-primary) !important;
        text-align: center !important;
        letter-spacing: 1px !important;
        box-sizing: border-box !important;
        padding: 0 10px !important;
        outline: none !important;
        -webkit-appearance: none !important;
        appearance: none !important;
    }

    .btn-modal-copy {
        width: 100% !important;
        height: 38px !important;
        background: var(--theme-primary) !important;
        color: #ffffff !important;
        border-radius: 8px !important;
        padding: 0 14px !important;
        font-size: 12.5px !important;
        font-weight: 700 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        border: none !important;
        cursor: pointer !important;
        box-shadow: 0 1px 3px rgba(24, 119, 242, 0.2) !important;
        box-sizing: border-box !important;
    }

    .modal-copy-hint {
        font-size: 9.5px !important;
    }

    .modal-deal-notice {
        font-size: 11.5px !important;
        padding: 8px 10px !important;
        margin-bottom: 10px !important;
        gap: 6px !important;
    }

    .btn-modal-go {
        height: 42px !important;
        font-size: 13px !important;
        font-weight: 700 !important;
        width: 100% !important;
        padding: 0 10px !important;
        box-sizing: border-box !important;
        border-radius: 8px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        white-space: nowrap !important;
        word-break: keep-all !important;
        line-height: 1 !important;
    }

    .btn-modal-go .btn-arrow {
        display: none !important;
    }

    .modal-trust-footer {
        font-size: 10px !important;
        margin-top: 8px !important;
    }

    .info-modal-card {
        padding: 16px 12px !important;
        max-height: 86vh !important;
        width: min(94vw, 480px) !important;
    }
}

@media (max-width: 480px) {
    .container, 
    .header-container, 
    .footer-container {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    .nav-inner {
        height: 48px !important;
    }

    .brand-title {
        font-size: 13.5px !important;
    }

    .brand-tagline {
        display: none !important;
    }

    .brand-logo-icon svg {
        width: 20px !important;
        height: 20px !important;
    }

    .site-custom-logo {
        max-height: 22px !important;
        max-width: 85px !important;
    }

    .mobile-menu-btn {
        width: 28px !important;
        height: 28px !important;
        padding: 4px !important;
    }

    .mobile-nav-drawer {
        top: 48px !important;
        padding: 10px 8px 14px 8px !important;
    }

    .store-logo-box {
        min-width: 110px !important;
        max-width: 180px !important;
        height: auto !important;
        min-height: 54px !important;
        padding: 6px 12px !important;
        border-radius: 10px !important;
        margin: 0 auto 5px auto !important;
    }

    .store-logo-img {
        max-width: 85px !important;
        max-height: 38px !important;
    }

    .dhgate-logo-svg {
        font-size: 16.5px !important;
    }

    .logo-badge-text {
        font-size: 16.5px !important;
    }

    .store-subtext {
        font-size: 8.5px !important;
        margin-top: 2px !important;
    }

    .store-hero-title {
        font-size: 15.5px !important;
    }

    .store-hero-desc {
        font-size: 10.5px !important;
    }

    .store-badges {
        font-size: 10px !important;
        gap: 4px 6px !important;
    }

    .store-badge-item {
        font-size: 10px !important;
        padding: 3px 6px !important;
    }

    .banner-title {
        font-size: 13.5px !important;
    }

    .banner-subtitle {
        font-size: 10.5px !important;
    }

    .banner-img-wrapper {
        height: 110px !important;
        min-height: 110px !important;
        max-height: 110px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .store-hero-banner-right {
        height: auto !important;
        min-height: unset !important;
        max-height: unset !important;
    }

    .tabs-filter-dropdown {
        height: 36px !important;
        font-size: 12px !important;
    }

    .section-title {
        font-size: 14px !important;
        line-height: 1.3 !important;
    }

    .discount-tag {
        width: fit-content !important;
        max-width: 100% !important;
        min-width: unset !important;
        height: auto !important;
        min-height: 26px !important;
        padding: 3px 9px !important;
    }

    .discount-amount {
        font-size: 15px !important;
    }

    .discount-amount.has-prefix {
        font-size: 14px !important;
    }

    .discount-amount.is-deal {
        font-size: 13px !important;
    }

    .coupon-details {
        width: 100% !important;
        max-width: 100% !important;
    }

    .coupon-title {
        font-size: 13.5px !important;
    }

    .coupon-desc {
        font-size: 11px !important;
    }

    .btn-coupon-group, 
    .btn-deal-direct {
        height: 40px !important;
        min-height: 40px !important;
    }

    .btn-coupon-main,
    .btn-coupon-code,
    .btn-deal-direct {
        font-size: 12.5px !important;
    }

    .coupon-expiry {
        font-size: 10px !important;
    }
}

@media (max-width: 360px) {
    .container, 
    .header-container, 
    .footer-container {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    .brand-title {
        font-size: 13px !important;
    }

    .store-hero-title {
        font-size: 14.5px !important;
    }

    .store-hero-banner-right {
        height: auto !important;
        min-height: unset !important;
        max-height: unset !important;
    }

    .banner-img-wrapper {
        height: 100px !important;
        min-height: 100px !important;
        max-height: 100px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .banner-title {
        font-size: 13px !important;
    }

    .banner-subtitle {
        font-size: 10px !important;
    }

    .tabs-filter-dropdown {
        height: 36px !important;
        font-size: 12px !important;
        padding: 0 30px 0 10px !important;
    }

    .how-to-steps-row,
    .saving-methods-grid {
        grid-template-columns: 1fr !important;
    }

    .discount-tag {
        width: fit-content !important;
        max-width: 100% !important;
        min-width: unset !important;
        height: auto !important;
        min-height: 24px !important;
        padding: 3px 8px !important;
    }

    .discount-amount {
        font-size: 14px !important;
    }

    .discount-amount.has-prefix,
    .discount-amount.is-deal {
        font-size: 13px !important;
    }

    .coupon-details {
        width: 100% !important;
        max-width: 100% !important;
    }

    .coupon-title {
        font-size: 13px !important;
    }

    .btn-coupon-group, 
    .btn-deal-direct {
        height: 38px !important;
        min-height: 38px !important;
    }

    .btn-coupon-main,
    .btn-coupon-code,
    .btn-deal-direct {
        font-size: 12px !important;
    }

    .coupon-expiry {
        font-size: 9.5px !important;
    }
}