/* ═══════════════════════════════════════════════════════════════
   Novalight SA - Main Stylesheet
   شركة نوفالايت للأدوات الصحية
   Version: 1.0.0 | RTL Arabic | Professional Design
═══════════════════════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
    --nl-primary:       #1B3F8B;
    --nl-primary-dark:  #122B63;
    --nl-primary-light: #2D56B5;
    --nl-secondary:     #4A9FD4;
    --nl-accent:        #C4923A;
    --nl-accent-light:  #E8B96A;
    --nl-white:         #FFFFFF;
    --nl-off-white:     #F4F7FB;
    --nl-light:         #EEF2F8;
    --nl-dark:          #0D1B2A;
    --nl-text:          #1E2D40;
    --nl-text-light:    #627385;
    --nl-border:        #D1DBE8;
    --nl-success:       #10B981;
    --nl-warning:       #F59E0B;
    --nl-danger:        #EF4444;
    --nl-shadow-sm:     0 2px 8px rgba(27,63,139,.08);
    --nl-shadow:        0 4px 20px rgba(27,63,139,.12);
    --nl-shadow-lg:     0 8px 40px rgba(27,63,139,.18);
    --nl-shadow-xl:     0 16px 60px rgba(27,63,139,.24);
    --nl-radius-sm:     8px;
    --nl-radius:        12px;
    --nl-radius-lg:     20px;
    --nl-radius-xl:     32px;
    --nl-transition:    all .3s cubic-bezier(.4,0,.2,1);
    --nl-font:          'Cairo', 'Segoe UI', Tahoma, Arial, sans-serif;
    --nl-container:     1280px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
    direction: rtl;
}

body {
    font-family: var(--nl-font);
    font-size: 1rem;
    line-height: 1.75;
    color: var(--nl-text);
    background: var(--nl-white);
    direction: rtl;
    text-align: right;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--nl-transition); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--nl-font); border: none; background: none; }
input, textarea, select { font-family: var(--nl-font); direction: rtl; }

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

/* ── Typography ── */
h1,h2,h3,h4,h5,h6 { font-family: var(--nl-font); font-weight: 700; line-height: 1.3; color: var(--nl-dark); }
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; }

/* ── Buttons ── */
.nl-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--nl-radius);
    font-family: var(--nl-font);
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--nl-transition);
    border: 2px solid transparent;
    white-space: nowrap;
    text-decoration: none;
}
.nl-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.nl-btn-primary {
    background: var(--nl-accent);
    color: var(--nl-white);
    border-color: var(--nl-accent);
    box-shadow: 0 4px 15px rgba(196,146,58,.3);
}
.nl-btn-primary:hover {
    background: #a87d2e;
    border-color: #a87d2e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196,146,58,.4);
    color: var(--nl-white);
}

.nl-btn-outline {
    background: transparent;
    color: var(--nl-primary);
    border-color: var(--nl-primary);
}
.nl-btn-outline:hover {
    background: var(--nl-primary);
    color: var(--nl-white);
    transform: translateY(-2px);
}

.nl-btn-white {
    background: var(--nl-white);
    color: var(--nl-primary);
    border-color: var(--nl-white);
}
.nl-btn-white:hover {
    background: var(--nl-accent);
    color: var(--nl-white);
    border-color: var(--nl-accent);
    transform: translateY(-2px);
}

.nl-btn-wa {
    background: #25D366;
    color: var(--nl-white);
    border-color: #25D366;
    box-shadow: 0 4px 15px rgba(37,211,102,.3);
}
.nl-btn-wa:hover {
    background: #1da851;
    border-color: #1da851;
    transform: translateY(-2px);
    color: var(--nl-white);
    box-shadow: 0 8px 25px rgba(37,211,102,.4);
}

.nl-btn-wa-outline {
    background: transparent;
    color: var(--nl-white);
    border-color: rgba(255,255,255,.5);
}
.nl-btn-wa-outline:hover {
    background: #25D366;
    border-color: #25D366;
    color: var(--nl-white);
    transform: translateY(-2px);
}

/* ── Top Bar ── */
.nl-topbar {
    background: var(--nl-primary-dark);
    color: rgba(255,255,255,.85);
    font-size: .82rem;
    padding: 8px 0;
    position: relative;
    z-index: 100;
}
.nl-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6px;
}
.nl-topbar-right, .nl-topbar-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.nl-topbar-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255,255,255,.85);
    font-size: .8rem;
    transition: var(--nl-transition);
}
.nl-topbar-item:hover { color: var(--nl-accent-light); }
.nl-topbar-item svg { width: 13px; height: 13px; flex-shrink: 0; }

.nl-topbar-whatsapp {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #25D366;
    color: var(--nl-white) !important;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .78rem;
    font-weight: 600;
    transition: var(--nl-transition);
}
.nl-topbar-whatsapp:hover { background: #1da851; transform: scale(1.03); }
.nl-topbar-whatsapp svg { width: 14px; height: 14px; }

/* ── Header ── */
.nl-header {
    background: var(--nl-white);
    box-shadow: var(--nl-shadow-sm);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: var(--nl-transition);
}
.nl-header.nl-scrolled {
    box-shadow: var(--nl-shadow);
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(10px);
}
.nl-header-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 12px;
    padding-bottom: 12px;
}
.nl-header-inner .nl-menu-toggle { order: -1; flex-shrink: 0; }
.nl-header-inner .nl-logo-wrap   { flex-shrink: 0; }
.nl-header-inner .nl-header-actions { margin-right: auto; display: flex; align-items: center; gap: 10px; }

/* Logo */
.nl-logo-wrap { display: flex; align-items: center; }
.nl-logo-wrap a, .nl-logo-wrap .custom-logo-link {
    display: flex; align-items: center; gap: 12px; text-decoration: none;
}
.nl-logo-wrap img, .custom-logo { max-height: 70px; width: auto; }
.nl-logo-text-link {
    display: flex !important;
    align-items: center;
    gap: 12px;
}
.nl-logo-svg-wrap { flex-shrink: 0; }
.nl-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.nl-logo-ar {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--nl-primary);
    letter-spacing: -.5px;
}
.nl-logo-en {
    font-size: .85rem;
    font-weight: 800;
    color: var(--nl-accent);
    letter-spacing: 2px;
}
.nl-logo-sub {
    font-size: .7rem;
    color: var(--nl-text-light);
    font-weight: 400;
}

