/* ============================================
   Noksha Neer - Marketing Landing Page Styles
   ============================================ */

/* CSS Variables */
:root {
    --nn-primary: #2D4A5E;
    --nn-primary-dark: #24394C;
    --nn-primary-light: #EDF4F5;
    --nn-accent: #A9C7CB;
    --nn-accent-light: #EDF4F5;
    --nn-text: #1f2937;
    --nn-text-muted: #6b7280;
    --nn-bg: #ffffff;
    --nn-bg-warm: #fafaf9;
    --nn-border: #e5e7eb;
    --nn-hero-gradient: linear-gradient(135deg, #2D4A5E 0%, #24394C 50%, #1B2E39 100%);
    --nn-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --nn-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --nn-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --nn-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --nn-radius: 0.75rem;
    --nn-radius-lg: 1rem;
    --nn-radius-xl: 1.25rem;
}

/* Typography: Bengali + English */
.nn-landing {
    font-family: 'Hind Siliguri', 'Inter', sans-serif;
    color: var(--nn-text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.nn-landing h1, .nn-landing h2, .nn-landing h3 {
    font-family: 'Hind Siliguri', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.nn-landing .lang-en {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* Bilingual label styling */
.nn-navbar .nav-link .lang-en {
    display: block;
    font-size: 0.65rem;
    opacity: 0.6;
    margin-top: 0.05rem;
    font-weight: 400;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.nn-gallery-filters .filter-btn .lang-en {
    font-size: 0.75em;
    opacity: 0.65;
    margin-left: 0.25rem;
}

.nn-service-group-title .lang-en {
    font-size: 0.7em;
    opacity: 0.6;
    margin-left: 0.4rem;
    font-weight: 500;
}

.nn-service-card .service-name .lang-en,
.nn-service-card .service-desc .lang-en,
.nn-service-card .measurement-info .lang-en {
    display: block;
    margin-top: 0.15rem;
}

.nn-delivery-card .delivery-title .lang-en {
    font-size: 0.7em;
    opacity: 0.6;
    margin-top: 0.2rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.nn-delivery-card .delivery-desc .lang-en {
    display: block;
    margin-top: 0.3rem;
    font-size: 0.85em;
    opacity: 0.65;
}

.nn-delivery-card .delivery-price .lang-en {
    font-size: 0.6em;
    opacity: 0.6;
    margin-left: 0.3rem;
}

.nn-contact-item .contact-label .lang-en {
    display: block;
    font-size: 0.75em;
    opacity: 0.5;
    margin-top: 0.1rem;
}

.nn-contact-item .contact-value .lang-en {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.85em;
    opacity: 0.65;
}

.nn-footer-bottom .lang-en {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.9em;
    opacity: 0.6;
}

.nn-cart-empty .lang-en {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.9em;
    opacity: 0.6;
}

.nn-cart-summary .summary-row .lang-en {
    font-size: 0.8em;
    opacity: 0.6;
    margin-left: 0.25rem;
}

.nn-cart-actions .btn-checkout .lang-en,
.nn-cart-actions .btn-clear .lang-en {
    font-size: 0.85em;
    opacity: 0.85;
    margin-left: 0.25rem;
}

.nn-checkout-modal .form-label .lang-en {
    font-size: 0.85em;
    opacity: 0.6;
    margin-left: 0.25rem;
    font-weight: 400;
}

.nn-checkout-modal .area-option .area-name .lang-en {
    font-size: 0.75em;
    opacity: 0.55;
    margin-top: 0.15rem;
    font-weight: 500;
}

.nn-checkout-modal .order-summary-box .summary-row .lang-en {
    font-size: 0.8em;
    opacity: 0.6;
    margin-left: 0.25rem;
}

/* Smooth scroll offset for fixed navbar */
html {
    scroll-padding-top: 80px;
}

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */
.nn-lang-switcher {
    display: flex;
    background: rgba(255,255,255,0.15);
    border-radius: 2rem;
    padding: 3px;
    gap: 3px;
}

.nn-lang-switcher .lang-option {
    border: none;
    background: transparent;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

.nn-lang-switcher .lang-option:hover {
    color: #ffffff;
}

.nn-lang-switcher .lang-option.active {
    background: #ffffff;
    color: var(--nn-primary-dark);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

@media (max-width: 991.98px) {
    .nn-lang-switcher {
        margin: 0.5rem 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Remove layout border/padding bleed — do NOT use overflow-x:hidden here
   because it breaks position:sticky on the navbar in many browsers. */
.nn-landing {
    /* overflow-x: hidden; — removed to keep navbar sticky */
}

/* ============================================
   NAVBAR
   ============================================ */
.nn-navbar {
    background: var(--nn-hero-gradient);
    box-shadow: var(--nn-shadow-lg);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1030;
    transition: all 0.3s ease;
}

.nn-navbar .navbar-brand {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.35rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nn-navbar .navbar-brand img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    background: #fff;
}

.nn-navbar .nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    text-align: center;
}

.nn-navbar .nav-link .lang-en {
    display: block;
    font-size: 0.7rem;
    opacity: 0.65;
    margin-top: 0.1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.nn-navbar .nav-link:hover,
.nn-navbar .nav-link:focus {
    color: #ffffff !important;
    background: rgba(255,255,255,0.15);
}

.nn-navbar .navbar-toggler {
    border-color: rgba(255,255,255,0.3);
    padding: 0.4rem 0.6rem;
}

.nn-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nn-cart-btn .cart-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #dc2626;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    min-width: 22px;
    height: 22px;
    border-radius: 50%;
    padding: 0 6px;
    margin-left: 6px;
    line-height: 1;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

.nn-cart-btn {
    background: #ffffff;
    color: var(--nn-primary-dark);
    border: none;
    border-radius: 2rem;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nn-cart-btn:hover {
    background: #EDF4F5;
    color: var(--nn-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.nn-cart-btn:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(45, 74, 94, 0.35);
}

.nn-cart-btn:active {
    background: #E1E8EC;
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

@media (max-width: 991.98px) {
    .nn-navbar .navbar-collapse {
        background: rgba(0,0,0,0.15);
        border-radius: var(--nn-radius);
        margin-top: 0.75rem;
        padding: 0.5rem;
    }
    .nn-navbar .nav-link {
        padding: 0.75rem 1rem !important;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.nn-hero {
    background: var(--nn-hero-gradient);
    position: relative;
    overflow: hidden;
    padding: 4rem 0 5rem;
}

.nn-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.nn-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.nn-hero-content {
    position: relative;
    z-index: 2;
}

.nn-hero .hero-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.25);
    background: #ffffff;
    object-fit: cover;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.nn-hero .hero-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.nn-hero .hero-title span {
    display: block;
    font-weight: 500;
    margin-top: 0.25rem;
}

.nn-hero .hero-title .lang-en {
    text-transform: uppercase;
}

.nn-hero .hero-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.nn-hero .hero-cta {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.nn-hero .btn-hero-primary {
    background: #ffffff;
    color: var(--nn-primary-dark);
    font-weight: 700;
    padding: 0.875rem 2rem;
    border-radius: var(--nn-radius-xl);
    border: none;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    transition: all 0.25s ease;
}

.nn-hero .btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    background: #f8fafc;
}

.nn-hero .btn-hero-outline {
    background: rgba(255,255,255,0.12);
    color: #ffffff;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: var(--nn-radius-xl);
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.25s ease;
}

.nn-hero .btn-hero-outline:hover {
    background: rgba(255,255,255,0.2);
    color: #ffffff;
}

/* Hero Stats Bar */
.nn-hero-stats {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--nn-radius-xl);
    padding: 1.25rem 2rem;
    margin-top: 2.5rem;
    display: inline-flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.nn-hero-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
}

.nn-hero-stats .stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.nn-hero-stats .stat-text {
    font-weight: 600;
    font-size: 0.95rem;
}

@media (max-width: 767.98px) {
    .nn-hero {
        padding: 2.5rem 0 3.5rem;
    }
    .nn-hero .hero-title {
        font-size: 1.75rem;
    }
    .nn-hero .hero-title span {
        font-size: 1.15rem;
    }
    .nn-hero .hero-subtitle {
        font-size: 0.95rem;
    }
    .nn-hero-stats {
        gap: 1rem;
        padding: 1rem;
    }
    .nn-hero-stats .stat-text {
        font-size: 0.85rem;
    }
}

/* ============================================
   SECTION UTILITIES
   ============================================ */
.nn-section {
    padding: 4rem 0;
}

.nn-section-alt {
    background: var(--nn-bg-warm);
}

.nn-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--nn-text);
    text-align: center;
    margin-bottom: 0.5rem;
}

.nn-section-subtitle {
    text-align: center;
    color: var(--nn-text-muted);
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

@media (max-width: 767.98px) {
    .nn-section {
        padding: 2.5rem 0;
    }
    .nn-section-title {
        font-size: 1.5rem;
    }
}

/* ============================================
   STATS OVERVIEW (Below Hero)
   ============================================ */
.nn-stats-row {
    background: var(--nn-bg);
    border-radius: var(--nn-radius-xl);
    box-shadow: var(--nn-shadow-xl);
    margin-top: -2.5rem;
    position: relative;
    z-index: 10;
    padding: 2rem;
    border: 1px solid var(--nn-border);
}

.nn-stat-box {
    text-align: center;
    padding: 1rem;
}

.nn-stat-box .stat-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--nn-primary);
    line-height: 1;
}

.nn-stat-box .stat-label {
    color: var(--nn-text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

@media (max-width: 767.98px) {
    .nn-stats-row {
        padding: 1.25rem;
        margin-top: -1.5rem;
    }
    .nn-stat-box .stat-number {
        font-size: 1.75rem;
    }
    .nn-stat-divider {
        width: 100%;
        height: 1px;
        margin: 0.5rem 0;
    }
}

/* ============================================
   WORKFLOW SECTION
   ============================================ */
.nn-workflow-track {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    position: relative;
}

.nn-workflow-step {
    text-align: center;
    flex: 1;
    max-width: 220px;
    position: relative;
}

.nn-workflow-step .step-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--nn-primary-light);
    color: var(--nn-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 0.75rem;
    border: 2px solid var(--nn-primary);
    transition: all 0.3s ease;
}

.nn-workflow-step:hover .step-circle {
    background: var(--nn-primary);
    color: #ffffff;
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(45, 74, 94, 0.25);
}

.nn-workflow-step .step-number {
    display: inline-block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--nn-accent);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.8rem;
    line-height: 28px;
    margin-bottom: 0.5rem;
}

.nn-workflow-step .step-title {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--nn-text);
    margin-bottom: 0.35rem;
}

.nn-workflow-step .step-desc {
    color: var(--nn-text-muted);
    font-size: 0.85rem;
    line-height: 1.55;
}

.nn-workflow-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--nn-primary) 0%, var(--nn-primary) 100%);
    margin-top: 36px;
    opacity: 0.35;
    position: relative;
    flex-shrink: 0;
}

.nn-workflow-connector::after {
    content: '';
    position: absolute;
    right: -4px;
    top: -3px;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid var(--nn-primary);
    opacity: 0.5;
}

@media (max-width: 767.98px) {
    .nn-workflow-track {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    .nn-workflow-step {
        max-width: 280px;
    }
    .nn-workflow-connector {
        width: 2px;
        height: 30px;
        margin-top: 0;
        background: linear-gradient(180deg, var(--nn-primary) 0%, var(--nn-primary) 100%);
    }
    .nn-workflow-connector::after {
        right: -3px;
        top: auto;
        bottom: -4px;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 6px solid var(--nn-primary);
        border-bottom: none;
    }
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.nn-gallery-filters {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.nn-gallery-filters .filter-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    border: 1px solid var(--nn-border);
    background: var(--nn-bg);
    color: var(--nn-text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nn-gallery-filters .filter-btn:hover {
    border-color: var(--nn-primary);
    color: var(--nn-primary);
}

.nn-gallery-filters .filter-btn.active {
    background: var(--nn-primary);
    color: #ffffff;
    border-color: var(--nn-primary);
    box-shadow: 0 4px 12px rgba(45, 74, 94, 0.25);
}

.nn-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}

.nn-gallery-item {
    border-radius: var(--nn-radius-lg);
    overflow: hidden;
    background: var(--nn-bg);
    border: 1px solid var(--nn-border);
    box-shadow: var(--nn-shadow-sm);
    transition: all 0.3s ease;
    cursor: pointer;
}

.nn-gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--nn-shadow-lg);
}

.nn-gallery-item .gallery-media {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #d1d5db;
    position: relative;
    overflow: hidden;
}

.nn-gallery-item .gallery-media img,
.nn-gallery-item .gallery-media video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nn-gallery-item .gallery-label {
    padding: 0.875rem 1rem;
    font-weight: 600;
    color: var(--nn-text);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ============================================
   GALLERY LIGHTBOX
   ============================================ */
.nn-gallery-grid .nn-gallery-item {
    cursor: pointer;
}

.nn-gallery-grid .gallery-media video ~ .play-overlay {
    display: flex;
}

.nn-gallery-grid .play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.nn-gallery-grid .nn-gallery-item:hover .play-overlay {
    opacity: 1;
}

.nn-gallery-grid .play-overlay i {
    font-size: 3rem;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

#galleryLightbox .modal-fullscreen {
    max-width: 100%;
    width: 100vw;
    height: 100vh;
    margin: 0;
}

#galleryLightbox .modal-content {
    height: 100vh;
    border: none;
    border-radius: 0;
}

#lightboxMedia {
    width: 100%;
    height: 100%;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.nn-service-group {
    margin-bottom: 2.5rem;
}

.nn-service-group-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--nn-text);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nn-service-group-title .group-icon {
    font-size: 1.5rem;
}

.nn-service-card {
    background: var(--nn-bg);
    border: 1.5px solid var(--nn-border);
    border-radius: var(--nn-radius-lg);
    padding: 1.5rem;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.nn-service-card:hover {
    border-color: var(--nn-primary);
    box-shadow: var(--nn-shadow-lg);
    transform: translateY(-2px);
}

.nn-service-card .popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--nn-accent);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-bottom-left-radius: var(--nn-radius);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nn-service-card .service-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--nn-text);
    margin-bottom: 0.5rem;
    padding-right: 3rem;
}

.nn-service-card .service-desc {
    color: var(--nn-text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.nn-service-card .service-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.nn-service-card .service-price {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--nn-primary-dark);
}

.nn-service-card .btn-add-cart {
    background: var(--nn-primary-dark);
    color: #ffffff;
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.nn-service-card .btn-add-cart:hover {
    background: #1B2E39;
    transform: scale(1.02);
}

.nn-service-card .btn-add-cart.added {
    background: #4A7C85;
}

.nn-service-card .measurement-info {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--nn-border);
    font-size: 0.8rem;
    color: var(--nn-text-muted);
}

.nn-service-card .measurement-info strong {
    color: var(--nn-text);
}

@media (max-width: 767.98px) {
    .nn-service-card {
        padding: 1.25rem;
    }
    .nn-service-card .service-price {
        font-size: 1.15rem;
    }
}

/* ============================================
   CART OFFCANVAS
   ============================================ */
.nn-cart-offcanvas {
    width: 420px;
    max-width: 100%;
}

.nn-cart-offcanvas .offcanvas-header {
    background: var(--nn-hero-gradient);
    color: #ffffff;
    padding: 1.25rem 1.5rem;
}

.nn-cart-offcanvas .offcanvas-title {
    font-weight: 700;
    font-size: 1.15rem;
}

.nn-cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--nn-border);
}

.nn-cart-item .cart-item-info {
    flex-grow: 1;
    min-width: 0;
}

.nn-cart-item .cart-item-name {
    font-weight: 600;
    color: var(--nn-text);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nn-cart-item .cart-item-price {
    color: var(--nn-text-muted);
    font-size: 0.8rem;
}

.nn-cart-item .cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.nn-cart-item .qty-btn-sm {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--nn-border);
    background: var(--nn-bg-warm);
    color: var(--nn-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.15s ease;
    padding: 0;
}

.nn-cart-item .qty-btn-sm:hover {
    background: var(--nn-primary);
    color: #ffffff;
    border-color: var(--nn-primary);
}

.nn-cart-item .qty-value-sm {
    font-weight: 700;
    min-width: 24px;
    text-align: center;
    font-size: 0.9rem;
}

.nn-cart-item .cart-item-total {
    font-weight: 700;
    color: var(--nn-primary);
    min-width: 60px;
    text-align: right;
    font-size: 0.95rem;
}

.nn-cart-item .btn-remove {
    background: none;
    border: none;
    color: #ef4444;
    cursor: pointer;
    padding: 0.25rem;
    font-size: 1rem;
    opacity: 0.6;
    transition: opacity 0.15s;
}

.nn-cart-item .btn-remove:hover {
    opacity: 1;
}

.nn-cart-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--nn-text-muted);
}

.nn-cart-empty i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    opacity: 0.4;
}

.nn-cart-summary {
    background: var(--nn-accent-light);
    border: 1px solid #C5DDE0;
    border-radius: var(--nn-radius);
    padding: 1.25rem;
    margin-top: 1rem;
}

.nn-cart-summary .summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--nn-text-muted);
}

