/* =========================================================
   EERR Trading — Design System
   Tokens · Typography · Layout · Components · Responsive
   ========================================================= */

:root {
    /* Brand — sampled from the updated EERR badge logo:
       deep cool navy on the wordmark, brighter leaf green on the swoosh. */
    --eerr-primary: #1d3a60;
    --eerr-primary-dark: #122846;
    --eerr-primary-darker: #07142c;
    --eerr-accent: #5fb52e;
    --eerr-accent-dark: #418722;
    --eerr-accent-soft: #e6f4d2;

    /* Neutrals */
    --eerr-ink: #0c1933;
    --eerr-body: #2c3a52;
    --eerr-muted: #6a7689;
    --eerr-line: #e3e7ef;
    --eerr-bg: #f7f9fc;
    --eerr-bg-alt: #eef2f8;
    --eerr-white: #ffffff;

    /* Type */
    --eerr-font-sans: "Manrope", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
    --eerr-font-display: "Playfair Display", "Georgia", "Times New Roman", serif;

    /* Radius */
    --eerr-radius-sm: 8px;
    --eerr-radius: 14px;
    --eerr-radius-lg: 22px;

    /* Shadows */
    --eerr-shadow-sm: 0 1px 2px rgba(15, 32, 29, 0.05), 0 1px 1px rgba(15, 32, 29, 0.04);
    --eerr-shadow: 0 6px 18px rgba(15, 32, 29, 0.07), 0 2px 6px rgba(15, 32, 29, 0.04);
    --eerr-shadow-lg: 0 18px 40px rgba(15, 32, 29, 0.12), 0 6px 14px rgba(15, 32, 29, 0.06);

    /* Motion */
    --eerr-ease: cubic-bezier(.2,.7,.2,1);
}

/* ===== Base ===== */
html { scroll-behavior: smooth; }

body {
    background-color: var(--eerr-bg);
    color: var(--eerr-body);
    font-family: var(--eerr-font-sans);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===== Background base =====
   A single static gradient sets the brand tone. All motion lives in
   .eerr-bg-fx (orbs + spotlight), so layers don't compete. */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background: linear-gradient(135deg, #f7f9fc 0%, #eaf0fa 40%, #ecf6dc 72%, #e4f0fb 100%);
    background-size: 220% 220%;
    animation: eerr-bg-breathe 32s ease-in-out infinite alternate;
    pointer-events: none;
}
/* Gentle "breathing" of the base gradient — slow enough to feel alive, not busy. */
@keyframes eerr-bg-breathe {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 45%; }
    100% { background-position: 55% 100%; }
}

h1, h2, h3, h4, h5 {
    font-family: var(--eerr-font-display);
    color: var(--eerr-ink);
    letter-spacing: -0.01em;
    line-height: 1.2;
}
h1 { font-weight: 700; }
h2 { font-weight: 700; }
h3 { font-weight: 600; }

p { color: var(--eerr-body); }
a { color: var(--eerr-primary); text-underline-offset: 2px; }
a:hover { color: var(--eerr-primary-dark); }

.lead {
    font-size: 1.12rem;
    color: var(--eerr-muted);
    line-height: 1.6;
}

/* Page container tweak */
.body-content {
    margin-top: 0;
    padding-left: 16px;
    padding-right: 16px;
}
@media screen and (min-width: 768px) {
    .body-content { padding: 0; }
}

input.form-control, select.form-select, textarea.form-control { max-width: 100%; }
/* Keep long/unbroken input text inside its field so it never overflows or overlaps
   adjacent content on any form across the site. */
textarea.form-control { overflow-wrap: anywhere; word-break: break-word; }
input.form-control { text-overflow: ellipsis; }
.form-control, .form-select {
    border-radius: var(--eerr-radius-sm);
    border-color: var(--eerr-line);
    padding: 0.6rem 0.85rem;
    transition: border-color 0.15s var(--eerr-ease), box-shadow 0.15s var(--eerr-ease);
}
.form-control:focus, .form-select:focus {
    border-color: var(--eerr-primary);
    box-shadow: 0 0 0 0.18rem rgba(26,58,110,0.18);
}
.form-label { font-weight: 600; color: var(--eerr-ink); }

/* ===== Navbar ===== */
.eerr-navbar {
    background: rgba(255,255,255,0.92);
    backdrop-filter: saturate(120%) blur(8px);
    border-bottom: 1px solid var(--eerr-line);
    padding-top: 14px;
    padding-bottom: 14px;
    position: sticky;
    top: 0;
    z-index: 1030;
}
.eerr-navbar .navbar-brand,
.eerr-navbar .eerr-brand-link {
    color: var(--eerr-ink);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    padding: 0;
}
.eerr-navbar .navbar-brand:hover,
.eerr-navbar .eerr-brand-link:hover { color: var(--eerr-primary); }

.eerr-brand-img {
    height: 48px;
    width: auto;
    display: block;
}
.eerr-brand-text {
    display: inline-flex;
    flex-direction: column;
    line-height: 1.1;
}
.eerr-brand-name {
    font-family: var(--eerr-font-display);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--eerr-ink);
    letter-spacing: 0.2px;
}
.eerr-brand-tagline {
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: var(--eerr-accent-dark);
    font-weight: 700;
    margin-top: 2px;
}

.eerr-navbar .nav-link {
    color: var(--eerr-ink) !important;
    font-weight: 500;
    padding: 0.5rem 0.85rem !important;
    border-radius: 8px;
    transition: background-color 0.15s var(--eerr-ease), color 0.15s var(--eerr-ease);
}
.eerr-navbar .nav-link:hover {
    color: var(--eerr-primary-dark) !important;
    background: var(--eerr-bg-alt);
}
.eerr-navbar .nav-link.eerr-cta-link {
    color: var(--eerr-white) !important;
    background: var(--eerr-primary);
    margin-left: 6px;
}
.eerr-navbar .nav-link.eerr-cta-link:hover {
    background: var(--eerr-primary-dark);
    color: var(--eerr-white) !important;
}
.eerr-navbar .navbar-toggler {
    border-color: var(--eerr-line);
}

/* ===== Hero ===== */
.eerr-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(1200px 500px at -10% -20%, rgba(109,181,47,0.22), transparent 60%),
        radial-gradient(900px 600px at 110% 110%, rgba(26,58,110,0.30), transparent 55%),
        linear-gradient(135deg, var(--eerr-primary-darker) 0%, var(--eerr-primary-dark) 55%, var(--eerr-primary) 100%);
    color: #fff;
    border-radius: var(--eerr-radius-lg);
    padding: 72px 48px 80px;
    margin: 28px 0 40px;
    box-shadow: var(--eerr-shadow-lg);
}
.eerr-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(255,255,255,0.08) 1px, transparent 0);
    background-size: 28px 28px;
    opacity: 0.5;
    pointer-events: none;
}
.eerr-hero .eerr-hero-inner {
    position: relative;
    max-width: 760px;
}
.eerr-hero .eerr-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--eerr-accent);
    background: rgba(109,181,47,0.18);
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 18px;
}
.eerr-hero h1 {
    color: #fff;
    font-size: clamp(2rem, 4.4vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 18px;
}
.eerr-hero .lead {
    color: rgba(255,255,255,0.88);
    font-size: 1.15rem;
    max-width: 620px;
    margin-bottom: 28px;
}
.eerr-hero .btn { padding: 0.7rem 1.4rem; font-weight: 600; }

.eerr-hero-stats {
    position: relative;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.18);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    max-width: 760px;
}
.eerr-hero-stat-num {
    font-family: var(--eerr-font-display);
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    font-weight: 700;
    color: var(--eerr-accent);
    line-height: 1;
    margin-bottom: 6px;
}
.eerr-hero-stat-label {
    color: rgba(255,255,255,0.78);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
}

/* Eyebrow on light backgrounds */
.eerr-eyebrow-light {
    color: var(--eerr-primary-dark);
    background: var(--eerr-bg-alt);
    border: 1px solid var(--eerr-line);
    text-transform: uppercase;
    letter-spacing: 1.6px;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 11px;
    border-radius: 999px;
    display: inline-block;
}

/* Featured ribbon on product image */
.eerr-ribbon {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(120deg, var(--eerr-accent), #98d057);
    color: #0e2010;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 999px;
    box-shadow: var(--eerr-shadow-sm);
    z-index: 1;
}

/* Stock pill */
.eerr-stock-pill {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 9px;
    border-radius: 999px;
    border: 1px solid transparent;
}
.eerr-stock-pill.in   { background: #e8f4ee; color: #0e5536; border-color: #c8e4d3; }
.eerr-stock-pill.low  { background: #fff5db; color: #6b4a00; border-color: #f3dca0; }
.eerr-stock-pill.out  { background: #fbe8ea; color: #6b1a22; border-color: #f0c5cb; }

/* Filter bar (Products page) */
.eerr-filter-bar {
    background: var(--eerr-white);
    border: 1px solid var(--eerr-line);
    border-radius: var(--eerr-radius);
    padding: 14px;
    box-shadow: var(--eerr-shadow-sm);
    margin-bottom: 18px;
}
.eerr-search-wrap { position: relative; }
.eerr-search-wrap .eerr-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--eerr-muted);
    pointer-events: none;
    display: inline-flex;
}
.eerr-search-wrap .eerr-search-icon svg { width: 18px; height: 18px; }
.eerr-search-input { padding-left: 40px !important; }
.eerr-results-meta {
    color: var(--eerr-muted);
    font-size: 0.95rem;
    margin-bottom: 14px;
}
.eerr-results-meta strong { color: var(--eerr-ink); font-weight: 700; }

/* Brand mark for auth/empty pages */
.eerr-brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.eerr-brand-mark-img {
    height: 88px;
    width: auto;
    display: block;
}
.eerr-brand-mark-name {
    font-family: var(--eerr-font-display);
    font-weight: 700;
    color: var(--eerr-ink);
    font-size: 1.2rem;
}

/* Info card (About sidebar) */
.eerr-info-card {
    background: var(--eerr-white);
    border: 1px solid var(--eerr-line);
    border-radius: var(--eerr-radius);
    box-shadow: var(--eerr-shadow-sm);
    padding: 22px;
}
.eerr-info-card h5 {
    font-family: var(--eerr-font-sans);
    font-weight: 800;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--eerr-muted);
    margin: 0 0 12px;
}
.eerr-info-card .eerr-info-list { list-style: none; padding: 0; margin: 0; }
.eerr-info-card .eerr-info-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--eerr-line);
    color: var(--eerr-body);
    display: flex;
    align-items: center;
    gap: 10px;
}
.eerr-info-card .eerr-info-list li:last-child { border-bottom: 0; }
.eerr-info-card .eerr-info-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: linear-gradient(135deg, var(--eerr-primary), var(--eerr-accent));
    flex-shrink: 0;
}
.eerr-info-card .eerr-info-icon {
    flex: 0 0 36px;
    width: 36px; height: 36px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(26,58,110,0.10), rgba(109,181,47,0.18));
    color: var(--eerr-primary-dark);
}
.eerr-info-card .eerr-info-icon svg { width: 18px; height: 18px; }
.eerr-info-card .eerr-info-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--eerr-muted);
    margin-bottom: 2px;
}

/* Auth (login/logout) panel */
.eerr-auth-card {
    background: var(--eerr-white);
    border: 1px solid var(--eerr-line);
    border-radius: var(--eerr-radius);
    padding: 32px;
    box-shadow: var(--eerr-shadow);
    position: relative;
    overflow: hidden;
}
.eerr-auth-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--eerr-primary) 0%, var(--eerr-accent) 100%);
}
.eerr-auth-hint {
    background: var(--eerr-bg-alt);
    border: 1px dashed var(--eerr-line);
    border-radius: var(--eerr-radius-sm);
    padding: 12px 14px;
    color: var(--eerr-muted);
    font-size: 0.85rem;
    margin-top: 18px;
}
.eerr-auth-hint code {
    background: var(--eerr-white);
    border: 1px solid var(--eerr-line);
    color: var(--eerr-primary-dark);
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 0.85em;
}

/* About story */
.eerr-story p { margin-bottom: 1.05rem; }
.eerr-story p:last-child { margin-bottom: 0; }

/* ===== Page header (interior pages) ===== */
.eerr-page-header {
    margin: 36px 0 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--eerr-line);
}
.eerr-page-header h1 {
    color: var(--eerr-ink);
    margin: 0 0 6px;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
}
.eerr-page-header .lead {
    margin: 0;
    color: var(--eerr-muted);
}

/* ===== Section helpers ===== */
.eerr-section { margin: 56px 0; }
.eerr-section-title {
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    margin-bottom: 8px;
}
.eerr-section-sub {
    color: var(--eerr-muted);
    margin-bottom: 28px;
}