/* Search */
.nl-header-search { flex: 1; max-width: 500px; margin: 0 auto; }
.nl-search-form {
    display: flex;
    align-items: center;
    background: var(--nl-off-white);
    border: 2px solid var(--nl-border);
    border-radius: var(--nl-radius-xl);
    overflow: hidden;
    transition: var(--nl-transition);
}
.nl-search-form:focus-within {
    border-color: var(--nl-primary);
    background: var(--nl-white);
    box-shadow: 0 0 0 4px rgba(27,63,139,.1);
}
.nl-search-form input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 11px 18px;
    font-size: .9rem;
    color: var(--nl-text);
    outline: none;
    min-width: 0;
    text-align: right;
}
.nl-search-form input::placeholder { color: var(--nl-text-light); }
.nl-search-form button {
    padding: 11px 18px;
    background: var(--nl-primary);
    color: var(--nl-white);
    border: none;
    cursor: pointer;
    transition: var(--nl-transition);
    flex-shrink: 0;
}
.nl-search-form button:hover { background: var(--nl-accent); }
.nl-search-form button svg { width: 18px; height: 18px; }

/* Header Actions */
.nl-header-actions { display: flex; align-items: center; gap: 12px; }

.nl-cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--nl-light);
    border-radius: var(--nl-radius);
    color: var(--nl-primary);
    transition: var(--nl-transition);
}
.nl-cart-btn:hover { background: var(--nl-primary); color: var(--nl-white); }
.nl-cart-btn svg { width: 20px; height: 20px; }
.nl-cart-count {
    position: absolute;
    top: -5px;
    left: -5px;
    background: var(--nl-accent);
    color: var(--nl-white);
    font-size: .65rem;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Toggle */
.nl-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: var(--nl-radius-sm);
    background: var(--nl-light);
    transition: var(--nl-transition);
}
.nl-menu-toggle:hover { background: var(--nl-primary); }
.nl-menu-toggle:hover span { background: var(--nl-white); }
.nl-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--nl-primary);
    border-radius: 2px;
    transition: var(--nl-transition);
}

/* ── Navigation ── */
.nl-nav {
    background: var(--nl-primary);
}
.nl-nav .nl-container { padding: 0 20px; }
.nl-menu {
    display: flex;
    align-items: center;
    gap: 0;
}
.nl-menu li { position: relative; }
.nl-menu > li > a {
    display: block;
    padding: 15px 20px;
    color: rgba(255,255,255,.9);
    font-size: .9rem;
    font-weight: 600;
    transition: var(--nl-transition);
    position: relative;
}
.nl-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 20px;
    left: 20px;
    height: 3px;
    background: var(--nl-accent);
    transform: scaleX(0);
    transition: var(--nl-transition);
    border-radius: 3px 3px 0 0;
}
.nl-menu > li > a:hover { color: var(--nl-accent-light); }
.nl-menu > li > a:hover::after,
.nl-menu > li.current-menu-item > a::after,
.nl-menu > li.current_page_item > a::after { transform: scaleX(1); }
.nl-menu > li.current-menu-item > a,
.nl-menu > li.current_page_item > a { color: var(--nl-accent-light); }

/* Dropdown */
.nl-menu li ul {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 220px;
    background: var(--nl-white);
    border-radius: 0 0 var(--nl-radius) var(--nl-radius);
    box-shadow: var(--nl-shadow-lg);
    border-top: 3px solid var(--nl-accent);
    z-index: 1000;
}
.nl-menu li:hover > ul { display: block; animation: nl-dropdown-show .2s ease; }
@keyframes nl-dropdown-show { from { opacity:0; transform:translateY(-5px); } to { opacity:1; transform:translateY(0); } }
.nl-menu li ul li a {
    display: block;
    padding: 10px 18px;
    color: var(--nl-text);
    font-size: .88rem;
    font-weight: 500;
    border-bottom: 1px solid var(--nl-border);
    transition: var(--nl-transition);
}
.nl-menu li ul li:last-child a { border-bottom: none; }
.nl-menu li ul li a:hover { background: var(--nl-off-white); color: var(--nl-primary); padding-right: 26px; }

/* Mobile Menu */
.nl-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 90vw);
    height: 100vh;
    background: var(--nl-white);
    z-index: 9999;
    box-shadow: var(--nl-shadow-xl);
    transition: right .35s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
}
.nl-mobile-menu.is-open { right: 0; }
.nl-mobile-menu-inner { padding: 20px; }
.nl-mobile-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--nl-light);
    color: var(--nl-text);
    font-size: 1rem;
    margin-bottom: 20px;
    transition: var(--nl-transition);
}
.nl-mobile-close:hover { background: var(--nl-danger); color: var(--nl-white); }
.nl-mobile-nav li a {
    display: block;
    padding: 13px 0;
    border-bottom: 1px solid var(--nl-border);
    color: var(--nl-text);
    font-weight: 600;
    font-size: 1rem;
}
.nl-mobile-nav li a:hover { color: var(--nl-primary); padding-right: 8px; }
.nl-mobile-contact {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.nl-mobile-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--nl-text);
    font-weight: 600;
    font-size: .95rem;
}
.nl-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: var(--nl-transition);
    backdrop-filter: blur(3px);
}
.nl-mobile-overlay.is-open { opacity: 1; visibility: visible; }