.nn-cart-summary .summary-row.total {
    border-top: 1px solid #C5DDE0;
    padding-top: 0.75rem;
    margin-top: 0.75rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--nn-text);
}

.nn-cart-actions {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.nn-cart-actions .btn-checkout {
    background: var(--nn-primary);
    color: #ffffff;
    border: none;
    padding: 0.875rem;
    border-radius: var(--nn-radius);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.nn-cart-actions .btn-checkout:hover {
    background: var(--nn-primary-dark);
}

.nn-cart-actions .btn-clear {
    background: none;
    border: 1px solid var(--nn-border);
    color: var(--nn-text-muted);
    padding: 0.625rem;
    border-radius: var(--nn-radius);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.nn-cart-actions .btn-clear:hover {
    background: #fef2f2;
    color: #ef4444;
    border-color: #fecaca;
}

/* ============================================
   CHECKOUT MODAL
   ============================================ */
.nn-checkout-modal .modal-header {
    background: var(--nn-hero-gradient);
    color: #ffffff;
    border-bottom: none;
}

.nn-checkout-modal .modal-title {
    font-weight: 700;
}

.nn-checkout-modal .form-label {
    font-weight: 600;
    color: var(--nn-text);
    font-size: 0.9rem;
    margin-bottom: 0.375rem;
}

.nn-checkout-modal .form-control,
.nn-checkout-modal .form-select {
    border: 1.5px solid var(--nn-border);
    border-radius: var(--nn-radius);
    padding: 0.625rem 0.875rem;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.nn-checkout-modal .form-control:focus,
.nn-checkout-modal .form-select:focus {
    border-color: var(--nn-primary);
    box-shadow: 0 0 0 0.2rem rgba(45, 74, 94, 0.15);
}

.nn-checkout-modal .area-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.nn-checkout-modal .area-option {
    border: 2px solid var(--nn-border);
    border-radius: var(--nn-radius);
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.nn-checkout-modal .area-option:hover {
    border-color: var(--nn-primary);
    background: var(--nn-primary-light);
}

.nn-checkout-modal .area-option input {
    position: absolute;
    opacity: 0;
}

.nn-checkout-modal .area-option:has(input:checked) {
    border-color: var(--nn-primary);
    background: var(--nn-primary-light);
    box-shadow: 0 4px 12px rgba(45, 74, 94, 0.15);
}

.nn-checkout-modal .area-option .area-name {
    font-weight: 700;
    color: var(--nn-text);
    display: block;
    margin-bottom: 0.25rem;
}

.nn-checkout-modal .area-option .area-detail {
    font-size: 0.8rem;
    color: var(--nn-text-muted);
    display: block;
}

.nn-checkout-modal .area-option .area-total {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--nn-primary);
    display: block;
    margin-top: 0.25rem;
}

.nn-checkout-modal .order-summary-box {
    background: var(--nn-accent-light);
    border: 1px solid #C5DDE0;
    border-radius: var(--nn-radius);
    padding: 1rem 1.25rem;
    margin-top: 1rem;
}

.nn-checkout-modal .order-summary-box .summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.375rem;
    font-size: 0.9rem;
    color: var(--nn-text-muted);
}

.nn-checkout-modal .order-summary-box .summary-row.grand-total {
    border-top: 1px solid #C5DDE0;
    padding-top: 0.625rem;
    margin-top: 0.5rem;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--nn-text);
}

@media (max-width: 767.98px) {
    .nn-checkout-modal .area-options {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   DELIVERY SECTION
   ============================================ */
.nn-delivery-card {
    background: var(--nn-bg);
    border: 1.5px solid var(--nn-border);
    border-radius: var(--nn-radius-lg);
    padding: 1.75rem;
    text-align: center;
    height: 100%;
    transition: all 0.25s ease;
}

.nn-delivery-card:hover {
    border-color: var(--nn-primary);
    box-shadow: var(--nn-shadow-lg);
    transform: translateY(-3px);
}

.nn-delivery-card .delivery-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--nn-primary-light);
    color: var(--nn-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1rem;
}

.nn-delivery-card .delivery-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--nn-text);
    margin-bottom: 0.5rem;
}

.nn-delivery-card .delivery-desc {
    color: var(--nn-text-muted);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.nn-delivery-card .delivery-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--nn-primary);
}