/* ===== Category cards ===== */
.eerr-cat-card {
    border: 1px solid var(--eerr-line);
    border-radius: var(--eerr-radius);
    background: var(--eerr-white);
    box-shadow: var(--eerr-shadow-sm);
    transition: transform 0.2s var(--eerr-ease), box-shadow 0.2s var(--eerr-ease), border-color 0.2s var(--eerr-ease);
    overflow: hidden;
}
.eerr-cat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--eerr-shadow-lg);
    border-color: rgba(26,58,110,0.4);
}
.eerr-cat-card .card-body { padding: 28px; }
.eerr-cat-card .card-title {
    font-family: var(--eerr-font-display);
    font-size: 1.4rem;
    margin: 16px 0 8px;
}
.eerr-cat-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(26,58,110,0.10), rgba(109,181,47,0.18));
    color: var(--eerr-primary-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.eerr-cat-icon svg { width: 30px; height: 30px; }

/* ===== Product cards ===== */
.eerr-product-card {
    position: relative;
    border: 1px solid var(--eerr-line);
    border-radius: var(--eerr-radius);
    background: var(--eerr-white);
    box-shadow: var(--eerr-shadow-sm);
    transition: transform 0.2s var(--eerr-ease), box-shadow 0.2s var(--eerr-ease);
    overflow: hidden;
}
.eerr-product-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--eerr-shadow-lg);
}
.eerr-product-img {
    height: 180px;
    background:
        linear-gradient(135deg, #eef2fa 0%, #d8e2f3 100%);
    background-size: cover;
    background-position: center;
    color: var(--eerr-primary-dark);
    font-family: var(--eerr-font-display);
    font-weight: 600;
    letter-spacing: 0.4px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.eerr-product-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.04));
    pointer-events: none;
}
.eerr-product-card .card-body { padding: 18px 18px 12px; }
.eerr-product-card .card-title {
    font-family: var(--eerr-font-sans);
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--eerr-ink);
    line-height: 1.3;
    margin: 8px 0 6px;
}
.eerr-product-card .card-text {
    color: var(--eerr-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}
.eerr-product-card .card-footer {
    background: transparent;
    border-top: 1px solid var(--eerr-line);
    padding: 14px 18px;
}
.eerr-product-card .badge {
    background: var(--eerr-bg-alt) !important;
    color: var(--eerr-primary-dark) !important;
    font-weight: 600;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 0.72rem;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}
.eerr-price {
    font-family: var(--eerr-font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--eerr-primary-dark);
}

/* ===== Blurred (Coming Soon) products & categories =====
   Only the image is blurred; the title, description, price/stock
   stay readable so customers can still browse what we'll carry. */
.eerr-product-card--blurred { position: relative; overflow: hidden; }
.eerr-product-card--blurred .eerr-product-img {
    filter: blur(10px) saturate(0.8);
    transform: scale(1.05);
}
.eerr-product-card--blurred:hover .eerr-product-img {
    filter: blur(10px) saturate(0.8);
    transform: scale(1.05);
}
.eerr-product-card--blurred::after {
    content: "Coming Soon";
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-4deg);
    background: rgba(14,37,72,0.92);
    color: #fff;
    font-family: var(--eerr-font-sans);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 999px;
    border: 2px solid rgba(255,255,255,0.6);
    box-shadow: var(--eerr-shadow);
    z-index: 4;
    pointer-events: none;
    white-space: nowrap;
}
@media (max-width: 767.98px) {
    .eerr-product-card--blurred::after { top: 75px; }
}

.eerr-cat-card--blurred { position: relative; overflow: hidden; }
.eerr-cat-card--blurred > .card-body {
    filter: blur(2px);
    opacity: 0.7;
    user-select: none;
}
.eerr-cat-card--blurred::after {
    content: "Coming Soon";
    position: absolute;
    top: 12px; right: 12px;
    background: var(--eerr-primary-dark);
    color: #fff;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 999px;
    z-index: 2;
}

.eerr-blurred-banner {
    background: linear-gradient(120deg, rgba(26,58,110,0.06), rgba(109,181,47,0.10));
    border: 1px dashed rgba(26,58,110,0.35);
    border-radius: var(--eerr-radius);
    padding: 18px 22px;
    margin-bottom: 20px;
    color: var(--eerr-ink);
    font-size: 0.95rem;
}
.eerr-blurred-banner strong { color: var(--eerr-primary-dark); }

/* ===== Buttons ===== */
.btn {
    border-radius: 10px;
    font-weight: 600;
    transition: transform 0.1s var(--eerr-ease), box-shadow 0.15s var(--eerr-ease), background-color 0.15s var(--eerr-ease);
}
.btn:active { transform: translateY(1px); }
.btn-primary {
    background-color: var(--eerr-primary);
    border-color: var(--eerr-primary);
}
.btn-primary:hover, .btn-primary:focus {
    background-color: var(--eerr-primary-dark);
    border-color: var(--eerr-primary-dark);
}
.btn-outline-primary {
    color: var(--eerr-primary);
    border-color: var(--eerr-primary);
}
.btn-outline-primary:hover {
    background-color: var(--eerr-primary);
    border-color: var(--eerr-primary);
    color: #fff;
}
.btn-link {
    color: var(--eerr-primary);
    font-weight: 600;
    text-decoration: none;
}
.btn-link:hover { color: var(--eerr-primary-dark); }

/* Hero buttons on dark background */
.eerr-hero .btn-outline-light {
    border-color: rgba(255,255,255,0.7);
    color: #fff;
}
.eerr-hero .btn-outline-light:hover {
    background-color: #fff;
    color: var(--eerr-primary-dark);
}

/* ===== Values strip ===== */
.eerr-values {
    border: 1px solid var(--eerr-line);
    border-radius: var(--eerr-radius);
    background: var(--eerr-white);
    box-shadow: var(--eerr-shadow-sm);
    padding: 24px;
}
.eerr-value {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.eerr-value .eerr-value-icon {
    width: 42px; height: 42px;
    border-radius: 12px;
    background: var(--eerr-accent-soft);
    color: var(--eerr-primary-dark);
    display: inline-flex; align-items: center; justify-content: center;
    flex: 0 0 42px;
}
.eerr-value h5 { font-family: var(--eerr-font-sans); font-weight: 700; font-size: 1rem; margin: 0 0 4px; color: var(--eerr-ink); }
.eerr-value p { margin: 0; color: var(--eerr-muted); font-size: 0.92rem; }

/* ===== CTA ===== */
.eerr-cta {
    background: linear-gradient(120deg, var(--eerr-accent) 0%, #98d057 100%);
    color: #0e2010;
    border-radius: var(--eerr-radius-lg);
    padding: 36px;
    box-shadow: var(--eerr-shadow);
}
.eerr-cta h3 { font-family: var(--eerr-font-display); margin: 0 0 4px; color: #0e2010; }
.eerr-cta p { color: rgba(0,0,0,0.7); }

/* ===== Form card ===== */
.eerr-form-card {
    background: var(--eerr-white);
    border: 1px solid var(--eerr-line);
    border-radius: var(--eerr-radius);
    padding: 28px;
    box-shadow: var(--eerr-shadow-sm);
}
/* Product preview shown on the Contact page when arriving from an "Inquire" link. */
.eerr-inquire-product {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    margin-bottom: 16px;
    border: 1px solid var(--eerr-line);
    border-radius: var(--eerr-radius);
    background: var(--eerr-white);
    box-shadow: var(--eerr-shadow-sm);
}
.eerr-inquire-product img {
    width: 76px;
    height: 76px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--eerr-line);
    flex: 0 0 auto;
}
.eerr-inquire-product strong {
    display: block;
    font-family: var(--eerr-font-display);
    font-size: 1.1rem;
}
/* Feedback radio group rendered via RepeatLayout="UnorderedList" */
.eerr-radio {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
}
.eerr-radio li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid var(--eerr-line);
    border-radius: 999px;
    background: var(--eerr-white);
    transition: border-color .15s ease, background .15s ease;
}
.eerr-radio li:hover { border-color: var(--eerr-primary); }
.eerr-radio input[type="radio"] {
    accent-color: var(--eerr-primary);
    margin: 0;
    width: 16px;
    height: 16px;
}
.eerr-radio label {
    margin: 0;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--eerr-body);
    line-height: 1.2;
}

/* ===== FAQ accordion ===== */
.accordion-item {
    border: 1px solid var(--eerr-line);
    margin-bottom: 10px;
    border-radius: var(--eerr-radius-sm) !important;
    overflow: hidden;
    box-shadow: var(--eerr-shadow-sm);
}
.accordion-button {
    font-weight: 600;
    color: var(--eerr-ink);
    background-color: var(--eerr-white);
    padding: 18px 20px;
}
.accordion-button:not(.collapsed) {
    background-color: var(--eerr-bg-alt);
    color: var(--eerr-primary-dark);
    box-shadow: none;
}
.accordion-button:focus { box-shadow: 0 0 0 0.18rem rgba(26,58,110,0.18); }
.accordion-body { color: var(--eerr-body); }

