/* =============================================================================
   GetMeCodes Coupons Plugin — Main Stylesheet
   Premium Indigo + Mint Teal + Deep Purple color palette
   ============================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Oswald:wght@500;600&display=swap');

/* ── CSS Variables ─────────────────────────────────────────────────────────── */
:root {
    --gmc-primary:      #4F46E5;
    --gmc-primary-dark: #3730A3;
    --gmc-primary-lt:   #EEF2FF;
    --gmc-accent:       #10B981;
    --gmc-accent-dark:  #059669;
    --gmc-purple:       #7C3AED;
    --gmc-header-bg:    #312E81;
    --gmc-hero-start:   #4F46E5;
    --gmc-hero-end:     #7C3AED;
    --gmc-dark:         #0F0F1A;
    --gmc-card-bg:      #ffffff;
    --gmc-card-border:  #E5E7EB;
    --gmc-text:         #1F2937;
    --gmc-text-muted:   #6B7280;
    --gmc-text-light:   #9CA3AF;
    --gmc-red:          #EF4444;
    --gmc-yellow:       #F59E0B;
    --gmc-radius:       12px;
    --gmc-radius-sm:    8px;
    --gmc-shadow:       0 4px 24px rgba(79,70,229,0.10);
    --gmc-shadow-lg:    0 12px 40px rgba(79,70,229,0.18);
    --gmc-transition:   0.25s cubic-bezier(0.4,0,0.2,1);
    --gmc-font:         'Poppins', system-ui, sans-serif;
}

/* ── Reset & Base ──────────────────────────────────────────────────────────── */
.gmc-page-wrapper *,
.gmc-page-wrapper *::before,
.gmc-page-wrapper *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.gmc-page-wrapper {
    font-family: var(--gmc-font);
    color: var(--gmc-text);
    background: #f8f9ff;
    -webkit-font-smoothing: antialiased;
}

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

.gmc-icon-svg {
    display: inline-block;
    vertical-align: middle;
    stroke-width: 2.2;
    fill: none;
    flex-shrink: 0;
}


/* ── Section Title ─────────────────────────────────────────────────────────── */
.gmc-section-title {
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    font-weight: 700;
    color: var(--gmc-dark);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}
.gmc-section-title::after {
    content: '';
    display: block;
    width: 56px;
    height: 4px;
    background: linear-gradient(90deg, var(--gmc-primary), var(--gmc-purple));
    border-radius: 2px;
    margin: 10px auto 0;
}
.gmc-section-title.gmc-left::after { margin-left: 0; }

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.gmc-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gmc-primary), var(--gmc-purple));
    color: #fff !important;
    font-family: var(--gmc-font);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 11px 24px;
    border-radius: var(--gmc-radius-sm);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--gmc-transition);
    box-shadow: 0 4px 14px rgba(79,70,229,0.35);
    white-space: nowrap;
}
.gmc-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79,70,229,0.45);
    background: linear-gradient(135deg, #6366F1, #8B5CF6);
}
.gmc-btn-primary:disabled {
    background: #D1D5DB;
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}

.gmc-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fff;
    color: var(--gmc-primary) !important;
    font-family: var(--gmc-font);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 9px 20px;
    border-radius: var(--gmc-radius-sm);
    border: 2px solid var(--gmc-primary);
    cursor: pointer;
    text-decoration: none;
    transition: all var(--gmc-transition);
}
.gmc-btn-outline:hover {
    background: var(--gmc-primary);
    color: #fff !important;
    transform: translateY(-1px);
}
.gmc-btn-outline:disabled {
    background: #F3F4F6;
    color: #9CA3AF !important;
    border-color: #D1D5DB;
    cursor: not-allowed;
    transform: none;
}