/* ── Breadcrumbs ── */
.nl-breadcrumbs {
    background: var(--nl-off-white);
    border-bottom: 1px solid var(--nl-border);
    padding: 12px 0;
}
.nl-breadcrumb-list, .nl-breadcrumbs ol {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: .85rem;
}
.nl-breadcrumbs ol li, .nl-breadcrumb-list li { display: flex; align-items: center; gap: 6px; }
.nl-breadcrumbs a { color: var(--nl-text-light); }
.nl-breadcrumbs a:hover { color: var(--nl-primary); }
.nl-breadcrumbs .active, .nl-breadcrumbs li:last-child a { color: var(--nl-primary); font-weight: 600; }
.nl-bc-sep { color: var(--nl-text-light); font-size: .75rem; }

/* ── Section Shared ── */
.nl-section-head {
    text-align: center;
    margin-bottom: 56px;
}
.nl-section-badge {
    display: inline-block;
    background: var(--nl-light);
    color: var(--nl-primary);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 14px;
    border: 1px solid var(--nl-border);
}
.nl-section-head h2 { margin-bottom: 14px; }
.nl-section-head p { color: var(--nl-text-light); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.nl-section-cta { text-align: center; margin-top: 40px; }

/* ── Hero ── */
.nl-hero {
    position: relative;
    min-height: 88vh;
    background:
        linear-gradient(135deg, rgba(13,27,42,.92) 0%, rgba(27,63,139,.85) 50%, rgba(74,159,212,.7) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><rect width="60" height="60" fill="%231B3F8B" opacity=".05"/><circle cx="30" cy="30" r="20" fill="none" stroke="%234A9FD4" stroke-width=".5" opacity=".3"/><circle cx="30" cy="30" r="10" fill="none" stroke="%23C4923A" stroke-width=".5" opacity=".2"/></svg>');
    background-size: cover, 60px 60px;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.nl-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(196,146,58,.15) 0%, transparent 60%);
    pointer-events: none;
}
.nl-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    padding-bottom: 80px;
    max-width: 800px;
}
.nl-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(196,146,58,.2);
    border: 1px solid rgba(196,146,58,.4);
    color: var(--nl-accent-light);
    font-size: .82rem;
    font-weight: 700;
    padding: 7px 18px;
    border-radius: 30px;
    margin-bottom: 24px;
    letter-spacing: .5px;
}
.nl-hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    color: var(--nl-white);
    line-height: 1.2;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.nl-hero-brand { color: var(--nl-accent-light); }
.nl-hero-sub {
    font-size: 1.2rem;
    color: rgba(255,255,255,.8);
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 1px;
}
.nl-hero-slogan {
    font-size: 1.1rem;
    color: var(--nl-accent-light);
    font-style: italic;
    margin-bottom: 36px;
    font-weight: 500;
}
.nl-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
/* Hero Trust Row */
.nl-hero-trust-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 4px;
}
.nl-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,.8);
    font-size: .88rem;
    font-weight: 600;
}
.nl-trust-item svg { color: var(--nl-accent-light); flex-shrink: 0; }


/* ── Stats ── */
.nl-stats {
    background: var(--nl-primary);
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}
.nl-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.03) 50%, transparent);
}
.nl-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.nl-stat-item {
    text-align: center;
    color: var(--nl-white);
    padding: 24px 16px;
    position: relative;
}
.nl-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 0;
    height: 60%;
    width: 1px;
    background: rgba(255,255,255,.15);
}
.nl-stat-icon { font-size: 2rem; margin-bottom: 10px; }
.nl-stat-num {
    display: inline;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--nl-white);
    line-height: 1;
}
.nl-stat-plus { font-size: 1.8rem; font-weight: 900; color: var(--nl-accent-light); }
.nl-stat-label {
    font-size: .88rem;
    color: rgba(255,255,255,.75);
    font-weight: 500;
    margin-top: 8px;
}

/* ── Services ── */
.nl-services { padding: 80px 0; background: var(--nl-off-white); }
.nl-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.nl-service-card {
    background: var(--nl-white);
    border-radius: var(--nl-radius-lg);
    padding: 36px 28px;
    box-shadow: var(--nl-shadow-sm);
    transition: var(--nl-transition);
    position: relative;
    border: 1px solid var(--nl-border);
    overflow: hidden;
}
.nl-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--nl-primary), var(--nl-secondary));
    transform: scaleX(0);
    transition: var(--nl-transition);
}
.nl-service-card:hover { transform: translateY(-6px); box-shadow: var(--nl-shadow-lg); }
.nl-service-card:hover::before { transform: scaleX(1); }

.nl-service-card-featured {
    background: linear-gradient(135deg, var(--nl-primary), var(--nl-primary-dark));
    color: var(--nl-white);
    border-color: transparent;
}
.nl-service-card-featured h3 { color: var(--nl-white); }
.nl-service-card-featured p { color: rgba(255,255,255,.8); }
.nl-service-card-featured::before { background: linear-gradient(90deg, var(--nl-accent), var(--nl-accent-light)); }
.nl-service-card-featured .nl-service-features li { color: rgba(255,255,255,.85); }
.nl-service-card-featured .nl-service-features li::before { color: var(--nl-accent-light); }
.nl-service-card-featured .nl-service-link { color: var(--nl-accent-light); }

.nl-service-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--nl-accent);
    color: var(--nl-white);
    font-size: .72rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
}
.nl-service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}
.nl-service-card h3 { font-size: 1.3rem; margin-bottom: 12px; color: var(--nl-dark); }
.nl-service-card p { color: var(--nl-text-light); font-size: .92rem; line-height: 1.7; margin-bottom: 18px; }
.nl-service-features {
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}
.nl-service-features li {
    font-size: .82rem;
    color: var(--nl-text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}
.nl-service-features li::before { content: '✓'; color: var(--nl-primary); font-weight: 800; }
.nl-service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .88rem;
    font-weight: 700;
    color: var(--nl-primary);
    transition: var(--nl-transition);
}
.nl-service-link:hover { gap: 10px; }
.nl-service-link svg { width: 16px; height: 16px; }

/* ── Featured Products ── */
.nl-featured-products { padding: 80px 0; }
.nl-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.nl-product-card {
    background: var(--nl-white);
    border-radius: var(--nl-radius-lg);
    overflow: hidden;
    box-shadow: var(--nl-shadow-sm);
    border: 1px solid var(--nl-border);
    transition: var(--nl-transition);
    display: flex;
    flex-direction: column;
}
.nl-product-card:hover { transform: translateY(-4px); box-shadow: var(--nl-shadow-lg); }