/* ===== Alerts (subtle) ===== */
.alert {
    border-radius: var(--eerr-radius-sm);
    border: 1px solid transparent;
}
.alert-success { background: #e8f4ee; color: #0e5536; border-color: #c8e4d3; }
.alert-info    { background: #e8f1f4; color: #0a3a4a; border-color: #c8dde4; }
.alert-danger  { background: #fbe8ea; color: #6b1a22; border-color: #f0c5cb; }

/* ===== Stats (admin) ===== */
.eerr-stat {
    border: 1px solid var(--eerr-line);
    border-radius: var(--eerr-radius);
    background: var(--eerr-white);
    box-shadow: var(--eerr-shadow-sm);
}
.eerr-stat-num {
    font-family: var(--eerr-font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--eerr-primary-dark);
}
.eerr-stat-label {
    color: var(--eerr-muted);
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
}
.eerr-unread { background-color: #fff8e0 !important; }
.eerr-rating {
    color: var(--eerr-accent);
    font-size: 1.05rem;
    letter-spacing: 1px;
}

/* ===== Tables ===== */
.table {
    --bs-table-bg: var(--eerr-white);
    border: 1px solid var(--eerr-line);
    border-radius: var(--eerr-radius);
    overflow: hidden;
}
.table thead th {
    background: var(--eerr-bg-alt);
    color: var(--eerr-ink);
    font-weight: 700;
    border-bottom: 1px solid var(--eerr-line);
}
.table > :not(caption) > * > * {
    padding: 0.85rem 1rem;
}

/* ===== Footer ===== */
.eerr-footer {
    margin-top: 80px;
    padding: 48px 0 28px;
    background: linear-gradient(180deg, var(--eerr-bg) 0%, var(--eerr-bg-alt) 100%);
    border-top: 1px solid var(--eerr-line);
    color: var(--eerr-muted);
    font-size: 0.95rem;
}
.eerr-footer h6 {
    color: var(--eerr-ink);
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 1px;
    font-family: var(--eerr-font-sans);
    font-weight: 800;
    margin-bottom: 14px;
}
.eerr-footer a {
    color: var(--eerr-body);
    text-decoration: none;
}
.eerr-footer a:hover { color: var(--eerr-primary-dark); }
.eerr-footer ul { list-style: none; padding: 0; margin: 0; }
.eerr-footer ul li { margin-bottom: 8px; }
.eerr-footer .eerr-footer-bottom {
    margin-top: 36px;
    padding-top: 18px;
    border-top: 1px solid var(--eerr-line);
    font-size: 0.85rem;
    color: var(--eerr-muted);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
}
.eerr-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.eerr-footer-logo {
    height: 64px;
    width: auto;
    display: block;
}
.eerr-footer-brand-name {
    font-family: var(--eerr-font-display);
    color: var(--eerr-ink);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 0.2px;
}
.eerr-footer-tag {
    color: var(--eerr-muted);
    margin-bottom: 16px;
    max-width: 360px;
}
.eerr-footer-badges { display: flex; flex-wrap: wrap; gap: 6px; }
.eerr-footer-badge {
    background: var(--eerr-bg-alt);
    color: var(--eerr-primary-dark);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    border: 1px solid var(--eerr-line);
}
.eerr-footer-contact { display: flex; flex-direction: column; gap: 12px; }
.eerr-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0;
    min-width: 0;
}
/* Long email addresses must wrap inside the narrow footer column instead of
   overflowing past the edge of the screen. */
.eerr-footer-contact a { overflow-wrap: anywhere; word-break: break-word; }
/* Block wrapper so the two emails stack on separate lines inside the flex <li>. */
.eerr-footer-emails { display: block; min-width: 0; }
.eerr-footer-emails a { display: block; }
.eerr-footer-icon {
    flex: 0 0 32px;
    width: 32px; height: 32px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 9px;
    background: var(--eerr-bg-alt);
    color: var(--eerr-primary-dark);
    border: 1px solid var(--eerr-line);
}
.eerr-footer-icon svg { width: 16px; height: 16px; }
.eerr-footer-sep { margin: 0 8px; color: var(--eerr-line); }

/* =========================================================
   EERR Trading — Premium ambient layer
   Floating orbs · mouse spotlight · scroll-reveal · grain
   ========================================================= */

/* Container fixed behind content. Stacks above body::before/::after but
   below the form's static children (navbar, container, footer). */
.eerr-bg-fx {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    contain: strict;
    /* JS nudges --eerr-px/--eerr-py with the cursor for a soft parallax drift. */
    transform: translate3d(var(--eerr-px, 0px), var(--eerr-py, 0px), 0);
    transition: transform 0.5s var(--eerr-ease);
    will-change: transform;
}
/* Slow-drifting aurora mesh sitting under the orbs — adds depth and motion
   without competing with them. */
.eerr-bg-fx::before {
    content: "";
    position: absolute;
    inset: -15%;
    background:
        radial-gradient(40% 55% at 20% 25%, rgba(26,58,110,0.07), transparent 60%),
        radial-gradient(35% 45% at 80% 20%, rgba(109,181,47,0.07), transparent 60%),
        radial-gradient(45% 50% at 62% 88%, rgba(26,58,110,0.06), transparent 60%);
    animation: eerr-aurora-drift 44s ease-in-out infinite alternate;
}
@keyframes eerr-aurora-drift {
    from { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); }
    to   { transform: translate3d(2%, -2%, 0) rotate(6deg) scale(1.08); }
}

/* Floating colored orbs — drift slowly, blurred for a soft brand glow. */
.eerr-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.55;
    will-change: transform;
    mix-blend-mode: multiply;
}
.eerr-orb--1 {
    width: 520px; height: 520px;
    left: -10%; top: -12%;
    background: radial-gradient(circle, rgba(26,58,110,0.78), rgba(26,58,110,0) 70%);
    animation: eerr-orb-drift-1 26s ease-in-out infinite alternate;
}
.eerr-orb--2 {
    width: 440px; height: 440px;
    right: -6%; top: 8%;
    background: radial-gradient(circle, rgba(109,181,47,0.65), rgba(109,181,47,0) 70%);
    animation: eerr-orb-drift-2 32s ease-in-out infinite alternate;
}
.eerr-orb--3 {
    width: 600px; height: 600px;
    left: 28%; bottom: -18%;
    background: radial-gradient(circle, rgba(26,58,110,0.65), rgba(26,58,110,0) 70%);
    animation: eerr-orb-drift-3 28s ease-in-out infinite alternate;
}
@keyframes eerr-orb-drift-1 {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to   { transform: translate3d(35%, 22%, 0) scale(1.18); }
}
@keyframes eerr-orb-drift-2 {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to   { transform: translate3d(-28%, 30%, 0) scale(1.22); }
}
@keyframes eerr-orb-drift-3 {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to   { transform: translate3d(-22%, -26%, 0) scale(1.12); }
}
.eerr-orb--4 {
    width: 360px; height: 360px;
    right: 14%; bottom: 4%;
    background: radial-gradient(circle, rgba(109,181,47,0.5), rgba(109,181,47,0) 70%);
    animation: eerr-orb-drift-4 36s ease-in-out infinite alternate;
}
@keyframes eerr-orb-drift-4 {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to   { transform: translate3d(-18%, -22%, 0) scale(1.16); }
}

/* Mouse-tracking spotlight — JS sets --mx / --my as px values. */
.eerr-spotlight {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(540px circle at var(--mx, 50%) var(--my, 30%),
            rgba(26,58,110,0.16),
            rgba(109,181,47,0.10) 38%,
            transparent 66%),
        radial-gradient(180px circle at var(--mx, 50%) var(--my, 30%),
            rgba(255,255,255,0.12),
            transparent 70%);
    transition: background 80ms linear;
}

/* Scroll-reveal — JS toggles .is-visible via IntersectionObserver. */
.eerr-reveal {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    transition: opacity 0.7s var(--eerr-ease), transform 0.7s var(--eerr-ease);
    will-change: opacity, transform;
}
.eerr-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* Lift product image on card hover for a polished feel. */
.eerr-product-card .eerr-product-img {
    transition: transform 0.5s var(--eerr-ease), filter 0.4s var(--eerr-ease);
}
.eerr-product-card:hover .eerr-product-img {
    transform: scale(1.04);
    filter: saturate(1.08) brightness(1.02);
}

/* Navbar gets a glassier feel when scrolled (JS toggles .is-scrolled). */
.eerr-navbar.is-scrolled {
    background: rgba(255,255,255,0.78);
    box-shadow: 0 6px 22px rgba(15,32,29,0.06);
    border-bottom-color: rgba(230,235,233,0.6);
}

@media (prefers-reduced-motion: reduce) {
    .eerr-orb,
    .eerr-spotlight { animation: none !important; transition: none !important; }
    .eerr-reveal { opacity: 1; transform: none; transition: none; }
    body::before,
    .eerr-bg-fx::before { animation: none !important; }
    .eerr-bg-fx { transform: none !important; transition: none !important; }
}

/* =========================================================
   Wilcon-inspired chrome — utility bar, promo strip,
   brand grid, split promo cards, refined category cards.
   ========================================================= */

/* ===== Utility bar (top thin strip) ===== */
.eerr-utility-bar {
    background: linear-gradient(90deg, var(--eerr-primary-darker), var(--eerr-primary-dark));
    color: rgba(255,255,255,0.92);
    font-size: 0.82rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.eerr-utility-bar-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 4px 16px;
    padding-top: 8px;
    padding-bottom: 8px;
}
.eerr-utility-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 22px;
}
.eerr-utility-list li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,0.86);
    line-height: 1.2;
}
.eerr-utility-list li svg { width: 14px; height: 14px; opacity: 0.85; }
.eerr-utility-list a {
    color: #fff;
    text-decoration: none;
    transition: color 0.15s var(--eerr-ease);
}
.eerr-utility-list a:hover { color: var(--eerr-accent); }
.eerr-utility-list-right { justify-content: flex-end; }

/* ===== Promo announcement strip ===== */
.eerr-promo-strip {
    background: var(--eerr-bg-alt);
    border-bottom: 1px solid var(--eerr-line);
    overflow: hidden;
}
.eerr-promo-track {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 6px 18px;
    padding: 10px 0;
}
.eerr-promo-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--eerr-ink);
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.25;
}
.eerr-promo-ico {
    width: 28px; height: 28px;
    border-radius: 8px;
    display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(26,58,110,0.10), rgba(109,181,47,0.20));
    color: var(--eerr-primary-dark);
    flex: 0 0 28px;
}
.eerr-promo-ico svg { width: 15px; height: 15px; }

/* ===== Split promo cards (home page) ===== */
.eerr-promo-grid { margin: 0; }
.eerr-promo-card {
    display: block;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    border-radius: var(--eerr-radius-lg);
    color: #fff;
    text-decoration: none;
    box-shadow: var(--eerr-shadow);
    transition: transform 0.25s var(--eerr-ease), box-shadow 0.25s var(--eerr-ease);
    isolation: isolate;
}
.eerr-promo-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.10) 1px, transparent 0);
    background-size: 22px 22px;
    opacity: 0.55;
    pointer-events: none;
    z-index: 1;
}
.eerr-promo-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--eerr-shadow-lg);
    color: #fff;
}
.eerr-promo-card-body {
    position: relative;
    z-index: 2;
    padding: 32px 32px 28px;
    max-width: 460px;
}
.eerr-promo-card-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    background: rgba(255,255,255,0.16);
    color: #fff;
    padding: 5px 11px;
    border-radius: 999px;
    margin-bottom: 14px;
}
.eerr-promo-card h3 {
    color: #fff;
    font-size: clamp(1.3rem, 2.2vw, 1.7rem);
    margin: 0 0 8px;
}
.eerr-promo-card p {
    color: rgba(255,255,255,0.86);
    margin: 0 0 16px;
    font-size: 0.95rem;
}
.eerr-promo-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: #fff;
    border-bottom: 1.5px solid rgba(255,255,255,0.5);
    padding-bottom: 2px;
    transition: gap 0.2s var(--eerr-ease), border-color 0.2s var(--eerr-ease);
}
.eerr-promo-card:hover .eerr-promo-card-cta {
    gap: 10px;
    border-color: #fff;
}
.eerr-promo-card--scents {
    background:
        radial-gradient(900px 320px at 110% 110%, rgba(255,255,255,0.18), transparent 60%),
        linear-gradient(125deg, var(--eerr-primary-darker) 0%, var(--eerr-primary) 100%);
}
.eerr-promo-card--gadgets {
    background:
        radial-gradient(900px 320px at -10% -20%, rgba(255,255,255,0.18), transparent 60%),
        linear-gradient(135deg, #2a2a36 0%, #11121a 100%);
}
.eerr-promo-card--gadgets .eerr-promo-card-tag {
    background: var(--eerr-accent);
    color: #0e2010;
}

/* ===== Home Carousel ===== */
.eerr-carousel {
    border-radius: var(--eerr-radius-lg);
    overflow: hidden;
    box-shadow: var(--eerr-shadow-lg);
}
.eerr-carousel .carousel-inner,
.eerr-carousel .carousel-item {
    border-radius: var(--eerr-radius-lg);
}
.eerr-carousel-slide {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    min-height: 340px;
    padding: 56px 64px;
    color: #fff;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}
.eerr-carousel-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.10) 1px, transparent 0);
    background-size: 28px 28px;
    opacity: 0.45;
    pointer-events: none;
}
.eerr-carousel-caption {
    position: relative;
    max-width: 560px;
    z-index: 1;
}
.eerr-carousel-tag {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.72rem;
    font-weight: 700;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
}
.eerr-carousel-caption h3 {
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
    line-height: 1.15;
    margin: 0 0 10px;
    color: #fff;
    font-weight: 700;
}
.eerr-carousel-caption p {
    font-size: 1.02rem;
    color: #ffffff;
    opacity: 1;
    margin: 0 0 18px;
}
.eerr-carousel-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.55);
    background: rgba(255,255,255,0.08);
    color: #fff;
    transition: gap 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.eerr-carousel-slide:hover {
    color: #fff;
}
.eerr-carousel-slide:hover .eerr-carousel-cta {
    gap: 12px;
    background: rgba(255,255,255,0.18);
    border-color: #fff;
}
.eerr-carousel-art {
    position: relative;
    flex: 0 0 220px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.92);
    box-shadow: inset 0 0 60px rgba(255,255,255,0.08);
    z-index: 1;
}
.eerr-carousel-art svg {
    width: 110px;
    height: 110px;
}
.eerr-carousel-slide--scents {
    background:
        radial-gradient(900px 320px at 110% 110%, rgba(255,255,255,0.18), transparent 60%),
        linear-gradient(125deg, var(--eerr-primary-darker) 0%, var(--eerr-primary) 100%);
}
.eerr-carousel-slide--appliances {
    background:
        radial-gradient(900px 320px at -10% 110%, rgba(109,181,47,0.30), transparent 60%),
        linear-gradient(135deg, #0e2548 0%, #1a3a6e 60%, var(--eerr-accent-dark) 130%);
}
.eerr-carousel-slide--gadgets {
    background:
        radial-gradient(900px 320px at -10% -20%, rgba(255,255,255,0.18), transparent 60%),
        linear-gradient(135deg, #2a2a36 0%, #11121a 100%);
}
.eerr-carousel-slide--maincon {
    background:
        radial-gradient(900px 320px at 110% -10%, rgba(255,255,255,0.16), transparent 60%),
        linear-gradient(135deg, #5a3a18 0%, #8a5a24 55%, #b88032 100%);
}
.eerr-carousel-slide--office {
    background:
        radial-gradient(900px 320px at -10% 110%, rgba(255,255,255,0.16), transparent 60%),
        linear-gradient(135deg, #224a78 0%, #3a6da6 100%);
}
.eerr-carousel .carousel-control-prev,
.eerr-carousel .carousel-control-next {
    width: 6%;
    opacity: 0.7;
}
.eerr-carousel .carousel-control-prev:hover,
.eerr-carousel .carousel-control-next:hover {
    opacity: 1;
}
.eerr-carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    background-color: rgba(255,255,255,0.55);
    opacity: 1;
    margin: 0 5px;
}
.eerr-carousel-indicators .active {
    background-color: #fff;
    transform: scale(1.15);
}
@media (max-width: 768px) {
    .eerr-carousel-slide {
        flex-direction: column-reverse;
        text-align: center;
        gap: 18px;
        padding: 40px 28px 56px;
        min-height: 0;
    }
    .eerr-carousel-art {
        flex: 0 0 140px;
        width: 140px;
        height: 140px;
    }
    .eerr-carousel-art svg {
        width: 72px;
        height: 72px;
    }
    .eerr-carousel-caption {
        max-width: 100%;
    }
}

/* ===== Featured Products multi-card slider ===== */
.eerr-featured-carousel {
    position: relative;
    padding: 4px 56px 56px;
}
.eerr-featured-carousel .carousel-inner {
    overflow: hidden;
    border-radius: var(--eerr-radius);
}
.eerr-featured-carousel .carousel-item {
    transition: transform 0.7s ease-in-out;
}
.eerr-featured-row {
    margin: 0;
    padding: 4px 2px;
}
.eerr-featured-control {
    width: 44px;
    height: 44px;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    border-radius: 50%;
    background: var(--eerr-white);
    border: 1px solid var(--eerr-line);
    box-shadow: var(--eerr-shadow);
    opacity: 1;
    transition: background 0.2s ease, transform 0.2s ease;
}
.eerr-featured-control:hover {
    background: var(--eerr-primary);
    transform: translateY(-50%) scale(1.06);
}
.eerr-featured-carousel .carousel-control-prev.eerr-featured-control {
    left: 4px;
}
.eerr-featured-carousel .carousel-control-next.eerr-featured-control {
    right: 4px;
}
.eerr-featured-control .carousel-control-prev-icon,
.eerr-featured-control .carousel-control-next-icon {
    filter: invert(20%) sepia(36%) saturate(900%) hue-rotate(190deg);
    width: 18px;
    height: 18px;
}
.eerr-featured-control:hover .carousel-control-prev-icon,
.eerr-featured-control:hover .carousel-control-next-icon {
    filter: invert(100%);
}
.eerr-featured-indicators {
    bottom: 12px;
    margin-bottom: 0;
}
.eerr-featured-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    background-color: var(--eerr-line);
    opacity: 1;
    margin: 0 5px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}
.eerr-featured-indicators .active {
    background-color: var(--eerr-primary);
    transform: scale(1.2);
}
@media (max-width: 768px) {
    .eerr-featured-carousel {
        padding: 4px 12px 56px;
    }
    .eerr-featured-carousel .carousel-control-prev.eerr-featured-control,
    .eerr-featured-carousel .carousel-control-next.eerr-featured-control {
        display: none;
    }
}

/* ===== Brands We Carry ===== */
.eerr-brands-section {
    background: var(--eerr-white);
    border: 1px solid var(--eerr-line);
    border-radius: var(--eerr-radius-lg);
    padding: 40px 28px;
    box-shadow: var(--eerr-shadow-sm);
}
.eerr-brand-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}
.eerr-brand-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 16px 12px 14px;
    border: 1px solid var(--eerr-line);
    border-radius: var(--eerr-radius);
    background: #fff;
    text-align: center;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s var(--eerr-ease), border-color 0.2s var(--eerr-ease),
                box-shadow 0.2s var(--eerr-ease);
}
.eerr-brand-tile:hover,
.eerr-brand-tile:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(26,58,110,0.4);
    box-shadow: var(--eerr-shadow);
    color: inherit;
    text-decoration: none;
}
.eerr-brand-tile:focus-visible {
    outline: 2px solid var(--eerr-primary, #1a3a6e);
    outline-offset: 2px;
}
/* "View products →" affordance — reveals the tile is now a clickable link. */
.eerr-brand-cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 10px;
    font-family: var(--eerr-font-sans);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: var(--eerr-primary-dark, #0e2548);
    opacity: 0.55;
    transition: opacity 0.2s var(--eerr-ease);
}
.eerr-brand-tile:hover .eerr-brand-cta,
.eerr-brand-tile:focus-visible .eerr-brand-cta { opacity: 1; }
.eerr-brand-cta-arrow {
    display: inline-block;
    transition: transform 0.2s var(--eerr-ease);
}
.eerr-brand-tile:hover .eerr-brand-cta-arrow { transform: translateX(3px); }
@media (hover: none) {
    .eerr-brand-cta { opacity: 1; } /* always visible on touch devices */
}
.eerr-brand-logo {
    width: 100%;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    overflow: hidden;
}
.eerr-brand-logo img {
    max-width: 100%;
    max-height: 56px;
    object-fit: contain;
    filter: none;
}
.eerr-brand-meta { width: 100%; }
.eerr-brand-name {
    font-family: var(--eerr-font-sans);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--eerr-ink);
    line-height: 1.2;
}
.eerr-brand-tag {
    color: var(--eerr-muted);
    font-size: 0.74rem;
    margin-top: 3px;
    line-height: 1.25;
}
.eerr-brand-initials {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(26,58,110,0.12), rgba(109,181,47,0.24));
    color: var(--eerr-primary-dark);
    font-family: var(--eerr-font-display);
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}