.gmc-btn-view {
    display: inline-block;
    padding: 8px 18px;
    background: var(--gmc-primary-lt);
    color: var(--gmc-primary) !important;
    border-radius: var(--gmc-radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all var(--gmc-transition);
}
.gmc-btn-view:hover {
    background: var(--gmc-primary);
    color: #fff !important;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   TOP BAR
   ═══════════════════════════════════════════════════════════════════════════════ */
.gmc-topbar {
    background: var(--gmc-header-bg);
    padding: 8px 0;
}
.gmc-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.gmc-topbar-links {
    display: flex;
    gap: 20px;
}
.gmc-topbar-links a {
    color: rgba(255,255,255,0.75);
    font-size: 0.8rem;
    text-decoration: none;
    transition: color var(--gmc-transition);
}
.gmc-topbar-links a:hover { color: #fff; }

.gmc-topbar-auth { display: flex; align-items: center; gap: 12px; }
.gmc-login-link {
    color: rgba(255,255,255,0.8);
    font-size: 0.82rem;
    text-decoration: none;
    transition: color var(--gmc-transition);
}
.gmc-login-link:hover { color: #fff; }
.gmc-register-btn {
    background: linear-gradient(135deg, var(--gmc-accent), #34D399);
    color: #fff !important;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    text-decoration: none;
    transition: all var(--gmc-transition);
    box-shadow: 0 2px 8px rgba(16,185,129,0.4);
}
.gmc-register-btn:hover { transform: translateY(-1px); opacity: 0.9; }

/* ═══════════════════════════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════════════════════════ */
.gmc-navbar {
    background: var(--gmc-primary-dark);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    backdrop-filter: blur(8px);
}
.gmc-navbar-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: nowrap;
}
.gmc-brand { flex-shrink: 0; text-decoration: none; }
.gmc-logo { height: 44px; width: auto; }
.gmc-logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}
.gmc-nav-links {
    display: flex;
    list-style: none;
    gap: 6px;
    margin: 0;
    padding: 0;
}
.gmc-nav-links li a {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    padding: 7px 14px;
    border-radius: 6px;
    transition: all var(--gmc-transition);
}
.gmc-nav-links li a:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
}
.gmc-search-wrap {
    flex: 1;
    min-width: 200px;
    max-width: 340px;
    margin-left: auto;
}
.gmc-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}
.gmc-hamburger span {
    width: 24px; height: 2px;
    background: #fff;
    border-radius: 2px;
    display: block;
    transition: all var(--gmc-transition);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   CATEGORIES SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */
.gmc-categories-section {
    background: var(--gmc-primary-dark);
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.gmc-categories-slider { /* Slick takes over */ }
.gmc-category-item {
    text-align: center;
    padding: 6px 10px;
}
.gmc-category-item a { text-decoration: none; color: rgba(255,255,255,0.85); }
.gmc-category-item a:hover { color: #fff; }
.gmc-cat-icon-wrap {
    width: 58px; height: 58px;
    margin: 0 auto 8px;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all var(--gmc-transition);
    border: 2px solid rgba(255,255,255,0.15);
}
.gmc-category-item:hover .gmc-cat-icon-wrap {
    background: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-2px);
}
.gmc-cat-icon-wrap img {
    width: 36px; height: 36px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.gmc-cat-placeholder { font-size: 1.5rem; }
.gmc-category-item h4 {
    font-size: 0.72rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 80px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   HERO BANNER
   ═══════════════════════════════════════════════════════════════════════════════ */
.gmc-hero-banner {
    background: linear-gradient(135deg, var(--gmc-hero-start) 0%, var(--gmc-hero-end) 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}
.gmc-hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(255,255,255,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.gmc-hero-inner {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}
.gmc-hero-text { flex: 1; min-width: 280px; }
.gmc-hero-heading {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}
.gmc-hero-heading .gmc-accent { color: #FDE68A; }
.gmc-hero-sub {
    color: rgba(255,255,255,0.82);
    font-size: 1.05rem;
    margin-bottom: 28px;
    line-height: 1.6;
}
.gmc-hero-btn { font-size: 1rem; padding: 14px 32px; }
.gmc-hero-image { flex: 1; min-width: 240px; text-align: center; }
.gmc-hero-image img { max-width: 100%; max-height: 320px; object-fit: contain; }

/* ═══════════════════════════════════════════════════════════════════════════════
   TOP STORES SLIDER
   ═══════════════════════════════════════════════════════════════════════════════ */
.gmc-top-stores-section { padding: 60px 0; background: #f0f4ff; }
.gmc-stores-slider { /* Slick manages */ }
.gmc-store-slide { text-align: center; padding: 10px 12px; }
.gmc-store-slide a { text-decoration: none; }
.gmc-store-logo-wrap {
    width: 110px; height: 70px;
    margin: 0 auto 10px;
    background: #fff;
    border-radius: var(--gmc-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 1px solid var(--gmc-card-border);
    transition: all var(--gmc-transition);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    overflow: hidden;
}
.gmc-store-logo-wrap:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(79,70,229,0.15);
    border-color: var(--gmc-primary);
}
.gmc-store-logo-wrap img {
    max-width: 100%; max-height: 100%;
    object-fit: contain;
}
.gmc-store-placeholder {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gmc-primary);
}
.gmc-store-slide h3 {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gmc-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 110px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   COUPON GRID
   ═══════════════════════════════════════════════════════════════════════════════ */
.gmc-exclusive-section { padding: 60px 0; background: #fff; }

.gmc-coupon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

/* ── Coupon Card ────────────────────────────────────────────────────────────── */
.gmc-deal-card {
    background: var(--gmc-card-bg);
    border: 1px solid var(--gmc-card-border);
    border-radius: var(--gmc-radius);
    overflow: hidden;
    transition: all var(--gmc-transition);
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.gmc-deal-card:hover {
    box-shadow: var(--gmc-shadow-lg);
    transform: translateY(-4px);
    border-color: var(--gmc-primary);
}
.gmc-deal-card.gmc-expired { opacity: 0.65; }

.gmc-card-logo-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px 10px;
    border-bottom: 1px solid #F3F4F6;
    background: #FAFAFA;
}
.gmc-card-logo {
    width: 48px; height: 36px;
    object-fit: contain;
    border-radius: 6px;
    background: #fff;
    border: 1px solid #eee;
    padding: 3px;
    flex-shrink: 0;
}
.gmc-store-initials {
    width: 48px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--gmc-primary), var(--gmc-purple));
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    border-radius: 6px;
    flex-shrink: 0;
}
.gmc-card-logo-bar h3 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gmc-text);
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gmc-card-body {
    padding: 14px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.gmc-badge-exclusive {
    display: inline-block;
    padding: 2px 10px;
    background: linear-gradient(90deg, var(--gmc-purple), var(--gmc-primary));
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    width: fit-content;
}
.gmc-card-discount {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gmc-primary);
    line-height: 1.2;
}
.gmc-card-meta {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.gmc-chip-verified, .gmc-chip-expiry, .gmc-chip-expired {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}
.gmc-chip-verified {
    background: #ECFDF5;
    color: var(--gmc-accent);
}
.gmc-chip-verified svg { width: 12px; height: 12px; }
.gmc-chip-expiry { background: #FFF7ED; color: #D97706; }
.gmc-chip-expired { background: #FEF2F2; color: var(--gmc-red); }

.gmc-card-desc {
    font-size: 0.82rem;
    color: var(--gmc-text-muted);
    line-height: 1.5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.gmc-card-actions {
    padding: 12px 16px;
    border-top: 1px solid #F3F4F6;
}
.gmc-card-actions .gmc-get-code-btn,
.gmc-card-actions .gmc-btn-primary {
    width: 100%;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   FEATURED DEALS (Deal Row Layout + Sidebar)
   ═══════════════════════════════════════════════════════════════════════════════ */
.gmc-featured-section { padding: 60px 0; background: #f8f9ff; }
.gmc-featured-inner {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 32px;
    align-items: start;
}

.gmc-deals-list { display: flex; flex-direction: column; gap: 12px; }
.gmc-deal-row {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid var(--gmc-card-border);
    border-radius: var(--gmc-radius);
    padding: 16px 20px;
    transition: all var(--gmc-transition);
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.gmc-deal-row:hover {
    box-shadow: var(--gmc-shadow);
    border-color: var(--gmc-primary);
    transform: translateX(3px);
}
.gmc-deal-row.gmc-expired { opacity: 0.6; }

.gmc-deal-discount {
    min-width: 90px;
    text-align: center;
    flex-shrink: 0;
}
.gmc-deal-pct {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gmc-primary);
    line-height: 1.2;
}
.gmc-deal-badge {
    display: inline-block;
    padding: 2px 8px;
    background: var(--gmc-primary-lt);
    color: var(--gmc-primary);
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-top: 4px;
}
.gmc-deal-info { flex: 1; min-width: 0; }
.gmc-deal-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gmc-text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 4px;
}
.gmc-deal-store {
    font-size: 0.78rem;
    color: var(--gmc-text-muted);
    display: block;
}
.gmc-deal-used {
    font-size: 0.72rem;
    color: var(--gmc-accent);
    font-weight: 600;
}
.gmc-deal-action { flex-shrink: 0; }

/* Sidebar */
.gmc-featured-sidebar {
    background: #fff;
    border: 1px solid var(--gmc-card-border);
    border-radius: var(--gmc-radius);
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 90px;
}
.gmc-sidebar-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gmc-dark);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gmc-primary-lt);
}
.gmc-sidebar-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.gmc-sidebar-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    color: var(--gmc-text);
    text-decoration: none;
    font-size: 0.84rem;
    border-radius: var(--gmc-radius-sm);
    transition: all var(--gmc-transition);
}
.gmc-sidebar-list li a:hover {
    background: var(--gmc-primary-lt);
    color: var(--gmc-primary);
}
.gmc-sidebar-list li a img {
    width: 22px; height: 22px;
    object-fit: contain;
    border-radius: 4px;
    border: 1px solid #eee;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   POPULAR BRANDS
   ═══════════════════════════════════════════════════════════════════════════════ */
.gmc-brands-section { padding: 60px 0; background: #fff; }
.gmc-brands-section .gmc-deal-card { min-height: unset; }
.gmc-coupon-count {
    display: inline-block;
    background: var(--gmc-primary-lt);
    color: var(--gmc-primary);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   TIPS / BLOG SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */
.gmc-tips-section { padding: 60px 0; background: #f0f4ff; }
.gmc-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}
.gmc-tip-card {
    background: #fff;
    border-radius: var(--gmc-radius);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: all var(--gmc-transition);
    border: 1px solid var(--gmc-card-border);
}
.gmc-tip-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--gmc-shadow-lg);
}
.gmc-tip-img { width: 100%; height: 160px; object-fit: cover; display: block; }
.gmc-tip-body { padding: 16px; }
.gmc-tip-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--gmc-dark);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.gmc-tip-title:hover { color: var(--gmc-primary); }
.gmc-tip-excerpt {
    font-size: 0.8rem;
    color: var(--gmc-text-muted);
    line-height: 1.5;
    margin-bottom: 12px;
}
.gmc-read-more {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gmc-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.gmc-read-more:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════════════════════════
   COUPON MODAL
   ═══════════════════════════════════════════════════════════════════════════════ */
.gmc-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15,15,26,0.75);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}
.gmc-modal {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    max-width: 460px;
    width: 100%;
    position: relative;
    animation: gmc-slide-up 0.3s cubic-bezier(0.34,1.56,0.64,1);
    box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}
.gmc-modal-close {
    position: absolute;
    top: 14px; right: 18px;
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--gmc-text-muted);
    line-height: 1;
    transition: color var(--gmc-transition);
}
.gmc-modal-close:hover { color: var(--gmc-dark); }

.gmc-modal-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}
.gmc-modal-top img {
    width: 56px; height: 40px;
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid #eee;
    padding: 4px;
}
.gmc-modal-store-name {
    font-size: 0.9rem;
    color: var(--gmc-text-muted);
    font-weight: 500;
}
.gmc-modal-discount {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gmc-dark);
    line-height: 1.2;
}

.gmc-modal-label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gmc-text-muted);
    margin-bottom: 10px;
}
.gmc-modal-code-row {
    display: flex;
    align-items: stretch;
    gap: 0;
    border: 2px dashed var(--gmc-primary);
    border-radius: var(--gmc-radius-sm);
    overflow: hidden;
}
.gmc-modal-code {
    flex: 1;
    padding: 14px 18px;
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--gmc-primary);
    letter-spacing: 2px;
    background: var(--gmc-primary-lt);
}
.gmc-copy-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 18px;
    background: var(--gmc-primary);
    color: #fff;
    border: none;
    cursor: pointer;
    font-family: var(--gmc-font);
    font-size: 0.85rem;
    font-weight: 700;
    transition: all var(--gmc-transition);
}
.gmc-copy-btn:hover { background: var(--gmc-primary-dark); }
.gmc-copy-feedback {
    margin-top: 8px;
    font-size: 0.82rem;
    color: var(--gmc-accent);
    font-weight: 600;
    text-align: center;
}