.nn-delivery-card .delivery-price.free {
    color: #4A7C85;
}

.nn-delivery-card .delivery-area {
    color: var(--nn-text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nn-delivery-card .delivery-prices {
    width: 100%;
    max-width: 220px;
    margin: 0.75rem auto 0;
    text-align: left;
}

.nn-delivery-card .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px dashed var(--nn-border);
    font-size: 0.95rem;
}

.nn-delivery-card .price-row:last-child {
    border-bottom: none;
}

.nn-delivery-card .price-row.total {
    padding-top: 0.625rem;
    margin-top: 0.25rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--nn-text);
    border-top: 2px solid var(--nn-primary);
    border-bottom: none;
}

.nn-delivery-card .price-row.total .price-value {
    color: var(--nn-primary);
    font-size: 1.2rem;
}

.nn-delivery-card .price-label {
    color: var(--nn-text-muted);
}

.nn-delivery-card .price-value {
    font-weight: 700;
    color: var(--nn-text);
}

.nn-delivery-note {
    background: linear-gradient(135deg, var(--nn-primary-light) 0%, #EDF4F5 100%);
    border: 1px solid #C5DDE0;
    border-radius: var(--nn-radius-lg);
    padding: 1.5rem;
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.nn-delivery-note .note-icon {
    font-size: 1.5rem;
    color: var(--nn-primary);
    flex-shrink: 0;
}

.nn-delivery-note .note-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--nn-primary-dark);
    margin-bottom: 0.5rem;
}