/* ===== Public Brands page (group-of-companies roster) ===== */
.eerr-brand-roster-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--eerr-line);
    border-radius: var(--eerr-radius);
    box-shadow: var(--eerr-shadow-sm);
    overflow: hidden;
    transition: transform 0.25s var(--eerr-ease), box-shadow 0.25s var(--eerr-ease), border-color 0.25s var(--eerr-ease);
    display: flex;
    flex-direction: column;
    cursor: pointer;
}
.eerr-brand-roster-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--eerr-shadow-lg);
    border-color: rgba(26,58,110,0.4);
}
.eerr-brand-roster-logo {
    height: 130px;
    background: linear-gradient(180deg, #ffffff 0%, #f4f8f6 100%);
    border-bottom: 1px solid var(--eerr-line);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}
.eerr-brand-roster-logo img {
    max-width: 80%;
    max-height: 90px;
    object-fit: contain;
}
.eerr-brand-roster-logo .eerr-brand-initials {
    width: 72px; height: 72px; font-size: 1.5rem;
}
.eerr-brand-roster-body { padding: 18px 20px 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.eerr-brand-roster-name {
    font-family: var(--eerr-font-display);
    font-size: 1.25rem;
    margin: 0;
    color: var(--eerr-ink);
}
.eerr-brand-roster-tag {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--eerr-primary-dark);
    font-weight: 700;
}
.eerr-brand-roster-desc {
    color: var(--eerr-body);
    font-size: 0.94rem;
    margin: 0;
    flex: 1;
}
.eerr-brand-roster-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--eerr-line);
    padding-top: 12px;
    margin-top: 8px;
    font-size: 0.85rem;
}
.eerr-brand-roster-count {
    color: var(--eerr-muted);
    font-weight: 600;
}
.eerr-brand-roster-site {
    font-weight: 700;
    color: var(--eerr-primary);
    text-decoration: none;
}
.eerr-brand-roster-site:hover,
.eerr-brand-roster-card:hover .eerr-brand-roster-site { color: var(--eerr-primary-dark); }

/* ===== Refined category cards (retail feel) ===== */
.eerr-cat-card { position: relative; }
.eerr-cat-card::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--eerr-primary), var(--eerr-accent));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s var(--eerr-ease);
}
.eerr-cat-card:hover::after { transform: scaleX(1); }
.eerr-cat-card .eerr-cat-icon {
    transition: transform 0.3s var(--eerr-ease), background 0.3s var(--eerr-ease);
}
.eerr-cat-card:hover .eerr-cat-icon {
    transform: scale(1.05) rotate(-3deg);
    background: linear-gradient(135deg, rgba(26,58,110,0.18), rgba(109,181,47,0.32));
}

/* ===== Responsive tweaks ===== */
@media (max-width: 991.98px) {
    .eerr-brand-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 767.98px) {
    .eerr-hero { padding: 48px 24px 56px; margin: 18px 0 28px; border-radius: var(--eerr-radius); }
    .eerr-hero h1 { font-size: 1.9rem; }
    .eerr-hero .lead { font-size: 1rem; }
    .eerr-hero-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 28px; padding-top: 20px; }
    .eerr-hero-stat-num { font-size: 1.4rem; }
    .eerr-hero-stat-label { font-size: 0.66rem; letter-spacing: 0.8px; }
    .eerr-page-header { margin: 24px 0 18px; }
    .eerr-section { margin: 40px 0; }
    .eerr-cta { padding: 24px; border-radius: var(--eerr-radius); }
    .eerr-product-img { height: 150px; }
    .eerr-cat-card .card-body { padding: 22px; }
    .eerr-navbar .nav-link.eerr-cta-link { margin-left: 0; margin-top: 6px; }
    .eerr-navbar .navbar-collapse { padding-top: 8px; }
    .eerr-brand-img { height: 38px; }
    .eerr-brand-name { font-size: 1rem; }
    .eerr-brand-tagline { font-size: 0.6rem; letter-spacing: 1px; }
    .eerr-footer-logo { height: 52px; }
    .eerr-footer { padding: 40px 0 24px; }
    .eerr-footer-tag { max-width: none; }
    .eerr-filter-bar { padding: 12px; }

    /* Wilcon-style chrome on mobile */
    .eerr-utility-bar { font-size: 0.76rem; }
    .eerr-utility-bar-inner { gap: 4px 12px; padding-top: 6px; padding-bottom: 6px; }
    .eerr-utility-list { gap: 4px 14px; }
    .eerr-promo-track { gap: 6px 14px; padding: 8px 0; overflow-x: auto; flex-wrap: nowrap; }
    .eerr-promo-pill { white-space: nowrap; font-size: 0.78rem; }
    .eerr-promo-card-body { padding: 24px 22px 22px; }
    .eerr-promo-card { min-height: 170px; }
    .eerr-brand-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
    .eerr-brand-tile { padding: 12px 8px 10px; }
    .eerr-brand-logo { height: 44px; margin-bottom: 8px; }
    .eerr-brand-logo img { max-height: 44px; }
    .eerr-brand-name { font-size: 0.85rem; }
    .eerr-brand-tag { font-size: 0.68rem; }
    .eerr-brand-initials { width: 40px; height: 40px; font-size: 0.95rem; }
    .eerr-brands-section { padding: 28px 16px; }
}
@media (max-width: 575.98px) {
    .eerr-brand-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* =========================================================
   SHOP-STYLE HEADER SHELL
   White sticky header with logo + search + icon cluster,
   plus a secondary category nav with Products mega-menu.
   ========================================================= */

.eerr-shop-header {
    background: #fff;
    border-bottom: 1px solid var(--eerr-line);
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 1px 0 rgba(15,32,29,0.04);
}
.eerr-shop-header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 18px;
    padding: 14px 16px;
}
.eerr-shop-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--eerr-ink);
}
.eerr-shop-brand:hover { color: var(--eerr-primary); }
.eerr-shop-brand-img { height: 46px; width: auto; display: block; }
.eerr-shop-brand-text { display: inline-flex; flex-direction: column; line-height: 1.1; }
.eerr-shop-brand-name {
    font-family: var(--eerr-font-display);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 0.2px;
}
.eerr-shop-brand-tagline {
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: var(--eerr-accent-dark);
    font-weight: 700;
    margin-top: 2px;
}

/* Prominent center search ---------------------------------------- */
.eerr-shop-search {
    display: flex;
    align-items: stretch;
    background: var(--eerr-bg);
    border: 1.5px solid var(--eerr-line);
    border-radius: 999px;
    overflow: hidden;
    transition: border-color .15s var(--eerr-ease), box-shadow .15s var(--eerr-ease);
    min-width: 0;
}
.eerr-shop-search:focus-within {
    border-color: var(--eerr-primary);
    box-shadow: 0 0 0 0.18rem rgba(26,58,110,0.16);
    background: #fff;
}
.eerr-shop-search-select {
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border: 0;
    border-right: 1px solid var(--eerr-line);
    color: var(--eerr-ink);
    font-weight: 600;
    font-size: 0.88rem;
    padding: 0 28px 0 16px;
    background-image: linear-gradient(45deg, transparent 50%, var(--eerr-muted) 50%),
                      linear-gradient(-45deg, transparent 50%, var(--eerr-muted) 50%);
    background-position: right 14px top 50%, right 9px top 50%;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    min-width: 150px;
    cursor: pointer;
    outline: none;
}
.eerr-shop-search-input {
    flex: 1 1 auto;
    border: 0;
    background: transparent;
    padding: 0 16px;
    font-size: 0.95rem;
    color: var(--eerr-ink);
    min-width: 0;
    outline: none;
}
.eerr-shop-search-input::placeholder { color: var(--eerr-muted); }
.eerr-shop-search-btn {
    border: 0;
    background: linear-gradient(135deg, var(--eerr-primary), var(--eerr-primary-dark));
    color: #fff;
    font-weight: 700;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: filter .15s var(--eerr-ease);
}
.eerr-shop-search-btn:hover { filter: brightness(1.07); }
.eerr-shop-search-btn svg { width: 18px; height: 18px; }