.nl-product-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--nl-off-white);
}
.nl-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.nl-product-card:hover .nl-product-img { transform: scale(1.05); }

.nl-product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: .72rem;
    font-weight: 800;
    z-index: 2;
}
.nl-badge-sale { background: var(--nl-danger); color: var(--nl-white); }
.nl-badge-new  { background: var(--nl-success); color: var(--nl-white); }

.nl-product-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    padding: 12px;
    background: linear-gradient(transparent, rgba(27,63,139,.6));
    transform: translateY(100%);
    transition: var(--nl-transition);
}
.nl-product-card:hover .nl-product-actions { transform: translateY(0); }
.nl-product-action-btn {
    width: 40px;
    height: 40px;
    background: var(--nl-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nl-primary);
    transition: var(--nl-transition);
    box-shadow: var(--nl-shadow);
}
.nl-product-action-btn:hover { background: var(--nl-accent); color: var(--nl-white); }
.nl-product-action-btn svg { width: 18px; height: 18px; }

.nl-product-info {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.nl-product-cat {
    font-size: .73rem;
    font-weight: 700;
    color: var(--nl-secondary);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 6px;
}
.nl-product-title {
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
    flex: 1;
}
.nl-product-title a { color: var(--nl-dark); }
.nl-product-title a:hover { color: var(--nl-primary); }
.nl-product-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--nl-primary);
    margin-bottom: 14px;
}
.nl-product-price del { color: var(--nl-text-light); font-size: .85rem; font-weight: 400; }
.nl-product-price ins { text-decoration: none; color: var(--nl-danger); }

.nl-product-order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 16px;
    background: var(--nl-primary);
    color: var(--nl-white);
    border-radius: var(--nl-radius-sm);
    font-size: .88rem;
    font-weight: 700;
    transition: var(--nl-transition);
    text-decoration: none;
    width: 100%;
}
.nl-product-order-btn:hover { background: var(--nl-accent); color: var(--nl-white); transform: translateY(-1px); }
.nl-product-order-btn svg { width: 16px; height: 16px; }

.nl-no-products {
    text-align: center;
    padding: 60px 20px;
    color: var(--nl-text-light);
}

/* ── Why Us ── */
.nl-why-us { padding: 80px 0; background: var(--nl-off-white); }
.nl-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.nl-why-item {
    background: var(--nl-white);
    padding: 28px 24px;
    border-radius: var(--nl-radius-lg);
    border: 1px solid var(--nl-border);
    transition: var(--nl-transition);
    text-align: center;
}
.nl-why-item:hover { transform: translateY(-4px); box-shadow: var(--nl-shadow); border-color: var(--nl-primary); }
.nl-why-icon { font-size: 2.4rem; margin-bottom: 14px; }
.nl-why-item h4 { font-size: 1.05rem; margin-bottom: 10px; color: var(--nl-primary); }
.nl-why-item p { font-size: .88rem; color: var(--nl-text-light); line-height: 1.7; }

/* ── About ── */
.nl-about { padding: 80px 0; }
.nl-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.nl-about-img-frame { position: relative; }
.nl-about-img-inner {
    border-radius: var(--nl-radius-xl);
    overflow: hidden;
    background: var(--nl-light);
    aspect-ratio: 4/3;
}
.nl-about-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--nl-primary), var(--nl-primary-dark));
}
.nl-store-visual {
    text-align: center;
    color: var(--nl-white);
}
.nl-store-icon { font-size: 4rem; margin-bottom: 16px; }
.nl-store-visual p { font-size: 1.1rem; font-weight: 600; line-height: 1.5; }

.nl-about-badge-float {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--nl-accent);
    color: var(--nl-white);
    padding: 18px 24px;
    border-radius: var(--nl-radius-lg);
    text-align: center;
    box-shadow: var(--nl-shadow-lg);
}
.nl-about-badge-float strong { display: block; font-size: 1.3rem; font-weight: 900; }
.nl-about-badge-float span { font-size: .8rem; opacity: .9; }

.nl-about-text-side .nl-section-badge { margin-bottom: 10px; }
.nl-about-text-side h2 { margin-bottom: 16px; }
.nl-about-lead { font-size: 1.05rem; font-weight: 500; color: var(--nl-text); margin-bottom: 16px; }
.nl-about-text-side p { color: var(--nl-text-light); margin-bottom: 24px; line-height: 1.8; }