.gmc-modal-deal-info {
    background: #ECFDF5;
    border-radius: var(--gmc-radius-sm);
    padding: 16px;
    text-align: center;
    margin-bottom: 8px;
}
.gmc-modal-deal-text {
    color: var(--gmc-accent-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

.gmc-modal-shop-btn {
    width: 100%;
    margin-top: 18px;
    font-size: 1rem;
    padding: 14px;
    border-radius: var(--gmc-radius-sm);
}
.gmc-modal-terms {
    margin-top: 12px;
    font-size: 0.74rem;
    color: var(--gmc-text-muted);
    text-align: center;
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   SELECT2 OVERRIDES
   ═══════════════════════════════════════════════════════════════════════════════ */
.gmc-page-wrapper .select2-container .select2-selection--single {
    height: 40px;
    border-radius: var(--gmc-radius-sm);
    border: none;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
}
.gmc-page-wrapper .select2-container .select2-selection__rendered {
    color: rgba(255,255,255,0.9);
    padding: 0 12px;
    font-size: 0.875rem;
}
.gmc-page-wrapper .select2-container .select2-selection__placeholder {
    color: rgba(255,255,255,0.6);
}
.gmc-page-wrapper .select2-container .select2-selection__arrow { height: 40px; }
.gmc-page-wrapper .select2-dropdown {
    border-color: var(--gmc-primary);
    border-radius: var(--gmc-radius-sm);
    box-shadow: var(--gmc-shadow-lg);
    font-family: var(--gmc-font);
}
.gmc-page-wrapper .select2-results__option--highlighted {
    background: var(--gmc-primary) !important;
}
.gmc-page-wrapper .select2-search__field { font-family: var(--gmc-font); }

/* ═══════════════════════════════════════════════════════════════════════════════
   SLICK OVERRIDES
   ═══════════════════════════════════════════════════════════════════════════════ */
.gmc-stores-slider .slick-prev,
.gmc-stores-slider .slick-next {
    width: 36px; height: 36px;
    background: var(--gmc-primary);
    border-radius: 50%;
    z-index: 10;
    transition: all var(--gmc-transition);
}
.gmc-stores-slider .slick-prev:hover,
.gmc-stores-slider .slick-next:hover { background: var(--gmc-purple); }
.gmc-stores-slider .slick-prev { left: -18px; }
.gmc-stores-slider .slick-next { right: -18px; }
.gmc-stores-slider .slick-prev::before,
.gmc-stores-slider .slick-next::before { font-size: 18px; }

.gmc-categories-slider .slick-prev,
.gmc-categories-slider .slick-next {
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    width: 30px; height: 30px;
}
.gmc-categories-slider .slick-prev { left: 4px; }
.gmc-categories-slider .slick-next { right: 4px; }

/* ═══════════════════════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════════════════════ */
@keyframes gmc-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes gmc-slide-up {
    from { opacity: 0; transform: translateY(30px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .gmc-featured-inner { grid-template-columns: 1fr; }
    .gmc-featured-sidebar { position: static; }
}

@media (max-width: 768px) {
    .gmc-topbar-auth .gmc-register-btn { display: none; }
    .gmc-nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--gmc-primary-dark); padding: 16px 20px; gap: 4px; }
    .gmc-nav-links.active { display: flex; }
    .gmc-hamburger { display: flex; }
    .gmc-navbar { position: relative; }
    .gmc-navbar-inner { flex-wrap: wrap; }
    .gmc-search-wrap { order: 3; max-width: 100%; flex: 1 1 100%; }
    .gmc-hero-inner { flex-direction: column; text-align: center; }
    .gmc-hero-image { display: none; }
    .gmc-section-title::after { margin: 10px auto 0; }
    .gmc-coupon-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
    .gmc-tips-grid { grid-template-columns: 1fr 1fr; }
    .gmc-deal-row { flex-wrap: wrap; gap: 10px; }
    .gmc-deal-action { width: 100%; }
    .gmc-deal-action .gmc-btn-outline { width: 100%; }
}

@media (max-width: 480px) {
    .gmc-topbar-links { display: none; }
    .gmc-coupon-grid { grid-template-columns: 1fr 1fr; }
    .gmc-tips-grid { grid-template-columns: 1fr; }
    .gmc-modal { padding: 24px 20px; }
}

/* =============================================================================
   SINGLE STORE PAGE
   ============================================================================= */

/* ── Store Hero ─────────────────────────────────────────────────────────────── */
.gmc-store-page {
    background: #f8f9ff;
    min-height: 60vh;
}

.gmc-store-hero {
    background: linear-gradient(135deg, var(--gmc-primary-dark) 0%, var(--gmc-primary) 60%, var(--gmc-purple) 100%);
    padding: 48px 0 40px;
    position: relative;
    overflow: hidden;
}
.gmc-store-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(255,255,255,0.06) 0%, transparent 60%);
    pointer-events: none;
}

.gmc-store-hero-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.gmc-store-hero-logo {
    flex-shrink: 0;
    width: 120px;
    height: 90px;
    background: #fff;
    border-radius: var(--gmc-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    overflow: hidden;
}
.gmc-store-hero-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.gmc-store-hero-initials {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gmc-primary);
}

.gmc-store-hero-info { flex: 1; min-width: 260px; }

.gmc-store-hero-top {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.gmc-store-hero-name {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}
.gmc-store-hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.18);
    color: #FDE68A;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.25);
    white-space: nowrap;
}