/* Icon cluster (account / wishlist / inquire) -------------------- */
.eerr-shop-icons {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.eerr-icon-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: var(--eerr-radius-sm);
    text-decoration: none;
    color: var(--eerr-ink);
    transition: background-color .15s var(--eerr-ease), color .15s var(--eerr-ease);
    white-space: nowrap;
}
.eerr-icon-btn:hover { background: var(--eerr-bg-alt); color: var(--eerr-primary); }
.eerr-icon-btn-ico {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: var(--eerr-primary);
}
.eerr-icon-btn-ico svg { width: 22px; height: 22px; }
.eerr-icon-btn-text {
    display: inline-flex;
    flex-direction: column;
    line-height: 1.05;
}
.eerr-icon-btn-text small {
    font-size: 0.66rem;
    color: var(--eerr-muted);
    text-transform: none;
    letter-spacing: 0;
}
.eerr-icon-btn-text strong {
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--eerr-ink);
}
.eerr-icon-btn:hover .eerr-icon-btn-text strong { color: var(--eerr-primary); }
.eerr-icon-btn--ghost .eerr-icon-btn-ico { color: var(--eerr-muted); }
.eerr-icon-btn--cart .eerr-icon-btn-ico { color: var(--eerr-accent-dark); }
.eerr-icon-btn-badge {
    position: absolute;
    top: -4px;
    right: -8px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--eerr-accent);
    color: #0e2010;
    font-size: 0.68rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 2px #fff;
}

/* Mobile burger (shown only on small screens) -------------------- */
.eerr-shop-burger {
    display: none;
    width: 42px;
    height: 38px;
    border: 1px solid var(--eerr-line);
    border-radius: 8px;
    background: #fff;
    padding: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
}
.eerr-shop-burger span {
    width: 20px;
    height: 2px;
    background: var(--eerr-ink);
    border-radius: 2px;
}

/* ===== Category nav bar (Products mega-menu lives here) ===== */
.eerr-cat-nav {
    background: linear-gradient(180deg, var(--eerr-primary-dark) 0%, var(--eerr-primary) 100%);
    color: #fff;
    position: sticky;
    top: 75px;
    z-index: 1020;
    box-shadow: 0 6px 18px rgba(15,32,29,0.06);
}
.eerr-cat-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 16px;
}
.eerr-cat-nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}
.eerr-cat-nav-link {
    color: rgba(255,255,255,0.92);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    padding: 14px 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 0;
    border-bottom: 3px solid transparent;
    transition: background-color .15s var(--eerr-ease), color .15s var(--eerr-ease), border-color .15s var(--eerr-ease);
}
.eerr-cat-nav-link:hover,
.eerr-cat-nav-link:focus {
    color: #fff;
    background: rgba(255,255,255,0.08);
    border-bottom-color: var(--eerr-accent);
}
.eerr-cat-nav-link--strong {
    background: rgba(0,0,0,0.18);
    font-weight: 700;
}
.eerr-cat-nav-link--accent {
    color: var(--eerr-accent);
}
.eerr-cat-nav-link--accent:hover { color: #d8f0b1; }
.eerr-cat-nav-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--eerr-accent);
    box-shadow: 0 0 0 3px rgba(109,181,47,0.25);
    display: inline-block;
}
.eerr-cat-nav-grid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.eerr-cat-nav-grid svg { width: 18px; height: 18px; }
.eerr-cat-nav-caret {
    font-size: 0.7rem;
    opacity: 0.8;
    margin-left: 4px;
}
.eerr-cat-nav-aside {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    font-weight: 600;
}
.eerr-cat-nav-aside svg { width: 18px; height: 18px; }

/* Mega menu panel ------------------------------------------------- */
.eerr-cat-nav-item--has-menu { position: relative; }
.eerr-mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 720px;
    max-width: 92vw;
    background: #fff;
    color: var(--eerr-body);
    border: 1px solid var(--eerr-line);
    border-radius: var(--eerr-radius);
    box-shadow: var(--eerr-shadow-lg);
    padding: 18px;
    opacity: 0;
    transform: translateY(8px);
    visibility: hidden;
    transition: opacity .18s var(--eerr-ease), transform .18s var(--eerr-ease), visibility .18s;
}
.eerr-cat-nav-item--has-menu:hover .eerr-mega-menu,
.eerr-cat-nav-item--has-menu:focus-within .eerr-mega-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}
.eerr-mega-menu-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}
.eerr-mega-tile {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    border-radius: var(--eerr-radius-sm);
    text-decoration: none;
    color: var(--eerr-ink);
    transition: background-color .15s var(--eerr-ease), transform .15s var(--eerr-ease);
}
.eerr-mega-tile:hover {
    background: var(--eerr-bg-alt);
    transform: translateX(2px);
}
.eerr-mega-ico {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(26,58,110,0.10), rgba(109,181,47,0.22));
    color: var(--eerr-primary-dark);
}
.eerr-mega-ico svg { width: 22px; height: 22px; }
.eerr-mega-meta { display: flex; flex-direction: column; gap: 2px; }
.eerr-mega-meta strong { font-size: 0.96rem; color: var(--eerr-ink); }
.eerr-mega-meta small { font-size: 0.78rem; color: var(--eerr-muted); }
.eerr-mega-menu-foot {
    margin-top: 10px;
    padding-top: 12px;
    border-top: 1px solid var(--eerr-line);
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.86rem;
}
.eerr-mega-menu-foot a {
    color: var(--eerr-primary);
    font-weight: 700;
    text-decoration: none;
}
.eerr-mega-menu-foot a:hover { color: var(--eerr-primary-dark); }

