/* =========================================================
   Raspberry — Frontend CSS 2.0
   Clean, modern, fully responsive
   ========================================================= */

/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--body-font, 'Inter', system-ui, sans-serif);
    font-size: var(--font-base, 15px);
    color: var(--text-color, #374151);
    background: var(--bg-color, #F9FAFB);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ── Layout ───────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container-width, 1200px);
    margin: 0 auto;
    padding: 0 20px;
}

/* ── Typography ───────────────────────────────────────── */
h1, h2, h3, h4 {
    font-family: var(--heading-font, 'Inter', system-ui, sans-serif);
    font-weight: var(--heading-weight, 700);
    color: var(--heading-color, #111827);
    line-height: 1.25;
}
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1rem, 2vw, 1.2rem); }

/* ── Announcement Bar ─────────────────────────────────── */
.uh-countdown-strip {
    background: linear-gradient(90deg, #BE123C, #E11D48, #BE123C);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 20px;
    text-align: center;
}
.uh-countdown-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}
.uh-countdown-label { display: flex; align-items: center; gap: 6px; }
.uh-countdown-cta {
    background: rgba(255,255,255,0.2);
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    transition: background 0.2s;
    white-space: nowrap;
    display: flex; align-items: center; gap: 5px;
}
.uh-countdown-cta:hover { background: rgba(255,255,255,0.35); }