.gmc-store-hero-desc {
    color: rgba(255,255,255,0.78);
    font-size: 0.95rem;
    margin-bottom: 18px;
    line-height: 1.5;
    max-width: 560px;
}

/* Stats row */
.gmc-store-stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--gmc-radius-sm);
    padding: 12px 20px;
    margin-bottom: 20px;
    width: fit-content;
    flex-wrap: wrap;
}
.gmc-store-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    gap: 2px;
}
.gmc-store-stat strong {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.gmc-store-stat span {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.65);
    white-space: nowrap;
    font-weight: 500;
}
.gmc-stat-cashback strong { color: #FDE68A; }
.gmc-store-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.2);
    flex-shrink: 0;
}

.gmc-store-hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.gmc-store-visit-btn {
    font-size: 0.95rem;
    padding: 12px 28px;
}
.gmc-cashback-label {
    color: #FDE68A;
    font-size: 0.88rem;
    font-weight: 600;
}

/* ── Store Body Layout ──────────────────────────────────────────────────────── */
.gmc-store-body { padding: 40px 0 60px; }

.gmc-store-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 28px;
    align-items: start;
}

/* ── Filter Tabs ────────────────────────────────────────────────────────────── */
.gmc-filter-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    border-bottom: 2px solid #E5E7EB;
    padding-bottom: 0;
}
.gmc-filter-tab {
    background: none;
    border: none;
    padding: 10px 18px;
    font-family: var(--gmc-font);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gmc-text-muted);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    border-radius: 6px 6px 0 0;
    transition: all var(--gmc-transition);
    display: flex;
    align-items: center;
    gap: 7px;
}
.gmc-filter-tab:hover { color: var(--gmc-primary); background: var(--gmc-primary-lt); }
.gmc-filter-tab.active {
    color: var(--gmc-primary);
    border-bottom-color: var(--gmc-primary);
    background: var(--gmc-primary-lt);
}
.gmc-tab-count {
    background: var(--gmc-primary);
    color: #fff;
    font-size: 0.7rem;
    padding: 1px 7px;
    border-radius: 20px;
    font-weight: 700;
}
.gmc-filter-tab.active .gmc-tab-count { background: var(--gmc-purple); }

