/* ==========================================================================
   NepalMade site stylesheet - consolidated from page-level <style> blocks
   ========================================================================== */

/* -------------------- Design tokens -------------------- */
:root {
    --nm-blue: #01359a;
    --nm-blue-dark: #012a7a;
    --nm-navy: #001d40;
    --nm-red: #cd0131;
    --nm-red-dark: #a30027;
    --nm-ink: #1a1a1a;
    --nm-muted: #6b7280;
    --nm-card: #ffffff;
    --nm-surface: #f6f7f9;
    --nm-border: #e7e7ec;
    --nm-shadow: 0 2px 10px rgba(15,23,42,.06);
    --nm-shadow-lg: 0 10px 26px rgba(15,23,42,.12);
    --nm-radius: 10px;
    --hd-ink: #101317; --hd-blue: var(--nm-blue, #01359a); --hd-red: var(--nm-red, #cd0131); --hd-border: #e9e9ee;
}

/* -------------------- Header -------------------- */
    

    .site-header { background: #fff; border-bottom: 1px solid var(--hd-border); position: sticky; top: 0; z-index: 1000; box-shadow: 0 1px 0 rgba(16,19,23,.03); }
    .site-header * { box-sizing: border-box; }
    .site-header-bar {
        display: flex; align-items: center; gap: 28px; padding: 14px 0;
    }

    /* Logo */
    .site-logo { flex: 0 0 auto; display: flex; align-items: center; }
    .site-logo img { height: 46px; width: auto; display: block; }

    /* Primary nav */
    .site-nav { flex: 0 1 auto; }
    .site-nav-list { display: flex; align-items: center; list-style: none; margin: 0; padding: 0; gap: 22px; flex-wrap: wrap; }
    .site-nav-list > li { position: relative; }
    .site-nav-list > li > a {
        display: flex; align-items: center; gap: 6px; color: var(--hd-ink); text-decoration: none;
        font-weight: 700; font-size: 12.5px; letter-spacing: 1px; text-transform: uppercase;
        padding: 10px 2px; position: relative; transition: color .15s ease;
    }
    .site-nav-list > li > a::after {
        content: ''; position: absolute; left: 2px; right: 2px; bottom: 4px; height: 2px; background: var(--hd-blue);
        transform: scaleX(0); transform-origin: left; transition: transform .2s ease;
    }
    .site-nav-list > li > a:hover { color: var(--hd-blue); }
    .site-nav-list > li > a:hover::after,
    .site-nav-list > li > a.is-active::after { transform: scaleX(1); }
    .site-nav-list > li > a.is-active { color: var(--hd-blue); }
    .site-nav-list > li > a.is-accent { color: var(--hd-red); }
    .site-nav-list > li > a.is-accent::after { background: var(--hd-red); }
    .site-nav-list > li > a .fa-angle-down { font-size: 10px; transition: transform .15s ease; }
    .site-nav-list > li.show > a .fa-angle-down { transform: rotate(180deg); }
    .site-nav-list .dropdown-menu {
        border: 1px solid var(--hd-border); border-radius: 10px; box-shadow: 0 14px 30px rgba(16,19,23,.12);
        padding: 8px; margin-top: 6px;
    }
    .site-nav-list .dropdown-item { border-radius: 6px; padding: 8px 12px; font-size: 13px; font-weight: 600; color: var(--hd-ink); }
    .site-nav-list .dropdown-item:hover { background: #f4f5f7; color: var(--hd-blue); }
    .site-nav-more > a { padding: 10px 2px; font-size: 15px; }
    .site-nav-more > a::after { display: none; }

    /* Search */
    .site-search { flex: 1 1 auto; min-width: 0; position: relative; }
    .site-search-form { display: flex; align-items: center; background: #f4f5f7; border: 1px solid var(--hd-border); border-radius: 24px; padding: 4px 4px 4px 16px; transition: border-color .15s ease, background .15s ease; }
    .site-search-form:focus-within { background: #fff; border-color: var(--hd-blue); }
    .site-search-form input { flex: 1 1 auto; border: none; background: transparent; outline: none; font-size: 14px; padding: 8px 0; color: var(--hd-ink); }
    .site-search-form input::placeholder { color: #9497a1; }
    .site-search-form button {
        flex: 0 0 auto; width: 36px; height: 36px; border-radius: 50%; border: none; background: var(--hd-ink);
        color: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; transition: background .15s ease;
    }
    .site-search-form button:hover { background: var(--hd-blue); }
    .site-search-results {
        position: absolute; top: calc(100% + 8px); left: 0; right: 0; background: #fff; border: 1px solid var(--hd-border);
        border-radius: 10px; z-index: 20; box-shadow: 0 14px 30px rgba(16,19,23,.12); overflow: hidden; display: none;
    }
    .site-search-results ul { list-style: none; margin: 0; padding: 6px; }
    .site-search-results li a { display: block; padding: 9px 12px; border-radius: 6px; color: var(--hd-ink); text-decoration: none; font-size: 13px; }
    .site-search-results li a:hover { background: #f4f5f7; }

    /* Actions */
    .site-actions { flex: 0 0 auto; display: flex; align-items: center; gap: 6px; }
    .site-action-btn {
        position: relative; width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
        color: var(--hd-ink); font-size: 17px; text-decoration: none; transition: background .15s ease, color .15s ease;
    }
    .site-action-btn:hover { background: #f4f5f7; color: var(--hd-blue); }
    .site-action-badge {
        position: absolute; top: 2px; right: 2px; min-width: 16px; height: 16px; padding: 0 3px; border-radius: 8px;
        background: var(--hd-red); color: #fff; font-size: 10px; font-weight: 700; line-height: 16px; text-align: center;
    }
    .site-actions .dropdown-menu { border: 1px solid var(--hd-border); border-radius: 10px; box-shadow: 0 14px 30px rgba(16,19,23,.12); padding: 8px; }
    .site-actions .dropdown-item { border-radius: 6px; padding: 8px 12px; font-size: 13px; font-weight: 600; }
    .site-actions .dropdown-item:hover { background: #f4f5f7; color: var(--hd-blue); }

    /* More button (distinct treatment) */
    .site-more-btn {
        background: var(--hd-blue); color: #fff !important; box-shadow: 0 4px 12px rgba(1,53,154,.3);
        transition: background .2s ease, box-shadow .2s ease;
    }
    .site-more-btn:hover { background: var(--nm-navy, #001d40); box-shadow: 0 6px 16px rgba(1,53,154,.4); color: #fff !important; }
    .site-more-btn::after { display: none; }

    .site-more-menu { min-width: 220px; padding: 6px !important; overflow: hidden; }
    .site-more-menu-caption {
        font-size: 10.5px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; color: var(--hd-blue);
        padding: 8px 12px 6px;
    }
    .site-more-menu .dropdown-item {
        display: flex; align-items: center; justify-content: space-between; gap: 10px;
        transition: background .15s ease, color .15s ease, padding-left .15s ease;
    }
    .site-more-menu .dropdown-item i { font-size: 11px; opacity: 0; transform: translateX(-4px); transition: opacity .15s ease, transform .15s ease; color: var(--hd-red); }
    .site-more-menu .dropdown-item:hover { padding-left: 16px; }
    .site-more-menu .dropdown-item:hover i { opacity: 1; transform: translateX(0); }

    /* Mobile toggle */
    .site-nav-toggle {
        display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
        width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--hd-border); background: #fff;
        flex: 0 0 auto; cursor: pointer; padding: 0; transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .site-nav-toggle:hover { background: #f4f5f7; border-color: var(--hd-blue); }
    .site-nav-toggle:active { box-shadow: 0 0 0 4px rgba(1,53,154,.12); }
    .site-nav-toggle-bar {
        display: block; width: 18px; height: 2px; border-radius: 2px; background: var(--hd-ink);
        transition: transform .25s ease, opacity .2s ease, background .2s ease;
    }
    .site-nav-toggle.is-open { background: var(--hd-blue); border-color: var(--hd-blue); }
    .site-nav-toggle.is-open .site-nav-toggle-bar { background: #fff; }
    .site-nav-toggle.is-open .site-nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .site-nav-toggle.is-open .site-nav-toggle-bar:nth-child(2) { opacity: 0; }
    .site-nav-toggle.is-open .site-nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .site-nav-more-item { display: none; }

    @media (max-width: 991.98px) {
        .site-header-bar { flex-wrap: wrap; row-gap: 12px; }
        .site-nav-toggle { display: flex; order: 1; }
        .site-logo { order: 0; }
        .site-actions { order: 2; margin-left: auto; }
        .site-more-dropdown { display: none; }
        .site-nav-more-item { display: block; }
        .site-search { order: 4; flex-basis: 100%; }
        .site-nav { order: 5; flex-basis: 100%; display: none; }
        .site-nav.is-open { display: block; }
        .site-nav-list { flex-direction: column; align-items: stretch; gap: 2px; }
        .site-nav-list > li > a { padding: 10px 8px; }
    }

/* -------------------- Footer -------------------- */
    .footer-main { background: #111; color: #cfcfcf; }
    .footer-main a { color: #cfcfcf; text-decoration: none; }
    .footer-main a:hover { color: #fff; }
    .footer-title { color: #fff; font-weight: 700; font-size: 15px; text-transform: uppercase; margin-bottom: 16px; letter-spacing: .5px; }
    .footer-main ul { list-style: none; margin: 0; padding: 0; }
    .footer-main ul li { margin-bottom: 10px; font-size: 14px; }
    .footer-main .p-less p { margin: 0 0 6px; font-size: 14px; }
    .footer-main .footer-follow-us { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 0; }
    .footer-main .footer-follow-us li { margin-bottom: 0; }
    .footer-main .footer-follow-us i { font-size: 18px; color: #cfcfcf; }
    .footer-main .footer-follow-us a:hover i { color: var(--nm-blue, #01359a); }
    .footer-main .footer-marketplace { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 0; }
    .footer-main .footer-marketplace li { margin-bottom: 0; }
    .footer-main .footer-marketplace a {
        display: flex; align-items: center; justify-content: center; height: 40px; padding: 0 16px;
        background: #fff; border-radius: 6px; transition: transform .15s ease, box-shadow .15s ease;
    }
    .footer-main .footer-marketplace a:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,.35); }
    .footer-main .footer-marketplace img { height: 20px; width: auto; display: block; }
    @media (max-width: 767.98px) {
        .footer-main .col-md-3 { margin-bottom: 30px; }
    }

/* -------------------- Home Page -------------------- */
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

    

    #home-page * { font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; }

    #home-page section { padding: 64px 0; border-top: 1px solid var(--nm-border); }
    #home-page section.is-tight { padding: 20px 0; border-top: none; }
    #home-page section.is-surface { background: var(--nm-surface); }
    #home-page section.is-ink { background: var(--nm-ink); color: #fff; }
    #home-page .home-hero + section { border-top: none; }

    #home-page .eyebrow {
        display: inline-block; font-size: 13px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
        color: var(--nm-red); margin-bottom: 10px; position: relative; padding-left: 22px;
    }
    #home-page .eyebrow::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 14px; height: 2px; background: var(--nm-red); }
    #home-page .block-heading { text-align: center; margin-bottom: 44px; }
    #home-page .block-heading h2 { font-size: 38px; line-height: 1.15; font-weight: 800; color: var(--nm-ink); margin: 0 0 12px; letter-spacing: -.5px; }
    #home-page .block-heading h2 em { font-style: normal; color: var(--nm-blue); }
    #home-page .block-heading p { color: var(--nm-muted); font-size: 16px; margin: 0 auto; max-width: 560px; }
    #home-page .block-heading.is-light h2 { color: #fff; }
    #home-page .block-heading.is-light p { color: rgba(255,255,255,.75); }
    #home-page .block-head-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
    #home-page .block-head-row h2 { font-size: 24px; font-weight: 800; color: var(--nm-ink); margin: 0; letter-spacing: -.3px; }
    #home-page .block-head-row h2 em { font-style: normal; color: var(--nm-blue); }
    #home-page .block-head-link {
        font-size: 12px; font-weight: 700; color: var(--nm-ink); text-decoration: none; white-space: nowrap;
        border: 1px solid var(--nm-border); border-radius: 20px; padding: 7px 16px; transition: all .2s ease;
    }
    #home-page .block-head-link:hover { background: var(--nm-ink); color: #fff; border-color: var(--nm-ink); }

    #home-page .btn-nm {
        display: inline-flex; align-items: center; gap: 10px; background: var(--nm-red); color: #fff; border: none;
        border-radius: 6px; padding: 15px 34px; font-weight: 700; font-size: 15px; text-decoration: none;
        letter-spacing: .2px; box-shadow: 0 8px 20px rgba(205,1,49,.35); transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
    }
    #home-page .btn-nm:hover { background: var(--nm-red-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(205,1,49,.45); }
    #home-page .btn-nm-outline {
        display: inline-flex; align-items: center; gap: 8px; background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.6);
        border-radius: 6px; padding: 10px 26px; font-weight: 600; font-size: 13px; text-decoration: none; transition: all .2s ease;
    }
    #home-page .btn-nm-outline:hover { background: #fff; color: var(--nm-navy); }
    #home-page .btn-add-cart {
        background: var(--nm-red); color: #fff; border: none; border-radius: 6px; padding: 6px 16px;
        font-weight: 600; font-size: 13px; transition: background .2s ease;
    }
    #home-page .btn-add-cart:hover { background: var(--nm-red-dark); color: #fff; }

    /* Hero */
    #home-page .home-hero .carousel-item { position: relative; }
    #home-page .home-hero .carousel-item img { max-height: 620px; object-fit: cover; }
    #home-page .home-hero .carousel-item::after {
        content: ''; position: absolute; inset: 0;
        background: linear-gradient(90deg, rgba(0,10,30,.75) 0%, rgba(0,10,30,.35) 45%, rgba(0,10,30,0) 70%);
    }
    #home-page .home-hero .carousel-caption { z-index: 2; text-align: left; left: 8%; right: auto; bottom: 16%; max-width: 520px; }
    #home-page .home-hero .carousel-caption h5 { font-size: 46px; line-height: 1.1; font-weight: 800; letter-spacing: -.5px; margin-bottom: 12px; text-shadow: 0 2px 14px rgba(0,0,0,.55); }
    #home-page .home-hero .carousel-caption p { font-size: 16px; margin-bottom: 20px; text-shadow: 0 2px 10px rgba(0,0,0,.5); }

    /* Intro strip */
    #home-page .intro-strip { background: var(--nm-navy); color: #fff; }
    #home-page .intro-strip-item { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 13px; font-weight: 600; padding: 6px 0; }
    #home-page .intro-strip-item i { color: var(--nm-red); font-size: 15px; }

    /* Brand badges */
    #home-page .brand-badge-img { max-height: 38px; width: auto; opacity: .9; transition: transform .2s ease; }
    #home-page .brand-badge-img:hover { transform: scale(1.06); }

    /* Generic surface card (promo, category, article, video) */
    #home-page .nm-card {
        position: relative; display: block; border-radius: var(--nm-radius); overflow: hidden;
        box-shadow: var(--nm-shadow); transition: transform .2s ease, box-shadow .2s ease; background: var(--nm-card);
    }
    #home-page .nm-card:hover { transform: translateY(-5px); box-shadow: var(--nm-shadow-lg); }
    #home-page .nm-card img { width: 100%; display: block; transition: transform .35s ease; }
    #home-page .nm-card:hover img { transform: scale(1.05); }
    #home-page .nm-card-tag {
        position: absolute; left: 12px; bottom: 12px; background: var(--nm-red); color: #fff;
        padding: 6px 14px; border-radius: 4px; font-size: 12px; font-weight: 700;
    }

    /* Product cards */
    #home-page .product-carousel-wrap { position: relative; }
    #home-page .product-card {
        position: relative; border: 1px solid var(--nm-border); border-radius: 8px; overflow: hidden; background: var(--nm-card);
        margin: 0 8px; transition: box-shadow .2s ease, border-color .2s ease;
    }
    #home-page .product-card:hover { box-shadow: var(--nm-shadow-lg); border-color: transparent; }
    #home-page .product-card-wish {
        position: absolute; top: 10px; right: 10px; z-index: 2; width: 30px; height: 30px; border-radius: 50%;
        background: rgba(255,255,255,.9); display: flex; align-items: center; justify-content: center;
        color: var(--nm-muted); font-size: 13px; box-shadow: 0 2px 6px rgba(0,0,0,.1);
    }
    #home-page .product-card-media { display: block; background: var(--nm-surface); overflow: hidden; position: relative; }
    #home-page .product-card-media img { width: 100%; height: 170px; object-fit: contain; padding: 12px; transition: transform .3s ease; }
    #home-page .product-card:hover .product-card-media img { transform: scale(1.05); }
    #home-page .product-card-body { padding: 4px 14px 14px; }
    #home-page .product-card-rating { color: #f5a623; font-size: 11px; margin-bottom: 6px; letter-spacing: 1px; }
    #home-page .product-card-title {
        display: block; color: var(--nm-ink); font-weight: 500; font-size: 13px; text-decoration: none;
        min-height: 34px; overflow: hidden; margin-bottom: 8px; line-height: 1.35;
    }
    #home-page .product-card-price { font-size: 17px; font-weight: 800; color: var(--nm-ink); letter-spacing: -.2px; }
    #home-page .product-card-body .btn-add-cart { padding: 5px 12px; font-size: 12px; border-radius: 20px; }

    /* Carousel nav arrows (BladeHQ style) */
    #home-page .owl-nav { position: absolute; top: 50%; left: -6px; right: -6px; transform: translateY(-50%); display: flex; justify-content: space-between; pointer-events: none; }
    #home-page .owl-nav button {
        pointer-events: all; width: 34px; height: 34px; border-radius: 50%; background: #fff !important; border: 1px solid var(--nm-border) !important;
        box-shadow: var(--nm-shadow); color: var(--nm-ink) !important; font-size: 16px !important; display: flex; align-items: center; justify-content: center;
    }
    #home-page .owl-nav button:hover { background: var(--nm-ink) !important; color: #fff !important; }
    #home-page .owl-dots { text-align: center; margin-top: 14px; }

    /* Category tiles (overlay label on photo, BladeHQ style) */
    #home-page .category-tile { display: block; text-decoration: none; color: #fff; position: relative; }
    #home-page .category-tile-media {
        width: 100%; aspect-ratio: 3/4; border-radius: 8px; overflow: hidden; position: relative;
        box-shadow: var(--nm-shadow); transition: box-shadow .2s ease, transform .2s ease;
    }
    #home-page .category-tile:hover .category-tile-media { box-shadow: var(--nm-shadow-lg); transform: translateY(-4px); }
    #home-page .category-tile-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
    #home-page .category-tile:hover .category-tile-media img { transform: scale(1.08); }
    #home-page .category-tile-media::after {
        content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.75) 100%);
    }
    #home-page .category-tile-fallback {
        width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 30px; color: #fff;
        background: linear-gradient(135deg, var(--nm-blue), var(--nm-navy));
    }
    #home-page .category-grid > .col-6:nth-of-type(3n+2) .category-tile-fallback,
    #home-page .category-grid > .col-md-2:nth-of-type(3n+2) .category-tile-fallback { background: linear-gradient(135deg, var(--nm-red), var(--nm-red-dark)); }
    #home-page .category-grid > .col-6:nth-of-type(3n+3) .category-tile-fallback,
    #home-page .category-grid > .col-md-2:nth-of-type(3n+3) .category-tile-fallback { background: linear-gradient(135deg, var(--nm-navy), #000); }
    #home-page .category-tile-label {
        position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 2; margin: 0;
        font-weight: 800; font-size: 13px; letter-spacing: .5px; text-transform: uppercase; text-shadow: 0 2px 8px rgba(0,0,0,.4);
    }
    #home-page .category-tile-media.is-wide { aspect-ratio: 4/3; }

    /* Free shipping */
    #home-page .free-ship-bar { background: var(--nm-blue); color: #fff; padding: 18px 0; }
    #home-page .free-ship-bar strong { font-weight: 700; }
    #home-page .free-ship-bar i { margin-right: 8px; }
    #home-page .free-ship-bar .sub { opacity: .9; font-size: 14px; }

    /* Testimonials */
    #home-page .testimonial-wrap { background: var(--nm-blue); }
    #home-page .testimonial-panel {
        background: var(--nm-navy); color: #fff; height: 100%; display: flex; flex-direction: column;
        justify-content: center; padding: 44px 32px;
    }
    #home-page .testimonial-panel h3 { font-size: 24px; font-weight: 800; margin-bottom: 10px; }
    #home-page .testimonial-panel p { opacity: .8; margin: 0; font-size: 14px; }
    #home-page .testimonial-track { padding: 44px 24px; }
    #home-page .testimonial-card {
        background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); border-radius: var(--nm-radius);
        padding: 22px; margin: 0 10px; min-height: 200px; color: #fff;
    }
    #home-page .testimonial-stars { color: #57c2d6; margin-bottom: 10px; font-size: 13px; }
    #home-page .testimonial-title { font-weight: 700; font-size: 15px; margin-bottom: 8px; }
    #home-page .testimonial-body { font-size: 13px; line-height: 1.6; opacity: .85; }
    #home-page .testimonial-author { font-weight: 700; font-size: 13px; margin-top: 16px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.15); }

    /* Feature icons */
    #home-page .feature-item { text-align: center; }
    #home-page .feature-icon {
        width: 58px; height: 58px; border-radius: 50%; margin: 0 auto 16px; display: flex; align-items: center;
        justify-content: center; font-size: 20px; color: #fff; background: var(--nm-blue);
    }
    #home-page .feature-item:nth-of-type(2n) .feature-icon { background: var(--nm-red); }
    #home-page .feature-item h5 { font-weight: 700; font-size: 15px; margin-bottom: 8px; }
    #home-page .feature-item p { color: var(--nm-muted); font-size: 13px; margin: 0; }

    /* Videos */
    #home-page .video-card-play {
        position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
        width: 48px; height: 48px; border-radius: 50%; background: rgba(205,1,49,.9); color: #fff;
        display: flex; align-items: center; justify-content: center; font-size: 16px;
    }
    #home-page .video-card-title {
        position: absolute; left: 0; right: 0; bottom: 0; padding: 12px; color: #fff; font-weight: 600; font-size: 13px;
        background: linear-gradient(180deg, transparent, rgba(0,0,0,.8));
    }

    /* Articles */
    #home-page .article-card-body { padding: 14px 16px; }
    #home-page .article-card-title { font-weight: 700; font-size: 14px; min-height: 42px; margin-bottom: 12px; color: var(--nm-ink); }

    /* Club banner */
    #home-page .club-banner { background: linear-gradient(90deg, var(--nm-navy) 55%, var(--nm-blue)); color: #fff; }
    #home-page .club-logo { font-size: 24px; font-weight: 800; }
    #home-page .club-logo i { color: var(--nm-red); margin-right: 10px; }
    #home-page .club-banner p { opacity: .8; margin: 10px 0 18px; font-size: 14px; }
    #home-page .club-perk { text-align: center; font-size: 13px; font-weight: 600; }
    #home-page .club-perk i { display: block; font-size: 22px; color: var(--nm-red); margin-bottom: 8px; }

    /* Break banner */
    #home-page .break-banner { position: relative; height: 320px; overflow: hidden; }
    #home-page .break-banner img { width: 100%; height: 100%; object-fit: cover; display: block; }
    #home-page .break-banner::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,10,30,.55), rgba(0,10,30,.15)); }

    /* Showcase (legacy CMS banner3/4) */
    #home-page .showcase-grid { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }
    #home-page .showcase-grid a { position: relative; flex: 1 1 22%; min-width: 130px; border-radius: var(--nm-radius); overflow: hidden; box-shadow: var(--nm-shadow); }
    #home-page .showcase-grid img { width: 100%; height: 150px; object-fit: cover; display: block; }
    #home-page .showcase-grid .overlay {
        position: absolute; left: 0; right: 0; bottom: 0; padding: 8px 10px; font-size: 13px; font-weight: 600; color: #fff;
        background: linear-gradient(180deg, transparent, rgba(0,0,0,.7));
    }

    /* Partners */
    #home-page .partners-section .owl-stage { display: flex; align-items: stretch; }
    #home-page .partner-card {
        display: flex; align-items: center; justify-content: center; height: 110px; margin: 0 10px;
        background: var(--nm-card); border: 1px solid var(--nm-border); border-radius: var(--nm-radius);
        box-shadow: var(--nm-shadow); padding: 20px; transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
    }
    #home-page .partner-card:hover { box-shadow: var(--nm-shadow-lg); transform: translateY(-4px); border-color: var(--nm-blue); }
    #home-page .partner-card img {
        max-height: 42px; max-width: 100%; width: auto; display: block; margin: 0 auto;
        filter: grayscale(100%); opacity: .65; transition: filter .25s ease, opacity .25s ease;
    }
    #home-page .partner-card:hover img { filter: grayscale(0%); opacity: 1; }

    @media (max-width: 767.98px) {
        #home-page section { padding: 40px 0; }
        #home-page .block-heading h2, #home-page .block-head-row h2 { font-size: 22px; }
        #home-page .home-hero .carousel-caption { left: 6%; right: 6%; bottom: 10%; }
        #home-page .home-hero .carousel-caption h5 { font-size: 24px; }
        #home-page .partner-card { height: 90px; padding: 14px; }
        #home-page .partner-card img { max-height: 32px; }
    }