/* ===== Footer social row ===== */
.eerr-footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}
.eerr-social {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.12);
    transition: background-color .15s var(--eerr-ease), color .15s var(--eerr-ease), transform .15s var(--eerr-ease);
}
.eerr-social:hover {
    background: var(--eerr-accent);
    color: #0e2010;
    transform: translateY(-2px);
    border-color: transparent;
}
.eerr-social svg { width: 16px; height: 16px; }
.eerr-social--viber:hover { background: #7360f2; color: #fff; }

/* ===== Footer payment-methods row ===== */
.eerr-footer-pay {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
    align-items: center;
    margin: 28px 0 16px;
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.eerr-footer-pay-label {
    color: rgba(255,255,255,0.6);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-right: 8px;
}
.eerr-pay-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    min-width: 48px;
    padding: 0 10px;
    border-radius: 6px;
    background: #fff;
    color: #1a1f36;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06);
}
.eerr-pay-pill--gcash { background: #0070e0; color: #fff; }
.eerr-pay-pill--maya  { background: #1cb74d; color: #fff; }
.eerr-pay-pill--visa  { background: #1a1f71; color: #fff; letter-spacing: 1.2px; }
.eerr-pay-pill--jcb   { background: #0e4c92; color: #fff; }
.eerr-pay-pill--bpi   { background: #a02929; color: #fff; }
.eerr-pay-pill--bdo   { background: #003876; color: #fff; }
.eerr-pay-pill--cod   { background: #2c3a52; color: #fff; font-weight: 700; letter-spacing: 0.3px; }
.eerr-pay-pill--mc    {
    background: #fff;
    padding: 0 10px;
    position: relative;
    min-width: 56px;
}
.eerr-pay-mc-a, .eerr-pay-mc-b {
    width: 16px; height: 16px;
    border-radius: 50%;
    display: inline-block;
}
.eerr-pay-mc-a { background: #eb001b; }
.eerr-pay-mc-b { background: #f79e1b; margin-left: -6px; mix-blend-mode: multiply; }

/* =========================================================
   SHOP-SHELL â€” Responsive
   ========================================================= */
@media (max-width: 1199.98px) {
    .eerr-shop-icons .eerr-icon-btn-text { display: none; }
    .eerr-icon-btn { padding: 8px; }
}
@media (max-width: 991.98px) {
    .eerr-shop-header-inner {
        grid-template-columns: auto 1fr auto;
        gap: 12px;
    }
    .eerr-shop-search {
        grid-column: 1 / -1;
        grid-row: 2;
        order: 3;
    }
    .eerr-shop-brand { grid-column: 1; grid-row: 1; }
    .eerr-shop-icons { grid-column: 2 / span 2; grid-row: 1; justify-self: end; }
    .eerr-cat-nav { top: 0; position: relative; }
}
@media (max-width: 767.98px) {
    .eerr-shop-header-inner {
        grid-template-columns: auto auto 1fr auto;
        gap: 10px;
        padding: 12px;
    }
    .eerr-shop-brand-text { display: none; }
    .eerr-shop-brand-img { height: 36px; }
    .eerr-shop-search { grid-column: 1 / -1; grid-row: 2; }
    .eerr-shop-icons { grid-column: 2 / 3; grid-row: 1; justify-self: end; }
    .eerr-shop-burger { display: inline-flex; grid-column: 4; grid-row: 1; }
    .eerr-shop-search-select { min-width: 110px; font-size: 0.82rem; padding: 0 24px 0 12px; }
    .eerr-shop-search-input { font-size: 0.88rem; padding: 0 12px; }
    .eerr-shop-search-btn { padding: 0 14px; }
    .eerr-shop-search-btn span { display: none; }
    .eerr-cat-nav-inner { padding: 0 4px; }
    .eerr-cat-nav-links {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        background: var(--eerr-primary-dark);
        padding: 4px 0;
    }
    .eerr-cat-nav-link { width: 100%; padding: 12px 16px; }
    .eerr-cat-nav-aside { display: none !important; }
    .eerr-mega-menu {
        position: static;
        width: 100%;
        max-width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        border: 0;
        background: rgba(255,255,255,0.06);
        color: rgba(255,255,255,0.92);
    }
    .eerr-mega-menu-inner { grid-template-columns: 1fr; }
    .eerr-mega-tile { color: #fff; }
    .eerr-mega-tile:hover { background: rgba(255,255,255,0.1); transform: none; }
    .eerr-mega-meta strong { color: #fff; }
    .eerr-mega-meta small { color: rgba(255,255,255,0.7); }
    .eerr-mega-menu-foot { border-color: rgba(255,255,255,0.12); }
    .eerr-mega-menu-foot a { color: var(--eerr-accent); }
    .eerr-footer-pay { gap: 6px 8px; }
    .eerr-footer-pay-label { width: 100%; margin-bottom: 4px; }
}


/* =========================================================
   HOMEPAGE â€” SHOP-LANDING LAYOUT
   Trust band Â· Smart Deals Â· Image-style category tiles Â·
   Row headers with "View all" links.
   ========================================================= */

/* Tighten the very first section so the carousel reads as the visual lead. */
.eerr-section--lead { margin-top: 18px; }

/* --- Row header used by every shop-style section -------------- */
.eerr-row-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 18px;
}
.eerr-row-link {
    color: var(--eerr-primary);
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    padding-bottom: 4px;
}
.eerr-row-link:hover { color: var(--eerr-primary-dark); }

/* --- 2. Trust band (slim greeting + 3 live stats) ------------- */
.eerr-trust-band {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    padding: 24px 28px;
    margin: 28px 0 36px;
    background: linear-gradient(135deg, #ffffff 0%, var(--eerr-bg-alt) 100%);
    border: 1px solid var(--eerr-line);
    border-radius: var(--eerr-radius);
    box-shadow: var(--eerr-shadow-sm);
}
.eerr-trust-band-greeting h1 {
    font-size: clamp(1.5rem, 2.6vw, 2.05rem);
    margin: 6px 0 8px;
}
.eerr-trust-band-greeting .lead {
    font-size: 1rem;
    color: var(--eerr-body);
}
.eerr-trust-band-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.eerr-trust-stat {
    background: #fff;
    border: 1px solid var(--eerr-line);
    border-radius: var(--eerr-radius-sm);
    padding: 14px 12px;
    text-align: center;
    box-shadow: var(--eerr-shadow-sm);
}
.eerr-trust-stat-num {
    font-family: var(--eerr-font-display);
    font-weight: 800;
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    color: var(--eerr-primary);
    line-height: 1;
}
.eerr-trust-stat-label {
    margin-top: 6px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--eerr-muted);
    font-weight: 700;
}

/* --- 3. Smart deals (3-up themed promo tiles) ----------------- */
.eerr-smart-deals {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.eerr-deal-tile {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 22px 24px;
    border-radius: var(--eerr-radius);
    text-decoration: none;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
    box-shadow: var(--eerr-shadow);
    transition: transform .25s var(--eerr-ease), box-shadow .25s var(--eerr-ease);
    min-height: 140px;
}
.eerr-deal-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.10) 1px, transparent 0);
    background-size: 22px 22px;
    opacity: 0.45;
    pointer-events: none;
}
.eerr-deal-tile:hover {
    transform: translateY(-3px);
    box-shadow: var(--eerr-shadow-lg);
    color: #fff;
}
.eerr-deal-tile-pct {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.28);
    color: #fff;
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 0.72rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.15;
    min-width: 80px;
}
.eerr-deal-tile-pct strong {
    font-family: var(--eerr-font-display);
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: 0;
}
.eerr-deal-tile-meta { display: flex; flex-direction: column; gap: 4px; }
.eerr-deal-tile-eyebrow {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-weight: 800;
    color: rgba(255,255,255,0.85);
}
.eerr-deal-tile-meta strong {
    font-family: var(--eerr-font-display);
    font-size: 1.15rem;
    color: #fff;
}
.eerr-deal-tile-meta small {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.35;
}
.eerr-deal-tile-cta {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.85);
    transition: transform .25s var(--eerr-ease);
}
.eerr-deal-tile:hover .eerr-deal-tile-cta { transform: translateX(4px); }

/* Themed backgrounds â€” reuse the carousel-slide palette */
.eerr-deal-tile--scents {
    background:
        radial-gradient(700px 240px at -10% 100%, rgba(255,255,255,0.12), transparent 60%),
        linear-gradient(135deg, #06433a 0%, #0f7062 70%, #4d8722 130%);
}
.eerr-deal-tile--gadgets {
    background:
        radial-gradient(700px 240px at 100% -20%, rgba(255,255,255,0.16), transparent 60%),
        linear-gradient(135deg, #1a1a26 0%, #2a2a36 100%);
}
.eerr-deal-tile--household {
    background:
        radial-gradient(700px 240px at -10% -20%, rgba(255,255,255,0.16), transparent 60%),
        linear-gradient(135deg, #1a3a6e 0%, #2a5598 100%);
}
/* The appliances tile has no dark gradient, so it sits on the light page background.
   Use dark ink for its copy so the text stays readable. */
.eerr-deal-tile--appliances,
.eerr-deal-tile--appliances .eerr-deal-tile-eyebrow,
.eerr-deal-tile--appliances .eerr-deal-tile-meta strong,
.eerr-deal-tile--appliances .eerr-deal-tile-meta small,
.eerr-deal-tile--appliances .eerr-deal-tile-cta {
    color: #12233f;
}
.eerr-deal-tile--appliances .eerr-deal-tile-pct {
    color: #12233f;
    background: rgba(18,35,63,0.10);
    border-color: rgba(18,35,63,0.28);
}
/* "WARRANTY" matches the "GENUINE" line above it — same font, size, and weight
   as the badge's base text (not the large display style the other tiles use). */
.eerr-deal-tile--appliances .eerr-deal-tile-pct strong {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    white-space: nowrap;
}

/* --- 4. Image-style category tile grid ------------------------ */
.eerr-cat-tile-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.eerr-cat-tile {
    position: relative;
    display: grid;
    grid-template-columns: 96px 1fr;
    align-items: center;
    gap: 18px;
    padding: 24px 26px;
    border-radius: var(--eerr-radius);
    text-decoration: none;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
    min-height: 140px;
    box-shadow: var(--eerr-shadow);
    transition: transform .25s var(--eerr-ease), box-shadow .25s var(--eerr-ease);
}
.eerr-cat-tile:hover {
    transform: translateY(-3px);
    box-shadow: var(--eerr-shadow-lg);
    color: #fff;
}
.eerr-cat-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.08) 1px, transparent 0);
    background-size: 24px 24px;
    opacity: 0.45;
}
.eerr-cat-tile-art {
    width: 96px;
    height: 96px;
    border-radius: 18px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.22);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: transform .3s var(--eerr-ease);
}
.eerr-cat-tile:hover .eerr-cat-tile-art { transform: scale(1.05) rotate(-3deg); }
.eerr-cat-tile-art svg { width: 44px; height: 44px; }
.eerr-cat-tile-meta { display: flex; flex-direction: column; gap: 4px; }
.eerr-cat-tile-meta strong {
    font-family: var(--eerr-font-display);
    font-size: 1.25rem;
    color: #fff;
    line-height: 1.15;
}
.eerr-cat-tile-meta small {
    font-size: 0.86rem;
    color: rgba(255,255,255,0.86);
}

/* Per-category palettes â€” same DNA as the hero carousel slides */
.eerr-cat-tile--scents {
    background:
        radial-gradient(700px 260px at -10% 110%, rgba(109,181,47,0.45), transparent 60%),
        linear-gradient(135deg, #06433a 0%, #0f7062 60%, #1a8a78 100%);
}
.eerr-cat-tile--appliances {
    background:
        radial-gradient(700px 260px at 110% -10%, rgba(109,181,47,0.30), transparent 60%),
        linear-gradient(135deg, #0e2548 0%, #1a3a6e 60%, var(--eerr-accent-dark) 130%);
}
.eerr-cat-tile--gadgets {
    background:
        radial-gradient(700px 260px at -10% -20%, rgba(255,255,255,0.18), transparent 60%),
        linear-gradient(135deg, #2a2a36 0%, #11121a 100%);
}
.eerr-cat-tile--office {
    background:
        radial-gradient(700px 260px at -10% 110%, rgba(255,255,255,0.16), transparent 60%),
        linear-gradient(135deg, #224a78 0%, #3a6da6 100%);
}
.eerr-cat-tile--maincon {
    background:
        radial-gradient(700px 260px at 110% -10%, rgba(255,255,255,0.16), transparent 60%),
        linear-gradient(135deg, #5a3a18 0%, #8a5a24 55%, #b88032 100%);
}
.eerr-cat-tile--household {
    background:
        radial-gradient(700px 260px at -10% -20%, rgba(255,255,255,0.16), transparent 60%),
        linear-gradient(135deg, #3a1e6b 0%, #6b4cc1 100%);
}
/* Fallback palette for Healthcare and any future unmapped category (slug "default"). */
.eerr-cat-tile--default {
    background:
        radial-gradient(700px 260px at 110% -10%, rgba(255,255,255,0.16), transparent 60%),
        linear-gradient(135deg, #0b4d3a 0%, #12855f 55%, #2fb579 100%);
}

/* --- Responsive ---------------------------------------------- */
@media (max-width: 991.98px) {
    .eerr-trust-band { grid-template-columns: 1fr; gap: 18px; padding: 20px; }
    .eerr-smart-deals { grid-template-columns: 1fr; }
    .eerr-cat-tile-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
    .eerr-cat-tile-art { width: 80px; height: 80px; }
    .eerr-cat-tile-art svg { width: 38px; height: 38px; }
    .eerr-cat-tile { grid-template-columns: 80px 1fr; padding: 20px; min-height: 120px; }
}
@media (max-width: 575.98px) {
    .eerr-row-head { flex-direction: column; align-items: flex-start; gap: 6px; }
    .eerr-trust-band-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
    .eerr-trust-stat { padding: 10px 6px; }
    .eerr-trust-stat-num { font-size: 1.2rem; }
    .eerr-trust-stat-label { font-size: 0.62rem; letter-spacing: 0.8px; }
    .eerr-deal-tile { padding: 18px; grid-template-columns: auto 1fr; min-height: 0; }
    .eerr-deal-tile-cta { display: none; }
    .eerr-cat-tile-grid { grid-template-columns: 1fr; }
}


/* =========================================================
   ABOUT PAGE â€” OWNER / FOUNDER CARD
   ========================================================= */
.eerr-owner-section { margin-top: 32px; }

.eerr-owner-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 28px;
    align-items: center;
    padding: 28px;
    background: #fff;
    border: 1px solid var(--eerr-line);
    border-radius: var(--eerr-radius);
    box-shadow: var(--eerr-shadow);
}
.eerr-owner-photo {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(26,58,110,0.15), rgba(109,181,47,0.30));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--eerr-shadow-sm);
    border: 4px solid #fff;
    outline: 1px solid var(--eerr-line);
}
.eerr-owner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.eerr-owner-initials {
    font-family: var(--eerr-font-display);
    font-weight: 800;
    font-size: 4.4rem;
    color: var(--eerr-primary-dark);
    letter-spacing: 1px;
}
.eerr-owner-meta { display: flex; flex-direction: column; gap: 6px; }
.eerr-owner-name {
    font-family: var(--eerr-font-display);
    font-weight: 700;
    font-size: 1.9rem;
    color: var(--eerr-ink);
    line-height: 1.1;
}
.eerr-owner-role {
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--eerr-accent-dark);
}
.eerr-owner-bio {
    margin-top: 10px;
    color: var(--eerr-body);
    font-size: 1rem;
    line-height: 1.65;
}
.eerr-owner-bio p { margin: 0 0 10px; }
.eerr-owner-bio p:last-child { margin-bottom: 0; }

@media (max-width: 767.98px) {
    .eerr-owner-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 22px;
        gap: 18px;
    }
    .eerr-owner-photo { justify-self: center; width: 170px; height: 170px; }
    .eerr-owner-initials { font-size: 3.4rem; }
    .eerr-owner-meta { align-items: center; }
    .eerr-owner-name { font-size: 1.55rem; }
}


/* When the owner card is the lead section on About, tighten its top margin. */
.eerr-owner-section--lead { margin-top: 18px; }

/* =========================================================
   SPACIOUS UI â€” overrides applied at end of file so they win
   over the original component rules. Net effect: more padding,
   larger gaps, gentler vertical rhythm across the chrome and
   the homepage.
   ========================================================= */

/* --- Utility bar: a touch more vertical room ---------------- */
.eerr-utility-bar { padding-top: 8px; padding-bottom: 8px; font-size: 0.84rem; }
.eerr-utility-list { gap: 8px 22px; }

/* --- Main shop header: breathe ------------------------------ */
.eerr-shop-header-inner {
    padding: 20px 16px;
    gap: 28px;
    grid-template-columns: auto minmax(260px, 720px) auto auto;
    justify-content: space-between;
}
.eerr-shop-brand { gap: 14px; }
.eerr-shop-brand-img { height: 52px; }
.eerr-shop-brand-name { font-size: 1.22rem; }

.eerr-shop-search { min-height: 50px; }
.eerr-shop-search-input { font-size: 1rem; }
.eerr-shop-search-btn { padding: 0 26px; }

/* --- Icon cluster: bigger touch targets, wider gaps -------- */
.eerr-shop-icons { gap: 10px; }
.eerr-icon-btn {
    padding: 10px 14px;
    gap: 12px;
    border-radius: 12px;
}
.eerr-icon-btn-ico { width: 34px; height: 34px; }
.eerr-icon-btn-ico svg { width: 24px; height: 24px; }

/* --- Category nav: chunkier, less crammed ------------------ */
.eerr-cat-nav-inner { padding: 0 20px; gap: 24px; }
.eerr-cat-nav-links { gap: 6px; }
.eerr-cat-nav-link {
    padding: 18px 18px;
    font-size: 0.96rem;
    letter-spacing: 0.2px;
}
.eerr-cat-nav-link--strong { padding-left: 22px; padding-right: 22px; }
.eerr-cat-nav-aside { font-size: 0.9rem; }

/* --- Promo strip: less crowded ------------------------------ */
.eerr-promo-strip { padding: 6px 0; }
.eerr-promo-track { gap: 14px 28px; padding: 10px 0; }
.eerr-promo-pill { padding: 6px 4px; }

/* --- Homepage rhythm: more space between sections ---------- */
.eerr-section { margin: 64px 0; }
.eerr-section--lead { margin-top: 28px; }
.eerr-row-head { margin-bottom: 26px; }
.eerr-section-title { font-size: clamp(1.6rem, 2.6vw, 2.1rem); }

/* Trust band â€” calmer, airier */
.eerr-trust-band {
    padding: 32px 36px;
    margin: 36px 0 56px;
    gap: 36px;
}
.eerr-trust-stat { padding: 18px 14px; }

/* Smart deals â€” more inner breathing room */
.eerr-smart-deals { gap: 22px; }
.eerr-deal-tile {
    padding: 28px 30px;
    gap: 22px;
    min-height: 156px;
    border-radius: 18px;
}
.eerr-deal-tile-pct { padding: 12px 18px; min-width: 92px; }

/* Category tiles â€” larger cards */
.eerr-cat-tile-grid { gap: 22px; }
.eerr-cat-tile {
    padding: 28px 30px;
    gap: 22px;
    min-height: 156px;
    border-radius: 18px;
    grid-template-columns: 104px 1fr;
}
.eerr-cat-tile-art { width: 104px; height: 104px; border-radius: 22px; }
.eerr-cat-tile-art svg { width: 48px; height: 48px; }
.eerr-cat-tile-meta strong { font-size: 1.32rem; }

/* Featured carousel â€” pad above and below */
.eerr-featured-carousel { padding-top: 8px; padding-bottom: 60px; }

/* Brands section â€” a bit more interior room */
.eerr-brands-section { padding: 48px 32px; }
.eerr-brand-grid { gap: 20px; }
.eerr-brand-tile { padding: 22px 16px 18px; }

/* Values strip â€” more padding inside cards */
.eerr-values .eerr-value { padding: 22px; }

/* Feedback CTA â€” wider padding */
.eerr-cta { padding: 36px 40px; }

/* --- Footer columns â€” fewer cramped feelings -------------- */
.eerr-footer { padding-top: 56px; padding-bottom: 32px; }
.eerr-footer h6 { margin-bottom: 14px; }
.eerr-footer ul li { margin-bottom: 8px; }
.eerr-footer-pay { margin: 34px 0 18px; padding: 20px 0; gap: 10px 14px; }
.eerr-footer-socials { gap: 12px; margin-top: 20px; }
.eerr-social { width: 40px; height: 40px; }
.eerr-social svg { width: 18px; height: 18px; }

/* --- Spacious responsive tweaks ---------------------------- */
@media (max-width: 1199.98px) {
    /* keep icon labels visible longer at this width â€” only collapse below md */
    .eerr-shop-icons .eerr-icon-btn-text { display: inline-flex; }
    .eerr-icon-btn { padding: 10px 14px; }
}
@media (max-width: 991.98px) {
    .eerr-shop-header-inner { padding: 16px; gap: 18px; }
    .eerr-cat-nav-link { padding: 14px 14px; }
    .eerr-shop-icons .eerr-icon-btn-text { display: none; }
    .eerr-section { margin: 48px 0; }
    .eerr-trust-band { padding: 22px; margin: 24px 0 36px; gap: 22px; }
}
@media (max-width: 767.98px) {
    .eerr-shop-header-inner { padding: 12px; gap: 12px; }
    .eerr-cat-nav-link { padding: 12px 16px; }
    .eerr-section { margin: 36px 0; }
    .eerr-deal-tile, .eerr-cat-tile { padding: 22px; }
}


/* =========================================================
   PROMO STRIP â€” single-row variant
   Forces the 4 admin-editable pills onto one line across the
   container at desktop widths; allows horizontal scroll on
   narrow screens so nothing gets clipped.
   ========================================================= */
.eerr-promo-strip--single .eerr-promo-track {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    overflow-x: hidden;
}
.eerr-promo-strip--single .eerr-promo-pill {
    flex: 1 1 0;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.eerr-promo-strip--single .eerr-promo-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
    display: inline-block;
    flex: 1 1 auto;
}
.eerr-promo-strip--single .eerr-promo-ico { flex: 0 0 auto; }

/* Below desktop, scroll horizontally rather than truncate. */
@media (max-width: 991.98px) {
    .eerr-promo-strip--single .eerr-promo-track {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        gap: 14px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }
    .eerr-promo-strip--single .eerr-promo-pill {
        flex: 0 0 auto;
        overflow: visible;
        text-overflow: clip;
    }
    .eerr-promo-strip--single .eerr-promo-text {
        overflow: visible;
        text-overflow: clip;
    }
}


/* =========================================================
   USABILITY ENHANCEMENTS
   Skip link, focus rings, back-to-top, inquire CTA, empty
   state, admin filter, alert auto-dismiss.
   ========================================================= */

/* ===== Skip-to-content link (visible only on keyboard focus) ===== */
.eerr-skip-link {
    position: absolute;
    top: -100px;
    left: 8px;
    z-index: 2000;
    padding: 10px 16px;
    background: var(--eerr-primary);
    color: #fff !important;
    border-radius: 0 0 var(--eerr-radius-sm) var(--eerr-radius-sm);
    text-decoration: none;
    font-weight: 700;
    box-shadow: var(--eerr-shadow);
    transition: top .2s var(--eerr-ease);
}
.eerr-skip-link:focus {
    top: 0;
    outline: none;
}
.eerr-skip-anchor {
    display: block;
    width: 1px;
    height: 1px;
    overflow: hidden;
    margin-top: -1px;
}
.eerr-skip-anchor:focus { outline: none; }

/* ===== Global keyboard focus ring ===== */
:focus-visible {
    outline: 2px solid var(--eerr-accent);
    outline-offset: 2px;
    border-radius: 4px;
}
.btn:focus-visible,
.eerr-icon-btn:focus-visible,
.eerr-cat-nav-link:focus-visible,
.eerr-mega-tile:focus-visible,
.eerr-shop-search-btn:focus-visible,
.eerr-product-card:focus-visible,
.eerr-cat-tile:focus-visible,
.eerr-deal-tile:focus-visible {
    outline: 3px solid var(--eerr-accent);
    outline-offset: 3px;
}
/* Bootstrap default focus shadow can fight ours; let our outline lead. */
.btn:focus, .form-control:focus, .form-select:focus { box-shadow: none; }
.form-control:focus-visible, .form-select:focus-visible {
    outline: 2px solid var(--eerr-primary);
    outline-offset: 1px;
    border-color: var(--eerr-primary);
}

/* ===== Back-to-top floating button ===== */
.eerr-back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 0;
    background: var(--eerr-primary);
    color: #fff;
    box-shadow: var(--eerr-shadow-lg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .2s var(--eerr-ease), transform .2s var(--eerr-ease), background-color .15s var(--eerr-ease);
    z-index: 1040;
}
.eerr-back-to-top.is-visible { opacity: 1; transform: translateY(0); }
.eerr-back-to-top:hover { background: var(--eerr-primary-dark); }
.eerr-back-to-top svg { width: 22px; height: 22px; }
@media (max-width: 575.98px) {
    .eerr-back-to-top { right: 14px; bottom: 14px; width: 44px; height: 44px; }
}

/* ===== Inquire CTA on product cards ===== */
.eerr-inquire-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 700;
    letter-spacing: 0.2px;
    border-radius: 10px;
    padding: 8px 12px;
    background: var(--eerr-primary);
    border-color: var(--eerr-primary);
    transition: background-color .15s var(--eerr-ease), transform .15s var(--eerr-ease);
}
.eerr-inquire-btn:hover {
    background: var(--eerr-primary-dark);
    border-color: var(--eerr-primary-dark);
    transform: translateY(-1px);
}
.eerr-inquire-btn svg { width: 14px; height: 14px; }
.eerr-product-card .card-footer { background: transparent; border-top: 1px solid var(--eerr-line); padding-top: 14px; }

/* ===== Empty state (Products page) ===== */
.eerr-empty-state {
    background: #fff;
    border: 1px dashed var(--eerr-line);
    border-radius: var(--eerr-radius);
    padding: 56px 28px;
    text-align: center;
    margin: 24px 0;
}
.eerr-empty-state-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--eerr-bg-alt);
    color: var(--eerr-primary);
}
.eerr-empty-state-icon svg { width: 36px; height: 36px; }
.eerr-empty-state h3 { font-size: 1.4rem; margin-bottom: 8px; }
.eerr-empty-state p { color: var(--eerr-muted); max-width: 480px; margin: 0 auto 22px; }

/* ===== Admin quick-filter toolbar ===== */
.eerr-admin-toolbar { max-width: 480px; }
.eerr-admin-filter-input {
    padding-left: 38px;
    padding-right: 152px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236a7689' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3e%3ccircle cx='11' cy='11' r='7'/%3e%3cpath d='m20 20-3.5-3.5'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: 12px center;
    background-size: 16px 16px;
}
/* Right-side affordances: clear "x" sits to the LEFT of the result count, no overlap,
   with breathing room so it doesn't hug the search text. */
.eerr-admin-filter-tools {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.eerr-admin-filter-clear {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: #6a7689;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
}
.eerr-admin-filter-clear:hover { color: var(--eerr-ink); }
.eerr-admin-filter-count { pointer-events: none; white-space: nowrap; }

/* Admin tables: keep long cell content (messages, emails, subjects) wrapping inside
   the screen instead of stretching the table off-page. */
.table td, .table th { overflow-wrap: anywhere; word-break: break-word; }
.table td pre { white-space: pre-wrap; word-break: break-word; overflow-wrap: anywhere; margin: 0; }
/* Message cell: compact preview that expands on click. */
.eerr-msg-cell { max-width: 340px; }
.eerr-msg-cell summary { cursor: pointer; color: var(--eerr-primary); }
.eerr-msg-cell[open] summary { margin-bottom: 6px; }

/* ===== Alert auto-dismiss fade ===== */
.alert {
    transition: opacity .55s ease, transform .55s ease, margin .55s ease, padding .55s ease, max-height .55s ease;
    overflow: hidden;
}
.alert.eerr-alert-dismissed {
    opacity: 0;
    transform: translateY(-6px);
    max-height: 0;
    margin: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-width: 0;
}

/* Discreet admin entry point inside the utility bar. Visually quieter than
   the main nav links so customers don't notice it. */
.eerr-utility-admin a {
    color: inherit;
    opacity: 0.7;
    text-decoration: none;
    transition: opacity .15s ease;
}
.eerr-utility-admin a:hover { opacity: 1; text-decoration: underline; }
.eerr-utility-sep { opacity: 0.4; margin: 0 4px; }

/* =========================================================
   TAGLINE EYEBROW (italic, accent color)
   ========================================================= */
.eerr-eyebrow--tagline {
    font-style: italic;
    font-family: var(--eerr-font-display);
    text-transform: none;
    letter-spacing: 0.4px;
    font-size: 0.92rem;
    color: var(--eerr-accent-dark);
    background: rgba(109,181,47,0.10);
    border-color: rgba(109,181,47,0.30);
}

/* =========================================================
   WHO WE SERVE — vertical chips grid
   ========================================================= */
.eerr-verticals-section {
    background: #fff;
    border: 1px solid var(--eerr-line);
    border-radius: var(--eerr-radius-lg);
    padding: 48px 32px;
    box-shadow: var(--eerr-shadow-sm);
}
.eerr-verticals-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}
.eerr-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 22px 14px;
    border: 1px solid var(--eerr-line);
    border-radius: var(--eerr-radius);
    background: linear-gradient(180deg, #ffffff 0%, var(--eerr-bg-alt) 100%);
    transition: transform .2s var(--eerr-ease), border-color .2s var(--eerr-ease), box-shadow .2s var(--eerr-ease);
}
.eerr-vertical:hover {
    transform: translateY(-3px);
    border-color: rgba(26,58,110,0.35);
    box-shadow: var(--eerr-shadow);
}
.eerr-vertical-ico {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(26,58,110,0.10), rgba(109,181,47,0.22));
    color: var(--eerr-primary-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}
.eerr-vertical-ico svg { width: 24px; height: 24px; }
.eerr-vertical strong {
    font-family: var(--eerr-font-display);
    font-size: 1rem;
    color: var(--eerr-ink);
}
.eerr-vertical small {
    font-size: 0.78rem;
    color: var(--eerr-muted);
    line-height: 1.3;
}

@media (max-width: 991.98px) {
    .eerr-verticals-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 575.98px) {
    .eerr-verticals-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
    .eerr-verticals-section { padding: 32px 14px; }
    .eerr-vertical { padding: 16px 8px; }
}

/* Owner photo: when it's a real portrait PNG, ensure it covers the circle cleanly. */
.eerr-owner-photo .eerr-owner-img {
    object-fit: cover;
    object-position: center top;
}

/* 5-col verticals grid (was 4) to fit the expanded docx list */
.eerr-verticals-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
@media (max-width: 1199.98px) { .eerr-verticals-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (max-width: 991.98px)  { .eerr-verticals-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 575.98px)  { .eerr-verticals-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; } }

/* =========================================================
   CUSTOM SIGNATURE SCENTS CTA (from docx: "We create your
   own scents of signatures")
   ========================================================= */
.eerr-signature-cta {
    position: relative;
    overflow: hidden;
    border-radius: var(--eerr-radius-lg);
    padding: 0;
    background:
        radial-gradient(900px 320px at -10% 110%, rgba(109,181,47,0.32), transparent 60%),
        radial-gradient(700px 280px at 110% -20%, rgba(255,255,255,0.18), transparent 60%),
        linear-gradient(135deg, #06433a 0%, #0f7062 60%, #1f8a78 100%);
    color: #fff;
    box-shadow: var(--eerr-shadow-lg);
}
.eerr-signature-cta-inner {
    display: grid;
    grid-template-columns: 110px 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 32px 40px;
}
.eerr-signature-cta-art {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.24);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.eerr-signature-cta-art svg { width: 56px; height: 56px; }
.eerr-signature-cta-meta h3 {
    font-family: var(--eerr-font-display);
    font-size: clamp(1.4rem, 2.4vw, 1.9rem);
    color: #fff;
    line-height: 1.2;
}
.eerr-signature-cta-meta p {
    color: rgba(255,255,255,0.88);
    max-width: 560px;
}
.eerr-signature-cta-meta .eerr-eyebrow--tagline {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.20);
    color: #fff;
}
.eerr-signature-cta .btn-primary {
    background: #fff;
    color: var(--eerr-primary-dark);
    border-color: #fff;
    white-space: nowrap;
}
.eerr-signature-cta .btn-primary:hover {
    background: var(--eerr-accent);
    color: #0e2010;
    border-color: var(--eerr-accent);
}
@media (max-width: 767.98px) {
    .eerr-signature-cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 28px 22px;
        gap: 18px;
    }
    .eerr-signature-cta-art { justify-self: center; }
    .eerr-signature-cta-meta p { max-width: none; }
}

/* =========================================================
   OWNER CARD — photo top-center, info stacked below
   (overrides the earlier left-photo / right-info layout)
   ========================================================= */
.eerr-owner-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 22px;
    padding: 36px 28px;
}
.eerr-owner-card .eerr-owner-photo {
    justify-self: center;
}
.eerr-owner-card .eerr-owner-meta {
    align-items: center;
    max-width: 720px;
    margin: 0 auto;
}
.eerr-owner-card .eerr-owner-bio { text-align: left; }
@media (min-width: 768px) {
    .eerr-owner-card .eerr-owner-bio { text-align: center; }
}

/* =========================================================
   LOGO PRESENTATION — match the new circular badge artwork
   ========================================================= */

/* Header brand: give the badge room and a soft drop-shadow lift */
.eerr-shop-brand-img {
    height: 64px;
    width: auto;
    filter: drop-shadow(0 2px 6px rgba(15,32,29,0.10));
    transition: transform .2s var(--eerr-ease);
}
.eerr-shop-brand:hover .eerr-shop-brand-img { transform: scale(1.04); }

/* Footer logo sits on dark navy — the wordmark artwork is dark, so mount it
   on a white rounded plaque so it stays legible and reads as a brand plate. */
.eerr-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}
.eerr-footer-logo {
    height: 60px;
    width: auto;
    max-width: 230px;
    background: transparent;
    padding: 0;
    object-fit: contain;
    box-shadow: none;
}

/* Mobile-friendly logo sizing */
@media (max-width: 767.98px) {
    .eerr-shop-brand-img { height: 48px; }
    .eerr-footer-logo { height: 48px; max-width: 180px; }
}

/* =========================================================
   "Premium & lively" interaction layer
   Companion to Scripts/eerr-fx.js. Tasteful motion only —
   everything here is gated behind prefers-reduced-motion
   and degrades cleanly when JS is off.
   ========================================================= */

/* ---- Count-up stat numbers: steady width while ticking ---- */
.eerr-counter { font-variant-numeric: tabular-nums; }

/* ---- Magnetic buttons: smooth drift + snap back ---- */
.btn-primary, .btn-outline-primary, .btn-lg, .eerr-signature-cta .btn {
    transition: transform 0.28s var(--eerr-ease),
                background-color 0.18s var(--eerr-ease),
                border-color 0.18s var(--eerr-ease),
                box-shadow 0.28s var(--eerr-ease);
    will-change: transform;
}
.eerr-magnetic:hover { box-shadow: 0 10px 24px rgba(29, 58, 96, 0.22); }

/* ---- Ripple feedback on primary CTAs ---- */
.btn-primary, .eerr-inquire-btn { position: relative; overflow: hidden; }
.eerr-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    transform: scale(0);
    animation: eerr-ripple 0.62s var(--eerr-ease);
    pointer-events: none;
}
@keyframes eerr-ripple {
    to { transform: scale(2.4); opacity: 0; }
}

/* ---- 3D tilt cards: keep transforms snappy & flat-shaded ---- */
.eerr-tilt {
    transform-style: preserve-3d;
    will-change: transform;
}

/* ---- Shimmer sweep across cards on hover ---- */
.eerr-product-card::before,
.eerr-cat-tile::before,
.eerr-deal-tile::before {
    content: "";
    position: absolute;
    top: 0;
    left: -60%;
    width: 45%;
    height: 100%;
    background: linear-gradient(
        100deg,
        transparent,
        rgba(255, 255, 255, 0.55) 50%,
        transparent
    );
    transform: skewX(-18deg);
    opacity: 0;
    pointer-events: none;
    z-index: 3;
}
.eerr-product-card:hover::before,
.eerr-cat-tile:hover::before,
.eerr-deal-tile:hover::before {
    animation: eerr-shimmer 0.9s var(--eerr-ease);
}
@keyframes eerr-shimmer {
    0%   { left: -60%; opacity: 0; }
    18%  { opacity: 1; }
    100% { left: 130%; opacity: 0; }
}

/* Accent glow ring on product-card hover, layered over the lift shadow. */
.eerr-product-card:hover {
    box-shadow: var(--eerr-shadow-lg),
                0 0 0 1px rgba(95, 181, 46, 0.35),
                0 14px 34px rgba(95, 181, 46, 0.16);
}

/* ---- Staggered grid reveals (driven by eerr-fx.js) ----
   A one-shot animation, NOT a transition-delay, so it never lags the
   element's own :hover transform. JS adds .eerr-fx-reveal only when it
   can animate, sets a per-item delay, then strips both classes on
   animationend — leaving a fully natural, hover-ready element. */
.eerr-fx-reveal { opacity: 0; }
.eerr-fx-reveal.is-in {
    animation: eerr-rise-in 0.62s var(--eerr-ease) both;
}
@keyframes eerr-rise-in {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ---- Animated scent-wave hero accents ---- */
/* Big category artwork on the carousel breathes gently. */
.eerr-carousel-art svg,
.eerr-signature-cta-art svg {
    animation: eerr-float 6s ease-in-out infinite;
    transform-origin: center;
}
@keyframes eerr-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-8px) rotate(1.4deg); }
}