/* ── Offer Cards ────────────────────────────────────────────────────────────── */
.gmc-offers-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.gmc-offer-card {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border: 1px solid var(--gmc-card-border);
    border-radius: var(--gmc-radius);
    overflow: hidden;
    transition: all var(--gmc-transition);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.gmc-offer-card:hover {
    border-color: var(--gmc-primary);
    box-shadow: var(--gmc-shadow);
    transform: translateY(-2px);
}
.gmc-offer-card.gmc-offer-expired {
    opacity: 0.55;
}
.gmc-offer-card[style*="display:none"] { display: none !important; }

/* Unified Card Body */
.gmc-offer-body {
    flex: 1;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}

.gmc-offer-header-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.gmc-offer-type-badge {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 9px;
    border-radius: 20px;
    white-space: nowrap;
}
.gmc-badge-coupon       { background: #EEF2FF; color: var(--gmc-primary); }
.gmc-badge-deal         { background: #ECFDF5; color: var(--gmc-accent);  }
.gmc-badge-free_shipping { background: #FFF7ED; color: #D97706; }
.gmc-badge-cashback     { background: #FEF9C3; color: #854D0E; }

/* Content block */
.gmc-offer-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.gmc-offer-discount {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--gmc-primary);
    line-height: 1.2;
}

.gmc-offer-title {
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--gmc-dark);
    margin: 0;
    line-height: 1.4;
}

/* Footer elements */
.gmc-offer-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4px;
    border-top: 1px solid #F3F4F6;
    padding-top: 12px;
    flex-wrap: wrap;
    gap: 10px;
}

.gmc-offer-meta-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 0.78rem;
}

.gmc-offer-expiry {
    color: #D97706;
    font-weight: 500;
}
.gmc-offer-noexpiry {
    color: var(--gmc-accent-dark);
    font-weight: 500;
}
.gmc-offer-expired-text {
    color: var(--gmc-red);
    font-weight: 600;
}
.gmc-offer-used-count {
    color: var(--gmc-accent-dark);
    font-weight: 600;
}

/* View Details Toggle */
.gmc-terms-toggle-btn {
    background: none;
    border: none;
    font-family: var(--gmc-font);
    font-size: 0.8rem;
    color: var(--gmc-primary);
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    transition: color var(--gmc-transition);
}
.gmc-terms-toggle-btn:hover {
    color: var(--gmc-purple);
}

/* Collapsible block */
.gmc-terms-collapse {
    background: #F9FAFB;
    border-left: 3px solid var(--gmc-primary);
    padding: 12px 16px;
    border-radius: 4px;
    margin-top: 8px;
    font-size: 0.8rem;
    color: var(--gmc-text-muted);
    line-height: 1.5;
}
.gmc-terms-collapse p {
    margin: 0;
}

/* Chips */
.gmc-chip {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 0.68rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
    white-space: nowrap;
}
.gmc-chip-verified  { background: #ECFDF5; color: var(--gmc-accent); }
.gmc-chip-exclusive { background: linear-gradient(90deg, #7C3AED22, #4F46E522); color: var(--gmc-purple); }

/* Right action button area */
.gmc-offer-action {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    flex-shrink: 0;
    border-left: 1px dashed #E5E7EB;
    background: #FAFBFD;
}

.gmc-offer-btn {
    font-family: var(--gmc-font);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: var(--gmc-radius-sm);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: all var(--gmc-transition);
    min-width: 130px;
    text-align: center;
}
.gmc-offer-btn-code {
    background: linear-gradient(135deg, var(--gmc-primary), var(--gmc-purple));
    color: #fff;
    box-shadow: 0 4px 12px rgba(79,70,229,0.3);
}
.gmc-offer-btn-code:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(79,70,229,0.45);
}

.gmc-offer-btn-deal {
    background: var(--gmc-accent);
    color: #fff;
    box-shadow: 0 4px 12px rgba(16,185,129,0.3);
}
.gmc-offer-btn-deal:hover {
    background: var(--gmc-accent-dark);
    transform: translateY(-2px);
}
.gmc-offer-btn-expired {
    background: #F3F4F6;
    color: #9CA3AF;
    cursor: not-allowed;
}


/* ── No Coupons State ───────────────────────────────────────────────────────── */
.gmc-no-coupons {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: var(--gmc-radius);
    border: 1px dashed var(--gmc-card-border);
}
.gmc-no-coupons-icon { font-size: 3rem; display: block; margin-bottom: 16px; }
.gmc-no-coupons h2 { font-size: 1.2rem; font-weight: 700; color: var(--gmc-dark); margin-bottom: 8px; }
.gmc-no-coupons p  { color: var(--gmc-text-muted); margin-bottom: 20px; }

/* ── Store Content Box ──────────────────────────────────────────────────────── */
.gmc-store-content-box {
    margin-top: 32px;
    background: #fff;
    border-radius: var(--gmc-radius);
    border: 1px solid var(--gmc-card-border);
    padding: 28px;
}
.gmc-store-content-box h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gmc-dark);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gmc-primary-lt);
}
.gmc-store-content-body {
    font-size: 0.9rem;
    color: var(--gmc-text-muted);
    line-height: 1.7;
}