.nn-delivery-note .note-content p {
    color: var(--nn-primary);
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================
   CONTACT / FOOTER
   ============================================ */
.nn-contact-section {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: #ffffff;
    padding: 4rem 0 2rem;
}

.nn-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.nn-contact-item {
    text-align: center;
}

.nn-contact-item .contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--nn-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.nn-contact-item:hover .contact-icon {
    transform: scale(1.1);
}

.nn-contact-item .contact-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.nn-contact-item .contact-value {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.5;
}

.nn-contact-item .contact-value a,
.nn-contact-item .contact-value a:link,
.nn-contact-item .contact-value a:visited {
    color: #ffffff !important;
    text-decoration: none;
    transition: none;
}

.nn-contact-item .contact-value a:hover,
.nn-contact-item .contact-value a:active,
.nn-contact-item .contact-value a:focus {
    color: #ffffff !important;
}

.nn-footer-bottom,
.nn-footer-bottom p {
    color: #ffffff !important;
}

.nn-footer-bottom a,
.nn-footer-bottom a:link,
.nn-footer-bottom a:visited {
    color: #ffffff !important;
    text-decoration: none;
    transition: none;
}

.nn-footer-bottom a:hover,
.nn-footer-bottom a:active,
.nn-footer-bottom a:focus {
    color: #ffffff !important;
}

/* Catch-all: every link inside the contact section stays white */
.nn-contact-section a,
.nn-contact-section a:link,
.nn-contact-section a:visited,
.nn-contact-section a:hover,
.nn-contact-section a:active,
.nn-contact-section a:focus {
    color: #ffffff !important;
}

/* Map container */
.nn-map-container {
    border-radius: var(--nn-radius-lg);
    overflow: hidden;
    margin: 2rem auto;
    max-width: 800px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.1);
}