/* Rising "scent" motes drifting up the hero carousel slide. */
.eerr-carousel-slide { position: relative; overflow: hidden; }
.eerr-carousel-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle, rgba(255,255,255,0.55) 0 2px, transparent 3px),
        radial-gradient(circle, rgba(255,255,255,0.40) 0 2px, transparent 3px),
        radial-gradient(circle, rgba(255,255,255,0.30) 0 1.5px, transparent 3px);
    background-size: 120px 120px, 180px 180px, 90px 90px;
    background-position: 10% 100%, 60% 100%, 85% 100%;
    opacity: 0.5;
    animation: eerr-rise 9s linear infinite;
}
@keyframes eerr-rise {
    from { background-position: 10% 110%, 60% 120%, 85% 105%; }
    to   { background-position: 14% -20%, 56% -30%, 82% -15%; }
}

/* Slow living sheen on the trust band so the hero never feels static. */
.eerr-trust-band { position: relative; overflow: hidden; }
.eerr-trust-band::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at 30% 30%,
        rgba(95, 181, 46, 0.10), transparent 45%);
    animation: eerr-drift 16s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}
/* Keep the band's text + stats above the drifting sheen. */
.eerr-trust-band-greeting,
.eerr-trust-band-stats { position: relative; z-index: 1; }
@keyframes eerr-drift {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(8%, 6%); }
}