.season-summer { background: #BE123C; }
.season-winter { background: #2563EB; }
.season-blackfriday { background: #111827; }
.season-cybermonday { background: #7C3AED; }
.season-christmas { background: #16A34A; }
.season-halloween { background: #7C2D12; }

/* ── Header ───────────────────────────────────────────── */
.uh-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #F0F0F0;
    transition: box-shadow 0.3s;
}
.uh-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.header-inner {
    display: flex;
    align-items: center;
    height: 66px;
    gap: 20px;
}

/* Logo */
.site-logo { flex-shrink: 0; display: flex; align-items: center; gap: 8px; }
.site-logo img { height: 38px; width: auto; }
.uh-logo-text {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary, #E11D48);
}
.uh-logo-icon { font-size: 1.3rem; line-height: 1; }
.uh-logo-name { letter-spacing: -0.5px; }

/* Header search */
.uh-header-search {
    flex: 1;
    max-width: 520px;
    margin: 0 auto;
    position: relative;
}
.uh-search-form {
    display: flex;
    align-items: center;
    background: #F4F5F7;
    border: 1.5px solid transparent;
    border-radius: 10px;
    padding: 0 14px;
    height: 42px;
    transition: border-color 0.2s, background 0.2s;
    position: relative;
}
.uh-search-form:focus-within { border-color: var(--primary, #E11D48); background: #fff; }
.uh-search-form .fa-search { color: #9CA3AF; font-size: 14px; flex-shrink: 0; margin-right: 10px; }
.uh-search-form input { flex: 1; background: none; border: none; outline: none; font-size: 14px; color: #111827; }
.uh-search-form input::placeholder { color: #9CA3AF; }

/* Nav */
.main-nav { display: flex; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    padding: 6px 12px;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--primary, #E11D48); background: #FEF2F2; }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.uh-login-link { font-size: 14px; font-weight: 500; color: #374151; padding: 6px 12px; }
.uh-login-link:hover { color: var(--primary, #E11D48); }
.uh-btn-pill {
    background: var(--primary, #E11D48) !important;
    color: #fff !important;
    border-radius: 22px !important;
    padding: 7px 18px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    transition: opacity 0.2s !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
}
.uh-btn-pill:hover { opacity: 0.88; color: #fff !important; }
.header-search-btn {
    display: none;
    background: #F4F5F7;
    border: none;
    border-radius: 8px;
    width: 38px; height: 38px;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #374151;
    transition: background 0.2s;
}
.header-search-btn:hover { background: #E5E7EB; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 38px; height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background 0.2s;
}
.hamburger:hover { background: #F3F4F6; }
.hamburger span {
    display: block;
    width: 22px; height: 2px;
    background: #374151;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu-inner {
    position: absolute;
    top: 0; right: 0;
    width: min(320px, 85vw);
    height: 100%;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
    overflow-y: auto;
    padding: 0 0 30px;
    box-shadow: -4px 0 24px rgba(0,0,0,0.12);
}
.mobile-menu.open .mobile-menu-inner { transform: translateX(0); }
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #F3F4F6;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1;
}
.mobile-menu-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 16px;
    color: #1A0010;
    letter-spacing: -0.3px;
}
.mobile-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: #FFF1F2;
    color: #E11D48;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
}
.mobile-menu-close:hover { background: #E11D48; color: #fff; }
.mobile-nav-list { padding: 0 20px; }
.mobile-nav-list li { border-bottom: 1px solid #F3F4F6; }
.mobile-nav-list a { display: block; padding: 14px 4px; font-size: 15px; font-weight: 500; color: #374151; transition: color 0.2s; }
.mobile-nav-list a:hover, .mobile-nav-list a.active { color: var(--primary, #E11D48); }
.mobile-menu-actions { padding: 20px; display: flex; flex-direction: column; gap: 10px; }

/* Search overlay */
.search-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 1200;
    backdrop-filter: blur(4px);
    align-items: flex-start;
    padding-top: 80px;
}
.search-overlay.active { display: flex; }
.search-overlay-inner { width: 100%; max-width: 680px; margin: 0 auto; padding: 0 20px; }
.search-overlay-form {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 14px;
    padding: 4px 4px 4px 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.search-overlay-form .fa-search { color: #9CA3AF; font-size: 16px; margin-right: 12px; }
.search-overlay-form input { flex: 1; border: none; outline: none; font-size: 16px; color: #111827; padding: 10px 0; }
.search-overlay-close {
    width: 42px; height: 42px;
    border-radius: 10px;
    background: #F3F4F6;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; color: #374151;
    transition: background 0.2s;
}
.search-overlay-close:hover { background: #E5E7EB; }
.search-overlay-hint { color: rgba(255,255,255,0.5); font-size: 12px; margin-top: 12px; padding: 0 4px; }
.search-overlay-hint kbd { background: rgba(255,255,255,0.15); border-radius: 4px; padding: 2px 6px; font-family: inherit; font-size: 11px; }

/* ── Hero Section ─────────────────────────────────────── */
.rz-hero {
    background: #1A0010;
    background-image:
        radial-gradient(ellipse at 65% 60%, rgba(225,29,72,0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 10% 40%, rgba(190,18,60,0.10) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 10%, rgba(253,164,175,0.06) 0%, transparent 40%);
    color: #fff;
    padding: 72px 0 80px;
    position: relative;
    overflow: hidden;
}
.rz-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.018'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.rz-hero .container { position: relative; }

/* Split layout: text left, cards right */
.rz-hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    min-height: 480px;
}
.rz-hero-text { display: flex; flex-direction: column; align-items: flex-start; }

.rz-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(225,29,72,0.18);
    border: 1px solid rgba(225,29,72,0.4);
    color: #FDA4AF;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 22px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.rz-hero h1 {
    color: #fff;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.rz-hero h1 span { color: #FDA4AF; }
.rz-hero-sub {
    color: #9CA3AF;
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 30px;
    max-width: 460px;
}
.rz-hero-search {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 14px;
    padding: 6px 6px 6px 18px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
    position: relative;
    margin-bottom: 28px;
}
.rz-hero-search-icon { color: #9CA3AF; font-size: 15px; margin-right: 10px; flex-shrink: 0; }
.rz-hero-search input { flex: 1; border: none; outline: none; font-size: 15px; color: #111827; background: none; padding: 8px 0; }
.rz-hero-search input::placeholder { color: #9CA3AF; }
.rz-hero-search button {
    background: var(--primary, #E11D48);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 11px 22px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: opacity 0.2s;
}
.rz-hero-search button:hover { opacity: 0.88; }
.rz-hero-stats { display: flex; align-items: center; flex-wrap: wrap; gap: 0; }
.rz-hero-stat { display: flex; flex-direction: column; align-items: center; padding: 0 20px; }
.rz-hero-stat:first-child { padding-left: 0; }
.rz-stat-num { font-size: 1.7rem; font-weight: 800; color: #fff; line-height: 1; }
.rz-stat-label { font-size: 11px; color: #6B7280; margin-top: 3px; }
.rz-hero-stat-sep { width: 1px; height: 34px; background: rgba(255,255,255,0.1); }

/* ── Hero Cards (right column 2x2 grid) ──────────────── */
.rz-hero-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    position: relative;
    z-index: 2;
}
.rz-hero-card {
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border: 1px solid #F0F0F0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.rz-hero-card:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0,0,0,0.15); }
.rz-hero-card-top { display: flex; align-items: center; justify-content: space-between; }
.rz-hero-card-logo {
    width: 44px; height: 44px;
    border-radius: 10px;
    border: 1px solid #F0F0F0;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    background: #f9fafb;
}
.rz-hero-card-logo img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.rz-hero-card-logo-fb {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: var(--primary, #E11D48);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.rz-hero-card-badge {
    background: var(--primary, #E11D48);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    white-space: nowrap;
}
.rz-hero-card-title { font-size: 13px; font-weight: 600; color: #111827; line-height: 1.4; flex: 1; }
.rz-hero-card-meta { display: flex; align-items: center; justify-content: space-between; font-size: 11px; }
.rz-hero-card-store { color: #6B7280; font-weight: 500; }
.rz-hero-card-verified { color: #10B981; font-weight: 500; }
.rz-hero-card-expiry { font-size: 11px; color: #6B7280; display: flex; align-items: center; gap: 4px; }
.rz-hero-card-expiry.urgent { color: #EF4444; }
.rz-hero-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--primary, #E11D48);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 9px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
    text-align: center;
    width: 100%;
}
.rz-hero-card-btn:hover { opacity: 0.88; color: #fff; }

/* ── Category Strip ───────────────────────────────────── */
.rz-cats-strip { background: #fff; border-bottom: 1px solid #F0F0F0; padding: 14px 0; }
.rz-cats-row {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 2px;
}
.rz-cats-row::-webkit-scrollbar { display: none; }
.rz-cat-pill {
    display: flex;
    align-items: center;
    gap: 7px;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 24px;
    padding: 7px 14px 7px 8px;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    white-space: nowrap;
    flex-shrink: 0;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.rz-cat-pill:hover { border-color: var(--primary, #E11D48); color: var(--primary, #E11D48); background: #FEF2F2; }
.rz-cat-pill-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}
.rz-cat-pill-name { font-size: 13px; }

/* ── Section Headers ──────────────────────────────────── */
.rz-section { padding: 60px 0; }
.rz-section-tinted { background: #FFF1F2; }
.rz-section-head, .uh-section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 28px;
    gap: 16px;
}
.rz-section-head-text { display: flex; flex-direction: column; gap: 4px; }
.rz-section-head h2, .uh-section-head h2 { font-size: 1.5rem; font-weight: 800; color: #111827; display: flex; align-items: center; gap: 10px; margin: 0; }
.rz-section-icon { color: var(--primary, #E11D48); font-size: 1.1rem; }
.rz-section-sub { font-size: 14px; color: #6B7280; margin: 0; line-height: 1.4; }
.rz-see-all, .uh-see-all {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary, #E11D48);
    border: 1.5px solid var(--primary, #E11D48);
    border-radius: 20px;
    padding: 5px 14px;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}
.rz-see-all:hover, .uh-see-all:hover { background: var(--primary, #E11D48); color: #fff; }

/* ── Deal Tabs ────────────────────────────────────────── */
.rz-deals-tabs { display: flex; gap: 6px; margin-bottom: 24px; flex-wrap: wrap; }
.rz-tab {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    color: #6B7280;
    background: #F3F4F6;
    border: 1.5px solid transparent;
    transition: all 0.2s;
}
.rz-tab:hover { color: var(--primary, #E11D48); background: #FFF1F2; }
.rz-tab.active { background: var(--primary, #E11D48); color: #fff; border-color: var(--primary, #E11D48); }
.rz-tab-content { display: none; }
.rz-tab-content.active { display: block; }

/* ── Deal Card Grid (default) ─────────────────────────── */
.rz-deal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
}
.rz-deal-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #E5E7EB;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s, transform 0.25s;
}
.rz-deal-card:hover { box-shadow: 0 10px 36px rgba(0,0,0,0.10); transform: translateY(-2px); }
.rz-deal-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 16px 0;
}
.rz-deal-card-store { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; color: #374151; }
.rz-deal-card-store:hover { color: var(--primary, #E11D48); }
.rz-deal-card-logo {
    width: 36px; height: 36px;
    border-radius: 8px;
    border: 1px solid #F0F0F0;
    background: #F9FAFB;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}
.rz-deal-card-logo img { width: 100%; height: 100%; object-fit: contain; padding: 3px; }
.rz-deal-card-logo-fb {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: var(--primary, #E11D48);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.rz-deal-card-badge {
    background: var(--primary, #E11D48);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    white-space: nowrap;
    flex-shrink: 0;
}
.rz-deal-card-body { padding: 12px 16px 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.rz-deal-card-title { font-size: 14px; font-weight: 600; color: #111827; line-height: 1.4; }
.rz-deal-card-desc { font-size: 12px; color: #6B7280; line-height: 1.5; }
.rz-deal-card-expiry { font-size: 11px; color: #9CA3AF; display: flex; align-items: center; gap: 4px; }
.rz-deal-card-expiry.urgent { color: #EF4444; font-weight: 500; }

/* ── Featured Deals Section — Feed Layout ─────────────── */
.rz-section--deals {
    background: linear-gradient(180deg, #FFF1F2 0%, #fff 100%);
    border-top: 3px solid var(--primary, #E11D48);
}
.rz-section--deals .rz-section-head h2 {
    position: relative;
    padding-left: 14px;
}
.rz-section--deals .rz-section-head h2::before {
    content: '';
    position: absolute;
    left: 0; top: 3px; bottom: 3px;
    width: 4px;
    background: var(--primary, #E11D48);
    border-radius: 2px;
}
/* Segmented tab bar */
.rz-section--deals .rz-deals-tabs {
    background: #fff;
    border: 1.5px solid #E5E7EB;
    border-radius: 12px;
    padding: 4px;
    display: inline-flex;
    gap: 2px;
    margin-bottom: 20px;
}
.rz-section--deals .rz-tab {
    border-radius: 8px;
    padding: 7px 18px;
    background: transparent;
    border: none;
    color: #6B7280;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.18s, color 0.18s;
}
.rz-section--deals .rz-tab:hover { background: #FFF1F2; color: #BE123C; }
.rz-section--deals .rz-tab.active { background: var(--primary, #E11D48); color: #fff; }
/* Feed list */
.rz-section--deals .rz-deal-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    grid-template-columns: none;
}
/* Horizontal deal row */
.rz-section--deals .rz-deal-card {
    flex-direction: row;
    border-radius: 16px;
    border: 1.5px solid #FECDD3;
    background: #fff;
    overflow: visible;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
    align-items: stretch;
}
.rz-section--deals .rz-deal-card:hover {
    box-shadow: 0 4px 20px rgba(225,29,72,0.14);
    transform: translateY(-1px);
    border-color: var(--primary, #E11D48);
}
/* Left: discount accent column */
.rz-section--deals .rz-deal-card-top {
    width: 120px;
    min-width: 120px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #FFF1F2, #FFF1F2);
    border-right: 1.5px solid #FECDD3;
    border-radius: 14px 0 0 14px;
    padding: 18px 10px;
    gap: 10px;
}
.rz-section--deals .rz-deal-card-store {
    flex-direction: column;
    gap: 5px;
    text-align: center;
    font-size: 11px;
    color: #6B7280;
}
.rz-section--deals .rz-deal-card-logo {
    width: 46px; height: 46px;
    border-radius: 10px;
    background: #fff;
    border-color: #FECDD3;
}
.rz-section--deals .rz-deal-card-logo-fb {
    width: 46px; height: 46px;
    border-radius: 10px;
    font-size: 18px;
}
.rz-section--deals .rz-deal-card-badge {
    font-size: 13px;
    font-weight: 800;
    padding: 5px 10px;
    border-radius: 8px;
    text-align: center;
    letter-spacing: 0.3px;
    line-height: 1.3;
    background: var(--primary, #E11D48);
    color: #fff;
    box-shadow: 0 2px 8px rgba(225,29,72,0.30);
}
/* Middle: deal details */
.rz-section--deals .rz-deal-card-body {
    flex: 1;
    padding: 16px 20px;
    gap: 5px;
    border-right: 1.5px solid #F3F4F6;
    justify-content: center;
}
.rz-section--deals .rz-deal-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    line-height: 1.4;
}
.rz-section--deals .rz-deal-card-desc {
    font-size: 12px;
    color: #6B7280;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* Right: action column */
.rz-deal-card-action {
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 180px;
}
.rz-section--deals .rz-code-box {
    border-color: var(--primary, #E11D48);
    background: #FFF1F2;
    width: 100%;
    margin-top: 0;
}
.rz-section--deals .rz-deal-shopnow {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* Code box */
.rz-code-box {
    display: flex;
    align-items: center;
    border: 1.5px dashed #D1D5DB;
    border-radius: 8px;
    overflow: hidden;
    background: #FAFAFA;
    margin-top: auto;
}
.rz-code-text {
    flex: 1;
    padding: 9px 12px;
    font-family: 'SFMono-Regular', 'Consolas', monospace;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    letter-spacing: 1px;
}
.rz-code-btn {
    background: var(--primary, #E11D48);
    color: #fff;
    border: none;
    padding: 9px 14px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}
.rz-code-btn:hover { opacity: 0.88; }
/* When rz-code-btn is also used as a code-reveal-btn (inside rz-code-box), keep amber style */
.rz-code-btn.code-reveal-btn {
    background: var(--primary, #E11D48);
    color: #fff;
    border: none;
    border-radius: 0;
    width: auto;
    flex-direction: row;
    padding: 9px 14px;
    font-size: 12px;
    font-weight: 600;
}
.rz-code-btn.code-reveal-btn:hover { background: #BE123C; opacity: 1; }
.rz-deal-shopnow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #111827;
    color: #fff;
    border-radius: 8px;
    padding: 10px;
    font-size: 13px;
    font-weight: 600;
    margin-top: auto;
    transition: background 0.2s;
}
.rz-deal-shopnow:hover { background: var(--primary, #E11D48); color: #fff; }

/* ── Stores Section ───────────────────────────────────── */
.rz-stores { padding: 56px 0; background: #fff; }
.rz-store-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.rz-store-card {
    background: #FFF1F2;
    border: 1.5px solid #FECDD3;
    border-radius: 14px;
    padding: 16px 18px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    text-align: left;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s, background 0.2s;
    color: inherit;
    text-decoration: none;
}
.rz-store-card:hover {
    box-shadow: 0 6px 20px rgba(225,29,72,0.15);
    transform: translateY(-2px);
    border-color: var(--primary, #E11D48);
    background: #FFF1F2;
    text-decoration: none;
}
.rz-store-logo {
    width: 52px; height: 52px;
    border-radius: 10px;
    border: 1px solid #FECDD3;
    background: #fff;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.rz-store-logo img { width: 100%; height: 100%; object-fit: contain; padding: 5px; }
.rz-store-logo-fb {
    width: 52px; height: 52px;
    border-radius: 10px;
    background: var(--primary, #E11D48);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}
.rz-store-info { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.rz-store-name { font-size: 13px; font-weight: 700; color: #111827; line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rz-store-count { font-size: 11px; color: #BE123C; background: #FFF1F2; border: 1px solid #FECDD3; padding: 2px 8px; border-radius: 20px; display: inline-block; font-weight: 600; }

/* ── How It Works ─────────────────────────────────────── */
.rz-how { padding: 70px 0; background: #fff; text-align: center; }
.rz-how h2 { margin-bottom: 10px; }
.rz-how-sub { color: #6B7280; margin-bottom: 44px; font-size: 15px; }
.rz-how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.rz-how-step {
    padding: 32px 24px;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    background: #F9FAFB;
}
.rz-how-num {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--primary, #E11D48);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
}
.rz-how-step h3 { font-size: 16px; font-weight: 700; color: #111827; }
.rz-how-step p { font-size: 14px; color: #6B7280; line-height: 1.6; }

/* ── Stats ────────────────────────────────────────────── */
.rz-stats { background: #111827; padding: 50px 0; }
.rz-stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.rz-stat-icon { font-size: 22px; color: var(--primary, #E11D48); margin-bottom: 10px; }
.rz-stat-val { font-size: 2rem; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 6px; }
.rz-stat-lbl { font-size: 13px; color: #6B7280; }

/* ── Categories Grid ──────────────────────────────────── */
.rz-categories { padding: 60px 0; }
.rz-cat-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.rz-cat-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1.5px solid #E5E7EB;
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    transition: all 0.2s;
}
.rz-cat-chip i { color: var(--primary, #E11D48); }
.rz-cat-chip:hover { border-color: var(--primary, #E11D48); background: #FEF2F2; color: var(--primary, #E11D48); }
.rz-cat-count { background: #F3F4F6; color: #6B7280; font-size: 11px; padding: 2px 7px; border-radius: 10px; font-weight: 600; }

/* ── Newsletter ───────────────────────────────────────── */
.rz-newsletter { padding: 70px 0; background: #FEF2F2; }
.rz-newsletter-inner { max-width: 560px; margin: 0 auto; text-align: center; }
.rz-newsletter-inner h2 { margin-bottom: 10px; color: #111827; }
.rz-newsletter-inner p { color: #6B7280; margin-bottom: 28px; font-size: 15px; }
.rz-nl-form { display: flex; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(232,76,61,0.15); }
.rz-nl-form input {
    flex: 1;
    padding: 14px 18px;
    border: 1.5px solid #E5E7EB;
    border-right: none;
    border-radius: 12px 0 0 12px;
    font-size: 14px;
    outline: none;
    background: #fff;
}
.rz-nl-form input:focus { border-color: var(--primary, #E11D48); }
.rz-nl-form button {
    background: var(--primary, #E11D48);
    color: #fff;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 0 12px 12px 0;
    transition: opacity 0.2s;
}
.rz-nl-form button:hover { opacity: 0.88; }
.rz-nl-trust { margin-top: 14px; font-size: 12px; color: #9CA3AF; display: flex; align-items: center; justify-content: center; gap: 5px; }

/* ── Deal of the Day ──────────────────────────────────── */
.rmn-dotd-section { padding: 60px 0; }
.rmn-dotd-card {
    background: linear-gradient(135deg, #111827 0%, #1F2937 100%);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    padding: 48px;
}
.rmn-dotd-gradient { position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 50%, rgba(232,76,61,0.2) 0%, transparent 60%); }
.rmn-dotd-grid { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: center; position: relative; }
.rmn-dotd-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--primary, #E11D48);
    color: #fff;
    font-size: 11px; font-weight: 700;
    padding: 5px 12px; border-radius: 20px;
    margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px;
}
.rmn-dotd-title { font-size: 1.8rem; font-weight: 800; color: #fff; margin-bottom: 10px; line-height: 1.25; }
.rmn-dotd-discount { font-size: 2.5rem; font-weight: 900; color: var(--primary, #E11D48); }
.rmn-dotd-desc { color: #9CA3AF; font-size: 14px; margin: 12px 0 24px; line-height: 1.6; }
.rmn-dotd-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.rmn-dotd-cta {
    background: var(--primary, #E11D48); color: #fff;
    padding: 13px 28px; border-radius: 10px;
    font-size: 14px; font-weight: 700; transition: opacity 0.2s;
}
.rmn-dotd-cta:hover { opacity: 0.88; color: #fff; }
.rmn-dotd-timer { display: flex; align-items: center; gap: 8px; color: #6B7280; font-size: 14px; }
.rmn-countdown-timer { color: #fff; font-weight: 700; font-size: 18px; }
.rmn-dotd-product-box {
    background: rgba(255,255,255,0.06);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 32px;
    display: flex; align-items: center; justify-content: center;
    min-height: 180px;
    position: relative;
}
.rmn-dotd-product-icon img { max-width: 120px; max-height: 120px; object-fit: contain; }
.rmn-dotd-pct-badge {
    position: absolute; top: -12px; right: -12px;
    background: var(--primary, #E11D48); color: #fff;
    font-size: 13px; font-weight: 800; padding: 6px 12px; border-radius: 20px;
}

/* ── Social Proof ─────────────────────────────────────── */
.rmn-social-proof { padding: 70px 0; text-align: center; background: #fff; }
.rmn-sp-avatars { display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.rmn-sp-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--primary, #E11D48); color: #fff;
    font-size: 12px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    border: 3px solid #fff; margin-left: -10px;
}
.rmn-sp-avatar:first-child { margin-left: 0; }
.rmn-sp-stars { color: #E11D48; font-size: 18px; margin-bottom: 16px; display: flex; gap: 3px; justify-content: center; }
.rmn-sp-heading { font-size: 1.8rem; font-weight: 800; margin-bottom: 14px; }
.rmn-sp-text { color: #6B7280; max-width: 480px; margin: 0 auto 28px; font-size: 15px; }
.rmn-sp-stat { font-size: 14px; color: #374151; margin-bottom: 8px; font-weight: 500; }
.rmn-sp-cta {
    display: inline-flex; align-items: center;
    background: var(--primary, #E11D48); color: #fff;
    padding: 13px 30px; border-radius: 10px;
    font-size: 14px; font-weight: 700; transition: opacity 0.2s;
}
.rmn-sp-cta:hover { opacity: 0.88; color: #fff; }

/* ── Blog Section (Home) ──────────────────────────────── */
.uh-blog-section { padding: 60px 0; }
.uh-blog-grid { display: grid; grid-template-columns: 1fr 300px; gap: 24px; }
.uh-blog-large {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    overflow: hidden;
}
.uh-blog-large-img {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #F3F4F6;
}
.uh-blog-large-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.uh-blog-large:hover .uh-blog-large-img img { transform: scale(1.04); }
.uh-blog-large-body { padding: 24px; }
.uh-blog-cat {
    display: inline-block;
    background: #FEF2F2;
    color: var(--primary, #E11D48);
    font-size: 11px; font-weight: 700;
    padding: 4px 10px; border-radius: 20px;
    margin-bottom: 10px;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.uh-blog-large-body h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.uh-blog-large-body h3 a { color: #111827; }
.uh-blog-large-body h3 a:hover { color: var(--primary, #E11D48); }
.uh-blog-large-body p { font-size: 14px; color: #6B7280; line-height: 1.6; margin-bottom: 14px; }
.uh-blog-read { font-size: 13px; font-weight: 600; color: var(--primary, #E11D48); display: flex; align-items: center; gap: 5px; }
.uh-blog-side { display: flex; flex-direction: column; gap: 16px; }
.uh-blog-side-card {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    padding: 20px;
    display: flex; flex-direction: column; gap: 8px;
    transition: box-shadow 0.2s;
    flex: 1;
}
.uh-blog-side-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
.uh-blog-side-card h3 { font-size: 14px; font-weight: 600; line-height: 1.4; }
.uh-blog-side-card h3 a { color: #111827; }
.uh-blog-side-card h3 a:hover { color: var(--primary, #E11D48); }
.uh-blog-side-card p { font-size: 12px; color: #9CA3AF; }
.uh-blog-ph { display: flex; align-items: center; justify-content: center; height: 100%; font-size: 48px; color: #D1D5DB; }

/* ── Blog Page ────────────────────────────────────────── */
.blog-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #E5E7EB;
    background: #fff;
    margin-bottom: 36px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.blog-featured-image { display: block; overflow: hidden; background: #F3F4F6; min-height: 300px; }
.blog-featured-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-featured:hover .blog-featured-image img { transform: scale(1.04); }
.blog-image-placeholder {
    display: flex; align-items: center; justify-content: center;
    background: #F3F4F6; color: #D1D5DB; font-size: 40px;
    height: 100%; min-height: 200px;
}
.blog-image-placeholder.large { font-size: 64px; min-height: 300px; }
.blog-featured-content { padding: 36px; display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.blog-category {
    display: inline-block;
    background: #FEF2F2; color: var(--primary, #E11D48);
    font-size: 11px; font-weight: 700;
    padding: 4px 10px; border-radius: 20px;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.blog-featured-content h2 { font-size: 1.5rem; font-weight: 800; line-height: 1.3; }
.blog-featured-content h2 a { color: #111827; }
.blog-featured-content h2 a:hover { color: var(--primary, #E11D48); }
.blog-featured-content p { font-size: 15px; color: #6B7280; line-height: 1.6; }
.blog-card-meta { display: flex; align-items: center; gap: 16px; font-size: 12px; color: #9CA3AF; }
.blog-card-meta span { display: flex; align-items: center; gap: 4px; }

.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }
.blog-card {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.25s;
}
.blog-card:hover { box-shadow: 0 10px 36px rgba(0,0,0,0.10); transform: translateY(-2px); }
.blog-card-image { display: block; height: 190px; overflow: hidden; background: #F3F4F6; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card-image img { transform: scale(1.04); }
.blog-card-body { padding: 18px; display: flex; flex-direction: column; gap: 8px; }
.blog-card-body h3 { font-size: 15px; font-weight: 700; line-height: 1.4; }
.blog-card-body h3 a { color: #111827; }
.blog-card-body h3 a:hover { color: var(--primary, #E11D48); }
.blog-excerpt { font-size: 13px; color: #6B7280; line-height: 1.5; }

/* ── Blog Post ────────────────────────────────────────── */
.blog-post-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    padding: 48px 0;
    align-items: start;
}
.blog-post-content { min-width: 0; }
.blog-post-featured-img {
    width: 100%; border-radius: 16px; overflow: hidden;
    margin-bottom: 32px; aspect-ratio: 16/9; background: #F3F4F6;
}
.blog-post-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-post-body { font-size: 16px; line-height: 1.8; color: #374151; }
.blog-post-body h2 { font-size: 1.5rem; font-weight: 700; margin: 32px 0 14px; color: #111827; }
.blog-post-body h3 { font-size: 1.2rem; font-weight: 700; margin: 24px 0 10px; color: #111827; }
.blog-post-body p { margin-bottom: 18px; }
.blog-post-body a { color: var(--primary, #E11D48); text-decoration: underline; }
.blog-post-body ul, .blog-post-body ol { margin: 0 0 18px 24px; list-style: revert; }
.blog-post-body li { margin-bottom: 6px; }
.blog-post-body blockquote {
    border-left: 4px solid var(--primary, #E11D48);
    background: #FEF2F2; padding: 16px 20px;
    border-radius: 0 10px 10px 0; margin: 24px 0;
    font-style: italic; color: #374151;
}
.blog-post-body img { border-radius: 10px; margin: 20px 0; width: 100%; }
.blog-post-body code { background: #F3F4F6; padding: 2px 6px; border-radius: 4px; font-family: monospace; font-size: 0.9em; }
.blog-post-body pre { background: #1F2937; color: #E5E7EB; padding: 20px; border-radius: 10px; overflow-x: auto; margin: 20px 0; }
.blog-sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-card { background: #fff; border: 1px solid #E5E7EB; border-radius: 14px; padding: 22px; }
.sidebar-card h4 { font-size: 14px; font-weight: 700; color: #111827; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid #F0F0F0; }
.sidebar-deal-list { display: flex; flex-direction: column; gap: 14px; }
.sidebar-deal { display: flex; align-items: center; gap: 10px; }
.sidebar-deal-logo {
    width: 36px; height: 36px; border-radius: 8px;
    border: 1px solid #F0F0F0; background: #F9FAFB;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; flex-shrink: 0;
}
.sidebar-deal-logo img { width: 100%; height: 100%; object-fit: contain; padding: 3px; }
.sidebar-deal-info { flex: 1; min-width: 0; }
.sidebar-deal-title { font-size: 12px; font-weight: 600; color: #111827; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sidebar-deal-disc { font-size: 11px; color: var(--primary, #E11D48); font-weight: 600; }
.sidebar-recent-list { display: flex; flex-direction: column; gap: 16px; }
.sidebar-recent-item { display: flex; flex-direction: column; gap: 5px; }
.sidebar-recent-item a { font-size: 13px; font-weight: 600; color: #111827; line-height: 1.4; }
.sidebar-recent-item a:hover { color: var(--primary, #E11D48); }
.sidebar-recent-meta { font-size: 11px; color: #9CA3AF; }

/* ── Page Header ──────────────────────────────────────── */
.page-header {
    background: #1A0010;
    background-image: radial-gradient(ellipse at 20% 60%, rgba(225,29,72,0.18) 0%, transparent 55%), radial-gradient(ellipse at 80% 40%, rgba(190,18,60,0.10) 0%, transparent 50%);
    color: #fff;
    padding: 52px 0 46px;
    border-bottom: 2px solid rgba(225,29,72,0.2);
}
.page-header h1 { color: #fff; margin: 6px 0 8px; font-size: 2rem; font-weight: 800; }
.page-header p { color: #D1D5DB; font-size: 15px; }
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 13px; color: #9CA3AF; margin-bottom: 8px; }
.breadcrumb a { color: #9CA3AF; }
.breadcrumb a:hover { color: var(--primary, #E11D48); }
.breadcrumb span { color: #6B7280; }

/* ── Filters ──────────────────────────────────────────── */
.section { padding: 48px 0; }
.filter-bar { margin-bottom: 28px; background: #fff; border: 1px solid #E5E7EB; border-radius: 14px; padding: 18px; }
.filter-form { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.filter-search {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 200px;
    background: #F9FAFB;
    border: 1.5px solid #E5E7EB;
    border-radius: 10px;
    padding: 0 12px;
    height: 42px;
    transition: border-color 0.2s;
}
.filter-search:focus-within { border-color: var(--primary, #E11D48); }
.filter-search .fa-search { color: #9CA3AF; font-size: 14px; flex-shrink: 0; }
.filter-search input { border: none; outline: none; background: none; font-size: 14px; flex: 1; color: #111827; }
.filter-select select {
    height: 42px;
    border: 1.5px solid #E5E7EB;
    border-radius: 10px;
    padding: 0 12px;
    font-size: 14px;
    color: #374151;
    background: #F9FAFB;
    outline: none;
    cursor: pointer;
    min-width: 150px;
    transition: border-color 0.2s;
}
.filter-select select:focus { border-color: var(--primary, #E11D48); }

/* ── Coupon List (coupons page) ───────────────────────── */
.coupon-list { display: flex; flex-direction: column; gap: 14px; }
.coupon-card-horizontal {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    display: grid;
    grid-template-columns: 84px 1fr auto;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
}
.coupon-card-horizontal:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.09); transform: translateY(-1px); }
.coupon-card-left {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 12px;
    border-right: 1px solid #F3F4F6;
    background: #FAFAFA;
}
.coupon-store-logo {
    width: 56px; height: 56px;
    border-radius: 10px;
    border: 1px solid #E5E7EB;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.coupon-store-logo img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.store-logo-fallback {
    width: 100%; height: 100%;
    background: var(--primary, #E11D48); color: #fff;
    font-size: 20px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    border-radius: 8px;
}
.coupon-card-center { padding: 18px 20px; display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.coupon-store-info-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.coupon-store-name { font-size: 12px; font-weight: 700; color: #6B7280; text-transform: uppercase; letter-spacing: 0.3px; }
.coupon-store-name:hover { color: var(--primary, #E11D48); }
.coupon-discount-inline {
    background: var(--primary, #E11D48); color: #fff;
    font-size: 11px; font-weight: 700;
    padding: 2px 8px; border-radius: 5px;
}
.coupon-title { font-size: 15px; font-weight: 600; color: #111827; line-height: 1.4; }
.coupon-desc { font-size: 13px; color: #6B7280; line-height: 1.5; }
.coupon-meta-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.coupon-expiry { font-size: 12px; color: #9CA3AF; display: flex; align-items: center; gap: 4px; }
.coupon-expiry-urgent { color: #EF4444; font-weight: 500; }
.coupon-type-badge { font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 4px; }
.badge-code { background: #EFF6FF; color: #2563EB; }
.badge-deal { background: #F0FDF4; color: #16A34A; }
.coupon-card-right {
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
    border-left: 1px solid #F3F4F6;
    min-width: 180px;
}
.code-reveal-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #fff;
    border: 2px dashed var(--primary, #E11D48);
    border-radius: 10px;
    padding: 12px 16px;
    cursor: pointer;
    gap: 4px;
    transition: background 0.2s;
}
.code-reveal-btn:hover { background: #FFF1F2; }
/* Override for hero card context — hero buttons always amber, not dashed */
.rz-hero-card-btn.code-reveal-btn {
    background: var(--primary, #E11D48);
    border: none;
    color: #fff;
    flex-direction: row;
    padding: 9px;
    font-size: 12px;
    font-weight: 600;
}
.rz-hero-card-btn.code-reveal-btn:hover { background: var(--primary, #E11D48); opacity: 0.88; }
.rz-hero-card-btn.code-reveal-btn .code-teaser,
.rz-hero-card-btn.code-reveal-btn .rz-code-label { display: none; }
.code-teaser {
    font-family: 'SFMono-Regular', 'Consolas', monospace;
    font-size: 16px; font-weight: 700;
    color: #111827; letter-spacing: 2px;
}
.code-reveal-label {
    font-size: 11px; font-weight: 600;
    color: var(--primary, #E11D48);
    text-transform: uppercase; letter-spacing: 0.5px;
    display: flex; align-items: center; gap: 4px;
}
.no-code-note { font-size: 11px; color: #10B981; display: flex; align-items: center; gap: 4px; font-weight: 500; }

/* Share */
.coupon-share-wrap { position: relative; }
.coupon-share-tray {
    display: none;
    position: absolute;
    right: 0; top: calc(100% + 6px);
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    padding: 8px;
    z-index: 100;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    min-width: 160px;
}
.coupon-share-tray.open { display: flex; flex-direction: column; gap: 4px; }
.share-btn {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 12px; border-radius: 7px;
    font-size: 13px; font-weight: 500;
    color: #374151; background: none; border: none; cursor: pointer;
    width: 100%; text-align: left; transition: background 0.2s;
}
.share-btn:hover { background: #F9FAFB; }

/* ── Buttons ──────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: var(--btn-padding, 10px 22px);
    border-radius: var(--btn-radius, 8px);
    font-size: 14px;
    font-weight: var(--btn-font-weight, 600);
    cursor: pointer;
    transition: opacity 0.2s, background 0.2s;
    border: none;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
}
.btn-primary { background: var(--primary, #E11D48); color: #fff; }
.btn-primary:hover { opacity: 0.88; color: #fff; }
.btn-outline { background: transparent; color: var(--primary, #E11D48); border: 1.5px solid var(--primary, #E11D48); }
.btn-outline:hover { background: var(--primary, #E11D48); color: #fff; }
.btn-sm { padding: 7px 16px; font-size: 13px; }
.btn-block { width: 100%; }

/* ── Pagination ───────────────────────────────────────── */
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 36px; flex-wrap: wrap; }
.pagination-link {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px;
    border-radius: 8px;
    font-size: 14px; font-weight: 500;
    color: #374151; background: #fff; border: 1px solid #E5E7EB;
    transition: all 0.2s;
}
.pagination-link:hover { border-color: var(--primary, #E11D48); color: var(--primary, #E11D48); }
.pagination-link.active { background: var(--primary, #E11D48); color: #fff; border-color: var(--primary, #E11D48); }

/* ── Empty State ──────────────────────────────────────── */
.empty-state { text-align: center; padding: 80px 20px; color: #9CA3AF; }
.empty-state i { font-size: 48px; margin-bottom: 16px; display: block; }
.empty-state h3 { font-size: 1.1rem; font-weight: 600; color: #374151; margin-bottom: 8px; }
.empty-state p { font-size: 14px; }

/* ── Alerts ───────────────────────────────────────────── */
.alert { display: flex; align-items: center; gap: 10px; padding: 14px 18px; border-radius: 10px; font-size: 14px; margin: 16px 0; }
.alert-success { background: #F0FDF4; color: #16A34A; border: 1px solid #BBF7D0; }
.alert-error { background: #FEF2F2; color: #DC2626; border: 1px solid #FECACA; }

/* ── Code Reveal Popup ────────────────────────────────── */
/* ══════════════════════════════════════════════════════
   COUPON CODE POPUP — Redesigned
   ══════════════════════════════════════════════════════ */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes popupIn { from { opacity: 0; transform: translateY(24px) scale(0.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes popupCheck { 0% { transform: scale(0); opacity: 0; } 60% { transform: scale(1.2); opacity: 1; } 100% { transform: scale(1); opacity: 1; } }
@keyframes ticketPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(225,29,72,0.4); } 50% { box-shadow: 0 0 0 8px rgba(225,29,72,0); } }

.uh-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,0.65);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    padding: 20px;
}
.uh-popup-overlay.active { display: flex; }
.uh-popup {
    background: #fff;
    border-radius: 24px;
    max-width: 420px;
    width: 100%;
    position: relative;
    text-align: center;
    box-shadow: 0 32px 100px rgba(0,0,0,0.25);
    overflow: hidden;
    animation: popupIn 0.3s cubic-bezier(0.34,1.56,0.64,1) both;
}
/* Amber header band */
.uh-popup-header {
    background: linear-gradient(135deg, #E11D48 0%, #BE123C 100%);
    padding: 28px 32px 24px;
    position: relative;
    overflow: hidden;
}
.uh-popup-header::before {
    content: '';
    position: absolute; top: -30px; right: -30px;
    width: 120px; height: 120px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    pointer-events: none;
}
.uh-popup-header::after {
    content: '';
    position: absolute; bottom: -20px; left: -20px;
    width: 80px; height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    pointer-events: none;
}
.uh-popup-close {
    position: absolute; top: 14px; right: 14px;
    width: 30px; height: 30px; border-radius: 8px;
    background: rgba(255,255,255,0.25);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; color: #fff; transition: background 0.2s;
    z-index: 2;
}
.uh-popup-close:hover { background: rgba(255,255,255,0.4); }
.uh-popup-icon {
    width: 52px; height: 52px; border-radius: 50%;
    background: rgba(255,255,255,0.25);
    color: #fff;
    font-size: 20px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 12px;
    border: 2px solid rgba(255,255,255,0.4);
}
.uh-popup-icon.success { background: rgba(255,255,255,0.3); }
.uh-popup-icon.success i { animation: popupCheck 0.4s cubic-bezier(0.34,1.56,0.64,1) both; }
.uh-popup-title { font-size: 1.15rem; font-weight: 800; color: #fff; margin: 0 0 4px; }
.uh-popup-subtitle { font-size: 13px; color: rgba(255,255,255,0.85); margin: 0; }

/* Notched divider to create "ticket" feel */
.uh-popup-notch {
    display: flex; align-items: center; background: #F9FAFB;
    margin: 0;
}
.uh-popup-notch-circle {
    width: 22px; height: 22px; border-radius: 50%;
    background: #fff; flex-shrink: 0;
    box-shadow: inset 0 0 0 1.5px #E5E7EB;
}
.uh-popup-notch-line {
    flex: 1; height: 2px;
    background: repeating-linear-gradient(90deg, #E5E7EB 0, #E5E7EB 8px, transparent 8px, transparent 14px);
}

/* Body */
.uh-popup-body { padding: 20px 28px 24px; background: #fff; }
.uh-popup-expiry {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 600; color: #BE123C;
    background: #FFF1F2; padding: 5px 12px; border-radius: 20px;
    margin-bottom: 14px;
}
.uh-popup-expiry-urgent { color: #DC2626 !important; background: #FEF2F2 !important; }

/* Steps */
.uh-popup-steps {
    display: flex; align-items: center; gap: 0;
    justify-content: center; margin-bottom: 16px;
}
.uh-popup-step {
    display: flex; align-items: center; gap: 6px;
    font-size: 12px; color: #6B7280; font-weight: 500;
}
.uh-popup-step-divider { width: 28px; height: 1px; background: #E5E7EB; margin: 0 6px; }
.uh-step-num {
    width: 20px; height: 20px; border-radius: 50%;
    background: var(--primary, #E11D48); color: #fff;
    font-size: 10px; font-weight: 800;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* Ticket code box */
.uh-popup-code-box {
    background: #FFF1F2;
    border: 2px dashed #E11D48;
    border-radius: 14px;
    padding: 16px 20px;
    margin-bottom: 14px;
    cursor: pointer;
    transition: background 0.18s, transform 0.15s;
    position: relative;
}
.uh-popup-code-box:hover { background: #FFF1F2; transform: translateY(-1px); }
.uh-popup-code-box.copied-flash { background: #D1FAE5; border-color: #10B981; animation: ticketPulse 0.4s ease; }
.uh-popup-code-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: #BE123C; margin-bottom: 6px; }
.uh-popup-code-box code {
    display: block;
    font-family: 'SFMono-Regular', 'Consolas', 'Courier New', monospace;
    font-size: 26px; font-weight: 900; color: #111827;
    letter-spacing: 4px; word-break: break-all;
    line-height: 1.2;
}
.uh-popup-code-click-hint { font-size: 11px; color: #9CA3AF; margin-top: 6px; }

/* Buttons */
.uh-popup-actions { display: flex; flex-direction: column; gap: 8px; }
.uh-popup-copy-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; background: var(--primary, #E11D48); color: #fff;
    padding: 14px; border-radius: 12px;
    font-size: 15px; font-weight: 700; transition: opacity 0.2s, transform 0.15s;
}
.uh-popup-copy-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.uh-popup-copy-btn.copied { background: #10B981; }
.uh-popup-store-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; background: #F9FAFB; color: #374151;
    border: 1.5px solid #E5E7EB;
    padding: 12px; border-radius: 12px;
    font-size: 14px; font-weight: 600; text-decoration: none;
    transition: background 0.18s, border-color 0.18s;
}
.uh-popup-store-btn:hover { background: #F3F4F6; border-color: #D1D5DB; color: #111827; }

/* Redirect status */
.uh-popup-redirect {
    display: flex; align-items: center; justify-content: center;
    gap: 10px; font-size: 13px; color: #6B7280;
    padding: 10px 0 2px;
}
.redirect-spinner {
    width: 16px; height: 16px;
    border: 2px solid #E5E7EB; border-top-color: var(--primary, #E11D48);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@media (max-width: 480px) {
    .uh-popup { border-radius: 20px; }
    .uh-popup-header { padding: 22px 20px 20px; }
    .uh-popup-body { padding: 16px 18px 20px; }
    .uh-popup-code-box code { font-size: 20px; }
}

/* ── Search Suggestions ───────────────────────────────── */
.search-suggestions {
    position: absolute;
    top: calc(100% + 6px);
    left: 0; right: 0;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    z-index: 500;
    overflow: hidden;
    display: none;
}
.search-suggestions.active { display: block; }
.search-suggestion-item {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 16px; font-size: 13px; color: #374151;
    cursor: pointer; transition: background 0.15s;
}
.search-suggestion-item:hover { background: #FEF2F2; color: var(--primary, #E11D48); }
.search-suggestion-item i { color: #9CA3AF; width: 16px; text-align: center; }

/* ═══════════════════════════════════════════════════════
   FOOTER — New 4-column grid design
   ═══════════════════════════════════════════════════════ */
.uh-footer { background: #0F172A; color: #94A3B8; position: relative; }

/* Wave separator */
.uh-footer-wave { display: none; }

/* Inner wrapper */
.uh-footer-inner { padding: 56px 0 0; }

/* 4-column grid */
.uh-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 40px 36px;
    padding-bottom: 48px;
}

/* Brand column */
.uh-footer-brand {}
.uh-footer-logo-link { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 14px; }
.uh-footer-logo-img { height: 36px; }
.uh-footer-logo-mark { font-size: 22px; font-weight: 800; color: #fff; letter-spacing: -0.3px; display: flex; align-items: center; gap: 7px; }
.uh-footer-logo-mark span { font-size: 26px; }
.uh-footer-tagline { font-size: 14px; font-weight: 600; color: #E11D48; margin: 0 0 10px; }
.uh-footer-desc { font-size: 13px; color: #64748B; line-height: 1.7; margin: 0 0 20px; max-width: 280px; }

/* Social icons */
.uh-footer-socials { display: flex; gap: 8px; flex-wrap: wrap; }
.uh-fsoc-btn {
    width: 36px; height: 36px; border-radius: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; color: #64748B;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}
.uh-fsoc-btn:hover { background: #E11D48; color: #fff; border-color: #E11D48; transform: translateY(-2px); }

/* Link columns */
.uh-footer-col {}
.uh-footer-col-title {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.2px; color: #fff; margin: 0 0 18px;
    display: flex; align-items: center; gap: 7px;
}
.uh-footer-col-title i { color: #E11D48; font-size: 12px; }
.uh-footer-links { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-direction: column; gap: 10px; }
.uh-footer-links li a {
    font-size: 13.5px; color: #64748B;
    display: flex; align-items: center; gap: 7px;
    transition: color 0.2s, gap 0.2s; text-decoration: none;
}
.uh-footer-links li a i { font-size: 9px; color: #334155; transition: color 0.2s; }
.uh-footer-links li a:hover { color: #E11D48; }
.uh-footer-links li a:hover i { color: #E11D48; }

/* Trust badges */
.uh-footer-trust { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.uh-footer-trust span {
    font-size: 11.5px; color: #475569;
    display: flex; align-items: center; gap: 6px;
}
.uh-footer-trust span i { color: #22C55E; font-size: 12px; }

/* Newsletter column */
.uh-footer-nl-desc { font-size: 13px; color: #64748B; line-height: 1.6; margin: 0 0 16px; }
.uh-footer-nl-form {}
.uh-footer-nl-row {
    display: flex; gap: 0;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px; overflow: hidden;
    transition: border-color 0.2s;
}
.uh-footer-nl-row:focus-within { border-color: #E11D48; }
.uh-footer-nl-row input {
    flex: 1; background: transparent; border: none; outline: none;
    padding: 11px 14px; font-size: 13px; color: #fff;
    font-family: inherit;
}
.uh-footer-nl-row input::placeholder { color: #475569; }
.uh-footer-nl-row button {
    background: #E11D48; border: none; color: #fff;
    padding: 0 16px; cursor: pointer; font-size: 14px;
    transition: background 0.2s;
}
.uh-footer-nl-row button:hover { background: #BE123C; }
.uh-footer-nl-badges { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 10px; }
.uh-footer-nl-badges span { font-size: 11px; color: #475569; display: flex; align-items: center; gap: 5px; }
.uh-footer-nl-badges span i { font-size: 11px; }
.uh-footer-nl-badges span:first-child i { color: #22C55E; }
.uh-footer-nl-badges span:last-child i { color: #EF4444; }

/* Divider */
.uh-footer-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 0 0 24px; }

/* Bottom bar */
.uh-footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; padding-bottom: 28px; flex-wrap: wrap;
}
.uh-footer-copy { font-size: 12.5px; color: #334155; margin: 0; }
.uh-footer-heart { color: #E11D48; }
.uh-footer-bottom-links { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.uh-footer-bottom-links a { font-size: 12px; color: #334155; transition: color 0.2s; text-decoration: none; }
.uh-footer-bottom-links a:hover { color: #E11D48; }
.uh-footer-dot { width: 3px; height: 3px; border-radius: 50%; background: #334155; display: inline-block; }

/* Responsive */
@media (max-width: 1024px) {
    .uh-footer-grid { grid-template-columns: 1fr 1fr; }
    .uh-footer-brand { grid-column: 1 / -1; }
    .uh-footer-desc { max-width: 100%; }
}
@media (max-width: 600px) {
    .uh-footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .uh-footer-brand { grid-column: auto; }
    .uh-footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ── Store Page ───────────────────────────────────────── */
.store-header { background: #fff; border-bottom: 1px solid #E5E7EB; padding: 36px 0; }
.store-header-inner { display: flex; align-items: center; gap: 28px; }
.store-header-logo {
    width: 90px; height: 90px; border-radius: 16px;
    border: 2px solid #E5E7EB; background: #F9FAFB;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; flex-shrink: 0;
}
.store-header-logo img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.store-header-info { flex: 1; }
.store-header-name { font-size: 1.8rem; font-weight: 800; color: #111827; margin-bottom: 8px; }
.store-header-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.store-meta-badge {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 6px;
}
.store-meta-badge.verified { background: #F0FDF4; color: #16A34A; }
.store-meta-badge.count { background: #EFF6FF; color: #2563EB; }
.store-header-cta { flex-shrink: 0; }
.store-header-cta a {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--primary, #E11D48); color: #fff;
    padding: 11px 22px; border-radius: 10px;
    font-size: 14px; font-weight: 600; transition: opacity 0.2s;
}
.store-header-cta a:hover { opacity: 0.88; }

.related-section { padding: 40px 0 60px; }
/* old alias kept for compatibility */
.related-stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 12px;
}

/* ── Related Stores (store-detail) ───────────────────── */
.uh-related-stores { margin-top: 28px; }
.uh-related-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}
.uh-related-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    border-radius: 16px;
    padding: 18px 12px 14px;
    border: 1.5px solid #F3F4F6;
    background: #fff;
    transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
    gap: 10px;
}
.uh-related-card:hover {
    border-color: var(--primary, #E11D48);
    box-shadow: 0 6px 20px rgba(225,29,72,0.13);
    transform: translateY(-4px);
}
.uh-related-logo {
    width: 64px; height: 64px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #F0F0F0;
    background: #F9FAFB;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.uh-related-logo img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.uh-related-logo-fb { font-size: 22px; font-weight: 800; color: var(--primary, #E11D48); }
.uh-related-info { display: flex; flex-direction: column; gap: 3px; width: 100%; }
.uh-related-name {
    font-size: 12px; font-weight: 700; color: #111827;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.uh-related-sub {
    font-size: 11px; color: #6B7280;
    white-space: nowrap;
}
.uh-related-sub.has-deals {
    color: #BE123C;
    font-weight: 600;
}
@media (max-width: 900px) {
    .uh-related-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 600px) {
    .uh-related-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .uh-related-logo { width: 52px; height: 52px; }
}

/* ── Sponsored Placement ──────────────────────────────── */
.rz-sponsored { padding: 40px 0; background: #F9FAFB; }

.rz-sp-hero-wrap { margin-bottom: 16px; }
.rz-sp-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 20px;
    padding: 32px 40px;
    color: #fff;
    text-decoration: none;
    min-height: 140px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.rz-sp-hero:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.18); }
.rz-sp-hero-inner { flex: 1; z-index: 1; }
.rz-sp-hero-discount { font-size: 36px; font-weight: 900; line-height: 1; margin-bottom: 4px; }
.rz-sp-hero-title { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.rz-sp-hero-store { font-size: 14px; opacity: 0.8; margin-bottom: 6px; }
.rz-sp-hero-desc { font-size: 13px; opacity: 0.85; max-width: 420px; margin-bottom: 14px; }
.rz-sp-hero-cta {
    display: inline-block; background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px); border: 1.5px solid rgba(255,255,255,0.4);
    padding: 9px 20px; border-radius: 30px; font-size: 14px; font-weight: 600;
    transition: background 0.2s;
}
.rz-sp-hero:hover .rz-sp-hero-cta { background: rgba(255,255,255,0.35); }
.rz-sp-hero-img {
    width: 130px; height: 100px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.12); border-radius: 14px; padding: 12px;
    flex-shrink: 0; margin-left: 32px;
}
.rz-sp-hero-img img { width: 100%; height: 100%; object-fit: contain; }

.rz-sp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.rz-sp-card {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    padding: 22px 20px 18px;
    color: #fff;
    text-decoration: none;
    min-height: 160px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.rz-sp-card:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(0,0,0,0.20); }
.rz-sp-card-logo {
    width: 48px; height: 48px; background: rgba(255,255,255,0.15);
    border-radius: 12px; padding: 8px; margin-bottom: 10px;
    display: flex; align-items: center; justify-content: center;
}
.rz-sp-card-logo img { width: 100%; height: 100%; object-fit: contain; }
.rz-sp-badge {
    display: inline-block; background: rgba(255,255,255,0.22);
    backdrop-filter: blur(4px); border-radius: 6px;
    font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
    padding: 3px 8px; margin-bottom: 10px; align-self: flex-start;
}
.rz-sp-store { font-size: 12px; opacity: 0.8; margin-bottom: 4px; }
.rz-sp-title { font-size: 15px; font-weight: 700; margin-bottom: 4px; flex: 1; }
.rz-sp-desc { font-size: 12px; opacity: 0.8; margin-bottom: 8px; }
.rz-sp-count { font-size: 12px; font-weight: 600; opacity: 0.9; margin-bottom: 8px; }
.rz-sp-cta { font-size: 13px; font-weight: 600; margin-top: auto; }
.rz-sp-cta i { font-size: 11px; margin-left: 4px; }
.rz-sp-label {
    position: absolute; bottom: 10px; right: 12px;
    font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;
    opacity: 0.5;
}

@media (max-width: 900px) {
    .rz-sp-grid { grid-template-columns: repeat(2, 1fr); }
    .rz-sp-hero { padding: 24px 24px; }
    .rz-sp-hero-img { width: 90px; height: 70px; margin-left: 16px; }
    .rz-sp-hero-discount { font-size: 28px; }
}
@media (max-width: 600px) {
    .rz-sp-grid { grid-template-columns: 1fr; }
    .rz-sp-hero { flex-direction: column; align-items: flex-start; }
    .rz-sp-hero-img { display: none; }
    .rz-sponsored { padding: 28px 0; }
}

/* ── Products ─────────────────────────────────────────── */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; }
.product-card {
    background: #fff; border: 1px solid #E5E7EB; border-radius: 14px;
    overflow: hidden; transition: box-shadow 0.2s, transform 0.2s;
}
.product-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.10); transform: translateY(-2px); }

/* ── Animation Utilities ──────────────────────────────── */
.fade-in-up { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.js-anim .fade-in-up.visible { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: opacity 0.5s ease; }
.js-anim .fade-in.visible { opacity: 1; }
.scale-in { opacity: 0; transform: scale(0.95); transition: opacity 0.4s ease, transform 0.4s ease; }
.js-anim .scale-in.visible { opacity: 1; transform: scale(1); }
.fade-in-left { opacity: 0; transform: translateX(-20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.js-anim .fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.js-anim .fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
    .rz-hero-split { grid-template-columns: 1fr; gap: 36px; min-height: auto; }
    .rz-hero-text { align-items: center; text-align: center; }
    .rz-hero h1 { font-size: clamp(1.8rem, 5vw, 2.6rem); }
    .rz-hero-sub { margin-left: auto; margin-right: auto; }
    .rz-hero-search { margin-left: auto; margin-right: auto; }
    .rz-hero-stats { justify-content: center; }
    .rz-hero-stat:first-child { padding-left: 20px; }
    .rz-hero-cards { grid-template-columns: repeat(2, 1fr); }
    .uh-blog-grid { grid-template-columns: 1fr; }
    .uh-blog-side { flex-direction: row; }
    .uh-blog-side-card { flex: 1; }
    .rmn-dotd-grid { grid-template-columns: 1fr; }
    .rmn-dotd-visual { display: none; }
    .blog-post-layout { grid-template-columns: 1fr; }
    .blog-sidebar { display: none; }
    .rz-stats-row { grid-template-columns: repeat(2, 1fr); }
    .rz-how-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .uh-header-search { display: none; }
    .header-search-btn { display: flex; }
    .hamburger { display: flex; }
    .main-nav { display: none; }
    .mobile-menu { display: block; }
    .uh-login-link { display: none; }

    .rz-hero { padding: 48px 0 44px; }
    .rz-hero-sub { font-size: 14px; }
    .rz-hero-search { max-width: 100%; }
    .rz-hero-search button { padding: 10px 16px; }

    .rz-hero-cards { grid-template-columns: 1fr 1fr; }
    .rz-deal-grid { grid-template-columns: 1fr 1fr; }
    .rz-section--deals .rz-deal-card-action { min-width: 150px; padding: 12px; }
    .rz-section--deals .rz-deal-card-top { width: 100px; min-width: 100px; }
    .rz-store-grid { grid-template-columns: repeat(2, 1fr); }
    .rz-how-grid { grid-template-columns: 1fr; gap: 16px; }
    .rz-stats-row { grid-template-columns: repeat(2, 1fr); }

    .blog-featured { grid-template-columns: 1fr; }
    .blog-featured-image { min-height: 200px; }
    .blog-grid { grid-template-columns: 1fr 1fr; }

    .coupon-card-horizontal { grid-template-columns: 64px 1fr; }
    .coupon-card-right {
        grid-column: 1 / -1;
        border-left: none;
        border-top: 1px solid #F3F4F6;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        padding: 12px 18px;
        min-width: unset;
    }
    .code-reveal-btn { width: auto; flex-direction: row; padding: 10px 16px; }

    .uh-footer-top { flex-direction: column; align-items: flex-start; }
    .uh-footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 540px) {
    .rz-hero-split { gap: 24px; }
    .rz-hero-cards { grid-template-columns: 1fr; }
    .rz-deal-grid { grid-template-columns: 1fr; }
    .rz-section--deals .rz-deal-card { flex-direction: column; }
    .rz-section--deals .rz-deal-card-top { width: 100%; min-width: unset; flex-direction: row; border-right: none; border-bottom: 1.5px solid #FECDD3; border-radius: 14px 14px 0 0; padding: 12px 14px; }
    .rz-section--deals .rz-deal-card-store { flex-direction: row; text-align: left; }
    .rz-section--deals .rz-deal-card-action { min-width: unset; width: 100%; border-top: 1.5px solid #F3F4F6; padding: 12px 14px; }
    .rz-store-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: 1fr; }
    .rz-how-grid { grid-template-columns: 1fr; }
    .rz-stats-row { grid-template-columns: 1fr 1fr; }
    .rz-section-head, .uh-section-head { flex-direction: column; align-items: flex-start; }
    .rz-hero-stat { padding: 0 12px; }
    .rz-hero-stat-sep { height: 24px; }
    .uh-blog-side { flex-direction: column; }
    .coupon-card-horizontal { grid-template-columns: 1fr; }
    .coupon-card-left {
        border-right: none;
        border-bottom: 1px solid #F3F4F6;
        padding: 16px;
        justify-content: flex-start;
        flex-direction: row;
        gap: 12px;
    }
    .filter-form { flex-direction: column; align-items: stretch; }
    .filter-search { min-width: unset; }
    .filter-select select { width: 100%; }
    .blog-featured { grid-template-columns: 1fr; }
    .rmn-dotd-card { padding: 28px 20px; }
}

/* ── Blog Post Article ────────────────────────────────── */
.page-header-compact { padding: 22px 0 20px; }
.blog-post-section { padding: 0; }
.blog-post-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    padding: 48px 0 60px;
    align-items: start;
}
.blog-post-main { min-width: 0; }
.blog-post-header { margin-bottom: 28px; }
.blog-category-badge {
    display: inline-block;
    background: #FEF2F2; color: var(--primary, #E11D48);
    font-size: 11px; font-weight: 700;
    padding: 4px 12px; border-radius: 20px;
    text-transform: uppercase; letter-spacing: 0.5px;
    margin-bottom: 14px;
}
.blog-post-header h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 14px; line-height: 1.2; }
.blog-post-excerpt { font-size: 17px; color: #6B7280; line-height: 1.6; margin-bottom: 20px; }
.blog-post-meta-bar {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; padding: 14px 0;
    border-top: 1px solid #F0F0F0; border-bottom: 1px solid #F0F0F0;
    flex-wrap: wrap;
}
.blog-post-meta { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; font-size: 13px; color: #6B7280; }
.meta-author { display: flex; align-items: center; gap: 6px; font-weight: 500; color: #374151; }
.author-avatar {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--primary, #E11D48); color: #fff; font-size: 11px;
    display: flex; align-items: center; justify-content: center;
}
.meta-divider { width: 1px; height: 14px; background: #E5E7EB; margin: 0 4px; }
.blog-post-share { display: flex; align-items: center; gap: 6px; }
.blog-post-share .share-btn {
    width: 32px; height: 32px;
    border-radius: 8px; border: 1px solid #E5E7EB;
    background: #fff; color: #6B7280;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; cursor: pointer; transition: all 0.2s;
}
.blog-post-share .share-btn:hover { border-color: var(--primary, #E11D48); color: var(--primary, #E11D48); }
.blog-post-bottom-share .blog-post-share .share-btn {
    width: auto; height: auto; padding: 7px 14px;
    gap: 5px; font-size: 12px; font-weight: 600; border-radius: 8px;
}
.blog-post-featured-image {
    width: 100%; border-radius: 16px; overflow: hidden;
    margin-bottom: 32px; aspect-ratio: 16/9; background: #F3F4F6;
}
.blog-post-featured-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-toc { background: #F9FAFB; border: 1px solid #E5E7EB; border-radius: 12px; margin-bottom: 28px; overflow: hidden; }
.toc-header { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; cursor: pointer; user-select: none; }
.toc-header h3 { font-size: 14px; font-weight: 600; color: #374151; display: flex; align-items: center; gap: 8px; }
.toc-toggle { font-size: 12px; color: #9CA3AF; transition: transform 0.3s; }
.blog-toc.toc-collapsed .toc-toggle { transform: rotate(180deg); }
.blog-toc.toc-collapsed .toc-list { display: none; }
.toc-list { padding: 0 18px 14px; display: flex; flex-direction: column; gap: 4px; }
.toc-link { font-size: 13px; color: #6B7280; padding: 4px 0 4px 10px; border-left: 2px solid transparent; transition: color 0.2s, border-color 0.2s; }
.toc-link:hover { color: var(--primary, #E11D48); border-left-color: var(--primary, #E11D48); }
.toc-level-3 { padding-left: 24px; font-size: 12px; }
.blog-post-content { font-size: 16px; line-height: 1.8; color: #374151; }
.blog-post-content h2 { font-size: 1.4rem; font-weight: 700; margin: 32px 0 14px; color: #111827; }
.blog-post-content h3 { font-size: 1.15rem; font-weight: 700; margin: 24px 0 10px; color: #111827; }
.blog-post-content h4 { font-size: 1rem; font-weight: 700; margin: 20px 0 8px; color: #111827; }
.blog-post-content p { margin-bottom: 18px; }
.blog-post-content a { color: var(--primary, #E11D48); text-decoration: underline; }
.blog-post-content ul, .blog-post-content ol { margin: 0 0 18px 24px; list-style: revert; }
.blog-post-content li { margin-bottom: 6px; }
.blog-post-content blockquote { border-left: 4px solid var(--primary, #E11D48); background: #FEF2F2; padding: 16px 20px; border-radius: 0 10px 10px 0; margin: 24px 0; font-style: italic; }
.blog-post-content img { border-radius: 10px; margin: 20px 0; width: 100%; }
.blog-post-content code { background: #F3F4F6; padding: 2px 6px; border-radius: 4px; font-family: monospace; font-size: 0.9em; }
.blog-post-content pre { background: #1F2937; color: #E5E7EB; padding: 20px; border-radius: 10px; overflow-x: auto; margin: 20px 0; }
.block-summary { background: #F0FDF4; border: 1px solid #BBF7D0; border-radius: 12px; padding: 20px; margin: 24px 0; }
.block-summary h3 { font-size: 14px; font-weight: 700; color: #16A34A; margin-bottom: 10px; }
.block-key-takeaways { background: #EFF6FF; border: 1px solid #BFDBFE; border-radius: 12px; padding: 20px; margin: 24px 0; }
.block-key-takeaways h3 { font-size: 14px; font-weight: 700; color: #2563EB; margin-bottom: 10px; }
.block-tip { background: #FEFCE8; border: 1px solid #FECDD3; border-left: 4px solid #E11D48; border-radius: 0 10px 10px 0; padding: 16px 20px; margin: 20px 0; display: flex; gap: 12px; }
.block-tip i { color: #E11D48; flex-shrink: 0; margin-top: 2px; }
.block-warning { background: #FEF2F2; border: 1px solid #FECACA; border-left: 4px solid #EF4444; border-radius: 0 10px 10px 0; padding: 16px 20px; margin: 20px 0; display: flex; gap: 12px; }
.block-warning i { color: #EF4444; flex-shrink: 0; margin-top: 2px; }
.block-coupon-highlight { background: #FEF2F2; border: 2px solid var(--primary, #E11D48); border-radius: 12px; padding: 20px; margin: 24px 0; text-align: center; }
.block-disclosure { background: #F9FAFB; border: 1px solid #E5E7EB; border-radius: 10px; padding: 14px 18px; margin: 20px 0; font-size: 13px; color: #6B7280; display: flex; gap: 10px; }
.block-disclosure i { color: #9CA3AF; flex-shrink: 0; margin-top: 2px; }
.blog-figure { margin: 24px 0; }
.blog-figure img { border-radius: 10px; width: 100%; }
.blog-figure figcaption { text-align: center; font-size: 13px; color: #9CA3AF; margin-top: 8px; }
.blog-list { margin: 0 0 18px 20px; list-style: revert; }
.blog-list li { margin-bottom: 8px; font-size: 15px; line-height: 1.6; }
.blog-quote { border-left: 4px solid var(--primary, #E11D48); background: #FEF2F2; padding: 20px 24px; border-radius: 0 12px 12px 0; margin: 24px 0; }
.blog-quote p { font-size: 17px; font-style: italic; color: #374151; margin-bottom: 10px; }
.blog-quote cite { font-size: 13px; color: #9CA3AF; font-style: normal; }
.blog-code { background: #1F2937; color: #E5E7EB; padding: 20px; border-radius: 10px; overflow-x: auto; margin: 20px 0; }
.blog-divider { border: none; border-top: 1px solid #E5E7EB; margin: 32px 0; }
.blog-cta { text-align: center; margin: 28px 0; }
.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn-gradient { background: linear-gradient(135deg, var(--primary, #E11D48), var(--secondary, #BE123C)); color: #fff; }
.btn-gradient:hover { opacity: 0.88; color: #fff; }
.block-pros-cons { border: 1px solid #E5E7EB; border-radius: 12px; overflow: hidden; margin: 24px 0; }
.pc-columns { display: grid; grid-template-columns: 1fr 1fr; }
.pros-block { background: #F0FDF4; padding: 20px; border-right: 1px solid #E5E7EB; }
.cons-block { background: #FEF2F2; padding: 20px; }
.pros-block h5, .cons-block h5 { font-size: 13px; font-weight: 700; margin-bottom: 12px; display: flex; align-items: center; gap: 6px; }
.pros-block h5 { color: #16A34A; }
.cons-block h5 { color: #DC2626; }
.pros-block ul, .cons-block ul { list-style: none; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.pros-block li, .cons-block li { font-size: 13px; color: #374151; line-height: 1.5; }
.block-faq { margin: 24px 0; }
.faq-item { border: 1px solid #E5E7EB; border-radius: 10px; margin-bottom: 10px; overflow: hidden; }
.faq-question { padding: 16px 18px; font-size: 15px; font-weight: 600; color: #111827; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; background: #fff; transition: background 0.2s; }
.faq-question:hover { background: #F9FAFB; }
.faq-question i { color: #9CA3AF; font-size: 12px; flex-shrink: 0; transition: transform 0.3s; }
.faq-answer { display: none; padding: 0 18px 16px; font-size: 14px; line-height: 1.7; color: #6B7280; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-item.open .faq-answer { display: block; }
.block-rating { background: #F9FAFB; border: 1px solid #E5E7EB; border-radius: 12px; padding: 24px; margin: 24px 0; }
.rating-display { display: flex; align-items: center; gap: 20px; margin-bottom: 12px; }
.rating-score-big { font-size: 3rem; font-weight: 800; color: var(--primary, #E11D48); line-height: 1; }
.rating-max { font-size: 1.2rem; color: #9CA3AF; }
.rating-bar-wrap { flex: 1; }
.rating-label { font-size: 13px; font-weight: 600; color: #374151; margin-bottom: 8px; }
.rating-bar { background: #E5E7EB; border-radius: 100px; height: 8px; }
.rating-bar-fill { background: var(--primary, #E11D48); border-radius: 100px; height: 100%; }
.rating-description { font-size: 13px; color: #6B7280; }
.block-video { margin: 24px 0; }
.video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; border-radius: 12px; overflow: hidden; }
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.video-caption { text-align: center; font-size: 13px; color: #9CA3AF; margin-top: 8px; }
.blog-post-tags { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin: 28px 0; padding: 20px 0; border-top: 1px solid #F0F0F0; }
.tags-label { font-size: 13px; font-weight: 600; color: #374151; display: flex; align-items: center; gap: 5px; }
.tag { display: inline-block; background: #F3F4F6; color: #374151; font-size: 12px; font-weight: 500; padding: 4px 12px; border-radius: 20px; transition: background 0.2s, color 0.2s; }
.tag:hover { background: var(--primary, #E11D48); color: #fff; }
.blog-post-bottom-share { padding: 20px 0 28px; border-top: 1px solid #F0F0F0; }
.blog-post-bottom-share p { font-size: 14px; color: #6B7280; margin-bottom: 12px; }
.blog-author-box { display: flex; gap: 18px; align-items: flex-start; background: #F9FAFB; border: 1px solid #E5E7EB; border-radius: 14px; padding: 24px; margin: 8px 0 0; }
.author-box-avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--primary, #E11D48); color: #fff; font-size: 20px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.author-box-info { flex: 1; }
.author-box-label { font-size: 11px; color: #9CA3AF; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }
.author-box-info h4 { font-size: 15px; font-weight: 700; color: #111827; margin: 4px 0 6px; }
.author-box-info p { font-size: 13px; color: #6B7280; line-height: 1.6; }
.blog-post-sidebar { display: flex; flex-direction: column; gap: 22px; }
.sidebar-widget { background: #fff; border: 1px solid #E5E7EB; border-radius: 14px; padding: 20px; }
.sidebar-title { font-size: 13px; font-weight: 700; color: #111827; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid #F0F0F0; display: flex; align-items: center; gap: 7px; }
.sidebar-title i { color: var(--primary, #E11D48); }
.sidebar-post { display: flex; gap: 12px; align-items: center; padding: 10px 0; border-bottom: 1px solid #F9FAFB; }
.sidebar-post:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-post-img { width: 60px; height: 48px; border-radius: 8px; overflow: hidden; flex-shrink: 0; background: #F3F4F6; }
.sidebar-post-img img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-post-info { flex: 1; min-width: 0; }
.sidebar-post-info h4 { font-size: 13px; font-weight: 600; color: #111827; line-height: 1.4; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sidebar-post-info span { font-size: 11px; color: #9CA3AF; }
.sidebar-post:hover .sidebar-post-info h4 { color: var(--primary, #E11D48); }
.sidebar-cta { text-align: center; background: linear-gradient(135deg, #FEF2F2, #fff); }
.sidebar-cta-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--primary, #E11D48); color: #fff; font-size: 20px; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.sidebar-cta h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.sidebar-cta p { font-size: 13px; color: #6B7280; margin-bottom: 16px; line-height: 1.5; }
.sidebar-newsletter p { font-size: 13px; color: #6B7280; margin-bottom: 14px; line-height: 1.5; }
.sidebar-newsletter-form { display: flex; flex-direction: column; gap: 8px; }
.sidebar-newsletter-form input { padding: 11px 14px; border: 1.5px solid #E5E7EB; border-radius: 8px; font-size: 14px; outline: none; }
.sidebar-newsletter-form input:focus { border-color: var(--primary, #E11D48); }
.related-section { padding: 0 0 60px; }
.section-header { margin-bottom: 24px; }
.section-badge { display: inline-flex; align-items: center; gap: 6px; background: #FEF2F2; color: var(--primary, #E11D48); font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.section-header h2 { font-size: 1.4rem; font-weight: 700; }
.blog-card-cat { display: inline-block; background: #FEF2F2; color: var(--primary, #E11D48); font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
@media (max-width: 1024px) {
    .blog-post-layout { grid-template-columns: 1fr; padding: 32px 0 48px; }
    .blog-post-sidebar { display: none; }
}
@media (max-width: 768px) {
    .blog-post-header h1 { font-size: 1.5rem; }
    .pc-columns { grid-template-columns: 1fr; }
    .pros-block { border-right: none; border-bottom: 1px solid #E5E7EB; }
}

/* ═══════════════════════════════════════════════════════
   STORES PAGE — store-grid, store-card
   ═══════════════════════════════════════════════════════ */
.alpha-filter { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 24px; }
.alpha-link { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 8px; font-size: 12px; font-weight: 700; color: #6B7280; background: #F9FAFB; border: 1.5px solid #E5E7EB; transition: all 0.18s; text-decoration: none; }
.alpha-link:hover, .alpha-link.active { background: var(--primary, #E11D48); color: #fff; border-color: var(--primary, #E11D48); }

.store-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.store-card {
    background: #fff;
    border: 1.5px solid #E5E7EB;
    border-radius: 16px;
    padding: 20px 16px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
}
.store-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary, #E11D48), #BE123C); border-radius: 2px 2px 0 0; opacity: 0; transition: opacity 0.2s; }
.store-card:hover { box-shadow: 0 8px 28px rgba(225,29,72,0.14); transform: translateY(-2px); border-color: #FECDD3; text-decoration: none; }
.store-card:hover::before { opacity: 1; }
.store-card-logo { width: 72px; height: 72px; border-radius: 14px; border: 1px solid #F0F0F0; background: #F9FAFB; display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; }
.store-card-logo img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.store-logo-fallback { display: flex; align-items: center; justify-content: center; border-radius: 10px; background: var(--primary, #E11D48); color: #fff; font-weight: 800; }
.store-logo-fallback.large { width: 72px; height: 72px; font-size: 26px; border-radius: 14px; }
.store-card-name { font-size: 14px; font-weight: 700; color: #111827; line-height: 1.3; width: 100%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.store-card-desc { font-size: 12px; color: #6B7280; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.store-card-coupons { font-size: 11px; font-weight: 600; color: var(--primary, #E11D48); background: #FFF1F2; border: 1px solid #FECDD3; padding: 3px 10px; border-radius: 20px; margin-top: auto; }
.store-card-arrow { position: absolute; bottom: 14px; right: 14px; font-size: 11px; color: #9CA3AF; transition: color 0.2s; }
.store-card:hover .store-card-arrow { color: var(--primary, #E11D48); }
.featured-badge { position: absolute; top: 10px; right: 10px; background: var(--primary, #E11D48); color: #fff; font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 10px; display: flex; align-items: center; gap: 3px; }
@media (max-width: 1024px) { .store-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .store-grid { grid-template-columns: repeat(2, 1fr); } }

/* ═══════════════════════════════════════════════════════
   CATEGORIES PAGE — cat-image-grid, cat-image-card
   ═══════════════════════════════════════════════════════ */
.cat-page-search { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 28px; flex-wrap: wrap; }
.cat-search-wrap { flex: 1; max-width: 400px; display: flex; align-items: center; gap: 8px; background: #fff; border: 1.5px solid #E5E7EB; border-radius: 12px; padding: 0 14px; height: 44px; transition: border-color 0.2s; }
.cat-search-wrap:focus-within { border-color: var(--primary, #E11D48); }
.cat-search-wrap i { color: #9CA3AF; }
.cat-search-wrap input { border: none; background: none; outline: none; font-size: 14px; color: #111827; flex: 1; }
.cat-count-badge { font-size: 13px; font-weight: 600; color: #6B7280; background: #F3F4F6; border-radius: 20px; padding: 5px 14px; }
.cat-no-results { text-align: center; padding: 60px 0; color: #9CA3AF; }
.cat-no-results i { font-size: 36px; margin-bottom: 12px; display: block; }
.cat-no-results h3 { font-size: 1.1rem; color: #374151; margin-bottom: 6px; }

.cat-image-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.cat-image-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    display: block;
    text-decoration: none;
    background: #FFF1F2;
    border: 1.5px solid #FECDD3;
    transition: box-shadow 0.22s, transform 0.22s, border-color 0.22s;
    aspect-ratio: 1 / 1;
}
.cat-image-card:hover { box-shadow: 0 8px 28px rgba(225,29,72,0.18); transform: translateY(-2px); border-color: var(--primary, #E11D48); }
.cat-image-card-img { width: 100%; height: 100%; position: absolute; top: 0; left: 0; }
.cat-image-card-img img { width: 100%; height: 100%; object-fit: cover; }
.cat-image-card-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #FFF1F2, #FFF1F2); }
.cat-image-card-placeholder i { font-size: 36px; color: var(--primary, #E11D48); }
.cat-image-card:nth-child(5n+1) .cat-image-card-placeholder { background: linear-gradient(135deg, #FFF1F2, #FFF1F2); }
.cat-image-card:nth-child(5n+2) .cat-image-card-placeholder { background: linear-gradient(135deg, #F0FDF4, #DCFCE7); }
.cat-image-card:nth-child(5n+2) .cat-image-card-placeholder i { color: #059669; }
.cat-image-card:nth-child(5n+3) .cat-image-card-placeholder { background: linear-gradient(135deg, #EFF6FF, #DBEAFE); }
.cat-image-card:nth-child(5n+3) .cat-image-card-placeholder i { color: #2563EB; }
.cat-image-card:nth-child(5n+4) .cat-image-card-placeholder { background: linear-gradient(135deg, #FDF4FF, #F3E8FF); }
.cat-image-card:nth-child(5n+4) .cat-image-card-placeholder i { color: #7C3AED; }
.cat-image-card:nth-child(5n+5) .cat-image-card-placeholder { background: linear-gradient(135deg, #FFF1F2, #FFE4E6); }
.cat-image-card:nth-child(5n+5) .cat-image-card-placeholder i { color: #E11D48; }
.cat-image-card-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 10px 12px; background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, transparent 100%); display: flex; flex-direction: column; gap: 2px; }
.cat-image-card-icon { display: none; }
.cat-image-card-overlay h3 { font-size: 13px; font-weight: 700; color: #fff; line-height: 1.3; margin: 0; }
.cat-image-card-count { font-size: 11px; color: rgba(255,255,255,0.8); font-weight: 500; }
.cat-image-card-hover { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(225,29,72,0.92); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 16px; gap: 8px; opacity: 0; transition: opacity 0.2s; }
.cat-image-card:hover .cat-image-card-hover { opacity: 1; }
.cat-image-card-hover p { font-size: 12px; color: #fff; text-align: center; line-height: 1.5; margin: 0; }
.cat-image-card-cta { font-size: 12px; font-weight: 700; color: #fff; display: flex; align-items: center; gap: 5px; background: rgba(255,255,255,0.2); border-radius: 20px; padding: 4px 12px; }
@media (max-width: 1024px) { .cat-image-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 640px) { .cat-image-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .cat-image-grid { grid-template-columns: repeat(2, 1fr); } }

/* ═══════════════════════════════════════════════════════
   STORE DETAIL PAGE — uh-store-hero
   ═══════════════════════════════════════════════════════ */
.uh-store-hero { padding: 40px 0 36px; color: #fff; }
.uh-bread-light { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,0.65); margin-bottom: 20px; }
.uh-bread-light a { color: rgba(255,255,255,0.65); }
.uh-bread-light a:hover { color: #fff; }
.uh-bread-light span { color: rgba(255,255,255,0.45); }
.uh-store-hero-inner { display: flex; align-items: center; gap: 24px; }
.uh-store-hero-logo { width: 100px; height: 100px; border-radius: 18px; background: #fff; border: 3px solid rgba(255,255,255,0.3); overflow: hidden; flex-shrink: 0; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(0,0,0,0.2); }
.uh-store-hero-logo img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.uh-store-logo-fb { font-size: 32px; font-weight: 800; color: var(--primary, #E11D48); }
.uh-store-hero-info { flex: 1; }
.uh-store-hero-info h1 { font-size: 1.9rem; font-weight: 800; color: #fff; margin: 0 0 10px; }
.uh-store-hero-stats { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.uh-store-hero-stats span { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.12); padding: 4px 12px; border-radius: 20px; }
.uh-store-hero-stats .verified-badge { background: rgba(5,150,105,0.3); color: #6EE7B7; }
.uh-store-hero-cta { margin-top: 14px; display: flex; gap: 10px; flex-wrap: wrap; }
.uh-store-hero-cta a { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; padding: 8px 18px; border-radius: 20px; border: 1.5px solid rgba(255,255,255,0.3); color: #fff; transition: background 0.18s; text-decoration: none; }
.uh-store-hero-cta a:hover { background: rgba(255,255,255,0.15); }
.uh-store-hero-cta a.primary-cta { background: var(--primary, #E11D48); border-color: var(--primary, #E11D48); color: #fff; }
.uh-store-hero-cta a.primary-cta:hover { opacity: 0.9; }

/* ═══════════════════════════════════════════════════════
   CONTACT PAGE — uh-page-hero, uh-contact-*
   ═══════════════════════════════════════════════════════ */
.uh-page-hero {
    background: #1A0010;
    background-image: radial-gradient(ellipse at 20% 60%, rgba(225,29,72,0.18) 0%, transparent 55%), radial-gradient(ellipse at 80% 40%, rgba(190,18,60,0.10) 0%, transparent 50%);
    color: #fff;
    padding: 52px 0 46px;
    border-bottom: 2px solid rgba(225,29,72,0.2);
}
.uh-page-hero h1 { font-size: 2rem; font-weight: 800; color: #fff; margin: 6px 0 8px; }
.uh-page-hero-sub { color: #D1D5DB; font-size: 15px; margin: 0; }
.uh-page-body { padding: 52px 0 60px; background: #F9FAFB; }

/* Page card (About, Privacy, Terms) */
.uh-page-card { background: #fff; border: 1.5px solid #E5E7EB; border-radius: 18px; padding: 40px 48px; max-width: 860px; margin: 0 auto; box-shadow: 0 1px 8px rgba(0,0,0,0.04); }
.uh-page-meta { margin-top: 32px; padding-top: 20px; border-top: 1.5px solid #F3F4F6; font-size: 12px; color: #9CA3AF; display: flex; align-items: center; gap: 6px; }
.uh-page-meta i { color: var(--primary, #E11D48); }

/* Page content typography */
.uh-page-content { font-size: 15px; line-height: 1.8; color: #374151; }
.uh-page-content p { margin: 0 0 16px; }
.uh-page-content h1 { font-size: 1.7rem; font-weight: 800; color: #111827; margin: 32px 0 12px; }
.uh-page-content h2 { font-size: 1.25rem; font-weight: 700; color: #111827; margin: 28px 0 10px; padding-bottom: 6px; border-bottom: 2px solid #FFF1F2; }
.uh-page-content h3 { font-size: 1.05rem; font-weight: 700; color: #111827; margin: 22px 0 8px; }
.uh-page-content h4 { font-size: 0.95rem; font-weight: 700; color: #374151; margin: 16px 0 6px; }
.uh-page-content ul, .uh-page-content ol { padding-left: 22px; margin: 0 0 16px; }
.uh-page-content li { margin-bottom: 6px; }
.uh-page-content a { color: var(--primary, #E11D48); text-decoration: underline; }
.uh-page-content a:hover { color: #BE123C; }
.uh-page-content strong { color: #111827; font-weight: 700; }
.uh-page-content blockquote { border-left: 4px solid var(--primary, #E11D48); background: #FFF1F2; padding: 12px 18px; margin: 18px 0; border-radius: 0 10px 10px 0; color: #9F1239; font-style: italic; }
.uh-page-content table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.uh-page-content th { background: #FFF1F2; color: #9F1239; font-weight: 700; padding: 10px 14px; text-align: left; font-size: 13px; }
.uh-page-content td { padding: 9px 14px; border-bottom: 1px solid #F3F4F6; font-size: 13px; }
.uh-page-content tr:last-child td { border-bottom: none; }
.uh-page-content hr { border: none; border-top: 1.5px solid #F3F4F6; margin: 24px 0; }
.uh-page-content > *:first-child { margin-top: 0; }

/* About page hero icon row */
.uh-about-icons { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 24px 0; }
.uh-about-icon-box { background: #FFF1F2; border: 1.5px solid #FECDD3; border-radius: 14px; padding: 18px 16px; display: flex; align-items: flex-start; gap: 14px; }
.uh-about-icon-box i { font-size: 20px; color: var(--primary, #E11D48); flex-shrink: 0; margin-top: 2px; }
.uh-about-icon-box h4 { font-size: 14px; font-weight: 700; color: #111827; margin: 0 0 4px; }
.uh-about-icon-box p { font-size: 13px; color: #6B7280; margin: 0; line-height: 1.5; }
.uh-about-cta { background: linear-gradient(135deg, #1A0010 0%, #3B0022 100%); color: #fff; border-radius: 14px; padding: 28px 28px; margin-top: 28px; text-align: center; }
.uh-about-cta h3 { font-size: 1.2rem; font-weight: 800; color: #fff; margin: 0 0 8px; }
.uh-about-cta p { font-size: 14px; color: #FECDD3; margin: 0 0 18px; }
.uh-about-cta .btn { background: var(--primary, #E11D48); color: #fff; border: none; padding: 12px 28px; border-radius: 10px; font-size: 15px; font-weight: 700; text-decoration: none; display: inline-block; }
.uh-about-cta .btn:hover { background: #BE123C; color: #fff; }

@media (max-width: 768px) {
    .uh-page-card { padding: 24px 18px; }
    .uh-about-icons { grid-template-columns: 1fr; }
}

.uh-contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 36px; align-items: start; }
.uh-contact-info h2 { font-size: 1.4rem; font-weight: 700; color: #111827; margin-bottom: 8px; }
.uh-contact-subtext { font-size: 14px; color: #6B7280; line-height: 1.6; margin-bottom: 24px; }
.uh-contact-cards { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.uh-contact-card { display: flex; align-items: flex-start; gap: 14px; background: #fff; border: 1.5px solid #E5E7EB; border-radius: 12px; padding: 14px 16px; }
.uh-contact-card-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; background: #FFF1F2 !important; color: var(--primary, #E11D48) !important; }
.uh-contact-card h4 { font-size: 13px; font-weight: 700; color: #111827; margin: 0 0 3px; }
.uh-contact-card a, .uh-contact-card p { font-size: 13px; color: #6B7280; margin: 0; }
.uh-contact-card a:hover { color: var(--primary, #E11D48); }
.uh-contact-social h4 { font-size: 13px; font-weight: 700; color: #111827; margin-bottom: 10px; }
.uh-social-row { display: flex; gap: 8px; flex-wrap: wrap; }
.uh-social-btn { width: 36px; height: 36px; border-radius: 10px; background: #F3F4F6; color: #6B7280; border: 1.5px solid #E5E7EB; display: flex; align-items: center; justify-content: center; font-size: 14px; transition: background 0.18s, color 0.18s, border-color 0.18s; }
.uh-social-btn:hover { background: var(--primary, #E11D48); color: #fff; border-color: var(--primary, #E11D48); }
.uh-contact-form-card { background: #fff; border: 1.5px solid #E5E7EB; border-radius: 18px; padding: 28px 28px 24px; }
.uh-contact-form-card h3 { font-size: 1.1rem; font-weight: 700; color: #111827; margin: 0 0 20px; display: flex; align-items: center; gap: 8px; }
.uh-contact-form-card h3 i { color: var(--primary, #E11D48); }
.uh-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.uh-form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.uh-form-group label { font-size: 13px; font-weight: 600; color: #374151; }
.uh-form-group .required { color: #EF4444; }
.uh-form-group input, .uh-form-group select, .uh-form-group textarea { border: 1.5px solid #E5E7EB; border-radius: 10px; padding: 10px 14px; font-size: 14px; color: #111827; background: #F9FAFB; transition: border-color 0.18s; outline: none; width: 100%; box-sizing: border-box; font-family: inherit; }
.uh-form-group input:focus, .uh-form-group select:focus, .uh-form-group textarea:focus { border-color: var(--primary, #E11D48); background: #fff; }
.uh-form-group textarea { resize: vertical; min-height: 120px; }
.uh-char-count { font-size: 11px; color: #9CA3AF; text-align: right; margin-top: 4px; }
.uh-contact-submit { width: 100%; background: var(--primary, #E11D48); color: #fff; border: none; border-radius: 12px; padding: 14px; font-size: 15px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: opacity 0.18s, transform 0.18s; }
.uh-contact-submit:hover { opacity: 0.9; transform: translateY(-1px); }
.uh-contact-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.uh-contact-alert { padding: 12px 16px; border-radius: 10px; font-size: 13px; font-weight: 600; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.uh-contact-alert-success { background: #F0FDF4; color: #059669; border: 1.5px solid #BBF7D0; }
.uh-contact-alert-error { background: #FFF1F2; color: #E11D48; border: 1.5px solid #FECDD3; }
@media (max-width: 768px) {
    .uh-contact-grid { grid-template-columns: 1fr; }
    .uh-form-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   STORE DETAIL — Hero Buttons
   ═══════════════════════════════════════════════════════ */
.uh-store-btn { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; padding: 8px 16px; border-radius: 20px; border: 1.5px solid rgba(255,255,255,0.35); color: #fff; cursor: pointer; background: rgba(255,255,255,0.08); transition: background 0.18s; text-decoration: none; }
.uh-store-btn:hover { background: rgba(255,255,255,0.18); color: #fff; }
.uh-store-btn.subscribed { background: rgba(16,185,129,0.25); border-color: rgba(16,185,129,0.5); }
.uh-store-btn-visit { background: var(--primary, #E11D48); border-color: var(--primary, #E11D48); }
.uh-store-btn-visit:hover { opacity: 0.9; }

/* ═══════════════════════════════════════════════════════
   STORE DETAIL — Coupon List
   ═══════════════════════════════════════════════════════ */
.uh-store-coupons { padding: 28px 0 20px; }
.uh-section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; gap: 12px; }
.uh-section-head h2 { font-size: 1.25rem; font-weight: 800; color: #111827; margin: 0; }
.uh-coupon-sort select { border: 1.5px solid #E5E7EB; border-radius: 10px; padding: 7px 14px; font-size: 13px; color: #374151; background: #fff; outline: none; cursor: pointer; transition: border-color 0.18s; }
.uh-coupon-sort select:focus { border-color: var(--primary, #E11D48); }
.uh-coupon-list { display: flex; flex-direction: column; gap: 10px; }
.uh-coupon-row { display: flex; align-items: center; gap: 0; background: #fff; border: 1.5px solid #E5E7EB; border-radius: 14px; overflow: hidden; position: relative; transition: box-shadow 0.2s, border-color 0.2s; }
.uh-coupon-row:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); border-color: #D1D5DB; }
.uh-coupon-stripe { width: 5px; align-self: stretch; flex-shrink: 0; }
.uh-coupon-badge-col { width: 80px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; padding: 16px 8px; border-right: 1px solid #F3F4F6; }
.uh-coupon-badge { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; padding: 8px 10px; border-radius: 10px; min-width: 58px; text-align: center; }
.uh-cb-value { font-size: 18px; font-weight: 900; line-height: 1; }
.uh-cb-label { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; opacity: 0.8; }
.uh-coupon-badge i { font-size: 18px; }
.uh-coupon-info { flex: 1; padding: 14px 16px; min-width: 0; }
.uh-coupon-title { font-size: 15px; font-weight: 700; color: #111827; margin: 0 0 5px; }
.uh-coupon-desc { font-size: 13px; color: #6B7280; line-height: 1.5; margin: 0 0 8px; }
.uh-coupon-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.uh-coupon-expiry { font-size: 12px; color: #6B7280; display: flex; align-items: center; gap: 4px; }
.uh-coupon-expiry-urgent { color: #DC2626 !important; font-weight: 600; }
.uh-coupon-verified { font-size: 12px; color: #059669; font-weight: 600; display: flex; align-items: center; gap: 4px; }
.uh-coupon-action { flex-shrink: 0; padding: 14px 16px; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.uh-code-reveal { display: flex; flex-direction: column; align-items: center; justify-content: center; border: 2px dashed var(--accent, var(--primary, #E11D48)); background: transparent; border-radius: 10px; padding: 10px 18px; cursor: pointer; min-width: 130px; gap: 2px; transition: background 0.18s; }
.uh-code-reveal:hover { background: rgba(225,29,72,0.06); }
.uh-cr-teaser { font-size: 15px; font-weight: 800; color: #111827; letter-spacing: 2px; }
.uh-cr-label { font-size: 11px; font-weight: 600; color: var(--accent, var(--primary, #E11D48)); text-transform: uppercase; letter-spacing: 0.5px; }
.uh-deal-btn { display: inline-flex; align-items: center; gap: 7px; background: var(--primary, #E11D48); color: #fff; font-size: 13px; font-weight: 700; padding: 10px 18px; border-radius: 10px; text-decoration: none; transition: opacity 0.18s; }
.uh-deal-btn:hover { opacity: 0.9; color: #fff; }
.uh-no-code-note { font-size: 11px; color: #059669; font-weight: 600; display: flex; align-items: center; gap: 4px; }
.coupon-share-wrap { position: relative; }
.coupon-share-toggle { background: #F3F4F6; border: 1.5px solid #E5E7EB; border-radius: 8px; padding: 5px 10px; font-size: 12px; color: #6B7280; cursor: pointer; transition: background 0.18s; }
.coupon-share-toggle:hover { background: #E5E7EB; }
.coupon-share-tray { display: none; position: absolute; bottom: 100%; right: 0; background: #fff; border: 1.5px solid #E5E7EB; border-radius: 10px; padding: 8px; box-shadow: 0 4px 16px rgba(0,0,0,0.1); min-width: 140px; gap: 6px; flex-direction: column; z-index: 20; margin-bottom: 4px; }
.coupon-share-tray.open { display: flex; }
.share-btn { display: flex; align-items: center; gap: 7px; font-size: 13px; color: #374151; padding: 6px 8px; border-radius: 7px; background: none; border: none; cursor: pointer; text-decoration: none; transition: background 0.15s; }
.share-btn:hover { background: #F3F4F6; color: #111827; }
@media (max-width: 640px) {
    .uh-coupon-badge-col { display: none; }
    .uh-coupon-action { padding: 10px 12px; }
    .uh-code-reveal { min-width: 100px; }
}

/* ═══════════════════════════════════════════════════════
   STORE DETAIL — About Section
   ═══════════════════════════════════════════════════════ */
.uh-store-about { padding: 24px 0 16px; }
.uh-store-about h2 { font-size: 1.2rem; font-weight: 800; color: #111827; margin-bottom: 16px; }
.uh-store-about-card { background: #fff; border: 1.5px solid #E5E7EB; border-radius: 16px; padding: 24px; }
.store-about-description { font-size: 14px; color: #374151; line-height: 1.7; }
.store-about-description a { color: var(--primary, #E11D48); }
#read-more-btn { background: none; border: none; color: var(--primary, #E11D48); font-size: 13px; font-weight: 600; cursor: pointer; padding: 0; margin-top: 6px; }
.uh-store-meta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 18px; padding-top: 18px; border-top: 1px solid #F3F4F6; }
.uh-store-meta-item { display: flex; flex-direction: column; gap: 3px; }
.uh-store-meta-label { font-size: 11px; font-weight: 700; color: #9CA3AF; text-transform: uppercase; letter-spacing: 0.5px; }
.uh-store-meta-value { font-size: 13px; font-weight: 600; color: #111827; display: flex; align-items: center; gap: 5px; }
.uh-store-meta-value i { color: var(--primary, #E11D48); }
@media (max-width: 640px) { .uh-store-meta-grid { grid-template-columns: repeat(2, 1fr); } }

/* ═══════════════════════════════════════════════════════
   STORE DETAIL — Alert Modal
   ═══════════════════════════════════════════════════════ */
.uh-modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1000; align-items: center; justify-content: center; backdrop-filter: blur(2px); }
.uh-modal-overlay.open { display: flex; }
.uh-modal-box { background: #fff; border-radius: 18px; padding: 28px 24px; max-width: 420px; width: 90%; box-shadow: 0 20px 60px rgba(0,0,0,0.2); position: relative; }
.uh-modal-close { position: absolute; top: 14px; right: 14px; width: 30px; height: 30px; border-radius: 8px; background: #F3F4F6; border: none; cursor: pointer; color: #6B7280; font-size: 14px; display: flex; align-items: center; justify-content: center; }
.uh-modal-close:hover { background: #E5E7EB; }
.uh-modal-icon { width: 52px; height: 52px; border-radius: 14px; background: #FFF1F2; color: var(--primary, #E11D48); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 14px; }
.uh-modal-title { font-size: 1.1rem; font-weight: 800; color: #111827; margin: 0 0 7px; }
.uh-modal-desc { font-size: 13px; color: #6B7280; line-height: 1.5; margin-bottom: 18px; }
.uh-modal-form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.uh-modal-form-group label { font-size: 13px; font-weight: 600; color: #374151; }
.uh-modal-form-group input { border: 1.5px solid #E5E7EB; border-radius: 10px; padding: 10px 14px; font-size: 14px; outline: none; transition: border-color 0.18s; }
.uh-modal-form-group input:focus { border-color: var(--primary, #E11D48); }
.uh-modal-submit { width: 100%; background: var(--primary, #E11D48); color: #fff; border: none; border-radius: 10px; padding: 12px; font-size: 14px; font-weight: 700; cursor: pointer; transition: opacity 0.18s; }
.uh-modal-submit:hover { opacity: 0.9; }

/* ═══════════════════════════════════════════════════════
   STORE DETAIL — Missing class aliases & fixes
   ═══════════════════════════════════════════════════════ */

/* Hero actions container (PHP uses uh-store-hero-actions) */
.uh-store-hero-actions { margin-top: 16px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

/* Verified pill badge in hero stats */
.uh-verified-pill { background: rgba(5,150,105,0.25) !important; color: #6EE7B7 !important; font-size: 12px; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }

/* Store body padding */
.uh-store-body { padding: 32px 0 48px; }

/* Category tags strip below hero */
.uh-store-cats { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; padding: 14px 0; border-bottom: 1px solid #F3F4F6; }
.uh-store-cat-tag { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600; color: #374151; background: #F3F4F6; border: 1.5px solid #E5E7EB; border-radius: 20px; padding: 4px 12px; text-decoration: none; transition: background 0.18s, border-color 0.18s, color 0.18s; }
.uh-store-cat-tag:hover { background: #FFF1F2; border-color: var(--primary, #E11D48); color: var(--primary, #E11D48); }

/* Modal card (PHP uses uh-modal-card, CSS had uh-modal-box) */
.uh-modal-card { background: #fff; border-radius: 18px; padding: 28px 24px; max-width: 400px; width: 90%; box-shadow: 0 20px 60px rgba(0,0,0,0.2); position: relative; }
.uh-modal-icon { width: 48px; height: 48px; border-radius: 12px; background: #FFF1F2; color: var(--primary, #E11D48); display: flex; align-items: center; justify-content: center; font-size: 18px; margin-bottom: 14px; }
.uh-modal-input { width: 100%; border: 1.5px solid #E5E7EB; border-radius: 10px; padding: 11px 14px; font-size: 14px; outline: none; transition: border-color 0.18s; box-sizing: border-box; margin-bottom: 10px; }
.uh-modal-input:focus { border-color: var(--primary, #E11D48); }

/* ═══════════════════════════════════════════════════════
   STORE DETAIL — Coupon section head + sort alignment fix
   ═══════════════════════════════════════════════════════ */
.uh-store-coupons .uh-section-head { align-items: center; border-bottom: 1px solid #F3F4F6; padding-bottom: 16px; }
.uh-coupon-sort { display: flex; align-items: center; gap: 8px; }
.uh-coupon-sort label { font-size: 12px; font-weight: 600; color: #6B7280; white-space: nowrap; }
.uh-coupon-sort select { border: 1.5px solid #E5E7EB; border-radius: 10px; padding: 8px 14px; font-size: 13px; color: #374151; background: #fff; outline: none; cursor: pointer; transition: border-color 0.18s; }
.uh-coupon-sort select:focus { border-color: var(--primary, #E11D48); }

/* Share tray button for coupon share */
.coupon-share-wrap { position: relative; display: flex; justify-content: flex-end; }
.coupon-share-toggle { background: #F9FAFB; border: 1.5px solid #E5E7EB; border-radius: 8px; padding: 5px 9px; font-size: 12px; color: #9CA3AF; cursor: pointer; transition: all 0.18s; display: flex; align-items: center; }
.coupon-share-toggle:hover { background: #F3F4F6; color: #6B7280; border-color: #D1D5DB; }
.coupon-share-tray { display: none; position: absolute; bottom: calc(100% + 6px); right: 0; background: #fff; border: 1.5px solid #E5E7EB; border-radius: 12px; padding: 8px; box-shadow: 0 8px 24px rgba(0,0,0,0.12); min-width: 150px; z-index: 30; }
.coupon-share-tray.open { display: block; }

/* ═══════════════════════════════════════════════════════
   STORES PAGE — Improved store cards
   ═══════════════════════════════════════════════════════ */
.store-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.store-card {
    background: #fff;
    border: 1.5px solid #E5E7EB;
    border-radius: 16px;
    padding: 24px 16px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    text-align: center;
    position: relative;
    transition: box-shadow 0.22s, transform 0.22s, border-color 0.22s;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    min-height: 200px;
}
.store-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary, #E11D48), #BE123C);
    transform: scaleX(0);
    transition: transform 0.22s;
    border-radius: 2px 2px 0 0;
}
.store-card:hover { box-shadow: 0 8px 32px rgba(225,29,72,0.16); transform: translateY(-3px); border-color: #FECDD3; text-decoration: none; color: inherit; }
.store-card:hover::after { transform: scaleX(1); }

.store-card-logo { width: 80px; height: 80px; border-radius: 16px; border: 1.5px solid #F0F0F0; background: #F9FAFB; display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; margin-bottom: 14px; }
.store-card-logo img { width: 100%; height: 100%; object-fit: contain; padding: 10px; }
.store-logo-fallback.large { width: 80px; height: 80px; border-radius: 16px; font-size: 28px; font-weight: 800; background: var(--primary, #E11D48); color: #fff; display: flex; align-items: center; justify-content: center; }

.store-card-name { font-size: 14px; font-weight: 800; color: #111827; line-height: 1.3; width: 100%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 6px; }
.store-card-desc { font-size: 12px; color: #6B7280; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 10px; flex: 1; }
.store-card-coupons { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700; color: var(--primary, #E11D48); background: #FFF1F2; border: 1px solid #FECDD3; padding: 4px 11px; border-radius: 20px; margin-top: auto; }

.store-card-arrow { display: none; }
.featured-badge { position: absolute; top: 10px; right: 10px; background: var(--primary, #E11D48); color: #fff; font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 10px; display: flex; align-items: center; gap: 3px; }

.filter-bar { background: #fff; border: 1.5px solid #E5E7EB; border-radius: 16px; padding: 16px 20px; margin-bottom: 20px; }
.filter-form { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.filter-search, .filter-search-wrap { flex: 1; min-width: 220px; display: flex; align-items: center; gap: 10px; background: #F9FAFB; border: 1.5px solid #E5E7EB; border-radius: 10px; padding: 0 14px; height: 42px; transition: border-color 0.18s; }
.filter-search:focus-within, .filter-search-wrap:focus-within { border-color: var(--primary, #E11D48); background: #fff; }
.filter-search i, .filter-search-wrap i { color: #9CA3AF; font-size: 13px; }
.filter-search input, .filter-search-wrap input { border: none; background: none; outline: none; font-size: 14px; color: #111827; flex: 1; }
.filter-select select { border: 1.5px solid #E5E7EB; border-radius: 10px; padding: 9px 14px; font-size: 14px; color: #374151; background: #fff; outline: none; cursor: pointer; transition: border-color 0.18s; height: 42px; }
.filter-select select:focus { border-color: var(--primary, #E11D48); }

@media (max-width: 1024px) { .store-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .store-grid { grid-template-columns: repeat(2, 1fr); } }

/* ═══════════════════════════════════════════════════════
   AUTH PAGES — Login & Register Split Layout
   ═══════════════════════════════════════════════════════ */

/* Override section padding for auth pages */
.auth-page-wrap { padding: 0; }
.auth-page-wrap .auth-split-layout { min-height: calc(100vh - 118px); }

.auth-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 118px);
}

/* ── Brand panel (left) ── */
.auth-brand-panel {
    background: #1A0010;
    background-image:
        radial-gradient(ellipse at 15% 85%, rgba(225,29,72,0.28) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 20%, rgba(190,18,60,0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 50%, rgba(234,88,12,0.08) 0%, transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 52px;
    position: relative;
    overflow: hidden;
}
.auth-brand-panel::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(225,29,72,0.12) 0%, transparent 70%);
}
.auth-brand-panel::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 240px; height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(190,18,60,0.1) 0%, transparent 70%);
}

.auth-brand-content { position: relative; z-index: 1; max-width: 380px; }

.auth-brand-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 40px; }
.auth-brand-logo img { height: 44px; width: auto; }
.auth-brand-name { font-size: 2rem; font-weight: 900; color: #fff; letter-spacing: -0.5px; display: flex; align-items: center; gap: 10px; }
.auth-brand-name::before { content: '🥭'; font-size: 1.8rem; }

.auth-brand-tagline { font-size: 2rem; font-weight: 800; color: #fff; line-height: 1.25; margin: 0 0 12px; letter-spacing: -0.5px; }
.auth-brand-tagline span { color: var(--primary, #E11D48); }

.auth-brand-sub { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.6; margin-bottom: 36px; }

.auth-brand-benefits { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.auth-brand-benefits li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    line-height: 1.4;
}
.auth-brand-benefits li i {
    width: 36px; height: 36px;
    background: rgba(225,29,72,0.18);
    border: 1px solid rgba(225,29,72,0.3);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary, #E11D48);
    font-size: 14px;
    flex-shrink: 0;
}

.auth-brand-trust { display: flex; align-items: center; gap: 10px; margin-top: 40px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1); }
.auth-brand-trust span { font-size: 12px; color: rgba(255,255,255,0.5); }
.auth-brand-trust-badge { display: flex; align-items: center; gap: 5px; font-size: 12px; color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.06); border-radius: 20px; padding: 4px 10px; border: 1px solid rgba(255,255,255,0.1); }
.auth-brand-trust-badge i { color: var(--primary, #E11D48); font-size: 10px; }

/* ── Form panel (right) ── */
.auth-form-panel {
    background: #F9FAFB;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 52px;
}

.auth-form-card {
    background: #fff;
    border-radius: 20px;
    border: 1.5px solid #E5E7EB;
    padding: 40px 36px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.auth-form-header { margin-bottom: 28px; }
.auth-form-header h1 { font-size: 1.7rem; font-weight: 800; color: #111827; margin: 0 0 6px; }
.auth-form-header p { font-size: 14px; color: #6B7280; margin: 0; line-height: 1.5; }

/* Form groups */
.auth-form .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.auth-form .form-group label { font-size: 13px; font-weight: 700; color: #374151; }

.input-icon-wrap {
    display: flex;
    align-items: center;
    border: 1.5px solid #E5E7EB;
    border-radius: 11px;
    background: #F9FAFB;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    overflow: hidden;
    position: relative;
}
.input-icon-wrap:focus-within {
    border-color: var(--primary, #E11D48);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(225,29,72,0.12);
}
.input-icon-wrap > i {
    padding: 0 14px;
    color: #9CA3AF;
    font-size: 14px;
    flex-shrink: 0;
    pointer-events: none;
}
.input-icon-wrap input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    padding: 12px 14px 12px 0;
    font-size: 14px;
    color: #111827;
    font-family: inherit;
}
.input-icon-wrap input::placeholder { color: #9CA3AF; }
.input-password-wrap input { padding-right: 0; }
.password-toggle-btn {
    background: none;
    border: none;
    padding: 0 14px;
    color: #9CA3AF;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: color 0.18s;
}
.password-toggle-btn:hover { color: var(--primary, #E11D48); }

/* Remember me + forgot password row */
.form-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; gap: 8px; }
.checkbox-label { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #374151; cursor: pointer; user-select: none; }
.checkbox-label input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--primary, #E11D48); cursor: pointer; }
.form-link { font-size: 13px; color: var(--primary, #E11D48); font-weight: 600; text-decoration: none; }
.form-link:hover { text-decoration: underline; }

/* Submit button */
.auth-form .btn-block {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 11px;
    border: none;
    background: var(--primary, #E11D48);
    color: #fff;
    cursor: pointer;
    transition: opacity 0.18s, transform 0.18s;
    letter-spacing: 0.2px;
    margin-top: 4px;
}
.auth-form .btn-block:hover { opacity: 0.9; transform: translateY(-1px); }
.auth-form .btn-block:active { transform: none; }

/* Footer link */
.auth-form-footer { margin-top: 20px; text-align: center; }
.auth-form-footer p { font-size: 14px; color: #6B7280; margin: 0; }
.auth-form-footer a { color: var(--primary, #E11D48); font-weight: 700; text-decoration: none; }
.auth-form-footer a:hover { text-decoration: underline; }

/* Flash error / success alerts on auth pages */
.auth-alert { display: flex; align-items: flex-start; gap: 10px; padding: 12px 14px; border-radius: 10px; font-size: 13px; font-weight: 600; margin-bottom: 18px; }
.auth-alert-error { background: #FFF1F2; color: #BE123C; border: 1.5px solid #FECDD3; }
.auth-alert-success { background: #F0FDF4; color: #166534; border: 1.5px solid #BBF7D0; }
.auth-alert i { margin-top: 1px; flex-shrink: 0; }

/* Password strength */
.password-strength-wrap { margin-top: 8px; }
.password-strength-bar { height: 4px; background: #E5E7EB; border-radius: 4px; overflow: hidden; margin-bottom: 8px; }
.password-strength-bar div { height: 100%; width: 0; border-radius: 4px; transition: width 0.3s, background 0.3s; }
.password-hints { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 4px 12px; }
.password-hints li { font-size: 12px; color: #9CA3AF; display: flex; align-items: center; gap: 6px; transition: color 0.2s; }
.password-hints li i { font-size: 10px; }

/* Error message from PHP rendering (inline) */
.error-message { background: #FFF1F2; color: #BE123C; border: 1.5px solid #FECDD3; padding: 12px 14px; border-radius: 10px; font-size: 13px; font-weight: 600; margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }
.success-message { background: #F0FDF4; color: #166534; border: 1.5px solid #BBF7D0; padding: 12px 14px; border-radius: 10px; font-size: 13px; font-weight: 600; margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }

/* ── Responsive ── */
@media (max-width: 900px) {
    .auth-split-layout { grid-template-columns: 1fr; }
    .auth-brand-panel { display: none; }
    .auth-form-panel { min-height: calc(100vh - 118px); padding: 40px 20px; }
    .auth-form-card { padding: 32px 24px; }
}

.auth-terms { font-size: 11px; color: #9CA3AF; text-align: center; margin-top: 12px; line-height: 1.5; }
.auth-terms a { color: #6B7280; text-decoration: underline; }
.auth-terms a:hover { color: var(--primary, #E11D48); }

/* ═══════════════════════════════════════════════════════
   CATEGORY DETAIL PAGE
   ═══════════════════════════════════════════════════════ */
.uh-cat-section { margin-bottom: 40px; }
.uh-cat-stores-section { margin-top: 12px; }
.uh-cat-section-head { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.uh-cat-section-icon { width: 42px; height: 42px; border-radius: 12px; background: #FFF1F2; display: flex; align-items: center; justify-content: center; color: var(--primary, #E11D48); font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.uh-cat-section-head h2 { font-size: 1.3rem; font-weight: 800; color: #111827; margin: 0 0 3px; }
.uh-cat-section-head p { font-size: 13px; color: #6B7280; margin: 0; }

/* Store column inside coupon row */
.uh-coupon-store-col { display: flex; flex-direction: column; align-items: center; gap: 5px; padding: 14px 10px; border-right: 1px solid #F3F4F6; min-width: 80px; flex-shrink: 0; }
.uh-coupon-store-logo { width: 38px; height: 38px; object-fit: contain; border-radius: 8px; border: 1px solid #F0F0F0; background: #F9FAFB; padding: 2px; }
.uh-coupon-store-fb { width: 38px; height: 38px; border-radius: 8px; background: #FFF1F2; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 800; color: #BE123C; }
.uh-coupon-store-name { font-size: 10px; font-weight: 700; color: #6B7280; text-align: center; line-height: 1.2; text-decoration: none; transition: color 0.18s; }
.uh-coupon-store-name:hover { color: var(--primary, #E11D48); }

/* Category store grid */
.uh-cat-store-grid { display: flex; flex-direction: column; gap: 8px; }
.uh-cat-store-card { display: flex; align-items: center; gap: 14px; padding: 12px 16px; background: #fff; border: 1.5px solid #E5E7EB; border-radius: 14px; text-decoration: none; transition: border-color 0.18s, box-shadow 0.18s, transform 0.15s; }
.uh-cat-store-card:hover { border-color: var(--primary, #E11D48); box-shadow: 0 4px 16px rgba(225,29,72,0.10); transform: translateX(3px); }
.uh-cat-store-logo { width: 44px; height: 44px; border-radius: 10px; border: 1px solid #F0F0F0; background: #F9FAFB; overflow: hidden; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.uh-cat-store-logo img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.uh-cat-store-fb { font-size: 18px; font-weight: 800; color: var(--primary, #E11D48); }
.uh-cat-store-info { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.uh-cat-store-name { font-size: 14px; font-weight: 700; color: #111827; }
.uh-cat-store-count { font-size: 12px; color: #6B7280; }
.uh-cat-store-arrow { font-size: 12px; color: #D1D5DB; transition: color 0.18s, transform 0.18s; }
.uh-cat-store-card:hover .uh-cat-store-arrow { color: var(--primary, #E11D48); transform: translateX(2px); }

@media (max-width: 768px) {
    .uh-coupon-store-col { display: none; }
    .uh-cat-section-head { gap: 10px; }
    .uh-cat-section-head h2 { font-size: 1.1rem; }
}

/* ═══════════════════════════════════════════════════════
   PRODUCTS PAGE — Full Redesign
   ═══════════════════════════════════════════════════════ */

/* Filter bar */
.uh-product-filter-bar { background: #fff; border: 1.5px solid #E5E7EB; border-radius: 16px; padding: 14px 18px; margin-bottom: 28px; }
.uh-pf-form { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.uh-pf-search { display: flex; align-items: center; gap: 8px; flex: 1; min-width: 200px; background: #F9FAFB; border: 1.5px solid #E5E7EB; border-radius: 10px; padding: 0 14px; }
.uh-pf-search i { color: #9CA3AF; font-size: 14px; flex-shrink: 0; }
.uh-pf-search input { border: none; background: transparent; padding: 10px 0; font-size: 14px; color: #374151; width: 100%; outline: none; }
.uh-pf-select { background: #F9FAFB; border: 1.5px solid #E5E7EB; border-radius: 10px; padding: 10px 14px; font-size: 14px; color: #374151; cursor: pointer; min-width: 130px; }
.uh-pf-select:focus { outline: none; border-color: var(--primary, #E11D48); }
.uh-pf-btn { background: var(--primary, #E11D48); color: #fff; border: none; border-radius: 10px; padding: 10px 20px; font-size: 14px; font-weight: 700; cursor: pointer; display: flex; align-items: center; gap: 7px; transition: opacity 0.18s; }
.uh-pf-btn:hover { opacity: 0.88; }

/* Product grid */
.uh-product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }

/* Product card */
.uh-product-card { background: #fff; border: 1.5px solid #E5E7EB; border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s; }
.uh-product-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.10); border-color: #D1D5DB; transform: translateY(-3px); }

/* Image area */
.uh-pc-image { display: block; position: relative; aspect-ratio: 4/3; overflow: hidden; background: #F9FAFB; text-decoration: none; }
.uh-pc-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.uh-product-card:hover .uh-pc-image img { transform: scale(1.04); }
.uh-pc-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; }
.uh-pc-ph-initial { font-size: 40px; font-weight: 900; line-height: 1; }
.uh-pc-ph-brand { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; opacity: 0.7; }

/* Badges */
.uh-pc-badges { position: absolute; top: 10px; left: 10px; display: flex; flex-direction: column; gap: 5px; }
.uh-pc-badge { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 800; padding: 3px 8px; border-radius: 6px; }
.uh-pc-badge-sale { background: #EF4444; color: #fff; }
.uh-pc-badge-coupon { background: var(--primary, #E11D48); color: #fff; }

/* Body */
.uh-pc-body { padding: 14px 16px 10px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.uh-pc-meta { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.uh-pc-cat { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; color: #9CA3AF; }
.uh-pc-brand { font-size: 11px; font-weight: 700; color: var(--primary, #E11D48); }
.uh-pc-meta .uh-pc-cat + .uh-pc-brand::before { content: '·'; margin-right: 6px; color: #D1D5DB; }
.uh-pc-title { font-size: 14px; font-weight: 700; color: #111827; line-height: 1.35; margin: 0; }
.uh-pc-title a { text-decoration: none; color: inherit; }
.uh-pc-title a:hover { color: var(--primary, #E11D48); }

/* Rating */
.uh-pc-rating { display: flex; align-items: center; gap: 5px; }
.uh-pc-stars { color: #E11D48; font-size: 11px; display: flex; gap: 1px; }
.uh-pc-rating-val { font-size: 12px; font-weight: 700; color: #374151; }
.uh-pc-reviews { font-size: 11px; color: #9CA3AF; }

/* Pricing */
.uh-pc-pricing { display: flex; align-items: baseline; gap: 8px; margin-top: auto; padding-top: 4px; }
.uh-pc-price-sale { font-size: 17px; font-weight: 900; color: #111827; }
.uh-pc-price-orig { font-size: 13px; color: #9CA3AF; text-decoration: line-through; }

/* CTA button */
.uh-pc-btn { display: flex; align-items: center; justify-content: center; gap: 7px; padding: 11px 16px; background: #F9FAFB; border-top: 1.5px solid #F3F4F6; font-size: 13px; font-weight: 700; color: #374151; text-decoration: none; transition: background 0.18s, color 0.18s; }
.uh-product-card:hover .uh-pc-btn { background: var(--primary, #E11D48); color: #fff; border-color: var(--primary, #E11D48); }

@media (max-width: 640px) {
    .uh-product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .uh-pf-form { gap: 8px; }
    .uh-pf-select { min-width: 100%; }
    .uh-pf-search { min-width: 100%; }
}

/* ═══════════════════════════════════════════════════════
   STORE DETAIL — About & Related Stores improvements
   ═══════════════════════════════════════════════════════ */
.uh-store-readmore {
    display: inline-flex; align-items: center; gap: 6px;
    background: none; border: none; padding: 0; margin-top: 10px;
    color: var(--primary, #E11D48); font-size: 13px; font-weight: 700;
    cursor: pointer; transition: opacity 0.18s;
}
.uh-store-readmore:hover { opacity: 0.75; }

/* Make meta grid look polished */
.uh-store-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #F3F4F6;
}
.uh-store-meta-item {
    display: flex; flex-direction: column; gap: 4px;
    background: #F9FAFB; border: 1px solid #F0F0F0;
    border-radius: 10px; padding: 10px 12px;
}
.uh-store-meta-label {
    font-size: 10px; font-weight: 700; color: #9CA3AF;
    text-transform: uppercase; letter-spacing: 0.6px;
    display: flex; align-items: center; gap: 5px;
}
.uh-store-meta-label i { color: var(--primary, #E11D48); font-size: 10px; }
.uh-store-meta-value {
    font-size: 13px; font-weight: 700; color: #111827;
    display: flex; align-items: center; gap: 5px;
}

/* About card — tighten padding with divider */
.uh-store-about-card .store-about-description + .uh-store-meta-grid { margin-top: 18px; }

/* ═══════════════════════════════════════════════════════
   CATEGORIES — Bottom CTA Banner
   ═══════════════════════════════════════════════════════ */
.uh-cat-cta {
    background: linear-gradient(135deg, #E11D48 0%, #BE123C 50%, #B45309 100%);
    padding: 52px 0;
    position: relative;
    overflow: hidden;
}
.uh-cat-cta::before {
    content: '';
    position: absolute; top: -60px; right: -60px;
    width: 280px; height: 280px; border-radius: 50%;
    background: rgba(255,255,255,0.08);
    pointer-events: none;
}
.uh-cat-cta::after {
    content: '';
    position: absolute; bottom: -40px; left: -40px;
    width: 200px; height: 200px; border-radius: 50%;
    background: rgba(255,255,255,0.06);
    pointer-events: none;
}
.uh-cat-cta-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}
.uh-cat-cta-icon {
    width: 64px; height: 64px; flex-shrink: 0;
    border-radius: 18px;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; color: #fff;
}
.uh-cat-cta-text { flex: 1; min-width: 200px; }
.uh-cat-cta-text h2 {
    font-size: 1.5rem; font-weight: 800; color: #fff;
    margin: 0 0 6px; line-height: 1.2;
}
.uh-cat-cta-text p {
    font-size: 15px; color: rgba(255,255,255,0.85);
    margin: 0; line-height: 1.5;
}
.uh-cat-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }
.uh-cat-cta-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 22px; border-radius: 12px;
    font-size: 14px; font-weight: 700; text-decoration: none;
    transition: transform 0.15s, box-shadow 0.18s, opacity 0.18s;
    white-space: nowrap;
}
.uh-cat-cta-btn:hover { transform: translateY(-2px); }
.uh-cat-cta-btn-white {
    background: #fff; color: #BE123C;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.uh-cat-cta-btn-white:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.16); color: #B45309; }
.uh-cat-cta-btn-outline {
    background: transparent; color: #fff;
    border: 2px solid rgba(255,255,255,0.6);
}
.uh-cat-cta-btn-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; color: #fff; }

@media (max-width: 640px) {
    .uh-cat-cta { padding: 36px 0; }
    .uh-cat-cta-icon { display: none; }
    .uh-cat-cta-text h2 { font-size: 1.2rem; }
    .uh-cat-cta-actions { width: 100%; }
    .uh-cat-cta-btn { flex: 1; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════
   RASPBERRY NEW LAYOUT  (rzn- prefix)
   ═══════════════════════════════════════════════════════════════ */

/* ── NEW Hero ────────────────────────────────────────────────── */
.rzn-hero {
    position: relative;
    background: #1A0010;
    overflow: hidden;
    padding: 90px 0 100px;
    text-align: center;
}
.rzn-hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(253,164,175,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(253,164,175,0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}
.rzn-hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}
.rzn-hero-blob-1 { width: 560px; height: 560px; background: rgba(225,29,72,0.22); top: -140px; left: -100px; }
.rzn-hero-blob-2 { width: 420px; height: 420px; background: rgba(190,18,60,0.14); bottom: -80px; right: -60px; }
.rzn-hero-blob-3 { width: 280px; height: 280px; background: rgba(253,164,175,0.08); top: 40%; left: 55%; }

.rzn-hero .container { position: relative; z-index: 2; }
.rzn-hero-body { max-width: 740px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 0; }

.rzn-hero-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.rzn-hero-pill {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(225,29,72,0.18); border: 1px solid rgba(225,29,72,0.4);
    color: #FDA4AF; font-size: 12px; font-weight: 700;
    padding: 5px 14px; border-radius: 20px; letter-spacing: 0.5px; text-transform: uppercase;
}
.rzn-hero-live {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 11px; color: #6B7280; font-weight: 500;
}
.rzn-hero-live .fa-circle { font-size: 7px; color: #10B981; animation: rzn-pulse 1.8s ease-in-out infinite; }
@keyframes rzn-pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

.rzn-hero h1 {
    color: #fff; font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 900; line-height: 1.12; letter-spacing: -1px;
    margin-bottom: 18px;
}
.rzn-hero h1 em { color: #FDA4AF; font-style: normal; }

.rzn-hero-desc { color: #9CA3AF; font-size: 17px; line-height: 1.65; margin-bottom: 36px; max-width: 560px; }

.rzn-search-bar {
    width: 100%; max-width: 620px;
    background: #fff; border-radius: 16px;
    display: flex; align-items: center;
    padding: 6px 6px 6px 20px;
    box-shadow: 0 0 0 4px rgba(225,29,72,0.15), 0 20px 50px rgba(0,0,0,0.4);
    margin-bottom: 20px; position: relative;
}
.rzn-search-ico { color: #9CA3AF; font-size: 16px; flex-shrink: 0; margin-right: 10px; }
.rzn-search-bar input { flex: 1; border: none; outline: none; font-size: 15px; color: #111827; background: transparent; padding: 10px 0; min-width: 0; }
.rzn-search-bar input::placeholder { color: #9CA3AF; }
.rzn-search-bar button {
    flex-shrink: 0; background: #E11D48; color: #fff; border: none;
    border-radius: 12px; padding: 11px 22px;
    font-size: 14px; font-weight: 700; cursor: pointer;
    display: flex; align-items: center; gap: 8px;
    transition: background 0.2s;
}
.rzn-search-bar button:hover { background: #BE123C; }

.rzn-hero-popular { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 28px; }
.rzn-popular-label { font-size: 12px; color: #6B7280; font-weight: 600; }
.rzn-popular-tag {
    font-size: 12px; color: #FDA4AF; font-weight: 500;
    background: rgba(253,164,175,0.08); border: 1px solid rgba(253,164,175,0.2);
    border-radius: 20px; padding: 4px 12px;
    transition: background 0.2s, color 0.2s;
}
.rzn-popular-tag:hover { background: rgba(225,29,72,0.2); color: #fff; }

.rzn-hero-trust { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center; }
.rzn-trust-item { font-size: 12px; color: #6B7280; display: flex; align-items: center; gap: 5px; }
.rzn-trust-item i { color: #10B981; }
.rzn-trust-sep { color: #374151; font-size: 16px; }

/* ── Category Bar ────────────────────────────────────────────── */
.rzn-cats-bar { background: #fff; border-bottom: 1px solid #F0F0F0; padding: 18px 0; }
.rzn-cats-scroll {
    display: flex; gap: 10px;
    overflow-x: auto; scrollbar-width: none; padding: 4px 0;
}
.rzn-cats-scroll::-webkit-scrollbar { display: none; }
.rzn-cat-tile {
    display: flex; flex-direction: column; align-items: center; gap: 7px;
    min-width: 80px; flex-shrink: 0; cursor: pointer;
    transition: transform 0.2s;
}
.rzn-cat-tile:hover { transform: translateY(-2px); }
.rzn-cat-tile-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: color-mix(in srgb, var(--cat-color) 12%, white);
    color: var(--cat-color);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    transition: background 0.2s;
    border: 1.5px solid color-mix(in srgb, var(--cat-color) 20%, white);
}
.rzn-cat-tile:hover .rzn-cat-tile-icon { background: color-mix(in srgb, var(--cat-color) 20%, white); }
.rzn-cat-tile-name { font-size: 11px; font-weight: 600; color: #374151; text-align: center; line-height: 1.3; }

/* ── Deals Section (main + sidebar) ─────────────────────────── */
.rzn-deals-section { padding: 64px 0; background: #f9fafb; }
.rzn-deals-wrap { display: grid; grid-template-columns: 1fr 340px; gap: 28px; align-items: start; }
.rzn-deals-main { min-width: 0; }

/* Tab nav */
.rzn-tab-nav { display: flex; gap: 4px; background: #fff; border: 1.5px solid #E5E7EB; border-radius: 12px; padding: 4px; width: fit-content; margin-bottom: 20px; }
.rzn-tab-btn {
    display: flex; align-items: center; gap: 6px;
    padding: 8px 16px; border-radius: 9px; border: none; background: transparent;
    font-size: 13px; font-weight: 600; color: #6B7280; cursor: pointer;
    transition: background 0.18s, color 0.18s;
}
.rzn-tab-btn i { font-size: 12px; }
.rzn-tab-btn:hover { background: #FFF1F2; color: #BE123C; }
.rzn-tab-btn.active { background: #E11D48; color: #fff; }
.rzn-tab-pane { display: none; }
.rzn-tab-pane.active { display: block; }

/* Pane header */
.rzn-pane-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px; gap: 12px; }
.rzn-pane-header h2 { font-size: 1.25rem; font-weight: 800; color: #111827; display: flex; align-items: center; gap: 8px; margin: 0; }
.rzn-pane-header h2 i { color: #E11D48; font-size: 1rem; }
.rzn-pane-header p { font-size: 13px; color: #6B7280; margin: 4px 0 0; }
.rzn-see-all {
    display: inline-flex; align-items: center; gap: 5px; white-space: nowrap;
    font-size: 13px; font-weight: 600; color: #E11D48;
    border: 1.5px solid #E11D48; border-radius: 20px; padding: 5px 14px;
    transition: background 0.2s, color 0.2s; flex-shrink: 0;
}
.rzn-see-all:hover { background: #E11D48; color: #fff; }

/* Feed cards */
.rzn-feed { display: flex; flex-direction: column; gap: 10px; }
.rzn-feed-card {
    display: flex; align-items: center; gap: 0;
    background: #fff; border: 1.5px solid #E5E7EB;
    border-radius: 14px; overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.rzn-feed-card:hover { border-color: #FECDD3; box-shadow: 0 4px 20px rgba(225,29,72,0.1); transform: translateY(-1px); }
.rzn-feed-store {
    width: 68px; min-width: 68px; height: 68px; display: flex; align-items: center; justify-content: center;
    border-right: 1.5px solid #F3F4F6; background: #FAFAFA; flex-shrink: 0;
}
.rzn-feed-store img { width: 44px; height: 44px; object-fit: contain; }
.rzn-feed-store-fb {
    width: 44px; height: 44px; border-radius: 10px;
    background: #E11D48; color: #fff; font-size: 18px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.rzn-feed-body { flex: 1; padding: 12px 16px; min-width: 0; border-right: 1.5px solid #F3F4F6; }
.rzn-feed-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 5px; }
.rzn-feed-store-name { font-size: 11px; font-weight: 600; color: #6B7280; }
.rzn-feed-badge {
    background: #E11D48; color: #fff;
    font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 5px;
}
.rzn-feed-title { font-size: 14px; font-weight: 700; color: #111827; line-height: 1.4; margin-bottom: 6px; }
.rzn-feed-foot { display: flex; align-items: center; gap: 12px; }
.rzn-feed-expiry { font-size: 11px; color: #9CA3AF; display: flex; align-items: center; gap: 4px; }
.rzn-feed-expiry.urgent { color: #EF4444; }
.rzn-feed-verified { font-size: 11px; color: #10B981; display: flex; align-items: center; gap: 4px; }
.rzn-feed-action { padding: 12px 14px; width: 190px; min-width: 0; flex-shrink: 0; display: flex; align-items: center; justify-content: center; overflow: hidden; }

/* Code reveal in feed */
.rzn-code-wrap { display: flex; align-items: center; border: 1.5px dashed #FECDD3; border-radius: 8px; overflow: hidden; background: #FFF1F2; width: 100%; max-width: 100%; min-width: 0; }
.rzn-code-preview { flex: 1; min-width: 0; padding: 8px 8px; font-family: monospace; font-size: 12px; font-weight: 600; color: #BE123C; letter-spacing: 1px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.rzn-code-reveal {
    background: #E11D48; color: #fff; border: none;
    padding: 8px 11px; font-size: 11px; font-weight: 600; cursor: pointer;
    white-space: nowrap; flex-shrink: 0; display: flex; align-items: center; gap: 4px;
    transition: background 0.2s;
}
.rzn-code-reveal:hover { background: #BE123C; }
.rzn-feed-deal-btn {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    background: #111827; color: #fff; border-radius: 8px;
    padding: 9px 16px; font-size: 13px; font-weight: 600;
    transition: background 0.2s; width: 100%; text-align: center;
}
.rzn-feed-deal-btn:hover { background: #E11D48; color: #fff; }

/* ── Sidebar ─────────────────────────────────────────────────── */
.rzn-sidebar { display: flex; flex-direction: column; gap: 16px; }
.rzn-sidebar-box { background: #fff; border: 1.5px solid #E5E7EB; border-radius: 16px; overflow: hidden; }
.rzn-sidebar-head {
    display: flex; align-items: center; gap: 8px;
    padding: 14px 16px; border-bottom: 1.5px solid #F3F4F6;
}
.rzn-sidebar-head i { color: #E11D48; font-size: 14px; }
.rzn-sidebar-head h3 { font-size: 14px; font-weight: 800; color: #111827; flex: 1; margin: 0; }
.rzn-sidebar-more { font-size: 12px; font-weight: 600; color: #E11D48; }
.rzn-sidebar-more:hover { text-decoration: underline; }

/* Trending list */
.rzn-sidebar-list { padding: 8px 0; }
.rzn-sidebar-deal {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px; transition: background 0.15s;
}
.rzn-sidebar-deal:hover { background: #FFF1F2; }
.rzn-sidebar-rank { font-size: 13px; font-weight: 800; color: #FECDD3; width: 18px; text-align: center; flex-shrink: 0; }
.rzn-sidebar-deal-logo { width: 34px; height: 34px; border-radius: 8px; border: 1px solid #F0F0F0; background: #f9fafb; display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; }
.rzn-sidebar-deal-logo img { width: 100%; height: 100%; object-fit: contain; }
.rzn-sidebar-deal-logo span { font-size: 13px; font-weight: 700; color: #E11D48; }
.rzn-sidebar-deal-info { flex: 1; min-width: 0; }
.rzn-sidebar-deal-title { font-size: 12px; font-weight: 600; color: #111827; line-height: 1.35; }
.rzn-sidebar-deal-sub { font-size: 11px; color: #9CA3AF; margin-top: 2px; }
.rzn-sidebar-deal-sub em { color: #E11D48; font-style: normal; font-weight: 600; margin-left: 4px; }
.rzn-sidebar-btn {
    width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0;
    background: #FFF1F2; border: 1.5px solid #FECDD3;
    color: #E11D48; font-size: 12px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, color 0.2s;
}
.rzn-sidebar-btn:hover { background: #E11D48; color: #fff; border-color: #E11D48; }

/* Store grid in sidebar */
.rzn-sidebar-store-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 12px; }
.rzn-ss-tile {
    display: flex; align-items: center; justify-content: center;
    background: #f9fafb; border: 1px solid #E5E7EB; border-radius: 10px;
    padding: 10px; height: 52px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.rzn-ss-tile:hover { border-color: #FECDD3; box-shadow: 0 2px 8px rgba(225,29,72,0.1); }
.rzn-ss-tile img { width: 100%; height: 100%; object-fit: contain; }
.rzn-ss-tile span { font-size: 16px; font-weight: 800; color: #E11D48; }

/* Sidebar newsletter promo */
.rzn-sidebar-promo { position: relative; overflow: hidden; }
.rzn-sidebar-promo-inner { padding: 24px 20px; text-align: center; }
.rzn-promo-bell { font-size: 28px; color: #E11D48; margin-bottom: 10px; display: block; }
.rzn-sidebar-promo h4 { font-size: 15px; font-weight: 800; color: #111827; margin: 0 0 6px; }
.rzn-sidebar-promo p { font-size: 12px; color: #6B7280; margin: 0 0 14px; }
.rzn-sidebar-nl { display: flex; border: 1.5px solid #E5E7EB; border-radius: 10px; overflow: hidden; }
.rzn-sidebar-nl input { flex: 1; border: none; outline: none; padding: 9px 12px; font-size: 13px; min-width: 0; }
.rzn-sidebar-nl button { background: #E11D48; color: #fff; border: none; padding: 0 14px; cursor: pointer; font-size: 14px; transition: background 0.2s; }
.rzn-sidebar-nl button:hover { background: #BE123C; }

/* ── How It Works ────────────────────────────────────────────── */
.rzn-how { padding: 72px 0; background: #fff; }
.rzn-how-header { text-align: center; margin-bottom: 48px; }
.rzn-how-header h2 { font-size: 1.75rem; font-weight: 900; color: #111827; margin-bottom: 10px; }
.rzn-how-header p { font-size: 15px; color: #6B7280; }
.rzn-how-steps { display: flex; align-items: flex-start; justify-content: center; gap: 0; }
.rzn-how-step { flex: 1; max-width: 260px; text-align: center; padding: 0 20px; }
.rzn-how-step-icon {
    width: 64px; height: 64px; border-radius: 18px;
    background: linear-gradient(135deg, #E11D48, #BE123C);
    color: #fff; font-size: 24px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px; box-shadow: 0 8px 24px rgba(225,29,72,0.3);
}
.rzn-how-step-num {
    font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
    color: #E11D48; margin-bottom: 10px;
}
.rzn-how-step h3 { font-size: 16px; font-weight: 700; color: #111827; margin-bottom: 8px; }
.rzn-how-step p { font-size: 13px; color: #6B7280; line-height: 1.6; }
.rzn-how-arrow { padding: 0 10px; color: #FECDD3; font-size: 20px; margin-top: 22px; flex-shrink: 0; }

/* ── Stats Bar ───────────────────────────────────────────────── */
.rzn-stats-bar { background: linear-gradient(135deg, #1A0010 0%, #3B0022 100%); padding: 56px 0; }
.rzn-stats-row { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.rzn-stat-item { text-align: center; padding: 0 40px; }
.rzn-stat-ico { font-size: 24px; color: #FDA4AF; margin-bottom: 10px; }
.rzn-stat-val { font-size: 2.2rem; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 6px; display: block; }
.rzn-stat-lbl { font-size: 13px; color: #9CA3AF; font-weight: 500; }
.rzn-stat-div { width: 1px; height: 60px; background: rgba(255,255,255,0.1); }

/* ── Popular Stores Belt ─────────────────────────────────────── */
.rzn-stores-section { padding: 64px 0; background: #FFF1F2; }
.rzn-stores-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 24px; padding: 0;
}
.rzn-stores-header h2 { font-size: 1.5rem; font-weight: 900; color: #111827; margin: 0; }
.rzn-belt-outer { overflow-x: auto; scrollbar-width: thin; scrollbar-color: #FECDD3 transparent; padding: 8px 0 16px; }
.rzn-belt-outer::-webkit-scrollbar { height: 4px; }
.rzn-belt-outer::-webkit-scrollbar-track { background: transparent; }
.rzn-belt-outer::-webkit-scrollbar-thumb { background: #FECDD3; border-radius: 2px; }
.rzn-belt { display: flex; gap: 14px; padding: 4px 24px; min-width: max-content; }
.rzn-belt-card {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    background: #fff; border: 1.5px solid #FECDD3;
    border-radius: 16px; padding: 20px 16px; min-width: 120px;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
    cursor: pointer;
}
.rzn-belt-card:hover { box-shadow: 0 6px 20px rgba(225,29,72,0.12); transform: translateY(-3px); border-color: #E11D48; }
.rzn-belt-logo { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; }
.rzn-belt-logo img { width: 100%; height: 100%; object-fit: contain; }
.rzn-belt-fb { width: 56px; height: 56px; border-radius: 14px; background: #E11D48; color: #fff; font-size: 22px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.rzn-belt-name { font-size: 12px; font-weight: 700; color: #374151; text-align: center; }
.rzn-belt-count { font-size: 11px; color: #9CA3AF; }

/* ── Newsletter (new bold style) ────────────────────────────── */
.rzn-newsletter {
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, #1A0010 0%, #3B0022 60%, #1A0010 100%);
    padding: 80px 0;
}
.rzn-nl-bg {
    position: absolute; inset: 0;
    background-image: radial-gradient(ellipse at 20% 50%, rgba(225,29,72,0.2) 0%, transparent 50%),
                      radial-gradient(ellipse at 80% 50%, rgba(190,18,60,0.15) 0%, transparent 50%);
    pointer-events: none;
}
.rzn-nl-inner { position: relative; text-align: center; max-width: 580px; margin: 0 auto; }
.rzn-nl-icon { font-size: 40px; color: #FDA4AF; margin-bottom: 16px; }
.rzn-newsletter h2 { font-size: 2rem; font-weight: 900; color: #fff; margin-bottom: 12px; }
.rzn-newsletter p { font-size: 15px; color: #9CA3AF; margin-bottom: 28px; line-height: 1.65; }
.rzn-nl-form { width: 100%; }
.rzn-nl-row {
    display: flex; align-items: center;
    background: #fff; border-radius: 14px;
    padding: 6px 6px 6px 18px;
    box-shadow: 0 0 0 3px rgba(225,29,72,0.25);
    margin-bottom: 14px;
}
.rzn-nl-ico { color: #9CA3AF; font-size: 15px; margin-right: 10px; flex-shrink: 0; }
.rzn-nl-row input { flex: 1; border: none; outline: none; font-size: 15px; color: #111827; padding: 10px 0; min-width: 0; }
.rzn-nl-row button { flex-shrink: 0; background: #E11D48; color: #fff; border: none; border-radius: 10px; padding: 11px 24px; font-size: 14px; font-weight: 700; cursor: pointer; transition: background 0.2s; }
.rzn-nl-row button:hover { background: #BE123C; }
.rzn-nl-trust { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; }
.rzn-nl-trust span { font-size: 12px; color: #6B7280; display: flex; align-items: center; gap: 5px; }
.rzn-nl-trust .fa-check-circle { color: #10B981; }
.rzn-nl-trust .fa-lock, .rzn-nl-trust .fa-times-circle { color: #6B7280; }

/* ── Blog (3-column) ─────────────────────────────────────────── */
.rzn-blog-section { padding: 64px 0; background: #fff; }
.rzn-blog-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.rzn-blog-header h2 { font-size: 1.5rem; font-weight: 900; color: #111827; margin: 0; }
.rzn-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.rzn-blog-card { background: #fff; border: 1.5px solid #E5E7EB; border-radius: 16px; overflow: hidden; transition: box-shadow 0.2s, transform 0.2s; }
.rzn-blog-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.09); transform: translateY(-3px); }
.rzn-blog-img-link { display: block; height: 180px; overflow: hidden; }
.rzn-blog-img-link img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.rzn-blog-card:hover .rzn-blog-img-link img { transform: scale(1.04); }
.rzn-blog-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 36px; }
.rzn-blog-body { padding: 20px; }
.rzn-blog-cat { font-size: 11px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; display: block; margin-bottom: 8px; }
.rzn-blog-body h3 { font-size: 15px; font-weight: 700; color: #111827; line-height: 1.45; margin-bottom: 8px; }
.rzn-blog-body h3 a { color: inherit; }
.rzn-blog-body h3 a:hover { color: #E11D48; }
.rzn-blog-body p { font-size: 13px; color: #6B7280; line-height: 1.55; margin-bottom: 14px; }
.rzn-blog-foot { display: flex; align-items: center; justify-content: space-between; }
.rzn-blog-foot span { font-size: 12px; color: #9CA3AF; display: flex; align-items: center; gap: 5px; }
.rzn-blog-read { font-size: 12px; font-weight: 600; color: #E11D48; display: flex; align-items: center; gap: 4px; }
.rzn-blog-read:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — rzn- classes
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .rzn-deals-wrap { grid-template-columns: 1fr 300px; }
}
@media (max-width: 900px) {
    .rzn-deals-wrap { grid-template-columns: 1fr; }
    .rzn-sidebar { display: grid; grid-template-columns: 1fr 1fr; }
    .rzn-blog-grid { grid-template-columns: 1fr 1fr; }
    .rzn-how-steps { flex-wrap: wrap; justify-content: center; }
    .rzn-how-arrow { display: none; }
    .rzn-how-step { max-width: 200px; }
    .rzn-stat-item { padding: 16px 24px; }
}
@media (max-width: 640px) {
    .rzn-hero { padding: 60px 0 72px; }
    .rzn-hero h1 { font-size: 2rem; }
    .rzn-hero-desc { font-size: 15px; }
    .rzn-search-bar button span { display: none; }
    .rzn-search-bar button { padding: 11px 14px; }
    .rzn-deals-section { padding: 40px 0; }
    .rzn-tab-nav { flex-wrap: wrap; }
    .rzn-feed-card { flex-direction: column; }
    .rzn-feed-store { width: 100%; height: 60px; border-right: none; border-bottom: 1.5px solid #F3F4F6; }
    .rzn-feed-body { border-right: none; }
    .rzn-feed-action { padding: 12px; width: 100%; border-top: 1.5px solid #F3F4F6; }
    .rzn-sidebar { grid-template-columns: 1fr; }
    .rzn-blog-grid { grid-template-columns: 1fr; }
    .rzn-stats-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
    .rzn-stat-div { display: none; }
    .rzn-stat-item { padding: 32px 16px; }
    /* left-column items (DOM positions 1 and 5) get a right border */
    .rzn-stat-item:nth-child(1),
    .rzn-stat-item:nth-child(5) { border-right: 1px solid rgba(255,255,255,0.1); }
    /* top-row items (DOM positions 1 and 3) get a bottom border */
    .rzn-stat-item:nth-child(1),
    .rzn-stat-item:nth-child(3) { border-bottom: 1px solid rgba(255,255,255,0.1); }
    .rzn-stats-bar { padding: 0; }
    .rzn-belt { padding: 4px 16px; }
    .rzn-stores-header { padding: 0 16px; }
    .rzn-how { padding: 48px 0; }
    .rzn-newsletter { padding: 56px 0; }
}

/* ═══════════════════════════════════════════════════════════════
   RASPBERRY — STORE PAGE (rzn-store- prefix)
   ═══════════════════════════════════════════════════════════════ */

/* ── Store Hero ───────────────────────────────────────────────── */
.rzn-store-hero {
    position: relative;
    background: linear-gradient(135deg, #1A0010 0%, #3B0022 60%, #1A0010 100%);
    padding: 32px 0 40px;
    overflow: hidden;
}
.rzn-store-hero-bg {
    position: absolute; inset: 0;
    background-image: radial-gradient(ellipse at 10% 80%, rgba(225,29,72,0.18) 0%, transparent 50%),
                      radial-gradient(ellipse at 90% 20%, rgba(190,18,60,0.12) 0%, transparent 45%);
    pointer-events: none;
}
.rzn-store-hero-grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(253,164,175,0.04) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(253,164,175,0.04) 1px, transparent 1px);
    background-size: 48px 48px; pointer-events: none;
}
.rzn-store-hero .container { position: relative; z-index: 2; }
.rzn-breadcrumb {
    display: flex; align-items: center; gap: 8px;
    font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 22px;
}
.rzn-breadcrumb a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.rzn-breadcrumb a:hover { color: #FDA4AF; }
.rzn-breadcrumb i { font-size: 10px; }
.rzn-breadcrumb span { color: rgba(255,255,255,0.85); }

.rzn-store-hero-inner { display: flex; align-items: center; gap: 24px; }
.rzn-store-hero-logo {
    width: 100px; height: 100px; border-radius: 20px;
    background: #fff; border: 3px solid rgba(255,255,255,0.2);
    overflow: hidden; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.rzn-store-hero-logo img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.rzn-store-logo-fb { font-size: 36px; font-weight: 900; color: #E11D48; }

.rzn-store-hero-info { flex: 1; min-width: 0; }
.rzn-store-hero-info h1 { font-size: 1.9rem; font-weight: 900; color: #fff; margin: 0 0 12px; }

.rzn-store-hero-pills { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.rzn-hero-pill-item {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 12px; color: rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.15);
    padding: 4px 12px; border-radius: 20px; font-weight: 500;
}
.rzn-hero-pill-item i { font-size: 11px; }
.rzn-hero-pill-verified {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 12px; color: #6EE7B7; font-weight: 600;
    background: rgba(16,185,129,0.15); border: 1px solid rgba(16,185,129,0.3);
    padding: 4px 12px; border-radius: 20px;
}

.rzn-store-hero-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.rzn-store-action-btn {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 13px; font-weight: 600; padding: 9px 20px;
    border-radius: 22px; border: 1.5px solid rgba(255,255,255,0.3);
    color: #fff; cursor: pointer; background: rgba(255,255,255,0.08);
    transition: background 0.2s, border-color 0.2s; text-decoration: none;
}
.rzn-store-action-btn:hover { background: rgba(255,255,255,0.16); color: #fff; }
.rzn-store-action-btn.subscribed { background: rgba(16,185,129,0.2); border-color: rgba(16,185,129,0.4); }
.rzn-store-visit-btn { background: #E11D48; border-color: #E11D48; }
.rzn-store-visit-btn:hover { background: #BE123C; border-color: #BE123C; }

.rzn-store-hero-counter {
    flex-shrink: 0; text-align: center;
    background: rgba(255,255,255,0.06); border: 1.5px solid rgba(255,255,255,0.12);
    border-radius: 16px; padding: 16px 24px;
    display: none;
}
.rzn-hero-counter-val { font-size: 2.4rem; font-weight: 900; color: #FDA4AF; line-height: 1; }
.rzn-hero-counter-lbl { font-size: 11px; color: rgba(255,255,255,0.6); margin-top: 4px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
@media (min-width: 768px) { .rzn-store-hero-counter { display: block; } }

/* ── Alert Modal ──────────────────────────────────────────────── */
.rzn-modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.6);
    z-index: 9999; display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(4px);
}
.rzn-modal-card {
    background: #fff; border-radius: 20px; padding: 36px 32px;
    max-width: 400px; width: 90%; position: relative; text-align: center;
    box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}
.rzn-modal-close {
    position: absolute; top: 16px; right: 16px;
    background: #F3F4F6; border: none; border-radius: 50%;
    width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
    cursor: pointer; color: #6B7280; font-size: 13px;
    transition: background 0.2s;
}
.rzn-modal-close:hover { background: #E5E7EB; }
.rzn-modal-icon {
    width: 56px; height: 56px; border-radius: 16px;
    background: #FFF1F2; color: #E11D48;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin: 0 auto 16px;
}
.rzn-modal-card h3 { font-size: 1.2rem; font-weight: 800; color: #111827; margin: 0 0 8px; }
.rzn-modal-card p { font-size: 14px; color: #6B7280; margin: 0 0 20px; }
.rzn-modal-input {
    width: 100%; border: 1.5px solid #E5E7EB; border-radius: 12px;
    padding: 12px 16px; font-size: 14px; outline: none; margin-bottom: 12px;
    box-sizing: border-box; transition: border-color 0.2s;
}
.rzn-modal-input:focus { border-color: #E11D48; }
.rzn-modal-submit {
    width: 100%; background: #E11D48; color: #fff; border: none;
    border-radius: 12px; padding: 13px; font-size: 15px; font-weight: 700;
    cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: background 0.2s;
}
.rzn-modal-submit:hover { background: #BE123C; }

/* ── Store Body ───────────────────────────────────────────────── */
.rzn-store-body { padding: 32px 0 56px; background: #f9fafb; }

.rzn-store-cats {
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
    margin-bottom: 24px; padding: 14px 0; border-bottom: 1px solid #E5E7EB;
}
.rzn-store-cat-tag {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 12px; font-weight: 600; color: #374151;
    background: #fff; border: 1.5px solid #E5E7EB;
    border-radius: 20px; padding: 5px 13px;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.rzn-store-cat-tag i { color: #E11D48; font-size: 10px; }
.rzn-store-cat-tag:hover { background: #FFF1F2; border-color: #E11D48; color: #E11D48; }

/* ── Empty state ──────────────────────────────────────────────── */
.rzn-store-empty { text-align: center; padding: 64px 24px; background: #fff; border-radius: 16px; border: 1.5px solid #E5E7EB; }
.rzn-store-empty-icon { font-size: 48px; color: #D1D5DB; margin-bottom: 16px; }
.rzn-store-empty h3 { font-size: 1.1rem; font-weight: 700; color: #1E293B; margin-bottom: 8px; }
.rzn-store-empty p { font-size: 14px; color: #6B7280; max-width: 400px; margin: 0 auto 24px; }
.rzn-empty-notify-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: #E11D48; color: #fff; border: none;
    border-radius: 22px; padding: 11px 24px; font-size: 14px; font-weight: 700; cursor: pointer;
    transition: background 0.2s;
}
.rzn-empty-notify-btn:hover { background: #BE123C; }

/* ── Coupons header ───────────────────────────────────────────── */
.rzn-coupons-header {
    display: flex; align-items: flex-start; justify-content: space-between;
    gap: 16px; margin-bottom: 20px; flex-wrap: wrap;
}
.rzn-coupons-title { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.rzn-coupons-title h2 { font-size: 1.2rem; font-weight: 800; color: #111827; margin: 0; }
.rzn-coupons-count { background: #E11D48; color: #fff; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; }
.rzn-coupons-controls { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

/* Filter tabs */
.rzn-filter-tabs { display: flex; gap: 4px; background: #fff; border: 1.5px solid #E5E7EB; border-radius: 12px; padding: 4px; }
.rzn-filter-tab {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 7px 14px; border-radius: 8px; border: none; background: transparent;
    font-size: 12px; font-weight: 600; color: #6B7280; cursor: pointer;
    transition: background 0.18s, color 0.18s; white-space: nowrap;
}
.rzn-filter-tab i { font-size: 11px; }
.rzn-filter-tab span { background: #F3F4F6; border-radius: 10px; padding: 1px 7px; font-size: 11px; font-weight: 700; color: #6B7280; }
.rzn-filter-tab:hover { background: #FFF1F2; color: #E11D48; }
.rzn-filter-tab.active { background: #E11D48; color: #fff; }
.rzn-filter-tab.active span { background: rgba(255,255,255,0.25); color: #fff; }

/* Sort */
.rzn-coupon-sort { display: flex; align-items: center; gap: 8px; }
.rzn-coupon-sort i { color: #6B7280; font-size: 13px; }
.rzn-coupon-sort select {
    border: 1.5px solid #E5E7EB; border-radius: 10px; padding: 8px 14px;
    font-size: 13px; color: #374151; background: #fff; outline: none; cursor: pointer;
    transition: border-color 0.18s;
}
.rzn-coupon-sort select:focus { border-color: #E11D48; }

/* ── Coupon Cards ─────────────────────────────────────────────── */
.rzn-coupon-feed { display: flex; flex-direction: column; gap: 12px; }
.rzn-coupon-card {
    display: flex; align-items: stretch;
    background: #fff; border: 1.5px solid #E5E7EB;
    border-radius: 16px; overflow: hidden;
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.rzn-coupon-card:hover { box-shadow: 0 6px 28px rgba(0,0,0,0.09); border-color: #FECDD3; transform: translateY(-1px); }

/* Badge column */
.rzn-coupon-badge {
    flex-shrink: 0; width: 90px; min-width: 90px;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
    padding: 16px 8px; text-align: center; position: relative;
}
.rzn-badge-code { background: linear-gradient(160deg, #FFF1F2, #FECDD3); border-right: 1.5px dashed #FECDD3; }
.rzn-badge-deal { background: linear-gradient(160deg, #FFF7ED, #FED7AA); border-right: 1.5px dashed #FED7AA; }
.rzn-badge-val { font-size: 1.25rem; font-weight: 900; color: #BE123C; line-height: 1; }
.rzn-badge-deal .rzn-badge-val { color: #C2410C; }
.rzn-badge-ico { font-size: 1.2rem; color: #BE123C; }
.rzn-badge-deal .rzn-badge-ico { color: #EA580C; }
.rzn-badge-lbl { font-size: 9px; font-weight: 800; letter-spacing: 0.8px; text-transform: uppercase; color: #BE123C; }
.rzn-badge-deal .rzn-badge-lbl { color: #C2410C; }
.rzn-badge-type-pill {
    position: absolute; bottom: 8px;
    font-size: 9px; font-weight: 700; letter-spacing: 0.3px;
    background: rgba(0,0,0,0.06); border-radius: 8px;
    padding: 2px 7px; color: #6B7280;
    display: flex; align-items: center; gap: 3px;
}

/* Info column */
.rzn-coupon-info { flex: 1; padding: 16px 20px; min-width: 0; border-right: 1.5px solid #F3F4F6; }
.rzn-coupon-title { font-size: 15px; font-weight: 700; color: #111827; line-height: 1.4; margin: 0 0 6px; }
.rzn-coupon-desc { font-size: 13px; color: #6B7280; line-height: 1.55; margin: 0 0 10px; }
.rzn-coupon-meta-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.rzn-coupon-expiry { font-size: 12px; color: #9CA3AF; display: flex; align-items: center; gap: 4px; }
.rzn-coupon-expiry.urgent { color: #EF4444; font-weight: 600; }
.rzn-coupon-verified { font-size: 12px; color: #10B981; display: flex; align-items: center; gap: 4px; font-weight: 600; }
.rzn-coupon-rate { font-size: 12px; color: #7C3AED; display: flex; align-items: center; gap: 4px; }

/* Action column */
.rzn-coupon-action {
    flex-shrink: 0; width: 200px; min-width: 200px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 10px; padding: 16px;
}

/* Code card */
.rzn-code-card { width: 100%; display: flex; flex-direction: column; gap: 8px; }
.rzn-code-preview-row {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background: #FFF1F2; border: 2px dashed #FECDD3; border-radius: 10px;
    padding: 10px 14px;
}
.rzn-code-icon { color: #E11D48; font-size: 14px; flex-shrink: 0; }
.rzn-code-preview-text { font-family: 'Courier New', monospace; font-size: 15px; font-weight: 700; color: #BE123C; letter-spacing: 2px; }
.rzn-code-btn {
    width: 100%; background: #E11D48; color: #fff; border: none;
    border-radius: 10px; padding: 11px 16px;
    font-size: 13px; font-weight: 700; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 7px;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 4px 12px rgba(225,29,72,0.3);
}
.rzn-code-btn:hover { background: #BE123C; transform: translateY(-1px); }
.rzn-code-btn i { font-size: 12px; }

/* Deal action */
.rzn-deal-action { width: 100%; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.rzn-deal-btn {
    width: 100%; background: #111827; color: #fff;
    border-radius: 10px; padding: 11px 16px;
    font-size: 13px; font-weight: 700;
    display: flex; align-items: center; justify-content: center; gap: 7px;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.rzn-deal-btn:hover { background: #E11D48; color: #fff; transform: translateY(-1px); }
.rzn-no-code-note { font-size: 11px; color: #10B981; display: flex; align-items: center; gap: 4px; font-weight: 600; }

/* Share */
.rzn-share-wrap { align-self: center; }
.rzn-share-toggle {
    background: none; border: 1.5px solid #E5E7EB; border-radius: 8px;
    width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
    color: #9CA3AF; font-size: 13px; cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}
.rzn-share-toggle:hover { border-color: #E11D48; color: #E11D48; }

/* ── About section ────────────────────────────────────────────── */
.rzn-store-about { margin-top: 36px; }
.rzn-store-about-head {
    display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px;
}
.rzn-store-about-head > i { width: 36px; height: 36px; background: #FFF1F2; color: #E11D48; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.rzn-store-about-head h2 { font-size: 1.1rem; font-weight: 800; color: #111827; margin: 0 0 2px; }
.rzn-store-about-head p { font-size: 13px; color: #6B7280; margin: 0; }
.rzn-store-about-card { background: #fff; border: 1.5px solid #E5E7EB; border-radius: 16px; padding: 24px; }
.rzn-store-about-desc { font-size: 14px; color: #374151; line-height: 1.65; margin-bottom: 20px; }
.rzn-readmore-btn {
    display: inline-flex; align-items: center; gap: 5px;
    background: none; border: none; color: #E11D48; font-size: 13px; font-weight: 600;
    cursor: pointer; padding: 4px 0; margin-top: 8px;
}
.rzn-store-meta-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }
.rzn-store-meta-item { display: flex; flex-direction: column; gap: 3px; }
.rzn-meta-label { font-size: 11px; font-weight: 700; color: #9CA3AF; text-transform: uppercase; letter-spacing: 0.5px; display: flex; align-items: center; gap: 4px; }
.rzn-meta-label i { color: #E11D48; }
.rzn-meta-value { font-size: 13px; font-weight: 600; color: #111827; display: flex; align-items: center; gap: 5px; }

/* ── FAQ ──────────────────────────────────────────────────────── */
.rzn-store-faq { margin-top: 32px; }
.rzn-store-faq h2 { font-size: 1.1rem; font-weight: 800; color: #111827; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.rzn-store-faq h2 i { color: #E11D48; }

/* ── Related stores ───────────────────────────────────────────── */
.rzn-related-stores { margin-top: 32px; }
.rzn-related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
.rzn-related-card {
    display: flex; align-items: center; gap: 10px;
    background: #fff; border: 1.5px solid #E5E7EB; border-radius: 12px; padding: 12px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.rzn-related-card:hover { border-color: #FECDD3; box-shadow: 0 4px 16px rgba(225,29,72,0.08); }
.rzn-related-logo { width: 40px; height: 40px; border-radius: 10px; border: 1px solid #F0F0F0; background: #f9fafb; overflow: hidden; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.rzn-related-logo img { width: 100%; height: 100%; object-fit: contain; }
.rzn-related-logo span { font-size: 16px; font-weight: 800; color: #E11D48; }
.rzn-related-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.rzn-related-name { font-size: 13px; font-weight: 700; color: #111827; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rzn-related-deals { font-size: 11px; color: #9CA3AF; }
.rzn-related-deals.has-deals { color: #10B981; font-weight: 600; }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 768px) {
    .rzn-store-hero-inner { flex-wrap: wrap; gap: 16px; }
    .rzn-store-hero-info h1 { font-size: 1.5rem; }
    .rzn-coupons-header { flex-direction: column; }
    .rzn-coupons-controls { width: 100%; }
    .rzn-coupon-card { flex-direction: column; }
    .rzn-coupon-badge { width: 100%; min-width: unset; flex-direction: row; justify-content: flex-start; padding: 12px 16px; gap: 10px; border-right: none; border-bottom: 1.5px dashed #FECDD3; }
    .rzn-badge-code { border-bottom: 1.5px dashed #FECDD3; }
    .rzn-badge-deal { border-bottom: 1.5px dashed #FED7AA; }
    .rzn-badge-type-pill { position: static; margin-left: auto; }
    .rzn-badge-lbl { display: none; }
    .rzn-coupon-info { border-right: none; border-bottom: 1.5px solid #F3F4F6; }
    .rzn-coupon-action { width: 100%; min-width: unset; padding: 14px 16px; flex-direction: row; flex-wrap: wrap; justify-content: space-between; }
    .rzn-code-card { flex: 1; }
    .rzn-deal-action { flex: 1; }
    .rzn-filter-tabs { width: 100%; }
    .rzn-related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .rzn-coupon-action { flex-direction: column; }
    .rzn-store-meta-grid { grid-template-columns: repeat(2, 1fr); }
}


/* =========================================================
   Raspberry — Static Pages (About, Privacy, Terms, Contact)
   ========================================================= */

/* ── Inner Hero (shared dark hero for static pages) ─── */
.rzn-inner-hero {
    background: linear-gradient(135deg, #1A0010 0%, #3B0022 60%, #BE123C 100%);
    padding: 56px 0 44px;
    position: relative;
    overflow: hidden;
}
.rzn-inner-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,.03) 39px, rgba(255,255,255,.03) 40px),
                      repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,.03) 39px, rgba(255,255,255,.03) 40px);
    pointer-events: none;
}
.rzn-inner-hero .container { position: relative; z-index: 1; }
.rzn-inner-hero h1 { color: #fff; font-size: clamp(1.7rem, 4vw, 2.6rem); margin-top: 10px; }
.rzn-inner-hero-sub {
    color: #FECDD3;
    margin-top: 10px;
    font-size: 1.05rem;
    max-width: 600px;
    opacity: .9;
}
.rzn-bread-light { color: #FDA4AF; font-size: 13px; display: flex; gap: 6px; align-items: center; }
.rzn-bread-light a { color: #FECDD3; }
.rzn-bread-light a:hover { color: #fff; }
.rzn-bread-light span { opacity: .7; }

/* ── Static Page Body ─── */
.rzn-static-body {
    padding: 48px 0 80px;
    background: #FAFAFA;
}
.rzn-static-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #F3E6EA;
    box-shadow: 0 2px 12px rgba(190,18,60,.06);
    padding: 48px 52px;
    max-width: 860px;
    margin: 0 auto;
}
.rzn-static-meta {
    margin-top: 36px;
    padding-top: 20px;
    border-top: 1px solid #F3E6EA;
    font-size: 13px;
    color: #9CA3AF;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ── Page Content Inner Elements ─── */
.rzn-static-content .rzn-page-intro {
    padding: 20px 24px;
    background: linear-gradient(135deg, #FFF1F2, #FFE4E6);
    border-left: 4px solid #E11D48;
    border-radius: 0 12px 12px 0;
    margin-bottom: 36px;
}
.rzn-static-content .rzn-lead {
    font-size: 1.1rem;
    color: #374151;
    line-height: 1.7;
    margin: 0;
}
.rzn-static-content .rzn-page-section {
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid #F3E6EA;
}
.rzn-static-content .rzn-page-section:last-child { border-bottom: none; }
.rzn-static-content .rzn-page-section h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1A0010;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.rzn-static-content .rzn-page-section h2 i { color: #E11D48; }
.rzn-static-content .rzn-page-section h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin: 16px 0 8px;
}
.rzn-static-content p {
    color: #4B5563;
    line-height: 1.75;
    margin-bottom: 12px;
}
.rzn-static-content a {
    color: #E11D48;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.rzn-static-content a:hover { color: #BE123C; }
.rzn-static-content ul {
    list-style: none;
    margin: 8px 0 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.rzn-static-content ul li {
    padding-left: 22px;
    position: relative;
    color: #4B5563;
    line-height: 1.65;
}
.rzn-static-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    background: #E11D48;
    border-radius: 50%;
    opacity: .7;
}

/* How It Works inline steps */
.rzn-how-steps-inline { display: flex; flex-direction: column; gap: 18px; margin-top: 16px; }
.rzn-how-step-inline { display: flex; align-items: flex-start; gap: 18px; }
.rzn-step-num {
    flex-shrink: 0;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: #E11D48;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    display: flex; align-items: center; justify-content: center;
}
.rzn-how-step-inline strong { display: block; color: #111827; font-weight: 600; margin-bottom: 4px; }
.rzn-how-step-inline p { color: #6B7280; font-size: 14px; margin: 0; }

/* Why grid */
.rzn-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 16px;
}
.rzn-why-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: #FFF1F2;
    border-radius: 10px;
    border: 1px solid #FECDD3;
}
.rzn-why-item > i {
    font-size: 1.25rem;
    color: #E11D48;
    margin-top: 2px;
    flex-shrink: 0;
}
.rzn-why-item strong { display: block; font-weight: 600; color: #111827; margin-bottom: 4px; font-size: 14px; }
.rzn-why-item p { color: #6B7280; font-size: 13px; margin: 0; line-height: 1.55; }

/* CTA block */
.rzn-page-cta {
    margin-top: 8px;
    background: linear-gradient(135deg, #1A0010, #BE123C);
    border-radius: 14px;
    padding: 36px 32px;
    text-align: center;
    color: #fff;
}
.rzn-page-cta h3 { color: #fff; font-size: 1.4rem; margin-bottom: 8px; }
.rzn-page-cta p { color: #FECDD3; margin-bottom: 20px; }
.rzn-page-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #E11D48;
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: background .2s, transform .15s;
}
.rzn-page-cta-btn:hover { background: #BE123C; transform: translateY(-1px); }
.rzn-static-content .rzn-page-cta-btn,
.rzn-static-content .rzn-page-cta-btn:hover {
    color: #fff;
    text-decoration: none;
}

/* ── Contact Page ─── */
.rzn-static-body .uh-contact-grid {
    max-width: 960px;
    margin: 0 auto;
}

/* ── Responsive ─── */
@media (max-width: 768px) {
    .rzn-static-card { padding: 28px 20px; }
    .rzn-why-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .rzn-inner-hero { padding: 36px 0 28px; }
}


/* =========================================================
   COMPREHENSIVE RESPONSIVE FIXES — All device sizes
   ========================================================= */

/* ── Announcement bar ─── */
@media (max-width: 480px) {
    .uh-countdown-strip { font-size: 11px; padding: 7px 12px; }
    .uh-countdown-inner { gap: 6px; }
    .uh-countdown-cta { padding: 4px 10px; font-size: 11px; }
}

/* ── Header / Nav ─── */
@media (max-width: 400px) {
    .uh-logo-name { font-size: 16px; }
    .uh-btn-pill { padding: 6px 12px !important; font-size: 12px !important; }
}

/* ── rzn Hero ─── */
@media (max-width: 480px) {
    .rzn-hero { padding: 48px 0 56px; }
    .rzn-hero h1 { font-size: 1.75rem; letter-spacing: -0.5px; }
    .rzn-hero-desc { font-size: 14px; margin-bottom: 24px; }
    .rzn-hero-eyebrow { flex-wrap: wrap; justify-content: center; gap: 6px; margin-bottom: 16px; }
    .rzn-hero-popular { gap: 6px; }
    .rzn-popular-tag { font-size: 11px; padding: 3px 10px; }
    .rzn-search-bar { border-radius: 12px; padding: 4px 4px 4px 14px; }
    .rzn-search-bar input { font-size: 14px; }
    .rzn-search-bar button { border-radius: 9px; padding: 9px 14px; font-size: 13px; }
    .rzn-hero-trust { gap: 10px; }
}
@media (max-width: 360px) {
    .rzn-hero h1 { font-size: 1.5rem; }
    .rzn-popular-label { display: none; }
}

/* ── Category bar ─── */
@media (max-width: 480px) {
    .rzn-cats-bar { padding: 12px 0; }
    .rzn-cat-tile { min-width: 64px; }
    .rzn-cat-tile-icon { width: 44px; height: 44px; font-size: 17px; border-radius: 12px; }
    .rzn-cat-tile-name { font-size: 10px; }
}

/* ── Deals Section ─── */
@media (max-width: 540px) {
    .rzn-deals-section { padding: 32px 0; }
    .rzn-tab-nav { overflow-x: auto; scrollbar-width: none; flex-wrap: nowrap; width: 100%; }
    .rzn-tab-nav::-webkit-scrollbar { display: none; }
    .rzn-tab-btn { white-space: nowrap; font-size: 12px; padding: 7px 12px; }
    .rzn-pane-header { flex-direction: column; align-items: flex-start; gap: 8px; }
    .rzn-see-all { align-self: flex-start; }
    .rzn-pane-header h2 { font-size: 1.1rem; }
}
@media (max-width: 480px) {
    .rzn-feed-card { border-radius: 10px; }
    .rzn-feed-body { padding: 10px 12px; }
    .rzn-feed-title { font-size: 13px; }
    .rzn-feed-action { padding: 10px 12px; }
    .rzn-code-wrap { border-radius: 6px; }
}

/* ── How It Works ─── */
@media (max-width: 480px) {
    .rzn-how { padding: 40px 0; }
    .rzn-how-header h2 { font-size: 1.4rem; }
    .rzn-how-steps { gap: 20px; }
    .rzn-how-step { max-width: 100%; padding: 0 12px; }
    .rzn-how-step-icon { width: 52px; height: 52px; font-size: 20px; }
}

/* ── Stats bar ─── */
@media (max-width: 480px) {
    .rzn-stat-item { padding: 24px 10px; }
    .rzn-stat-val { font-size: 1.75rem; }
    .rzn-stat-ico { font-size: 20px; margin-bottom: 8px; }
    .rzn-stat-lbl { font-size: 12px; }
}

/* ── Store Belt ─── */
@media (max-width: 480px) {
    .rzn-stores-section { padding: 40px 0; }
    .rzn-belt-card { min-width: 100px; padding: 14px 10px; }
    .rzn-belt-logo { width: 44px; height: 44px; }
    .rzn-belt-fb { width: 44px; height: 44px; font-size: 18px; }
    .rzn-stores-header h2 { font-size: 1.2rem; }
}

/* ── Newsletter ─── */
@media (max-width: 540px) {
    .rzn-newsletter { padding: 48px 0; }
    .rzn-newsletter h2 { font-size: 1.55rem; }
    .rzn-newsletter p { font-size: 14px; }
    .rzn-nl-row {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 10px 14px;
        border-radius: 12px;
    }
    .rzn-nl-ico { display: none; }
    .rzn-nl-row input { font-size: 14px; padding: 0; }
    .rzn-nl-row button { width: 100%; border-radius: 9px; padding: 12px; justify-content: center; display: flex; align-items: center; }
    .rzn-nl-trust { flex-direction: column; gap: 8px; align-items: center; }
}
@media (max-width: 480px) {
    .rzn-newsletter { padding: 36px 0; }
    .rzn-nl-icon { font-size: 30px; margin-bottom: 12px; }
}

/* ── Blog section ─── */
@media (max-width: 480px) {
    .rzn-blog-section { padding: 40px 0; }
    .rzn-blog-header h2 { font-size: 1.2rem; }
    .rzn-blog-img-link { height: 150px; }
    .rzn-blog-body { padding: 14px; }
}

/* ── Sidebar newsletter box ─── */
@media (max-width: 480px) {
    .rzn-sidebar-nl { flex-direction: column; }
    .rzn-sidebar-nl input { padding: 10px 12px; }
    .rzn-sidebar-nl button { padding: 10px; border-top: 1px solid #E5E7EB; font-size: 13px; }
}

/* ── Store Page — Coupon Header ─── */
@media (max-width: 640px) {
    .rzn-coupons-header { gap: 12px; }
    .rzn-coupons-controls { flex-wrap: wrap; gap: 8px; }
    .rzn-filter-tabs { order: 1; flex: 1 1 100%; overflow-x: auto; scrollbar-width: none; }
    .rzn-filter-tabs::-webkit-scrollbar { display: none; }
    .rzn-filter-tab { white-space: nowrap; }
}
@media (max-width: 480px) {
    .rzn-store-hero { padding: 24px 0 28px; }
    .rzn-store-hero-logo { width: 72px; height: 72px; border-radius: 14px; }
    .rzn-store-hero-info h1 { font-size: 1.35rem; }
    .rzn-store-hero-actions { gap: 8px; }
    .rzn-store-action-btn { font-size: 12px; padding: 7px 14px; }
    .rzn-store-cats-bar { padding: 10px 0; }
    .rzn-store-cat-tag { font-size: 12px; padding: 5px 12px; }
    .rzn-coupons-section { padding: 20px 0 40px; }
    .rzn-coupons-header h2 { font-size: 1rem; }
    .rzn-about-card { padding: 20px; }
    .rzn-related-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Static Pages (About/Privacy/Terms) ─── */
@media (max-width: 480px) {
    .rzn-inner-hero { padding: 28px 0 22px; }
    .rzn-inner-hero h1 { font-size: 1.5rem; }
    .rzn-static-body { padding: 28px 0 52px; }
    .rzn-static-card { padding: 20px 16px; border-radius: 12px; }
    .rzn-static-content .rzn-page-intro { padding: 14px 16px; border-radius: 0 10px 10px 0; }
    .rzn-static-content .rzn-lead { font-size: 1rem; }
    .rzn-static-content .rzn-page-section h2 { font-size: 1.1rem; }
    .rzn-page-cta { padding: 24px 18px; border-radius: 10px; }
    .rzn-page-cta h3 { font-size: 1.2rem; }
    .rzn-page-cta-btn { padding: 10px 20px; font-size: 14px; }
}

/* ── Contact Page ─── */
@media (max-width: 640px) {
    .uh-contact-form-card { padding: 20px 16px 18px; border-radius: 14px; }
    .uh-form-row { flex-direction: column; gap: 0; }
}
@media (max-width: 480px) {
    .uh-contact-info h2 { font-size: 1.15rem; }
    .uh-contact-cards { gap: 10px; }
    .uh-contact-submit { width: 100%; justify-content: center; }
}

/* ── Footer fine-tune ─── */
@media (max-width: 480px) {
    .uh-footer-inner { padding: 36px 0 0; }
    .uh-footer-grid { gap: 20px; }
    .uh-footer-logo-mark { font-size: 18px; }
    .uh-footer-bottom-links { flex-wrap: wrap; gap: 8px; }
    .uh-footer-dot { display: none; }
}
@media (max-width: 360px) {
    .uh-footer-bottom-links a { font-size: 11px; }
    .uh-footer-bottom-copy { font-size: 11px; }
}

/* ═══════════════════════════════════════════════════════════════
   RASPBERRY — RESPONSIVE AUDIT v3
   Full device coverage: 1280 → 1024 → 900 → 768 → 640 → 480 → 360
   ═══════════════════════════════════════════════════════════════ */

/* ── 1280px: large tablet / mid-laptop ─────────────────────── */
@media (max-width: 1280px) {
    .rzn-deals-wrap { grid-template-columns: 1fr 300px; }
}

/* ── 1024px: compress desktop nav before it overflows ──────── */
@media (max-width: 1024px) {
    .nav-list { gap: 0; }
    .nav-link { font-size: 13px; padding: 6px 9px; }
    .uh-header-search { max-width: 240px; }
    .uh-btn-pill { padding: 6px 14px !important; font-size: 13px !important; }
    .rzn-hero h1 { font-size: 2.6rem; }
}

/* ── 900px: hamburger + full mobile nav ─────────────────────── */
@media (max-width: 900px) {
    /* Switch to hamburger */
    .uh-header-search { display: none !important; }
    .header-search-btn { display: flex !important; }
    .hamburger { display: flex !important; }
    .main-nav { display: none !important; }
    .mobile-menu { display: block !important; }
    .uh-login-link { display: none !important; }

    /* rzn hero */
    .rzn-hero { padding: 72px 0 88px; }
    .rzn-hero h1 { font-size: 2.2rem; }

    /* Deals: sidebar drops below, goes 2-col inline */
    .rzn-deals-wrap { grid-template-columns: 1fr; }
    .rzn-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

    /* How it works */
    .rzn-how-steps { flex-wrap: wrap; justify-content: center; }
    .rzn-how-arrow { display: none; }
    .rzn-how-step { max-width: 200px; }

    /* Blog */
    .rzn-blog-grid { grid-template-columns: 1fr 1fr; }
    .rzn-blog-section { padding: 48px 0; }

    /* Store page: hide counter, tighten hero */
    .rzn-store-hero-counter { display: none !important; }
    .rzn-store-hero-inner { gap: 16px; }

    /* Footer grid: 2 columns */
    .uh-footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ── 768px: tablet portrait ─────────────────────────────────── */
@media (max-width: 768px) {
    /* rzn hero */
    .rzn-hero { padding: 60px 0 76px; }
    .rzn-hero h1 { font-size: 2rem; }
    .rzn-hero-desc { font-size: 15px; }
    .rzn-hero-popular { gap: 6px; }
    .rzn-popular-label { font-size: 12px; }

    /* Category bar */
    .rzn-cat-tile { min-width: 70px; }
    .rzn-cat-tile-icon { width: 46px; height: 46px; font-size: 18px; }
    .rzn-cat-tile-name { font-size: 11px; }

    /* Deals */
    .rzn-deals-section { padding: 44px 0; }
    .rzn-pane-header { flex-wrap: wrap; gap: 8px; }

    /* Sidebar: single column at 768 (overrides 2-col from 900px) */
    .rzn-sidebar { grid-template-columns: 1fr; }

    /* Blog */
    .rzn-blog-grid { grid-template-columns: 1fr 1fr; }

    /* Newsletter */
    .rzn-newsletter h2 { font-size: 1.7rem; }

    /* Store hero */
    .rzn-store-hero { padding: 28px 0 32px; }
    .rzn-store-hero-logo { width: 80px; height: 80px; border-radius: 16px; }
    .rzn-store-hero-info h1 { font-size: 1.55rem; }
    .rzn-store-action-btn { font-size: 13px; padding: 8px 16px; }

    /* Inner page hero */
    .rzn-inner-hero { padding: 44px 0 36px; }
    .rzn-inner-hero h1 { font-size: 1.8rem; }

    /* About / why grid */
    .rzn-why-grid { grid-template-columns: 1fr 1fr; }

    /* Contact */
    .uh-contact-grid { grid-template-columns: 1fr !important; }
    .uh-contact-info { order: 2; }
    .uh-contact-form-card { order: 1; }
}

/* ── 640px overrides (already exist, add missing pieces) ─────── */
@media (max-width: 640px) {
    /* Blog single col */
    .rzn-blog-grid { grid-template-columns: 1fr !important; }

    /* How it works single col */
    .rzn-how-step { max-width: 280px; }

    /* Footer single col */
    .uh-footer-grid { grid-template-columns: 1fr !important; gap: 24px; }
    .uh-footer-top { flex-direction: column; gap: 16px; align-items: flex-start; }
    .uh-footer-bottom { flex-direction: column; gap: 8px; align-items: flex-start; }
    .uh-footer-bottom-links { flex-wrap: wrap; gap: 10px; }

    /* Inner hero */
    .rzn-inner-hero { padding: 36px 0 28px; }
    .rzn-inner-hero h1 { font-size: 1.6rem; }

    /* Why grid */
    .rzn-why-grid { grid-template-columns: 1fr; }

    /* How-steps inline (about page) */
    .rzn-how-steps-inline { flex-direction: column; gap: 12px; }

    /* Store page coupons: 1-col coupon card */
    .rzn-coupon-card { flex-direction: column; }
    .rzn-coupon-action { width: 100%; border-left: none; border-top: 1px solid #F3F4F6; }
}

/* ── 480px overrides ─────────────────────────────────────────── */
@media (max-width: 480px) {
    /* Container tighter */
    .container { padding: 0 16px; }

    /* Store hero */
    .rzn-store-hero { padding: 20px 0 24px; }
    .rzn-store-hero-logo { width: 64px; height: 64px; border-radius: 12px; }
    .rzn-store-hero-info h1 { font-size: 1.25rem; }
    .rzn-store-hero-inner { gap: 12px; }
    .rzn-store-action-btn { font-size: 12px; padding: 7px 12px; }

    /* Inner hero */
    .rzn-inner-hero h1 { font-size: 1.4rem; }

    /* Static page card */
    .rzn-static-card { padding: 20px 14px; }

    /* Newsletter */
    .rzn-newsletter { padding: 36px 0; }
    .rzn-newsletter h2 { font-size: 1.4rem; }

    /* Blog */
    .rzn-blog-section { padding: 36px 0; }
    .rzn-blog-img-link { height: 140px; }
}

/* ── 360px: smallest phones ─────────────────────────────────── */
@media (max-width: 360px) {
    .container { padding: 0 12px; }
    .site-logo img { height: 30px; }
    .uh-logo-text { font-size: 1.15rem; }
    .uh-btn-pill { padding: 5px 10px !important; font-size: 11px !important; }

    .rzn-hero h1 { font-size: 1.45rem; }
    .rzn-hero-desc { font-size: 13px; }
    .rzn-search-bar input::placeholder { font-size: 12px; }

    .rzn-stat-item { padding: 20px 8px; }
    .rzn-stat-val { font-size: 1.5rem; }

    .rzn-newsletter h2 { font-size: 1.2rem; }
    .rzn-newsletter p { font-size: 13px; }

    .uh-footer-bottom-links a { font-size: 10px; }
    .uh-footer-bottom-copy { font-size: 10px; }
}