.nl-about-features { margin-bottom: 28px; display: flex; flex-direction: column; gap: 16px; }
.nl-about-feat {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.nl-feat-icon {
    width: 28px;
    height: 28px;
    background: var(--nl-primary);
    color: var(--nl-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 2px;
}
.nl-about-feat strong { display: block; font-size: .95rem; color: var(--nl-dark); margin-bottom: 3px; }
.nl-about-feat p { font-size: .85rem; color: var(--nl-text-light); margin: 0; }
.nl-about-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Wholesale CTA ── */
.nl-wholesale-cta {
    background: linear-gradient(135deg, var(--nl-primary), var(--nl-primary-dark));
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}
.nl-wholesale-cta::before {
    content: '🏭';
    position: absolute;
    font-size: 12rem;
    opacity: .04;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
}
.nl-wcta-content {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}
.nl-wcta-icon { font-size: 3rem; flex-shrink: 0; }
.nl-wcta-text { flex: 1; min-width: 260px; }
.nl-wcta-text h3 { color: var(--nl-white); font-size: 1.6rem; margin-bottom: 8px; }
.nl-wcta-text p { color: rgba(255,255,255,.8); font-size: .95rem; margin: 0; }
.nl-wcta-actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* ── Map Section ── */
.nl-map-section { padding: 80px 0; background: var(--nl-off-white); }
.nl-map-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
}
.nl-map-embed { position: relative; }
.nl-map-embed iframe { width: 100%; border-radius: var(--nl-radius-lg); box-shadow: var(--nl-shadow); }
.nl-map-open-btn { margin-top: 12px; }

.nl-contact-info-card {
    background: var(--nl-white);
    border-radius: var(--nl-radius-lg);
    padding: 32px;
    box-shadow: var(--nl-shadow);
    border: 1px solid var(--nl-border);
}
.nl-contact-info-card h3 { font-size: 1.2rem; margin-bottom: 24px; color: var(--nl-primary); border-bottom: 2px solid var(--nl-accent); padding-bottom: 12px; }
.nl-ci-item {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
    align-items: flex-start;
}
.nl-ci-item:last-of-type { margin-bottom: 24px; }
.nl-ci-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.nl-ci-item strong { display: block; font-size: .82rem; color: var(--nl-text-light); margin-bottom: 4px; text-transform: uppercase; letter-spacing: .5px; }
.nl-ci-item p, .nl-ci-item a { font-size: .92rem; color: var(--nl-text); font-weight: 500; margin: 0; line-height: 1.6; }
.nl-ci-item a:hover { color: var(--nl-primary); }
.nl-ci-link { font-size: .8rem; color: var(--nl-secondary); font-weight: 600; }
.nl-ci-link:hover { color: var(--nl-primary); }

.nl-map-social {
    display: flex;
    gap: 10px;
    justify-content: center;
    padding-top: 16px;
    border-top: 1px solid var(--nl-border);
}
.nl-map-social a {
    width: 40px;
    height: 40px;
    background: var(--nl-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nl-primary);
    transition: var(--nl-transition);
}
.nl-map-social a:hover { background: var(--nl-primary); color: var(--nl-white); transform: scale(1.1); }
.nl-map-social a svg { width: 18px; height: 18px; }

/* ── Footer ── */
.nl-footer { background: var(--nl-dark); color: rgba(255,255,255,.8); }

.nl-footer-top { padding: 64px 0 40px; }
.nl-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.2fr;
    gap: 48px;
}
.nl-footer-logo { margin-bottom: 16px; }
.nl-footer-logo img { max-height: 60px; }
.nl-footer-brand-name { font-size: 1.8rem; font-weight: 900; color: var(--nl-white); }
.nl-footer-desc { font-size: .88rem; line-height: 1.8; color: rgba(255,255,255,.65); margin-bottom: 14px; }
.nl-footer-slogan { font-style: italic; color: var(--nl-accent-light); font-size: .88rem; font-weight: 500; }

.nl-social-links { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.nl-social-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: .78rem;
    font-weight: 700;
    transition: var(--nl-transition);
    border: 1px solid transparent;
}
.nl-social-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.nl-snap { background: rgba(255,252,0,.1); color: #FFFC00; border-color: rgba(255,252,0,.2); }
.nl-snap:hover { background: #FFFC00; color: #000; transform: translateY(-2px); }

.nl-tiktok { background: rgba(255,255,255,.08); color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.15); }
.nl-tiktok:hover { background: var(--nl-white); color: #000; transform: translateY(-2px); }

.nl-whatsapp { background: rgba(37,211,102,.1); color: #25D366; border-color: rgba(37,211,102,.2); }
.nl-whatsapp:hover { background: #25D366; color: var(--nl-white); transform: translateY(-2px); }

.nl-footer-title {
    font-size: .85rem;
    font-weight: 800;
    color: var(--nl-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}
.nl-footer-title span::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--nl-accent);
    margin-top: 8px;
}

.nl-footer-links { display: flex; flex-direction: column; gap: 8px; }
.nl-footer-links a {
    font-size: .88rem;
    color: rgba(255,255,255,.65);
    transition: var(--nl-transition);
    display: flex;
    align-items: center;
    gap: 6px;
}
.nl-footer-links a::before { content: '›'; color: var(--nl-accent); }
.nl-footer-links a:hover { color: var(--nl-white); padding-right: 4px; }

.nl-footer-contact { display: flex; flex-direction: column; gap: 14px; }
.nl-footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: .88rem;
    color: rgba(255,255,255,.65);
}
.nl-footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--nl-accent); }
.nl-footer-contact a { color: rgba(255,255,255,.65); line-height: 1.6; }
.nl-footer-contact a:hover { color: var(--nl-accent-light); }
.nl-footer-contact div { line-height: 1.6; }

.nl-footer-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px;
    background: #25D366;
    color: var(--nl-white);
    border-radius: var(--nl-radius);
    font-size: .9rem;
    font-weight: 700;
    transition: var(--nl-transition);
    margin-top: 18px;
}
.nl-footer-wa-btn:hover { background: #1da851; transform: translateY(-2px); color: var(--nl-white); }
.nl-footer-wa-btn svg { width: 18px; height: 18px; }

.nl-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 18px 0;
}
.nl-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}
.nl-copyright { font-size: .82rem; color: rgba(255,255,255,.45); }
.nl-footer-cats { font-size: .8rem; color: rgba(255,255,255,.35); }

/* ── Floating WhatsApp ── */
.nl-float-wa {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 9990;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: var(--nl-white);
    padding: 14px 20px 14px 16px;
    border-radius: 50px;
    box-shadow: 0 4px 24px rgba(37,211,102,.4);
    transition: var(--nl-transition);
    text-decoration: none;
    animation: nl-float-pulse 3s infinite;
}
.nl-float-wa:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 8px 32px rgba(37,211,102,.5); color: var(--nl-white); }
.nl-float-wa svg { width: 24px; height: 24px; flex-shrink: 0; }
.nl-float-wa-text { font-size: .85rem; font-weight: 700; white-space: nowrap; }
@keyframes nl-float-pulse { 0%,100%{box-shadow:0 4px 24px rgba(37,211,102,.4)} 50%{box-shadow:0 4px 36px rgba(37,211,102,.6)} }

/* ── Back to Top ── */
.nl-back-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9990;
    width: 44px;
    height: 44px;
    background: var(--nl-primary);
    color: var(--nl-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--nl-shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--nl-transition);
}
.nl-back-top.visible { opacity: 1; visibility: visible; }
.nl-back-top:hover { background: var(--nl-accent); transform: translateY(-3px); }
.nl-back-top svg { width: 20px; height: 20px; }

