/* ============================================================
   WebsNP site chrome — extracted from layout, includes & partials
   (topnav, menu, footer, offers bar, floating widgets, popups)
   ============================================================ */

/* ── layouts/frontend ── */
@font-face { font-family: 'Font Awesome 6 Free'; font-style: normal; font-weight: 900; font-display: swap; src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-solid-900.woff2') format('woff2'); }
        @font-face { font-family: 'Font Awesome 6 Free'; font-style: normal; font-weight: 400; font-display: swap; src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-regular-400.woff2') format('woff2'); }
        @font-face { font-family: 'Font Awesome 6 Brands'; font-style: normal; font-weight: 400; font-display: swap; src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-brands-400.woff2') format('woff2'); }

#wa-chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    font-family: 'Inter', sans-serif;
}
#wa-chat-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    transition: transform 0.3s cubic-bezier(.34,1.56,.64,1), box-shadow 0.3s ease;
    border: none;
    outline: none;
    position: relative;
}
#wa-chat-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.6);
}
#wa-chat-btn svg {
    width: 32px;
    height: 32px;
    fill: #fff;
    transition: transform 0.3s ease;
}
#wa-chat-btn .wa-pulse {
    position: absolute;
    top: 0; right: 0;
    width: 16px; height: 16px;
    background: #ff3b3b;
    border-radius: 50%;
    border: 2px solid #fff;
    animation: wa-blink 1.6s infinite;
}
@keyframes wa-blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}
#wa-chat-popup {
    position: absolute;
    bottom: 76px;
    right: 0;
    width: 320px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.18);
    overflow: hidden;
    transform: scale(0.85) translateY(16px);
    transform-origin: bottom right;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.3s cubic-bezier(.34,1.56,.64,1);
}
#wa-chat-popup.open {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1) translateY(0);
}
.wa-popup-header {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}
.wa-close-btn {
    position: absolute;
    top: 8px; right: 8px;
    width: 24px; height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.18);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.15s ease;
}
.wa-close-btn:hover { background: rgba(255,255,255,0.32); }
.wa-avatar {
    width: 46px; height: 46px;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,0.5);
}
.wa-avatar svg { width: 24px; height: 24px; fill: #fff; }
.wa-header-info h4 {
    color: #fff;
    margin: 0 0 2px 0;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
}
.wa-header-info p {
    color: rgba(255,255,255,0.85);
    margin: 0;
    font-size: 14px;
}
.wa-online-dot {
    width: 8px; height: 8px;
    background: #a8ffbf;
    border-radius: 50%;
    display: inline-block;
    margin-right: 4px;
    animation: wa-blink 1.6s infinite;
}
.wa-popup-body {
    padding: 20px 18px;
    background: #f0f4f8;
    min-height: 90px;
}
.wa-bubble {
    background: #fff;
    border-radius: 0 12px 12px 12px;
    padding: 12px 16px;
    font-size: 14px;
    color: #1a1a2e;
    line-height: 1.6;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    max-width: 90%;
    position: relative;
}
.wa-bubble::before {
    content: '';
    position: absolute;
    top: 0; left: -8px;
    border-width: 0 8px 8px 0;
    border-style: solid;
    border-color: transparent #fff transparent transparent;
}
.wa-bubble-time {
    font-size: 14px;
    color: #94a3b8;
    margin-top: 6px;
    text-align: right;
}
.wa-popup-footer {
    padding: 14px 18px 18px;
    background: #fff;
}
.wa-start-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 13px 20px;
    font-size: 14.5px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}