/* ── Sidebar ────────────────────────────────────────────────────────────────── */
.gmc-store-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 90px;
}

.gmc-sidebar-card {
    background: #fff;
    border: 1px solid var(--gmc-card-border);
    border-radius: var(--gmc-radius);
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.gmc-sidebar-card-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--gmc-dark);
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gmc-primary-lt);
}

/* Visit card */
.gmc-sidebar-visit {
    text-align: center;
}
.gmc-sidebar-logo {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #eee;
    padding: 6px;
}
.gmc-sidebar-visit h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.gmc-sidebar-cashback {
    font-size: 0.82rem;
    color: var(--gmc-accent-dark);
    font-weight: 600;
    margin-bottom: 14px;
    background: #ECFDF5;
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-block;
}
.gmc-sidebar-visit-btn {
    width: 100%;
    font-size: 0.9rem;
    padding: 12px;
}

/* Stats list */
.gmc-sidebar-stats-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.gmc-sidebar-stats-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid #F3F4F6;
    font-size: 0.85rem;
}
.gmc-sidebar-stats-list li:last-child { border-bottom: none; }
.gmc-sidebar-stats-list li span { color: var(--gmc-text-muted); }
.gmc-sidebar-stats-list li strong { font-weight: 700; color: var(--gmc-dark); }
.gmc-cashback-highlight { color: var(--gmc-accent-dark) !important; }

