/* File: style.css | EMMZED — PROFESSIONAL BASE STYLES v=61
   NOTE: All mobile burger/drawer/nav styles are handled ONLY in mobile.css
   to prevent duplicate left/right menus.
*/

/* ============================================================
   RESET + BASE
   ============================================================ */
html, body {
    overscroll-behavior-x: none;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #222;
    background: #f8f8f8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

img {
    max-width: 100%;
    display: block;
}

button, input, select, textarea {
    font-family: Arial, Helvetica, sans-serif;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(25px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   HEADER + DESKTOP NAV
   ============================================================ */
header {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(215, 255, 34, 0.15);
}

.logo {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #d7ff22, #e8ff66);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hamburger button (desktop hidden by default) */
.menu-toggle {
    display: none;
    font-size: 24px;
    color: #fff;
    background: none;
    border: none;
    padding: 4px 8px;
    cursor: pointer;
    transition: color 0.3s;
}

.menu-toggle:hover {
    color: #d7ff22;
}

/* DESKTOP NAV */
nav#mainNav,
nav {
    display: flex;
    gap: 4px;
    align-items: center;
}

nav#mainNav a,
nav a {
    color: #999;
    font-size: 11px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
}

nav#mainNav a::after,
nav a::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #d7ff22;
    border-radius: 2px;
    transition: width 0.3s ease;
}

nav#mainNav a:hover::after,
nav a:hover::after,
nav#mainNav a.active::after,
nav a.active::after {
    width: 60%;
}

nav#mainNav a:hover,
nav a:hover {
    color: #fff;
    background: rgba(215, 255, 34, 0.08);
}

nav#mainNav a.active,
nav a.active {
    color: #d7ff22;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, #1a1a1a, #111);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 11px 22px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-align: center;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn:hover {
    background: linear-gradient(135deg, #d7ff22, #c6e53a);
    color: #111;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(215, 255, 34, 0.2);
}

.btn-gold {
    display: inline-block;
    background: linear-gradient(135deg, #d7ff22, #e8ff66);
    color: #111;
    font-size: 14px;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(215, 255, 34, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-gold:hover {
    background: linear-gradient(135deg, #c6e53a, #d7ff22);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(215, 255, 34, 0.3);
}

.btn-wa {
    display: inline-block;
    background: linear-gradient(135deg, #25D366, #20ba5a);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
    transition: all 0.35s;
}

.btn-wa:hover {
    background: linear-gradient(135deg, #20ba5a, #1fa855);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.3);
}

/* ============================================================
   ANNOUNCEMENT + HERO + STATS
   ============================================================ */
.announce-bar {
    background: linear-gradient(90deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    color: #d7ff22;
    text-align: center;
    padding: 10px 15px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(215, 255, 34, 0.1);
}

.hero {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 100%);
    color: #fff;
    padding: 80px 20px 70px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero h1 span { color: #d7ff22; }

.hero p {
    font-size: 16px;
    color: #ccc;
    max-width: 420px;
    margin: 0 auto 28px;
}

.hero-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.trust-item {
    background: rgba(255,255,255,0.08);
    color: #ddd;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 35px;
    background: #141414;
    padding: 22px 20px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(215, 255, 34, 0.08);
    border-bottom: 1px solid rgba(215, 255, 34, 0.08);
}

.stat-item {
    text-align: center;
}

.stat-item .s-num {
    font-size: 26px;
    font-weight: 800;
    color: #d7ff22;
}

.stat-item .s-label {
    font-size: 10px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 3px;
}

/* ============================================================
   SECTIONS + CATEGORIES + PRODUCTS
   ============================================================ */
.sec-wrap {
    padding: 55px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.sec-wrap.bg-light { background: #f2f2f2; }
.sec-wrap.bg-white { background: #fff; }

.sec-tag {
    display: inline-block;
    background: linear-gradient(135deg, #d7ff22, #e8ff66);
    color: #111;
    padding: 4px 14px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-header { text-align: center; margin-bottom: 14px; }

/* Category Cards (base) */
.cat-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(108px, 1fr));
    gap: 12px;
    max-width: 1080px;
    margin: 0 auto;
}

.cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 18px 10px;
    border-radius: 16px;
    border: 1px solid #eee;
    text-decoration: none;
    color: #222;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 3px 10px rgba(0,0,0,0.04);
    position: relative;
}

.cat-card:hover {
    transform: translateY(-5px);
    border-color: #d7ff22;
    box-shadow: 0 14px 26px rgba(215,255,34,0.12);
}

.cat-card-icon {
    font-size: 29px;
    margin-bottom: 8px;
    transition: transform .3s ease;
}

.cat-card:hover .cat-card-icon {
    transform: scale(1.15);
}

.cat-card-name {
    font-size: 13px;
    font-weight: 800;
    color: #222;
    text-align: center;
    line-height: 1.2;
}

/* Product Grid */
.product-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.product-card {
    background: #fff;
    padding: 14px;
    text-align: center;
    border-radius: 12px;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.product-card img,
.product-card-img,
.product-card-img-empty {
    width: 100%;
    height: 175px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.product-card h3 {
    font-size: 14px;
    font-weight: 700;
    color: #222;
    margin-bottom: 5px;
}

.product-card p {
    font-size: 18px;
    font-weight: 800;
    color: #d7ff22;
    margin-bottom: 12px;
}

/* Wishlist button */
.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,.96);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(0,0,0,.12);
    z-index: 2;
    cursor: pointer;
}

.wishlist-btn.active {
    background: #e53935;
}

/* ============================================================
   WHY US + TESTIMONIALS + FOOTER
   ============================================================ */
/* WHY US — EPIC PROFESSIONAL */
.why-section {
    background: #fff;
    padding: 55px 20px;
}

.why-subtitle {
    color: #666;
    font-size: 14.5px;
    margin-top: 4px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.why-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 14px;
    max-width: 980px;
    margin: 0 auto;
}

.why-box {
    background: #fff;
    padding: 26px 18px;
    text-align: center;
    border-radius: 16px;
    border: 1px solid #eee;
    box-shadow: 0 4px 14px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.08);
    border-color: #d7ff22;
}

.why-icon {
    font-size: 32px;
    margin-bottom: 8px;
    line-height: 1;
}

.why-box .why-num {
    font-size: 15px;
    font-weight: 900;
    color: #d7ff22;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.why-box h3 {
    font-size: 15.5px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #111;
}

.why-box p {
    font-size: 13.5px;
    color: #555;
    line-height: 1.45;
}

.why-badge {
    display: inline-block;
    background: #d7ff22;
    color: #111;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 10px;
    border-radius: 50px;
    margin-top: 10px;
    letter-spacing: 0.5px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.testi-card {
    background: #fff;
    padding: 24px;
    border-radius: 14px;
    border: 1px solid #eee;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
}

.testi-avatar {
    width: 34px;
    height: 34px;
    background: #d7ff22;
    color: #111;
    font-weight: 900;
    font-size: 13px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testi-name {
    font-weight: 700;
    font-size: 13.5px;
    color: #222;
}

.testi-loc {
    font-size: 11.5px;
    color: #777;
}

/* FOOTER — PREMIUM PROFESSIONAL (PC + MOBILE READY) */
.main-footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
    color: #888;
    padding: 52px 24px 26px;
    font-size: 14px;
    border-top: 4px solid #d7ff22;
    box-shadow: 0 -6px 24px rgba(0,0,0,0.35);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.3fr 2.7fr;
    gap: 48px;
    max-width: 1120px;
    margin: 0 auto;
    align-items: start;
}

/* Extra polish */
.main-footer .footer-brand .footer-logo img {
    filter: drop-shadow(0 1px 3px rgba(215,255,34,0.2));
}

.footer-brand {
    max-width: 310px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 21px;
    font-weight: 900;
    color: #d7ff22;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.footer-logo span {
    font-size: 21px;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.55;
    color: #aaa;
    margin-bottom: 18px;
}

.footer-social {
    display: flex;
    gap: 13px;
    margin-top: 4px;
}

/* ============================================================
   SOCIAL BUTTONS — EMMZED EDITION
   Normal state: clean, flat, subtle glass. 
   Hover state: HD / 3D — brand gradient, glossy sheen, depth
   shadow, lift & glow.
   ============================================================ */
.footer-social a {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    border: 1.5px solid rgba(215,255,34,0.18);
    font-size: 0;
    position: relative;
    transition: transform .28s cubic-bezier(.2,.75,.2,1),
                box-shadow .28s ease,
                background .28s ease,
                border-color .28s ease;
}

/* Glossy HD sheen (revealed on hover) */
.footer-social a::before {
    content: "";
    position: absolute;
    left: 12%;
    top: 7%;
    right: 12%;
    height: 40%;
    border-radius: 50% 50% 30% 30%;
    background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity .22s ease;
    pointer-events: none;
    z-index: 1;
}

/* Icon stays crisp above the sheen */
.footer-social a svg {
    width: 21px;
    height: 21px;
    position: relative;
    z-index: 2;
    transition: transform .28s cubic-bezier(.2,.75,.2,1),
                filter .28s ease;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,.25));
}

.footer-social a:hover {
    transform: translateY(-7px) scale(1.14);
    color: #fff;
    border-color: transparent;
}
.footer-social a:hover svg {
    transform: scale(1.15);
    filter: drop-shadow(0 3px 6px rgba(0,0,0,.45));
}
.footer-social a:hover::before { opacity: 1; }

.footer-social a:focus {
    outline: 2px solid #d7ff22;
    outline-offset: 3px;
}

/* Brand 3D gradients + depth shadows on hover */
.footer-social .social-wa:hover {
    background: linear-gradient(160deg, #4be584, #1ebe5d 50%, #128C7E);
    box-shadow: 0 16px 30px rgba(37,211,102,.5),
                inset 0 -7px 14px rgba(0,0,0,.22),
                inset 0 2px 4px rgba(255,255,255,.4);
}
.footer-social .social-fb:hover {
    background: linear-gradient(160deg, #6aa5ff, #1877F2 50%, #0d5bc7);
    box-shadow: 0 16px 30px rgba(24,119,242,.5),
                inset 0 -7px 14px rgba(0,0,0,.22),
                inset 0 2px 4px rgba(255,255,255,.4);
}
.footer-social .social-ig:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    box-shadow: 0 16px 30px rgba(225,48,108,.5),
                inset 0 -7px 14px rgba(0,0,0,.28),
                inset 0 2px 4px rgba(255,255,255,.4);
}
.footer-social .social-tk:hover {
    background: linear-gradient(160deg, #232326, #0d0d0e 55%, #000);
    border-color: rgba(37,244,238,.4);
    box-shadow: 0 16px 30px rgba(37,244,238,.28),
                0 10px 26px rgba(254,44,85,.28),
                inset 0 -7px 14px rgba(0,0,0,.4),
                inset 0 2px 4px rgba(37,244,238,.4);
}

/* Soft outer glow ring behind the button */
.footer-social a::after {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity .25s ease;
    pointer-events: none;
    z-index: 0;
}
.footer-social .social-wa:hover::after { opacity: .6; background: radial-gradient(circle at 50% 40%, rgba(37,211,102,.5), transparent 68%); }
.footer-social .social-fb:hover::after { opacity: .6; background: radial-gradient(circle at 50% 40%, rgba(24,119,242,.5), transparent 68%); }
.footer-social .social-ig:hover::after { opacity: .6; background: radial-gradient(circle at 50% 40%, rgba(225,48,108,.5), transparent 68%); }
.footer-social .social-tk:hover::after { opacity: .6; background: radial-gradient(circle at 50% 40%, rgba(37,244,238,.42), transparent 68%); }

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

.footer-links-grid h4 {
    font-size: 14.5px;
    font-weight: 900;
    color: #d7ff22;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-links-grid a {
    display: block;
    color: #bbb;
    font-size: 14px;
    margin-bottom: 9px;
    transition: color .2s, padding-left .2s;
}

.footer-links-grid a:hover {
    color: #d7ff22;
    padding-left: 4px;
}

.footer-bottom {
    margin-top: 42px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    color: #777;
}

.footer-location {
    color: #d7ff22;
    font-weight: 700;
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.float-wa {
    position: fixed;
    bottom: 22px;
    right: 18px;
    width: 54px;
    height: 54px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 22px rgba(37, 211, 102, .4);
    z-index: 9999;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}
.float-wa:hover {
    transform: scale(1.06);
    box-shadow: 0 8px 26px rgba(37, 211, 102, .5);
}
.float-wa svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}
/* Ensure clean icon button - no text */
.float-wa span,
.float-wa .float-wa-tooltip,
.float-wa::after {
    display: none !important;
}

/* ============================================================
   IMPORTANT: MOBILE OVERRIDES DISABLED HERE
   All responsive drawer, bottom nav, mobile grids are in mobile.css only.
   ============================================================ */
@media (max-width: 768px) {
    .menu-toggle {
        display: block !important;
    }

    /* Completely neutralize any old drawer styles in this file */
    nav,
    nav#mainNav {
        display: flex;
        position: static !important;
        right: auto !important;
        width: auto !important;
        height: auto !important;
        transform: none !important;
        box-shadow: none !important;
        background: transparent !important;
        padding: 0 !important;
    }

    nav.active,
    nav#mainNav.active {
        right: auto !important;
    }
}

/* ============================================================
   PAGE LOADER + MISC
   ============================================================ */
.page-loader {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #d7ff22, #fff, #d7ff22);
    background-size: 200% 100%;
    animation: loadBar 0.8s ease both;
    z-index: 9999;
    pointer-events: none;
}

@keyframes loadBar {
    0% { width: 0; }
    100% { width: 100%; }
}

::selection {
    background: #d7ff22;
    color: #111;
}

/* ============================================================
   EMMZED ANIMATED LOGO (admin + login) — same MZ Ice Prism
   mark as the landing page
   ============================================================ */
.adm-mz-logo {
    height: 42px;
    width: auto;
    overflow: visible;
    flex-shrink: 0;
}
.adm-mz-logo .ltr { fill: none; stroke-width: 12; stroke-linecap: round; stroke-linejoin: round; }
.adm-mz-logo .m,
.adm-mz-logo .z {
    stroke: #eaffff;
    stroke-dasharray: 390;
    stroke-dashoffset: 0;
    filter: drop-shadow(0 0 6px rgba(89,221,255,.55));
}
.adm-mz-logo .prism { fill: none; transform-origin: 180px 120px; }
.adm-mz-logo .p1 { stroke: #59ddff; stroke-width: 2; animation: admSpin 12s linear infinite; }
.adm-mz-logo .p2 { stroke: #7f91ff; stroke-width: 2; animation: admSpin 8s linear reverse infinite; }
.adm-mz-logo .p3 { stroke: #eaffff; stroke-width: 1; opacity: .6; animation: admPulse 2.6s ease-in-out infinite; }
@keyframes admSpin { to { transform: rotate(360deg); } }
@keyframes admPulse { 50% { opacity: .25; transform: scale(.94); } }

/* ============================================================
   BREADCRUMB BAR — "WHERE AM I" ON EVERY PAGE
   ============================================================ */
.crumb-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 9px clamp(14px, 4vw, 42px);
    background: #0d0e11;
    border-bottom: 1px solid #262a31;
    position: relative;
    z-index: 5;
}
.crumb-back {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 7px;
    background: rgba(215,255,34,.08);
    border: 1px solid rgba(215,255,34,.25);
    color: #d7ff22;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
    transition: all .18s ease;
    white-space: nowrap;
}
.crumb-back:hover { background: #d7ff22; color: #131411; }
.crumbs {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    font-size: 11.5px;
    min-width: 0;
}
.crumbs .crumb { color: #9aa0a8; text-decoration: none; white-space: nowrap; }
.crumbs .crumb:hover { color: #d7ff22; }
.crumbs .crumb.current { color: #f2f0ea; font-weight: 800; white-space: nowrap; }
.crumbs .crumb-sep { color: #4a5059; }
@media (max-width: 560px) {
    .crumb-bar { gap: 8px; padding: 8px 14px; }
    .crumb-back { padding: 5px 9px; font-size: 10px; }
    .crumbs { font-size: 10.5px; }
}

/* ============================================================
   FOOTER — CONTACT STRIP + MOBILE POLISH
   ============================================================ */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 14px 0 18px;
}
.fc-item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #bbb;
    padding: 9px 12px;
    border-radius: 10px;
    border: 1px solid rgba(215,255,34,0.12);
    background: rgba(255,255,255,0.03);
    transition: border-color .2s ease, background .2s ease;
}
a.fc-item:hover { border-color: rgba(215,255,34,0.4); background: rgba(215,255,34,0.06); }
.fc-ico {
    width: 34px; height: 34px;
    border-radius: 9px;
    background: rgba(215,255,34,0.1);
    display: grid; place-items: center;
    font-size: 16px;
    flex-shrink: 0;
}
.fc-item b { display: block; color: #f2f0ea; font-size: 12.5px; font-weight: 800; letter-spacing: .3px; }
.fc-item small { color: #9aa0a8; font-size: 11.5px; }
.footer-top {
    color: #d7ff22;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: .5px;
    text-decoration: none;
    white-space: nowrap;
    transition: color .2s ease;
}
.footer-top:hover { color: #fff; }

/* Mobile: contact strip becomes a 1-column tidy list */
@media (max-width: 768px) {
    .footer-contact { gap: 7px; margin: 14px 0 16px; }
    .fc-item { padding: 8px 10px; }
    .footer-top { margin-top: 10px; }
}

/* ============================================================
   FOOTER — BRAND STRIP (landing) + STATUS CHIP
   ============================================================ */
.footer-brand-strip {
    background: linear-gradient(90deg, rgba(215,255,34,.08), rgba(89,221,255,.06) 50%, rgba(215,255,34,.08));
    border-top: 1px solid rgba(215,255,34,.25);
    border-bottom: 1px solid rgba(215,255,34,.25);
    padding: 18px 24px;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
}
.fbs-inner {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.fbs-word {
    font-size: clamp(18px, 3vw, 28px);
    color: #d7ff22;
    text-shadow: 0 0 24px rgba(215,255,34,.45);
}
.fbs-dash { color: #59ddff; font-size: 20px; }
.fbs-items { color: #9aa0a8; font-size: clamp(10px, 1.4vw, 13px); letter-spacing: .14em; }
@media (max-width: 560px) {
    .footer-brand-strip { padding: 14px 12px; white-space: normal; }
    .fbs-inner { flex-wrap: wrap; justify-content: center; gap: 8px; }
}

.footer-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 6px 0 14px;
    padding: 6px 13px;
    border-radius: 50px;
    background: rgba(61,220,132,.1);
    border: 1px solid rgba(61,220,132,.35);
    color: #3ddc84;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .4px;
}
.footer-status .fs-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #3ddc84;
    box-shadow: 0 0 0 4px rgba(61,220,132,.18), 0 0 12px rgba(61,220,132,.7);
    animation: fsPulse 2s infinite ease-in-out;
}
@keyframes fsPulse { 50% { opacity: .45; transform: scale(.8); } }