/* ---- Admin dashboard: a touch more life ---- */
.eerr-stat {
    position: relative;
    overflow: hidden;
    transition: transform 0.25s var(--eerr-ease), box-shadow 0.25s var(--eerr-ease);
}
.eerr-stat::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, var(--eerr-accent), var(--eerr-primary));
}
.eerr-stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--eerr-shadow-lg);
}

/* Generic dashboard action cards lift gently on hover too. */
.body-content .card:not(.eerr-product-card):not(.eerr-stat) {
    transition: transform 0.25s var(--eerr-ease), box-shadow 0.25s var(--eerr-ease);
}
.body-content .card:not(.eerr-product-card):not(.eerr-stat):hover {
    transform: translateY(-3px);
    box-shadow: var(--eerr-shadow);
}

/* ---- Respect reduced-motion: silence every effect above ---- */
@media (prefers-reduced-motion: reduce) {
    .btn-primary, .btn-outline-primary, .btn-lg,
    .eerr-tilt, .eerr-magnetic { transition: none; will-change: auto; }
    .eerr-ripple { display: none; }
    .eerr-product-card::before,
    .eerr-cat-tile::before,
    .eerr-deal-tile::before,
    .eerr-carousel-slide::after,
    .eerr-trust-band::before { display: none; animation: none; }
    .eerr-carousel-art svg,
    .eerr-signature-cta-art svg { animation: none; }
    .eerr-fx-reveal { opacity: 1; }
    .eerr-fx-reveal.is-in { animation: none; }
}

/* =========================================================
   Zoomable product images + full-screen lightbox
   (wired by Scripts/eerr-zoom.js on any [data-zoom-src]).
   ========================================================= */
.eerr-zoomable { cursor: zoom-in; }

/* Magnifier affordance on the product-card picture. */
.eerr-zoom-hint {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(14,37,72,0.55);
    color: #fff;
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.2s var(--eerr-ease), transform 0.2s var(--eerr-ease);
    z-index: 3;
    pointer-events: none;
}
.eerr-zoom-hint svg { width: 18px; height: 18px; }
.eerr-product-img.eerr-zoomable:hover .eerr-zoom-hint,
.eerr-product-img.eerr-zoomable:focus-visible .eerr-zoom-hint { opacity: 1; transform: scale(1); }
.eerr-product-img.eerr-zoomable:focus-visible {
    outline: 2px solid var(--eerr-primary, #1a3a6e);
    outline-offset: -2px;
}
@media (hover: none) {
    .eerr-zoom-hint { opacity: 1; transform: scale(1); } /* always show on touch */
}

/* Contact page "inquiring about" preview: hint + zoom cursor. */
.eerr-inquire-product img.eerr-zoomable { cursor: zoom-in; }
.eerr-inquire-zoomhint {
    display: block;
    margin-top: 2px;
    font-size: 0.78rem;
    color: var(--eerr-muted);
}

/* Prevent the page behind the lightbox from scrolling. */
.eerr-noscroll { overflow: hidden !important; }

.eerr-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(8,15,30,0.88);
    opacity: 0;
    transition: opacity 0.22s ease;
    touch-action: none;
    -webkit-user-select: none;
    user-select: none;
}
.eerr-lightbox.is-open { display: flex; opacity: 1; }
.eerr-lightbox-stage {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.eerr-lightbox-img {
    max-width: min(92vw, 1100px);
    max-height: 82vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 24px 70px rgba(0,0,0,0.55);
    transform-origin: center center;
    transition: transform 0.18s ease;
    cursor: zoom-in;
    will-change: transform;
    touch-action: none;
    -webkit-user-drag: none;
}
.eerr-lightbox-img.is-zoomed { cursor: grab; }
.eerr-lightbox-img.is-panning { cursor: grabbing; }
.eerr-lightbox-caption {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    max-width: 90vw;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(0,0,0,0.42);
    color: #fff;
    font-family: var(--eerr-font-sans);
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    pointer-events: none;
}
.eerr-lightbox-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.12);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.18s ease, transform 0.18s ease;
}
.eerr-lightbox-btn:hover { background: rgba(255,255,255,0.28); transform: scale(1.06); }
.eerr-lightbox-btn:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.eerr-lightbox-btn svg { width: 22px; height: 22px; }
.eerr-lightbox-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
}
.eerr-lightbox-zoomctl {
    position: absolute;
    bottom: 18px;
    right: 18px;
    display: flex;
    gap: 10px;
    z-index: 2;
}
@media (max-width: 575.98px) {
    .eerr-lightbox-caption { bottom: 74px; font-size: 0.85rem; }
}
@media (prefers-reduced-motion: reduce) {
    .eerr-lightbox, .eerr-lightbox-img, .eerr-lightbox-btn, .eerr-zoom-hint { transition: none; }
}