.wa-start-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.5);
    color: #fff;
    text-decoration: none;
    opacity: 0.95;
}
.wa-start-btn svg { width: 20px; height: 20px; fill: #fff; flex-shrink: 0; }
.wa-footer-note {
    text-align: center;
    font-size: 14px;
    color: #94a3b8;
    margin-top: 8px;
}
@media (max-width: 480px) {
    #wa-chat-popup { width: 290px; }
    #wa-chat-widget { bottom: 16px; right: 16px; }
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 2147483640;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,.12);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 340px;
    font-size: 14px;
    color: #475569;
}
.ck-msg { flex: 1; line-height: 1.5; }
.ck-msg a { color: #0d9488; font-weight: 600; text-decoration: underline; }
.ck-btns { display: flex; gap: 6px; flex-shrink: 0; }
.cookie-btn {
    padding: 5px 13px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    transition: all .15s;
}
.cookie-btn-ghost { background: #f1f5f9; color: #64748b; }
.cookie-btn-ghost:hover { background: #e2e8f0; }
#accept-cookies { background: #0d9488; color: #fff; }
#accept-cookies:hover { background: #0f766e; }
@media (max-width: 480px) {
    .cookie-banner { left: 12px; right: 12px; max-width: none; bottom: 14px; flex-wrap: wrap; }
}

/* ── includes/topnav ── */
.wsnp-topbar {
    background: #0f172a;
    border-bottom: 1px solid #1e293b;
    padding: 7px 0;
    font-family: 'Inter', 'Hind', Arial, sans-serif;
}
.wsnp-topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6px;
}
.wsnp-topbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 18px;
}
.wsnp-topbar ul li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #94a3b8;
}
.wsnp-topbar ul li i { color: #14b8a6; font-size: 14px; }
.wsnp-topbar ul li a { color: #94a3b8; text-decoration: none; transition: color .2s; }
.wsnp-topbar ul li a:hover { color: #fff; }
.topbar-login { font-weight: 600; letter-spacing: .3px; }
.topbar-register {
    background: #2dd4bf;
    color: #042f2e !important;
    padding: 4px 14px;
    border-radius: 999px;
    font-weight: 700;
    transition: background .2s !important;
}
.topbar-register:hover { background: #14b8a6; color: #042f2e !important; }
@media (max-width: 576px) {
    .wsnp-topbar-left { display: none !important; }
}

/* ── includes/menu ── */
/* ════════════════════════════════════════════
   NAVBAR – base (shared desktop + mobile)
════════════════════════════════════════════ */
.wsnp-navbar {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    font-family: 'Inter', 'Hind', Arial, sans-serif;
}
.wsnp-navbar-inner {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
    gap: 8px;
}
.wsnp-logo { flex-shrink: 0; }
.wsnp-logo img { display: block; height: 55px; width: auto; }

/* ── Right group ── */
.wsnp-nav-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

/* ── Currency ── */
.wsnp-currency-switcher {
    display: flex;
    align-items: center;
    gap: 2px;
    background: #f1f5f9;
    border-radius: 20px;
    padding: 3px;
    border: 1px solid #e2e8f0;
    flex-shrink: 0;
}
.wsnp-currency-switcher a {
    display: block;
    text-decoration: none;
    padding: 4px 10px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    transition: all .15s;
    white-space: nowrap;
}
.wsnp-currency-switcher a.active {
    background: #fff;
    color: #0f172a;
    box-shadow: 0 1px 4px rgba(0,0,0,.1);
}

/* Topbar variant: the pill sits on the dark #0f172a strip, left of Login */
.topbar-currency {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.14);
}
.topbar-currency a { color: #94a3b8; padding: 2px 9px; }
.topbar-currency a:hover { color: #e2e8f0; }
.topbar-currency a.active {
    background: #0d9488;
    color: #fff;
    box-shadow: none;
}

/* ── Order / Cart ── */
.wsnp-order-btn {
    background: #2dd4bf;
    color: #042f2e !important;
    border-radius: 999px;
    padding: 9px 20px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: .2px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(45,212,191,.35);
    transition: background .2s, transform .15s, box-shadow .2s;
}
.wsnp-order-btn:hover { background: #14b8a6; color: #042f2e !important; text-decoration: none; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(45,212,191,.45); }
.wsnp-cart-btn {
    position: relative;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 6px 12px;
    font-size: 16px;
    color: #1e293b;
    text-decoration: none;
    transition: background .15s;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}
.wsnp-cart-btn:hover { background: #e2e8f0; text-decoration: none; }
.wsnp-cart-badge {
    position: absolute;
    top: -6px; right: -6px;
    background: #b91c1c;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
    padding: 1px 5px;
    line-height: 1.4;
    min-width: 16px;
    text-align: center;
}

/* ════════════════════════════════════════════
   HAMBURGER BUTTON
════════════════════════════════════════════ */
.wsnp-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2px;
    width: 52px;
    height: 42px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 5px 6px 4px;
    border-radius: 8px;
    transition: background .15s;
    flex-shrink: 0;
}
.wsnp-hamburger:hover { background: #f1f5f9; }
.wsnp-hamburger-bars {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.wsnp-hamburger-bars span {
    display: block;
    width: 22px;
    height: 2px;
    background: #1e293b;
    border-radius: 2px;
    transition: transform .3s ease, opacity .3s ease, width .3s ease;
    transform-origin: center;
}
.wsnp-hamburger-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #334155;
    line-height: 1;
    margin-top: 1px;
    font-family: 'Inter', Arial, sans-serif;
    transition: color .2s;
    pointer-events: none;
    user-select: none;
}
.wsnp-hamburger:hover .wsnp-hamburger-label { color: #0d9488; }
/* Animate to X */
.wsnp-hamburger.open .wsnp-hamburger-bars span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.wsnp-hamburger.open .wsnp-hamburger-bars span:nth-child(2) { opacity: 0; width: 0; }
.wsnp-hamburger.open .wsnp-hamburger-bars span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.wsnp-hamburger.open .wsnp-hamburger-label { color: #ef4444; }

/* ════════════════════════════════════════════
   DESKTOP NAV
════════════════════════════════════════════ */
.wsnp-nav-desktop {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
    gap: 0;
}
.wsnp-nav-desktop > li {
    position: relative;
}
.wsnp-nav-desktop > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    padding: 24px 9px;
    text-transform: uppercase;
    letter-spacing: .3px;
    text-decoration: none;
    transition: color .2s;
    white-space: nowrap;
}
.wsnp-nav-desktop > li > a:hover,
.wsnp-nav-desktop > li.nav-active > a { color: #0d9488; }
.wsnp-nav-desktop > li > a i.nav-caret { font-size: 14px; transition: transform .2s; }
.wsnp-nav-desktop > li:hover > a i.nav-caret { transform: rotate(180deg); }

/* Dropdown */
.wsnp-dropdown {
    position: absolute;
    /* Flush against the nav item (no gap), a gap here is a dead zone the
       mouse has to cross with neither element hovered, which drops the
       :hover state and closes the menu before the cursor reaches it. */
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    box-shadow: 0 10px 36px rgba(0,0,0,.10);
    min-width: 230px;
    z-index: 1100;
    padding: 6px 0;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    pointer-events: none;
}
.wsnp-nav-desktop > li:hover > .wsnp-dropdown,
.wsnp-nav-desktop > li:focus-within > .wsnp-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
.wsnp-dropdown li { display: block; }
.wsnp-dropdown li a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    padding: 10px 18px;
    text-decoration: none;
    border-bottom: 1px solid #f8fafc;
    transition: all .15s;
}
.wsnp-dropdown li:last-child a { border-bottom: none; }
.wsnp-dropdown li a:hover { color: #0f766e; padding-left: 24px; background: #f8fafc; }
.wsnp-dropdown li a strong { color: #0f172a; }
.wsnp-dropdown li a i { font-size: 14px; width: 14px; text-align: center; }

/* ════════════════════════════════════════════
   MOBILE OVERLAY
════════════════════════════════════════════ */
.wsnp-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 1200;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity .3s ease;
}
.wsnp-mobile-overlay.open {
    display: block;
    opacity: 1;
}

/* ════════════════════════════════════════════
   MOBILE DRAWER
════════════════════════════════════════════ */
.wsnp-mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100dvh;
    background: #0f172a;
    z-index: 1300;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    transition: transform .32s cubic-bezier(.4,0,.2,1);
    box-shadow: -8px 0 40px rgba(0,0,0,.3);
}
.wsnp-mobile-drawer.open {
    transform: translateX(0);
}

/* Drawer header */
.wsnp-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid #1e293b;
    flex-shrink: 0;
}
.wsnp-drawer-header img { height: 38px; width: auto; display: block; }
.wsnp-drawer-close {
    background: #1e293b;
    border: none;
    color: #94a3b8;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: background .2s, color .2s;
}
.wsnp-drawer-close:hover { background: #b91c1c; color: #fff; }

/* Drawer currency */
.wsnp-drawer-currency {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 18px;
    border-bottom: 1px solid #1e293b;
    flex-shrink: 0;
}
.wsnp-drawer-currency a {
    flex: 1;
    text-align: center;
    text-decoration: none;
    padding: 7px 10px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #94a3b8;
    background: #1e293b;
    transition: all .15s;
}
.wsnp-drawer-currency a.active {
    background: #0f766e;
    color: #fff;
}

/* Mobile nav list */
.wsnp-mobile-nav {
    list-style: none;
    margin: 0;
    padding: 8px 0;
    flex: 1;
}
.wsnp-mobile-nav > li > a,
.mob-accordion {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 14px 20px;
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    background: transparent;
    border: none;
    border-bottom: 1px solid #1e293b;
    cursor: pointer;
    font-family: 'Inter', 'Hind', Arial, sans-serif;
    transition: background .15s, color .15s;
    gap: 10px;
}
.mob-accordion { justify-content: space-between; }
.mob-accordion > span { display: flex; align-items: center; gap: 10px; }
.wsnp-mobile-nav > li > a:hover,
.mob-accordion:hover { background: #1e293b; color: #fff; }
.wsnp-mobile-nav > li.mob-active > a,
.wsnp-mobile-nav > li.mob-active .mob-accordion { color: #2dd4bf; }

/* Accordion arrow */
.mob-arrow {
    font-size: 14px;
    color: #475569;
    transition: transform .25s ease;
    flex-shrink: 0;
}
.mob-has-sub.mob-open .mob-arrow { transform: rotate(90deg); color: #2dd4bf; }

/* Sub-menu accordion */
.mob-sub {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s cubic-bezier(.4,0,.2,1);
    background: #060d1a;
}
.mob-has-sub.mob-open .mob-sub { max-height: 400px; }
.mob-sub li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px 12px 36px;
    color: #94a3b8;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    border-bottom: 1px solid #0f172a;
    transition: color .15s, background .15s;
}
.mob-sub li a:hover { color: #2dd4bf; background: #0f172a; }
.mob-sub li a i { font-size: 14px; width: 14px; text-align: center; color: #475569; }
.mob-sub li:last-child a { border-bottom: none; }

/* Drawer auth buttons */
.wsnp-drawer-auth {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 18px;
    border-top: 1px solid #1e293b;
    flex-shrink: 0;
}
.drawer-auth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: opacity .15s;
    cursor: pointer;
}
.drawer-auth-btn:hover { opacity: .88; text-decoration: none; }
.drawer-login {
    background: #1e293b;
    color: #cbd5e1 !important;
}
.drawer-register {
    background: #0d9488;
    color: #fff !important;
}
.drawer-logout {
    background: #1e293b;
    color: #f87171 !important;
}

/* ════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
════════════════════════════════════════════ */

/* ── 1024px: slightly tighten desktop nav ── */
@media (max-width: 1024px) {
    .wsnp-nav-desktop > li > a {
        padding: 22px 10px;
        font-size: 14px;
    }
}

/* ── 900px: switch to mobile drawer ── */
@media (max-width: 900px) {
    .wsnp-nav-desktop { display: none; }
    .wsnp-hamburger { display: flex; }
}

/* ── 600px: smaller currency + order btn ── */
@media (max-width: 600px) {
    .wsnp-navbar-inner { padding: 0 14px; min-height: 62px; }
    .wsnp-logo img { height: 46px; }
    .wsnp-currency-switcher a { padding: 3px 7px; font-size: 14px; }
    .wsnp-order-btn { padding: 6px 10px; font-size: 14px; }
    .wsnp-cart-btn { padding: 5px 9px; font-size: 14px; }
}

/* ── 400px: tighten navbar (currency now lives in the topbar + drawer) ── */
@media (max-width: 400px) {
    .wsnp-navbar-inner { gap: 6px; }
}

/* ── Body scroll lock when drawer open ── */
body.wsnp-drawer-open { overflow: hidden; }

/* ── includes/top-offer ── */
.display-inline {
        display: inline-block;
    }
    .ofer-content {
        padding: 0px 0;
        position: relative;
    }
    .bg-primary {
        background: url(../img/ofer-bg.jpg) no-repeat center center;
        background-size: cover;
    }

    #ofer_bar button.close {
        border: 2px solid #ff0;
        border-radius: 50%;
        margin-top: -1px;
        right: 15px;
        top: 19px;
        width: 16px;
        height: 16px;
        position: fixed;
        opacity: .6;
    }
    .container{margin-right: auto;
        margin-left: auto;
        padding-left: 10px;
        padding-right: 10px
    }

    #ofer_bar button.close:after, #ofer_bar button.close:before {
        background-color: #ffffff;
        left: 5px;
        top: 1px;
        content: '';
        height: 9px;
        width: 2px;
    }
    #ofer_bar button.close:hover{
        opacity: .9;
    }

    .ofer-content p.ofer-text {
        font-size: 17px;
        font-weight: 500;
        vertical-align: middle;
        position: relative;
    }
    p.small, button.small, a.small, ul.small li {
        font-size: 14px;
    }
    p {
        display: block;
        -webkit-margin-before: 1em;
        -webkit-margin-after: 1em;
        -webkit-margin-start: 0px;
        -webkit-margin-end: 0px;
    }
    .center {
        text-align: center;
    }
    .bg-primary {
        color: #fff;
        background-color: #337ab7;
    }
    *:before, *:after {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
    button, input, optgroup, select, textarea {
        color: inherit;
        font: inherit;
        margin: 0;
    }
    html {
        font-size: 14px;
        -webkit-tap-highlight-color: transparent;
    }

    .ofer-content p.ofer-text span.offer-text {
        font-size: 40px;
        font-weight: 800;
        vertical-align: sub;
        position: relative;
        margin-right: 50px;
    }


    .ofer-content p.ofer-text span.offer-text sup {
        font-size: 17px;
        color: #fdb81f;
        font-weight: 700;
        top: -1em;
    }
    .blink {
        color: lightgoldenrodyellow;
        animation: blinker 1s linear infinite;
    }

    @keyframes blinker {
        50% {
            opacity: 0;
        }
    }

    .ofer-content p.ofer-text span.offer-text:after {
        content: "OFF";
        position: absolute;
        right: -24px;
        font-size: 16px;
        bottom: 3px;
    }

    .ofer-content p.ofer-text span.offer-text:before {
        content: '%';
        position: absolute;
        right: -8px;
        font-size: 14px;
        top: 9px;
    }

    .ofer-content p.ofer-text span.offer-text {
        font-size: 40px;
        font-weight: 800;
        vertical-align: middle;
        position: relative;
        margin-right: 60px;
    }

    .ofer-content p.ofer-text span.red {
        color: #fdb81f;
        font-weight: bold;
    }

    button.ofer-mod {
        background-color: #fbec3d;
        border-radius: 50px;
        color: #25014a;
        font-weight: 700;
        padding: 6px 11px;
        line-height: normal;
        margin: 0 auto;
        letter-spacing: 1px;
    }

    button.ofer-mod:hover {
        opacity: .9;
    }

    .display-inline.btn-container {
        margin-top: -3px;
        margin-left: 20px;
    }

    .close:before, .close:after {
        position: absolute;
        left: 12px;
        top: 3px;
        content: '';
        height: 19px;
        width: 2px;
        background-color: #fff;
    }
    .close:before {
        transform: rotate(45deg);
    }
    .close:after {
        transform: rotate(-45deg);
    }

    @media screen and (max-width: 680px) {
        #ofer_bar {
            display: none;
        }
    }
    #ofer_bar button.close:hover {
        opacity: .9;
    }

/* ── includes/footer ── */
/* Payment methods trust row */
.wf-payments { border-bottom: 1px solid rgba(255,255,255,.07); }
.wf-payments-inner {
    max-width: 1200px; margin: 0 auto; padding: 18px 24px;
    display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
}
.wf-payments-label { font-size: 14px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #64748b; }
.wf-payments-icons { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.wf-payments-icons i { font-size: 26px; color: #cbd5e1; }
.wf-payment-badge {
    font-size: 14px; font-weight: 700; color: #cbd5e1;
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
    padding: 4px 10px; border-radius: 4px;
}

/* Social icons in bottom bar */
.wf-social {
    display: flex;
    gap: 15px;
}
.wf-social a {
    color: #475569;
    font-size: 15px;
    transition: color 0.2s, transform 0.2s;
}
.wf-social a:hover {
    color: #0d9488;
    transform: translateY(-2px);
}
@media (max-width: 768px) {
    .wf-social { margin: 10px 0; }
}

/* ── Footer: pure flexbox, zero Bootstrap grid dependency ─────── */
.ws-footer {
    background: #0b2b26;
    font-family: 'Inter', 'Hind', Arial, sans-serif;
}

/* Main wrapper: centred, max-width, padded */
.wf-main {
    padding: 52px 0 36px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

/* Flex row of 4 columns */
.wf-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.wf-col {
    flex: 1 1 200px;
    min-width: 160px;
    padding: 0 20px 24px 0;
}
.wf-col:last-child { padding-right: 0; }

/* Column heading */
.wf-heading {
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 1.8px !important;
    text-transform: uppercase !important;
    color: #e2e8f0 !important;
    padding-bottom: 10px !important;
    margin-bottom: 18px !important;
    border-bottom: 2px solid #0d9488 !important;
    display: inline-block !important;
    text-align: left !important;
}

/* Link list */
.wf-list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}
.wf-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 9px;
    font-size: 14px;
    color: #94a3b8;
    border-bottom: none !important;
    padding: 0 !important;
}
.wf-list li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color .2s, padding-left .15s;
    font-size: 14px;
}
.wf-list li a:hover { color: #2dd4bf; padding-left: 3px; }

/* Contact column icons */
.wf-contact li i {
    color: #14b8a6;
    font-size: 14px;
    width: 15px;
    flex-shrink: 0;
}

/* Bottom bar */
.wf-bottom {
    background: #020617;
    padding: 14px 0;
}
.wf-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}
.wf-copy {
    font-size: 14px;
    color: #475569;
}
.wf-copy a {
    color: #64748b;
    text-decoration: none;
    transition: color .2s;
}
.wf-copy a:hover { color: #94a3b8; }
.wf-tagline {
    font-size: 14px;
    color: #334155;
}

/* Responsive */
@media (max-width: 768px) {
    .wf-col { flex: 1 1 45%; padding-right: 12px; }
}
@media (max-width: 480px) {
    .wf-col { flex: 1 1 100%; padding-right: 0; }
    .wf-bottom-inner { flex-direction: column; align-items: flex-start; gap: 6px; }
    .wf-tagline { display: none; }
}

/* ── partials/ai-pro-popup ── */
#aipro-popup-overlay { display:none; position:fixed; inset:0; background:rgba(15,23,42,.62); z-index:2147483630; align-items:center; justify-content:center; padding:16px; }
#aipro-popup-overlay.aipro-open { display:flex; }
#aipro-popup { position:relative; background:#fff; border-radius:18px; max-width:400px; width:100%; padding:30px 28px 24px; box-shadow:0 24px 64px rgba(0,0,0,.35); text-align:center; animation:aiproPopIn .3s ease; }
@keyframes aiproPopIn { from { opacity:0; transform:translateY(18px) scale(.97); } to { opacity:1; transform:none; } }
#aipro-popup-close { position:absolute; top:10px; right:14px; background:none; border:none; font-size:26px; line-height:1; color:#94a3b8; cursor:pointer; }
#aipro-popup-close:hover { color:#334155; }
.aipro-pop-badge { display:inline-block; background:linear-gradient(90deg,#4285F4,#9b72cb,#d96570); color:#fff; font-size: 14px; font-weight:800; letter-spacing:1px; padding:4px 12px; border-radius:20px; margin-bottom:12px; }
#aipro-popup h3 { font-size:21px; font-weight:800; color:#0f172a; margin:0 0 14px; line-height:1.3; }
#aipro-popup h3 em { font-style:normal; color:#1a73e8; }
.aipro-pop-list { list-style:none; margin:0 0 14px; padding:0; text-align:left; }
.aipro-pop-list li { font-size: 14px; color:#334155; padding:5px 0; }
.aipro-pop-list li i { color:#1a73e8; width:20px; text-align:center; margin-right:7px; }
.aipro-pop-price { font-size:26px; font-weight:800; color:#0f172a; margin-bottom:14px; }
.aipro-pop-price span { font-size: 14px; font-weight:600; color:#64748b; }
.aipro-pop-cta { display:block; background:#1a73e8; color:#fff !important; font-weight:700; font-size:15px; padding:12px 18px; border-radius:10px; text-decoration:none; }
.aipro-pop-cta:hover { background:#1557b0; text-decoration:none; }
.aipro-pop-later { background:none; border:none; color:#94a3b8; font-size: 14px; margin-top:10px; cursor:pointer; }
.aipro-pop-later:hover { color:#475569; }
@media (max-width:480px){ #aipro-popup { padding:24px 18px 18px; } }

/* ── Floating Quick Connect Hub ─────────────────────────────── */
.qc-hub {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}
.qc-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateY(10px) scale(0.95);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
}
.qc-hub.open .qc-menu {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.qc-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 50px;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 700;
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    transition: transform 0.15s, box-shadow 0.15s;
    white-space: nowrap;
}
.qc-btn:hover { transform: scale(1.05); box-shadow: 0 6px 22px rgba(0,0,0,0.25); }
.qc-btn.whatsapp { background: #25d366; }
.qc-btn.phone    { background: #0d9488; }
.qc-btn.chat     { background: #0f172a; }
.qc-btn.ticket   { background: #0f766e; }
.qc-btn i        { font-size: 16px; }
.qc-toggle {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg,#0d9488,#0f766e);
    border: none;
    cursor: pointer;
    color: #fff;
    font-size: 22px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 24px rgba(13,148,136,0.4);
    transition: transform 0.22s, box-shadow 0.22s;
}
.qc-toggle:hover { transform: scale(1.08); box-shadow: 0 8px 28px rgba(13,148,136,0.5); }
.qc-toggle .qc-close { display: none; }
.qc-hub.open .qc-toggle .qc-open  { display: none; }
.qc-hub.open .qc-toggle .qc-close { display: block; }
@media (max-width: 480px) {
    .qc-hub { bottom: 16px; right: 16px; }
    .qc-btn span { display: none; }
    .qc-btn { padding: 12px; border-radius: 50%; }
}

