:root{
    --nl-blue:#1D6FB8;
    --nl-blue-dark:#0E4C82;
    --nl-maroon:#7A1220;
    --nl-gray:#54585E;
    --nl-green:#3CB878;
    --nl-teal:#2E9BB0;
    --nl-ink:#23262B;
    --nl-offwhite:#F7F8FA;
    --nl-line:#E7E9EC;
}
body{ font-family:'Manrope', sans-serif; color:var(--nl-ink); background:#fff; }
h1,h2,h3{ font-family:'Fraunces', serif; font-weight:500; }

/* Top bar */
.nl-topbar{ background:var(--nl-blue-dark); color:#fff; font-size:12.5px; }
.nl-topbar-inner{ max-width:1320px; margin:0 auto; display:flex; justify-content:space-between; align-items:center; padding:8px 32px; }
.nl-topbar-contact{ display:flex; gap:26px; }
.nl-topbar-contact a, .nl-topbar-loc{ color:rgba(255,255,255,0.9); text-decoration:none; display:inline-flex; align-items:center; gap:6px; }
.nl-topbar-contact a:hover{ color:#fff; }
.nl-topbar-social{ display:flex; gap:14px; }
.nl-topbar-social a{ color:rgba(255,255,255,0.85); text-decoration:none; font-weight:700; font-size:11px; letter-spacing:.05em; }

/* Header */
.nl-header{ background:#fff; border-bottom:1px solid var(--nl-line); position:sticky; top:0; z-index:999; box-shadow:0 2px 10px rgba(0,0,0,0.03); }
.nl-header-inner{ max-width:1320px; margin:0 auto; display:flex; align-items:center; justify-content:space-between; padding:16px 32px; gap:32px; }

.nl-logo img{ width:auto; }

/* Nav + dropdown */
.nl-nav{ flex:1; display:flex; justify-content:center; }
.nl-menu{ list-style:none; display:flex; align-items:center; gap:34px; margin:0; padding:0; }
.nl-menu > li{ position:relative; }
.nl-menu > li > a{
    display:block; padding:26px 0; color:var(--nl-ink); font-size:13px;
    text-transform:uppercase; letter-spacing:.07em; font-weight:700;
    text-decoration:none; white-space:nowrap;
    border-bottom:2px solid transparent; transition:color .2s, border-color .2s;
}
.nl-menu > li > a:hover{ color:var(--nl-blue); border-color:var(--nl-maroon); }

.nl-menu .sub-menu{
    list-style:none; margin:0; padding:8px 0;
    position:absolute; top:100%; left:0; min-width:230px;
    background:#fff; border:1px solid var(--nl-line);
    border-top:2px solid var(--nl-maroon);
    box-shadow:0 12px 24px rgba(0,0,0,0.08);
    opacity:0; visibility:hidden; transform:translateY(6px);
    transition:opacity .2s ease, transform .2s ease, visibility .2s;
    z-index:200;
}
.nl-menu > li:hover > .sub-menu,
.nl-menu > li:focus-within > .sub-menu{ opacity:1; visibility:visible; transform:translateY(0); }
.nl-menu .sub-menu li a{
    display:block; padding:10px 20px; color:var(--nl-gray);
    font-size:12.5px; text-transform:uppercase; letter-spacing:.04em;
    font-weight:600; text-decoration:none; border-left:2px solid transparent;
    transition:background .2s, border-color .2s, color .2s;
}
.nl-menu .sub-menu li a:hover{ background:var(--nl-offwhite); border-color:var(--nl-blue); color:var(--nl-blue); }
.nl-menu li.menu-item-has-children > a::after{
    content:"›"; display:inline-block; margin-left:6px; transform:rotate(90deg);
    font-size:14px; position:relative; top:-1px; opacity:.6;
}

.nl-header-actions{ display:flex; align-items:center; gap:22px; flex-shrink:0; }
.nl-icon-btn, .nl-cart-btn{ color:var(--nl-ink); position:relative; display:flex; }
.nl-icon-btn:hover, .nl-cart-btn:hover{ color:var(--nl-blue); }
.nl-cart-count{ position:absolute; top:-8px; right:-10px; background:var(--nl-maroon); color:#fff; font-size:10px; font-weight:700; width:16px; height:16px; border-radius:50%; display:flex; align-items:center; justify-content:center; }
.nl-mobile-toggle{ display:none; flex-direction:column; gap:4px; background:none; border:0; cursor:pointer; }
.nl-mobile-toggle span{ width:22px; height:2px; background:var(--nl-ink); }
.nl-mobile-menu{ display:none; }

@media(max-width:900px){
    .nl-topbar-contact a:nth-child(2){ display:none; }
    .nl-nav{ display:none; }
    .nl-mobile-toggle{ display:flex; }
    .nl-mobile-menu{ display:none; flex-direction:column; padding:0 32px 20px; background:#fff; border-top:1px solid var(--nl-line); }
    .nl-mobile-menu.is-open{ display:flex; }
    .nl-mobile-menu-list{ list-style:none; padding:0; margin:0; }
    .nl-mobile-menu-list li{ padding:10px 0; border-top:1px solid var(--nl-line); }
    .nl-mobile-menu-list a{ color:var(--nl-ink); text-decoration:none; text-transform:uppercase; font-size:13px; letter-spacing:.05em; }
    .nl-mobile-menu-list .sub-menu{ list-style:none; padding-left:14px; }
    .nl-mobile-menu-list .sub-menu a{ font-size:12px; opacity:.75; }
}

/* Badge bar */
.nl-badgebar{ background:linear-gradient(90deg, var(--nl-green), var(--nl-teal)); }
.nl-badgebar-inner{
    max-width:1320px; margin:0 auto; padding:16px 32px;
    display:flex; flex-wrap:wrap; justify-content:space-between; gap:16px;
}
.nl-badge-item{
    display:flex; align-items:center; gap:10px; color:#fff;
    font-size:13.5px; font-weight:600;
}
.nl-badge-icon{
    width:32px; height:32px; border-radius:50%; background:rgba(255,255,255,0.22);
    display:flex; align-items:center; justify-content:center; flex-shrink:0;
}

/* Badge bar */
.nl-badgebar{ background:linear-gradient(90deg, var(--nl-blue-dark), var(--nl-blue)); }
.nl-badgebar-inner{
    max-width:1320px; margin:0 auto; padding:16px 32px;
    display:flex; flex-wrap:wrap; justify-content:space-between; gap:16px;
}
.nl-badge-item{
    display:flex; align-items:center; gap:10px; color:#fff;
    font-size:13.5px; font-weight:600;
}
.nl-badge-icon{
    width:32px; height:32px; border-radius:50%; background:rgba(255,255,255,0.2);
    display:flex; align-items:center; justify-content:center; flex-shrink:0;
    color:var(--nl-green);
}

/* Footer */
.nl-footer{ background:linear-gradient(160deg, #0E2A47, #123655); color:#fff; padding:60px 32px 24px; }
.nl-footer-grid{
    max-width:1320px; margin:0 auto;
    display:grid; grid-template-columns:1.5fr 1fr 1fr 1.3fr; gap:44px;
    padding-bottom:40px; border-bottom:1px solid rgba(255,255,255,0.12);
}
.nl-footer-logo{ height:40px; margin-bottom:16px; border-radius:6px; background:#fff; padding:4px 8px; }
.nl-footer-brand p{ color:rgba(255,255,255,0.7); font-size:13.5px; line-height:1.8; margin-bottom:18px; max-width:280px; }
.nl-footer-social-icons{ display:flex; gap:10px; }
.nl-footer-social-icons a{
    width:36px; height:36px; border-radius:8px; background:rgba(255,255,255,0.08);
    display:flex; align-items:center; justify-content:center; color:#fff;
    transition:background .2s;
}
.nl-footer-social-icons a:hover{ background:var(--nl-maroon); }

.nl-footer-col h5{
    font-size:15px; font-weight:700; color:#fff; margin-bottom:14px; position:relative; padding-bottom:12px;
}
.nl-footer-col h5::after{ content:""; position:absolute; left:0; bottom:0; width:32px; height:2px; background:var(--nl-maroon); }
.nl-footer-col ul{ list-style:none; padding:0; margin:0; }
.nl-footer-col li{ margin-bottom:11px; }
.nl-footer-col a{ color:rgba(255,255,255,0.72); font-size:13.5px; text-decoration:none; transition:color .2s; }
.nl-footer-col a:hover{ color:var(--nl-green); }

.nl-footer-contact li{ display:flex; align-items:flex-start; gap:12px; margin-bottom:16px; }
.nl-contact-icon{
    width:30px; height:30px; border-radius:6px; background:rgba(255,255,255,0.1);
    display:flex; align-items:center; justify-content:center; flex-shrink:0; color:var(--nl-green);
}
.nl-footer-contact div{ font-size:13.5px; color:rgba(255,255,255,0.85); line-height:1.6; }
.nl-contact-label{ font-size:10.5px; text-transform:uppercase; letter-spacing:.08em; color:rgba(255,255,255,0.5); }

.nl-payment-methods{ margin-top:14px; }
.nl-payment-label{ font-size:10.5px; text-transform:uppercase; letter-spacing:.08em; color:rgba(255,255,255,0.5); display:block; margin-bottom:10px; }
.nl-payment-badges{ display:flex; flex-wrap:wrap; gap:8px; }
.nl-payment-badges span{
    background:#fff; color:var(--nl-ink); font-size:11px; font-weight:700;
    padding:6px 10px; border-radius:4px;
}

.nl-footer-bottom{
    max-width:1320px; margin:0 auto; display:flex; flex-wrap:wrap; justify-content:space-between; align-items:center;
    gap:16px; padding-top:24px; font-size:12.5px; color:rgba(255,255,255,0.55);
}
.nl-footer-sites{ display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
.nl-sites-label{ margin-right:4px; }
.nl-site-tab{
    background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.12);
    color:rgba(255,255,255,0.7); text-decoration:none; font-size:11.5px;
    padding:6px 12px; border-radius:6px; display:flex; align-items:center; gap:6px;
}
.nl-site-tab strong{ color:#fff; font-weight:700; }
.nl-site-tab.is-active{ border-color:var(--nl-maroon); background:rgba(122,18,32,0.25); color:#fff; }

@media(max-width:900px){
    .nl-badgebar-inner{ justify-content:flex-start; }
    .nl-footer-grid{ grid-template-columns:1fr 1fr; gap:32px; }
    .nl-footer-brand{ grid-column:span 2; }
    .nl-footer-bottom{ flex-direction:column; align-items:flex-start; }
}