/* ── Page & Post Templates ── */
.nl-page-wrapper { padding: 60px 0; min-height: 60vh; }
.nl-page-header {
    background: linear-gradient(135deg, var(--nl-primary), var(--nl-primary-dark));
    padding: 56px 0;
    text-align: center;
    color: var(--nl-white);
    position: relative;
    overflow: hidden;
}
.nl-page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><circle cx="20" cy="20" r="15" fill="none" stroke="%23ffffff" stroke-width=".3" opacity=".15"/></svg>') repeat;
    background-size: 40px 40px;
}
.nl-page-header h1 { position: relative; color: var(--nl-white); margin-bottom: 10px; }
.nl-page-header p { position: relative; color: rgba(255,255,255,.75); font-size: 1.05rem; }

.nl-page-content { max-width: 900px; margin: 0 auto; }
.nl-page-content p { margin-bottom: 18px; line-height: 1.85; color: var(--nl-text-light); }
.nl-page-content h2 { color: var(--nl-primary); margin: 32px 0 14px; }
.nl-page-content h3 { color: var(--nl-dark); margin: 24px 0 10px; }

/* ── Contact Form ── */
.nl-contact-section { padding: 64px 0; }
.nl-contact-grid { display: grid; grid-template-columns: 1fr 400px; gap: 48px; align-items: start; }

.nl-form-card {
    background: var(--nl-white);
    border-radius: var(--nl-radius-lg);
    padding: 36px;
    box-shadow: var(--nl-shadow);
    border: 1px solid var(--nl-border);
}
.nl-form-card h2 { color: var(--nl-primary); margin-bottom: 6px; font-size: 1.5rem; }
.nl-form-card > p { color: var(--nl-text-light); margin-bottom: 24px; font-size: .9rem; }

.nl-form-group { margin-bottom: 18px; }
.nl-form-group label {
    display: block;
    font-size: .85rem;
    font-weight: 700;
    color: var(--nl-text);
    margin-bottom: 7px;
}
.nl-form-group label .nl-required { color: var(--nl-danger); }
.nl-form-group input,
.nl-form-group textarea,
.nl-form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--nl-border);
    border-radius: var(--nl-radius-sm);
    font-family: var(--nl-font);
    font-size: .93rem;
    color: var(--nl-text);
    background: var(--nl-white);
    transition: var(--nl-transition);
    direction: rtl;
    outline: none;
}
.nl-form-group input:focus,
.nl-form-group textarea:focus,
.nl-form-group select:focus {
    border-color: var(--nl-primary);
    box-shadow: 0 0 0 4px rgba(27,63,139,.1);
    background: var(--nl-white);
}
.nl-form-group input.nl-error, .nl-form-group textarea.nl-error { border-color: var(--nl-danger); }
.nl-form-group textarea { resize: vertical; min-height: 120px; }
.nl-form-error { font-size: .78rem; color: var(--nl-danger); margin-top: 4px; display: none; }
.nl-form-error.show { display: block; }

.nl-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.nl-radio-group { display: flex; gap: 16px; flex-wrap: wrap; }
.nl-radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: .9rem;
    font-weight: 500;
    color: var(--nl-text);
}
.nl-radio-option input[type="radio"] { width: 18px; height: 18px; accent-color: var(--nl-primary); }

.nl-form-submit {
    width: 100%;
    padding: 15px;
    background: var(--nl-primary);
    color: var(--nl-white);
    border: none;
    border-radius: var(--nl-radius);
    font-family: var(--nl-font);
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--nl-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}
.nl-form-submit:hover { background: var(--nl-accent); transform: translateY(-2px); box-shadow: var(--nl-shadow); }
.nl-form-submit:disabled { opacity: .7; cursor: not-allowed; transform: none; }
.nl-form-submit svg { width: 20px; height: 20px; }

.nl-form-success {
    background: var(--nl-success);
    color: var(--nl-white);
    padding: 16px 20px;
    border-radius: var(--nl-radius);
    text-align: center;
    font-weight: 700;
    margin-top: 16px;
    display: none;
    animation: nl-fade-in .4s ease;
}
.nl-form-success.show { display: block; }

.nl-form-err-msg {
    background: var(--nl-danger);
    color: var(--nl-white);
    padding: 14px 20px;
    border-radius: var(--nl-radius);
    text-align: center;
    font-weight: 600;
    margin-top: 16px;
    display: none;
}
.nl-form-err-msg.show { display: block; }

@keyframes nl-fade-in { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:none} }

/* ── Product Order Form ── */
.nl-order-form-section {
    background: linear-gradient(135deg, var(--nl-off-white), var(--nl-light));
    border: 2px solid var(--nl-border);
    border-radius: var(--nl-radius-lg);
    padding: 32px;
    margin-top: 32px;
}
.nl-order-form-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--nl-primary);
}
.nl-order-form-header h3 { color: var(--nl-primary); font-size: 1.2rem; margin: 0; }
.nl-order-form-icon {
    width: 44px;
    height: 44px;
    background: var(--nl-primary);
    color: var(--nl-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.nl-order-form-icon svg { width: 22px; height: 22px; }

/* ── Thank You Page ── */
.nl-thankyou-wrap {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
}
.nl-thankyou-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: var(--nl-white);
    border-radius: var(--nl-radius-xl);
    padding: 56px 40px;
    box-shadow: var(--nl-shadow-lg);
    border: 1px solid var(--nl-border);
}
.nl-thankyou-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--nl-success), #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-size: 2.5rem;
    box-shadow: 0 8px 30px rgba(16,185,129,.3);
    animation: nl-success-pop .5s cubic-bezier(.175,.885,.32,1.275) both;
}
@keyframes nl-success-pop { from{transform:scale(0)} to{transform:scale(1)} }
.nl-thankyou-card h1 { font-size: 2rem; color: var(--nl-primary); margin-bottom: 12px; }
.nl-thankyou-card > p { color: var(--nl-text-light); margin-bottom: 32px; font-size: 1.05rem; }
.nl-thankyou-info {
    background: var(--nl-off-white);
    border-radius: var(--nl-radius);
    padding: 20px;
    margin-bottom: 28px;
    font-size: .9rem;
    color: var(--nl-text);
    line-height: 1.8;
}
.nl-thankyou-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Sidebar ── */
.nl-sidebar-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 36px;
    align-items: start;
}
.nl-widget {
    background: var(--nl-white);
    border-radius: var(--nl-radius);
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid var(--nl-border);
    box-shadow: var(--nl-shadow-sm);
}
.nl-widget-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--nl-primary);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--nl-accent);
}