/* -------------------- Category Page -------------------- */
    
    .page-wrap { overflow-x: hidden; max-width: 100%; }
    .submit-depot-img {
        width: 100%;
        background: none;
          color: inherit;
          border: none;
          padding: 0;
          margin: 0;
          font: inherit;
          cursor: pointer;
          outline: inherit;
          appearance: none;
    }
    .category-break-banner-wrap { padding: 10px 0 40px; }
    .category-break-banner {
        position: relative; height: 280px; overflow: hidden; border-radius: var(--nm-radius); box-shadow: var(--nm-shadow);
    }
    .category-break-banner img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
    .category-break-banner:hover img { transform: scale(1.04); }
    .category-break-banner::after {
        content: ''; position: absolute; inset: 0;
        background: linear-gradient(90deg, rgba(0,29,64,.75) 0%, rgba(0,29,64,.25) 55%, rgba(0,29,64,0) 80%);
    }
    .category-break-banner-caption {
        position: absolute; left: 32px; top: 50%; transform: translateY(-50%); z-index: 2; color: #fff; max-width: 60%;
    }
    .category-break-banner-caption span {
        display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
        color: var(--nm-red); margin-bottom: 8px;
    }
    .category-break-banner-caption h3 { font-size: 22px; font-weight: 800; margin: 0; letter-spacing: -.3px; }
    @media (max-width: 767.98px) {
        .category-break-banner { height: 200px; }
        .category-break-banner-caption { left: 20px; max-width: 80%; }
        .category-break-banner-caption h3 { font-size: 17px; }
    }

    .page-wrap .breadcrumb-bar { padding: 14px 0; border-bottom: 1px solid var(--nm-border); font-size: 12.5px; }
    .page-wrap .breadcrumb-bar a { color: var(--nm-muted); text-decoration: none; }
    .page-wrap .breadcrumb-bar a:hover { color: var(--nm-blue); }
    .page-wrap .breadcrumb-bar .active { color: var(--nm-ink); font-weight: 600; }
    .page-wrap .banner-title img { display: block; max-height: 340px; object-fit: cover; }
    .page-wrap .page-title { background: var(--nm-navy); color: #fff; padding: 40px 0; }
    .page-wrap .page-title h1 { margin: 0; font-size: 30px; font-weight: 800; letter-spacing: -.3px; }
    .page-wrap .page-content { padding: 24px 0 4px; color: var(--nm-muted); font-size: 15px; line-height: 1.6; }
    .page-wrap .page-package { padding-bottom: 40px; }
    .page-wrap .page-package-empty {
        text-align: center; padding: 60px 20px; color: var(--nm-muted); background: var(--nm-surface);
        border-radius: var(--nm-radius); margin: 20px 0 40px;
    }
    .page-wrap .page-package-empty i { font-size: 32px; color: var(--nm-border); margin-bottom: 14px; display: block; }

    /* Product card (also used on search/package pages) */
    .page-wrap .main-shadow {
        display: block; background: #fff; border: 1px solid var(--nm-border); border-radius: var(--nm-radius);
        overflow: hidden; box-shadow: var(--nm-shadow); transition: box-shadow .2s ease, transform .2s ease; height: 100%;
    }
    .page-wrap .main-shadow:hover { box-shadow: var(--nm-shadow-lg); transform: translateY(-3px); }
    .page-wrap .col-wrap { background: var(--nm-surface); overflow: hidden; }
    .page-wrap .col-wrap img { width: 100%; height: 220px; object-fit: contain; padding: 14px; display: block; transition: transform .3s ease; }
    .page-wrap .main-shadow:hover .col-wrap img { transform: scale(1.05); }
    .page-wrap .col-content { padding: 14px 16px 16px !important; }
    .page-wrap .col-content .text-lg { font-size: 15px; line-height: 1.4; margin-bottom: 6px; }
    .page-wrap .col-content .row { font-size: 12.5px; color: var(--nm-muted); }
    .page-wrap .col-content .btn-outline-success { border-radius: 20px; border-color: var(--nm-border); color: var(--nm-ink); }
    .page-wrap .col-content .btn-outline-success:hover { background: var(--nm-red); border-color: var(--nm-red); color: #fff; }

/* -------------------- Product Page -------------------- */
    
    .product-wrap { padding: 30px 0 50px; overflow-x: hidden; max-width: 100%; }
    .product-page .breadcrumb { font-size: 12.5px; }
    .product-page .breadcrumb a { color: var(--nm-muted); text-decoration: none; }
    .product-page .breadcrumb .active { color: var(--nm-ink); }
    .product-page h1 { font-size: 26px; font-weight: 800; color: var(--nm-ink) !important; letter-spacing: -.3px; }

    .thumbnails-wrap { background: var(--nm-surface); border-radius: var(--nm-radius); padding: 20px; margin-top: 16px; }
    .thumbnails-wrap #imageZoom { width: 100%; max-height: 460px; object-fit: contain; display: block; }
    .thumbnails-wrap .thumbnails { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0 0; padding: 0; }
    .thumbnails-wrap .thumbnails li { width: 70px; height: 70px; border: 1px solid var(--nm-border); border-radius: 8px; overflow: hidden; background: #fff; cursor: pointer; transition: border-color .15s ease; }
    .thumbnails-wrap .thumbnails li:hover { border-color: var(--nm-blue); }
    .thumbnails-wrap .thumbnails li img { width: 100%; height: 100%; object-fit: contain; }

    #myList { list-style: none; margin: 20px 0 0; padding: 14px 0; border-top: 1px solid var(--nm-border); }
    #myList li { font-size: 13.5px; color: var(--nm-muted); padding: 4px 0; }
    .product-content { font-size: 14.5px; line-height: 1.7; color: var(--nm-ink); }

    .product-sidebar-wrap .pinBox, .product-sidebar {
        background: #fff !important; border: 1px solid var(--nm-border); border-radius: var(--nm-radius);
        box-shadow: var(--nm-shadow); padding: 22px !important;
    }
    .product-sidebar .product-price { font-size: 22px; font-weight: 800; color: var(--nm-red); }
    .product-sidebar .input-group-text { background: var(--nm-surface); font-size: 12.5px; font-weight: 600; }
    .product-sidebar select.form-select, .product-sidebar select.form-control { font-size: 13px; }
    .product-sidebar .btn-success, .product-sidebar .add-to-cart {
        background: var(--nm-red); border-color: var(--nm-red); border-radius: 6px; font-weight: 700;
    }
    .product-sidebar .btn-success:hover, .product-sidebar .add-to-cart:hover { background: var(--nm-red-dark); border-color: var(--nm-red-dark); }
    .product-sidebar .btn-outline-dark { border-radius: 6px; }

    .review-main { background: var(--nm-surface) !important; border-radius: var(--nm-radius); padding: 24px !important; }
    .review-main .progress { height: 18px; border-radius: 20px; background: #e9e9ee; }
    .review-main .progress-bar { border-radius: 20px; background: var(--nm-blue) !important; }
    .review-main .text-success { color: var(--nm-blue) !important; }
    .review-row .column { display: inline-block; width: 90px; height: 90px; margin: 0 8px 8px 0; }
    .review-row .column img { width: 100%; height: 100%; object-fit: cover; border-radius: 6px; cursor: pointer; }
    .added-review { border-top: 1px solid var(--nm-border); padding-top: 10px; }
    .added-review hr { border-color: var(--nm-border); }

    @media (max-width: 767.98px) {
        .product-wrap { padding: 20px 0 40px; }
        .product-page h1 { font-size: 21px; }
        .thumbnails-wrap { padding: 12px; margin-top: 12px; }
        .thumbnails-wrap #imageZoom { max-height: 300px; }
        .thumbnails-wrap .thumbnails li { width: 56px; height: 56px; }
        .product-sidebar-wrap .pinBox, .product-sidebar { padding: 16px !important; margin-top: 20px; }
        .product-sidebar .product-price { font-size: 19px; }
        .review-main { padding: 16px !important; }
        .review-row .column { width: 72px; height: 72px; }
    }

/* -------------------- Blog Listing -------------------- */
    
    .blog-hero { background: var(--nm-navy); color: #fff; padding: 44px 0; }
    .blog-hero h1 { margin: 0; font-size: 30px; font-weight: 800; letter-spacing: -.3px; }
    .blog-hero p { margin: 8px 0 0; color: rgba(255,255,255,.75); }
    .blog-list { padding: 40px 0 60px; }
    .blog-card {
        display: block; background: #fff; border: 1px solid var(--nm-border); border-radius: var(--nm-radius);
        overflow: hidden; box-shadow: var(--nm-shadow); transition: box-shadow .2s ease, transform .2s ease; height: 100%; text-decoration: none;
    }
    .blog-card:hover { box-shadow: var(--nm-shadow-lg); transform: translateY(-3px); }
    .blog-card-media { background: var(--nm-surface); aspect-ratio: 4/3; overflow: hidden; }
    .blog-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s ease; }
    .blog-card:hover .blog-card-media img { transform: scale(1.05); }
    .blog-card-body { padding: 16px 18px 18px; }
    .blog-card-date { font-size: 11.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--nm-red); margin-bottom: 8px; }
    .blog-card-title { font-size: 16px; font-weight: 700; color: var(--nm-ink); margin-bottom: 8px; line-height: 1.35; }
    .blog-card-excerpt { font-size: 13.5px; color: var(--nm-muted); line-height: 1.6; }
    .blog-empty { text-align: center; padding: 60px 0; color: var(--nm-muted); }

    @media (max-width: 767.98px) {
        .blog-hero { padding: 30px 0; }
        .blog-hero h1 { font-size: 22px; }
        .blog-list { padding: 24px 0 40px; }
        .blog-card-body { padding: 12px 14px 14px; }
        .blog-card-title { font-size: 14px; }
    }

/* -------------------- Blog Single Post -------------------- */
    
    .blog-post { padding: 40px 0 60px; }
    .blog-post .breadcrumb { font-size: 12.5px; }
    .blog-post .breadcrumb a { color: var(--nm-muted); text-decoration: none; }
    .blog-post .breadcrumb .active { color: var(--nm-ink); }
    .blog-post h1 { font-size: 28px; font-weight: 800; color: var(--nm-ink); letter-spacing: -.3px; margin: 10px 0; }
    .blog-post-date { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--nm-red); }
    .blog-post-media { border-radius: var(--nm-radius); overflow: hidden; margin: 20px 0; box-shadow: var(--nm-shadow); }
    .blog-post-media img { width: 100%; display: block; }
    .blog-post-content { font-size: 15px; line-height: 1.8; color: var(--nm-ink); }
    .blog-related { margin-top: 50px; padding-top: 30px; border-top: 1px solid var(--nm-border); }
    .blog-related h3 { font-size: 20px; font-weight: 800; color: var(--nm-ink); margin-bottom: 20px; }
    .blog-card {
        display: block; background: #fff; border: 1px solid var(--nm-border); border-radius: var(--nm-radius);
        overflow: hidden; box-shadow: var(--nm-shadow); transition: box-shadow .2s ease, transform .2s ease; height: 100%; text-decoration: none;
    }
    .blog-card:hover { box-shadow: var(--nm-shadow-lg); transform: translateY(-3px); }
    .blog-card-media { background: var(--nm-surface); aspect-ratio: 4/3; overflow: hidden; }
    .blog-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .blog-card-body { padding: 14px 16px 16px; }
    .blog-card-title { font-size: 14.5px; font-weight: 700; color: var(--nm-ink); line-height: 1.35; }

    @media (max-width: 767.98px) {
        .blog-post { padding: 24px 0 40px; }
        .blog-post h1 { font-size: 20px; }
        .blog-post-content { font-size: 14px; }
        .blog-related h3 { font-size: 17px; }
    }