/* Popular stores list */
.gmc-sidebar-stores-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.gmc-sidebar-stores-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    text-decoration: none;
    color: var(--gmc-text);
    border-radius: var(--gmc-radius-sm);
    transition: all var(--gmc-transition);
}
.gmc-sidebar-stores-list li a:hover {
    background: var(--gmc-primary-lt);
    color: var(--gmc-primary);
}
.gmc-sidebar-stores-list li a img {
    width: 36px; height: 28px;
    object-fit: contain;
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 2px;
    background: #fff;
    flex-shrink: 0;
}
.gmc-sidebar-store-initials {
    width: 36px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--gmc-primary), var(--gmc-purple));
    color: #fff;
    font-weight: 800;
    font-size: 0.72rem;
    border-radius: 5px;
    flex-shrink: 0;
}
.gmc-sidebar-store-name {
    display: block;
    font-size: 0.84rem;
    font-weight: 600;
    line-height: 1.2;
}
.gmc-sidebar-store-count {
    display: block;
    font-size: 0.72rem;
    color: var(--gmc-text-muted);
}

/* ── Store Page Responsive ──────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .gmc-store-layout { grid-template-columns: 1fr; }
    .gmc-store-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
    .gmc-sidebar-card { flex: 1; min-width: 240px; }
}
@media (max-width: 768px) {
    .gmc-store-hero-inner { flex-direction: column; text-align: center; }
    .gmc-store-stats { width: 100%; justify-content: center; }
    .gmc-store-hero-actions { justify-content: center; }
    .gmc-store-stat { padding: 0 12px; }
    .gmc-offer-card { flex-wrap: wrap; }
    .gmc-offer-discount-col { min-width: 90px; }
    .gmc-offer-action {
        width: 100%;
        border-left: none;
        border-top: 1px dashed #E5E7EB;
        padding: 12px 16px;
    }
    .gmc-offer-btn { width: 100%; }
    .gmc-filter-tabs { flex-wrap: wrap; }
}
@media (max-width: 480px) {
    .gmc-store-hero-logo { width: 90px; height: 70px; }
    .gmc-store-hero-name { font-size: 1.4rem; }
    .gmc-store-stat strong { font-size: 1.1rem; }
    .gmc-sidebar-card { min-width: 100%; }
}

/* ── Search Bar styling ──────────────────────────────────────────────────────── */
.gmc-search-bar-wrap {
    position: relative;
    max-width: 600px;
    margin: 20px auto;
    width: 100%;
}
.gmc-search-form {
    position: relative;
}
.gmc-search-input-field {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.25s ease;
}
.gmc-search-input-field:focus-within {
    border-color: var(--gmc-primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.gmc-search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 20px;
    font-family: var(--gmc-font);
    font-size: 0.95rem;
    color: var(--gmc-dark);
}
.gmc-search-submit {
    background: none;
    border: none;
    outline: none;
    padding: 12px 20px;
    color: var(--gmc-primary);
    cursor: pointer;
    transition: color 0.2s ease;
}
.gmc-search-submit:hover {
    color: var(--gmc-primary-dark);
}

/* ── Live Search Dropdown ────────────────────────────────────────────────────── */
.gmc-search-live-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    z-index: 9999;
    max-height: 400px;
    overflow-y: auto;
    padding: 10px 0;
}
.gmc-search-section-title {
    font-family: var(--gmc-font);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gmc-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 16px 4px;
}
.gmc-search-store-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    text-decoration: none;
    color: var(--gmc-dark);
    font-family: var(--gmc-font);
    font-size: 0.88rem;
    font-weight: 600;
    transition: background 0.15s ease;
}
.gmc-search-store-item:hover {
    background: #F3F4F6;
}
.gmc-search-store-logo {
    width: 36px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #E5E7EB;
    border-radius: 4px;
    background: #fff;
    overflow: hidden;
}
.gmc-search-store-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.gmc-search-store-initials {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--gmc-primary);
}
.gmc-search-coupon-item {
    display: block;
    padding: 8px 16px;
    text-decoration: none;
    color: var(--gmc-dark);
    font-family: var(--gmc-font);
    transition: background 0.15s ease;
}
.gmc-search-coupon-item:hover {
    background: #F3F4F6;
}
.gmc-search-coupon-disc {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gmc-primary);
    background: var(--gmc-primary-lt);
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 2px;
}
.gmc-search-coupon-title {
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1.3;
}
.gmc-search-coupon-store {
    font-size: 0.72rem;
    color: var(--gmc-text-muted);
}
.gmc-search-no-results {
    padding: 16px;
    text-align: center;
    font-family: var(--gmc-font);
    font-size: 0.86rem;
    color: var(--gmc-text-muted);
}