/* ── 404 Page ── */
.nl-404-wrap {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 0;
}
.nl-404-content .nl-404-num {
    font-size: 8rem;
    font-weight: 900;
    color: var(--nl-primary);
    line-height: 1;
    opacity: .15;
    margin-bottom: 16px;
}
.nl-404-content h2 { color: var(--nl-dark); margin-bottom: 12px; }
.nl-404-content p { color: var(--nl-text-light); margin-bottom: 28px; }

/* ── Pagination ── */
.nl-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
    flex-wrap: wrap;
}
.nl-pagination a,
.nl-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    border-radius: var(--nl-radius-sm);
    font-size: .88rem;
    font-weight: 600;
    transition: var(--nl-transition);
    border: 1px solid var(--nl-border);
    color: var(--nl-text);
    background: var(--nl-white);
}
.nl-pagination a:hover { background: var(--nl-primary); color: var(--nl-white); border-color: var(--nl-primary); }
.nl-pagination .current { background: var(--nl-primary); color: var(--nl-white); border-color: var(--nl-primary); }

/* ── Animations ── */
.nl-fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}
.nl-fade-up.animated { opacity: 1; transform: none; }

/* ── Responsive ── */
@media (max-width: 1100px) {
    .nl-products-grid { grid-template-columns: repeat(3, 1fr); }
    .nl-footer-grid { grid-template-columns: 1fr 1fr; }
    .nl-footer-col.nl-footer-about { grid-column: 1 / -1; }
    .nl-map-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .nl-services-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .nl-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .nl-why-grid { grid-template-columns: repeat(2, 1fr); }
    .nl-about-grid { grid-template-columns: 1fr; gap: 32px; }
    .nl-about-badge-float { display: none; }
    .nl-contact-grid { grid-template-columns: 1fr; }
    .nl-sidebar-layout { grid-template-columns: 1fr; }
    .nl-products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    /* ─── Mobile Header: equal sides = logo perfectly centered ─── */
    .nl-header-inner {
        display: flex !important;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 8px 14px;
        position: static;
    }

    /* Hamburger — fixed width right side */
    .nl-menu-toggle {
        display: flex !important;
        flex-shrink: 0;
        width: 44px;
        height: 44px;
        order: 1;
    }

    /* Logo — takes all remaining space, content centered */
    .nl-logo-wrap {
        position: static !important;
        transform: none !important;
        flex: 1 1 auto;
        display: flex !important;
        justify-content: center;
        align-items: center;
        order: 2;
        pointer-events: auto;
    }
    .nl-logo-wrap a,
    .nl-logo-wrap .custom-logo-link {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Cart — fixed same width as toggle = perfect balance */
    .nl-header-actions {
        flex-shrink: 0;
        width: 44px;
        display: flex !important;
        justify-content: flex-start;
        align-items: center;
        margin: 0;
        order: 3;
    }

    .nl-header-search { display: none !important; }
    .nl-nav { display: none; }
    .nl-hero-content { padding-top: 60px; padding-bottom: 60px; }
    .nl-hero-btns { flex-direction: column; align-items: flex-start; }
    .nl-wcta-content { flex-direction: column; text-align: center; }
    .nl-wcta-actions { justify-content: center; }
    .nl-footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .nl-about-btns { flex-direction: column; }
    .nl-form-row { grid-template-columns: 1fr; }
    .nl-float-wa-text { display: none; }
    .nl-float-wa { padding: 14px; border-radius: 50%; }
    .nl-thankyou-card { padding: 36px 24px; }
    .nl-thankyou-actions { flex-direction: column; align-items: center; }
    .nl-page-header { padding: 40px 0; }
}

@media (max-width: 560px) {
    .nl-products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .nl-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .nl-why-grid { grid-template-columns: 1fr; }
    .nl-hero-phones { flex-direction: column; gap: 6px; align-items: flex-start; }
    .nl-topbar-right { gap: 8px; }
    .nl-topbar-item { font-size: .72rem; }
}

@media (max-width: 400px) {
    .nl-products-grid { grid-template-columns: 1fr; }
    .nl-stats-grid { grid-template-columns: 1fr 1fr; }
    .nl-container { padding: 0 14px; }
}

/* ── Categories Section ── */
.nl-categories-section {
    padding: 80px 0;
    background: var(--nl-off-white);
}
.nl-cats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 36px;
}
@media (max-width: 900px) { .nl-cats-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .nl-cats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

.nl-cat-card {
    background: var(--nl-white);
    border-radius: var(--nl-radius);
    overflow: hidden;
    box-shadow: var(--nl-shadow-sm);
    transition: var(--nl-transition);
    display: flex;
    flex-direction: column;
    text-align: center;
    text-decoration: none;
    border: 2px solid transparent;
}
.nl-cat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--nl-shadow);
    border-color: var(--nl-accent);
}
.nl-cat-img-wrap {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--nl-light);
    display: flex;
    align-items: center;
    justify-content: center;
}
.nl-cat-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.nl-cat-card:hover .nl-cat-img-wrap img { transform: scale(1.05); }
.nl-cat-icon-ph {
    font-size: 2.8rem;
    line-height: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nl-cat-body {
    padding: 14px 12px;
}
.nl-cat-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--nl-primary);
    margin-bottom: 4px;
}
.nl-cat-body span {
    font-size: .8rem;
    color: var(--nl-text-light);
}
.nl-cat-ph .nl-cat-img-wrap { background: linear-gradient(135deg, var(--nl-light), #dde6f5); }

/* ── Mobile Nav Links ── */
.nl-mobile-nav {
    list-style: none;
    padding: 8px 0;
    margin: 0;
}
.nl-mobile-nav li {
    border-bottom: 1px solid var(--nl-border);
}
.nl-mobile-nav li:last-child { border-bottom: none; }
.nl-mobile-nav li a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 20px;
    color: var(--nl-text) !important;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--nl-transition);
}
.nl-mobile-nav li a:hover,
.nl-mobile-nav li.current-menu-item > a {
    color: var(--nl-primary) !important;
    background: var(--nl-light);
    padding-right: 28px;
}
.nl-mobile-nav li a svg {
    flex-shrink: 0;
    color: var(--nl-primary);
    opacity: .7;
}