.nn-map-container iframe {
    display: block;
    width: 100%;
    height: 300px;
    border: 0;
}

.nn-map-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--nn-primary);
    color: #ffffff !important;
    padding: 0.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s ease;
}

.nn-map-link:hover {
    background: var(--nn-primary-dark);
}

/* WhatsApp CTA Button */
.nn-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25d366;
    color: #ffffff !important;
    padding: 0.875rem 1.75rem;
    border-radius: 2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.nn-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    background: #128c7e;
}

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

.nn-animate {
    animation: fadeInUp 0.6s ease forwards;
}

.nn-animate-delay-1 { animation-delay: 0.1s; }
.nn-animate-delay-2 { animation-delay: 0.2s; }
.nn-animate-delay-3 { animation-delay: 0.3s; }
.nn-animate-delay-4 { animation-delay: 0.4s; }

/* ============================================
   SCROLLBAR STYLING
   ============================================ */
.nn-cart-offcanvas .offcanvas-body::-webkit-scrollbar {
    width: 6px;
}

.nn-cart-offcanvas .offcanvas-body::-webkit-scrollbar-track {
    background: transparent;
}

.nn-cart-offcanvas .offcanvas-body::-webkit-scrollbar-thumb {
    background: var(--nn-border);
    border-radius: 3px;
}