/* ── Mobile Menu Head ── */
.nl-mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--nl-border);
    margin-bottom: 8px;
}
.nl-mobile-logo { display: flex; align-items: center; }
.nl-mobile-logo img, .nl-mobile-logo .custom-logo { max-height: 40px; width: auto; }
.nl-mobile-wa {
    background: #25D366;
    color: var(--nl-white) !important;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
}

/* ── Shop Category Pills ── */
.nl-shop-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}
.nl-cat-filter {
    padding: 6px 18px;
    border-radius: 20px;
    font-size: .85rem;
    font-weight: 600;
    border: 2px solid var(--nl-border);
    color: var(--nl-text-light);
    transition: var(--nl-transition);
    background: var(--nl-white);
}
.nl-cat-filter:hover, .nl-cat-filter.active {
    background: var(--nl-primary);
    color: var(--nl-white);
    border-color: var(--nl-primary);
}

/* ── Logo size on mobile ── */
@media (max-width: 768px) {
    .nl-logo-svg-wrap svg { width: 38px !important; height: 38px !important; }
    .nl-logo-ar { font-size: 1.1rem !important; }
    .nl-logo-en { font-size: .7rem !important; letter-spacing: 1px !important; }
    .nl-logo-sub { display: none; }
    .nl-logo-text-link { gap: 7px !important; }
    .custom-logo { max-height: 48px !important; }
}

/* ══════════════════════════════════════════
   COMPREHENSIVE MOBILE FIXES
══════════════════════════════════════════ */
@media (max-width: 768px) {

    /* General */
    .nl-container { padding: 0 16px; }
    h1 { font-size: 1.9rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.15rem; }

    /* Hero */
    .nl-hero { min-height: 75vh; }
    .nl-hero-content { padding-top: 50px; padding-bottom: 50px; }
    .nl-hero-title { font-size: 2rem; }
    .nl-hero-btns { flex-direction: column; align-items: stretch; gap: 10px; }
    .nl-hero-btns .nl-btn { width: 100%; justify-content: center; }
    .nl-hero-trust-row { gap: 10px; }
    .nl-trust-item { font-size: .8rem; }

    /* Stats */
    .nl-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1px; }
    .nl-stat-item { padding: 22px 10px; }
    .nl-stat-icon { display: none; }   /* hide emoji icons on mobile */
    .nl-stat-num { font-size: 2.2rem; }
    .nl-stat-plus { font-size: 1.2rem; }
    .nl-stat-label { font-size: .78rem; }

    /* Services */
    .nl-services-grid { grid-template-columns: 1fr !important; max-width: 100%; }
    .nl-service-card { padding: 24px; }

    /* Categories */
    .nl-cats-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .nl-cat-body h3 { font-size: .9rem; }

    /* Featured Products */
    .nl-products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .nl-product-card { border-radius: 10px; }

    /* Why Us */
    .nl-why-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .nl-why-card { padding: 20px 14px; }

    /* About */
    .nl-about-grid { grid-template-columns: 1fr; }
    .nl-about-btns { flex-direction: column; }
    .nl-about-btns .nl-btn { width: 100%; justify-content: center; }

    /* Wholesale CTA */
    .nl-wcta-content { flex-direction: column; text-align: center; gap: 24px; }
    .nl-wcta-actions { justify-content: center; flex-wrap: wrap; }

    /* Map + Contact */
    .nl-map-grid { grid-template-columns: 1fr; }
    .nl-map-embed iframe { height: 260px; }

    /* Footer */
    .nl-footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .nl-footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

    /* Shop Page */
    .nl-shop-cats { gap: 6px; }
    .nl-cat-filter { padding: 5px 12px; font-size: .78rem; }
    .nl-shop-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px; }

    /* Single Product */
    .nl-product-layout { grid-template-columns: 1fr !important; }
    .nl-product-gallery { margin-bottom: 20px; }
    .nl-product-thumbnails { gap: 6px; }
    .nl-product-thumb { width: 56px; height: 56px; }

    /* Contact & Forms */
    .nl-contact-grid { grid-template-columns: 1fr; }
    .nl-form-row { grid-template-columns: 1fr; }
    .nl-form-field { margin-bottom: 14px; }

    /* Page Headers */
    .nl-page-header { padding: 32px 0; }
    .nl-page-header h1 { font-size: 1.7rem; }

    /* Floating WhatsApp */
    .nl-float-wa-text { display: none; }
    .nl-float-wa { padding: 14px; border-radius: 50%; }

    /* Section spacing */
    .nl-section-head { margin-bottom: 28px; }
    section, .nl-categories-section, .nl-featured-products,
    .nl-services, .nl-why-us, .nl-about-section { padding: 50px 0; }
}

@media (max-width: 420px) {
    .nl-products-grid,
    .nl-shop-grid { grid-template-columns: 1fr; }
    .nl-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .nl-hero-title { font-size: 1.7rem; }
    .nl-hero-btns .nl-btn { font-size: .88rem; padding: 12px 18px; }
}

/* ── Print ── */
@media print {
    .nl-nav, .nl-float-wa, .nl-back-top, .nl-mobile-menu { display: none !important; }
}