/* ============================================
   UTILITY OVERRIDES
   ============================================ */
.nn-landing .text-primary { color: var(--nn-primary) !important; }
.nn-landing .bg-primary { background-color: var(--nn-primary) !important; }

/* Remove Bootstrap blue from buttons, links, inputs and lists inside landing */
.nn-landing .btn-primary {
    background: linear-gradient(135deg, var(--nn-primary) 0%, var(--nn-primary-dark) 100%);
    border-color: var(--nn-primary);
    color: #ffffff;
}

.nn-landing .btn-primary:hover,
.nn-landing .btn-primary:focus {
    background: linear-gradient(135deg, var(--nn-primary-dark) 0%, #1B2E39 100%);
    border-color: var(--nn-primary-dark);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(45, 74, 94, 0.35);
}

.nn-landing .btn-light:hover,
.nn-landing .btn-light:focus {
    background-color: #f8fafc;
    border-color: #e5e7eb;
    color: var(--nn-primary-dark);
    box-shadow: none;
}

.nn-landing .form-control:focus,
.nn-landing .form-select:focus {
    border-color: var(--nn-primary);
    box-shadow: 0 0 0 0.2rem rgba(45, 74, 94, 0.2);
}

.nn-landing .btn-close:focus {
    box-shadow: 0 0 0 0.25rem rgba(45, 74, 94, 0.25);
}

.nn-landing a:not(.btn):not(.nav-link):not(.navbar-brand) {
    color: var(--nn-primary);
}

.nn-landing a:not(.btn):not(.nav-link):not(.navbar-brand):hover {
    color: var(--nn-primary-dark);
}

.nn-landing .list-group-item-action:hover,
.nn-landing .list-group-item-action:focus {
    background-color: var(--nn-primary-light);
    color: var(--nn-primary-dark);
}

.nn-landing .dropdown-item:hover,
.nn-landing .dropdown-item:focus {
    background-color: var(--nn-primary-light);
    color: var(--nn-primary-dark);
}

.nn-landing .page-link {
    color: var(--nn-primary);
}

.nn-landing .page-link:hover {
    background-color: var(--nn-primary-light);
    color: var(--nn-primary-dark);
    border-color: var(--nn-primary);
}

.nn-landing .page-item.active .page-link {
    background-color: var(--nn-primary);
    border-color: var(--nn-primary);
}

/* Toast notifications */
.nn-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #1f2937;
    color: #ffffff;
    padding: 0.875rem 1.5rem;
    border-radius: var(--nn-radius-xl);
    font-weight: 500;
    z-index: 9999;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--nn-shadow-xl);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nn-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.nn-toast.success {
    background: #4A7C85;
}

.nn-toast.error {
    background: #ef4444;
}
