/* Next Level Redesign - Homepage Sections */

:root {
    --nl-primary: #111111;
    --nl-accent: #c5a059;
    /* Keeping user's gold accent */
    --nl-bg: #ffffff;
    --nl-bg-alt: #fcfcfc;
    --nl-bg-pattern: url('../img/pattern-light.png');
    --nl-text: #222222;
    --nl-text-muted: #666666;
    --nl-radius: 24px;
    --nl-radius-sm: 12px;
    --nl-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    --nl-glass: rgba(255, 255, 255, 0.7);
    --nl-glass-border: rgba(255, 255, 255, 0.3);
}

/* Glassmorphism Header */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--nl-glass);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border-bottom: 1px solid var(--nl-glass-border);
    transition: var(--nl-transition);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Scroll Reveal Base */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-reveal].active {
    opacity: 1;
    transform: translateY(0);
}

[data-reveal="left"] {
    transform: translateX(-30px);
}

[data-reveal="right"] {
    transform: translateX(30px);
}

[data-reveal].active {
    transform: translate(0);
}

/* Category Quick Links */
.nl-category-links {
    padding: 30px 0;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.nl-links-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nl-links-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
}

.nl-links-row a {
    text-decoration: none;
    color: #444;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 5px 20px;
    position: relative;
    transition: all 0.3s ease;
}

.nl-links-row a:hover {
    color: var(--nl-accent);
    transform: translateY(-1px);
}

.nl-links-row a:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
    background: #ddd;
}

@media (max-width: 768px) {
    .nl-links-row {
        gap: 8px;
        padding: 10px 0;
    }

    .nl-links-row a {
        font-size: 11px;
        padding: 8px 15px;
        background: #f8f9fa;
        border-radius: 50px;
        margin-bottom: 5px;
        border: 1px solid #eee;
    }

    .nl-links-row a:not(:last-child)::after {
        display: none;
    }
}

.nl-section {
    padding: 100px 0;
    overflow: hidden;
    font-family: 'Instrument Sans', sans-serif;
}

.nl-section.nl-bg-alt {
    background-color: var(--nl-bg-alt);
    background-image: var(--nl-bg-pattern);
    background-size: 400px;
}

.nl-section-title {
    text-align: center;
    margin-bottom: 60px;
}

.nl-section-title h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--nl-primary);
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.nl-section-title p {
    font-size: 18px;
    color: var(--nl-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* AI / CTA Section */
.nl-cta-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(40, 40, 40, 0.95)), url('../img/ai-bg.png');
    background-size: cover;
    border-radius: var(--nl-radius);
    padding: 60px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
}

.nl-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.nl-cta-content {
    flex: 1;
    z-index: 2;
}

.nl-cta-content h2 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.nl-cta-content p {
    font-size: 20px;
    opacity: 0.8;
    margin-bottom: 30px;
}

.nl-cta-image {
    flex: 1;
    height: 400px;
    border-radius: var(--nl-radius);
    overflow: hidden;
}

.nl-cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nl-btn-pill {
    display: inline-block;
    padding: 15px 35px;
    background: white;
    color: black;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: var(--nl-transition);
}

.nl-btn-pill:hover {
    transform: scale(1.05);
    background: var(--nl-accent);
    color: white;
}

/* Split Section (Showroom) */
.nl-split-section {
    display: flex;
    align-items: center;
    background: white;
    min-height: 600px;
}

.nl-split-image {
    flex: 1.1;
    min-width: 0;
    /* Important for Swiper inside flex */
    padding: 60px;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nl-showroom-card {
    width: 100%;
    height: 550px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    background: white;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-pagination-bullet {
    background: white !important;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--nl-accent) !important;
    opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
    z-index: 100;
}

.swiper-pagination {
    z-index: 100;
}

.nl-split-content {
    flex: 1;
    padding: 80px 60px;
    position: relative;
}

.nl-split-badge {
    position: absolute;
    top: 20px;
    left: -60px;
    width: 120px;
    height: 120px;
    z-index: 10;
}

.nl-badge-circle {
    width: 100%;
    height: 100%;
    background: #e1f5fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    animation: rotate 20s linear infinite;
    padding: 10px;
    color: #01579b;
    border: 1px dashed #01579b;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.nl-split-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
    color: var(--nl-primary);
}

.nl-split-content p {
    font-size: 18px;
    color: var(--nl-text-muted);
    margin-bottom: 35px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .nl-split-content h2 {
        font-size: 32px;
    }

    .nl-split-content p {
        font-size: 16px;
    }
}

.nl-feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.nl-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 18px;
}

.nl-feature-item i {
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nl-primary);
    font-size: 16px;
}

@media (max-width: 992px) {
    .nl-split-section {
        flex-direction: column;
    }

    .nl-split-image {
        width: 100%;
        min-height: 400px;
    }

    .nl-split-content {
        padding: 40px 20px;
    }

    .nl-split-badge {
        top: -30px;
        left: 20px;
    }
}

/* Collection Grid */
.nl-collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.nl-collection-card {
    position: relative;
    border-radius: var(--nl-radius);
    overflow: hidden;
    height: auto;
    cursor: pointer;
}

.nl-collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--nl-transition);
}

.nl-collection-card:hover img {
    transform: scale(1.1);
}

.nl-collection-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    transition: var(--nl-transition);
}

.nl-collection-overlay h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.nl-collection-overlay p {
    font-size: 16px;
    opacity: 0.8;
}

/* Tabs Section */
.nl-tabs-container {
    margin-top: 40px;
}

/* Product Grid Showcase */
.nl-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nl-product-card {
    background: white;
    border-radius: var(--nl-radius-sm);
    padding: 15px;
    border: 1px solid #f0f0f0;
    transition: var(--nl-transition);
}

.nl-product-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.nl-product-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--nl-radius-sm);
    overflow: hidden;
    margin-bottom: 20px;
}

.nl-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nl-product-info h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.nl-product-info .price {
    font-weight: 800;
    color: var(--nl-accent);
}

/* About Section */
.nl-about-section {
    background: radial-gradient(circle at top right, #fffcf5, #ffffff);
}

.nl-about-row {
    display: flex;
    align-items: center;
    gap: 80px;
}

.nl-about-image {
    flex: 1;
    border-radius: var(--nl-radius);
    overflow: hidden;
    height: 500px;
}

.nl-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nl-about-content {
    flex: 1;
}

.nl-about-content h2 {
    font-size: 48px;
    margin-bottom: 25px;
}

@media (max-width: 992px) {
    .nl-about-row {
        flex-direction: column;
        gap: 40px;
    }

    .nl-about-image {
        width: 100%;
        height: 400px;
    }

    .nl-about-content {
        text-align: center;
    }

    .nl-about-content h2 {
        font-size: 36px;
    }
}

.nl-about-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--nl-text-muted);
    margin-bottom: 30px;
}

/* Testimonials */
.nl-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.nl-testimonial-card {
    background: #fff8e1;
    /* Soft yellow from target */
    padding: 40px;
    border-radius: var(--nl-radius);
}

.nl-testimonial-card p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.6;
}

.nl-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Instagram Reel Icon Overlay */
.nl-collection-card.is-reel::after {
    content: '\f04b';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    border: 2px solid white;
    z-index: 2;
    transition: var(--nl-transition);
}

.nl-collection-card.is-reel:hover::after {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--nl-accent);
}

.nl-author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.nl-author-info h5 {
    font-weight: 700;
}

/* FAQ */
.nl-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.nl-faq-item {
    border-bottom: 1px solid #eee;
    padding: 25px 0;
}

.nl-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
}

.nl-faq-answer {
    padding-top: 20px;
    color: var(--nl-text-muted);
    display: none;
}

.nl-faq-item.active .nl-faq-answer {
    display: block;
}

/* Responsive Enhancements */
@media (max-width: 992px) {
    .nl-links-row {
        gap: 10px;
    }

    .nl-links-row a {
        font-size: 11px;
        padding: 5px 10px;
    }

    .nl-split-section {
        flex-direction: column;
    }

    .nl-split-image {
        height: 400px;
        width: 100%;
    }

    .nl-split-content {
        padding: 40px 20px;
    }

    .nl-split-badge {
        position: relative;
        top: 0;
        left: 0;
        margin: 0 auto 30px;
        transform: none;
    }

    .nl-split-content h2 {
        font-size: 32px;
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .nl-links-row {
        justify-content: center;
    }

    .nl-links-row a {
        padding: 6px 12px;
        font-size: 10px;
    }
}

/* Brand Marquee Section */
.nl-marquee-section {
    padding: 80px 0;

    overflow: hidden;
    perspective: 1000px;
}

.nl-marquee-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 40px 0;
}

.nl-marquee-row {
    display: flex;
    white-space: nowrap;
    width: fit-content;
}

.nl-marquee-row.to-left {
    animation: marquee-left 30s linear infinite;
    transform: rotateX(5deg) rotateZ(3deg) translateY(-20px);
}

.nl-marquee-row.to-right {
    animation: marquee-right 30s linear infinite;
}

.nl-marquee-row:hover {
    animation-play-state: paused;
}

.nl-brand-card {
    flex: 0 0 auto;
    width: 250px;
    /* Bigger */
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 30px;
    /* More gap */
    padding: 10px;
    transition: var(--nl-transition);
}

.nl-brand-card img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    filter: none;
    /* Original color */
    opacity: 0.9;
    transition: var(--nl-transition);
}

.nl-brand-card:hover {
    transform: scale(1.15);
}

.nl-brand-card:hover img {
    opacity: 1;
}

@keyframes marquee-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes marquee-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Perspective Crossing Effect */
.nl-marquee-row.perspective-tilt {
    transform: rotateX(5deg) rotateZ(-3deg) translateY(20px);
}


@media (max-width: 768px) {
    .nl-brand-card {
        width: 150px;
        height: 80px;
    }
}

/* Shop Card Integration for Homepage */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
}

.shop-card {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    text-align: center;
    display: block;
}

.shop-card .image-wrapper {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    background: #f5f5f5;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.shop-card .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.shop-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 0;
}

.shop-card h3 i {
    font-size: 12px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: var(--nl-accent);
}

.shop-card:hover .image-wrapper {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.shop-card:hover .image-wrapper img {
    transform: scale(1.1);
}

.shop-card:hover h3 i {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .shop-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
    }

    .shop-card .image-wrapper {
        border-radius: 15px;
    }

    .shop-card h3 {
        font-size: 14px;
    }

    .nl-testimonial-card {
        width: 300px;
        padding: 20px;
    }
}

/* Testimonial Card Styles */
.nl-testimonial-card {
    flex: 0 0 auto;
    width: 400px;
    background: white;
    padding: 35px;
    border-radius: 30px;
    margin: 0 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: var(--nl-transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    white-space: normal;
    /* Allow text wrapping */
}

.nl-testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
}

.nl-testimonial-card p::before {
    content: '"';
    font-size: 50px;
    color: var(--nl-accent);
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.1;
    font-family: serif;
}

.nl-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #f5f5f5;
    padding-top: 20px;
}

.nl-author-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.nl-author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nl-author-info h5 {
    font-size: 17px;
    font-weight: 800;
    color: var(--nl-dark);
    margin: 0 0 2px 0;
}

.nl-author-info p {
    font-size: 13px;
    color: #999 !important;
    margin: 0 !important;
    font-style: normal !important;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nl-testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

/* Mobile Toggle Button */
.mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    margin-right: 15px;
    padding: 5px;
    transition: var(--nl-transition);
}

.mobile-toggle:hover {
    color: var(--nl-accent);
}

@media (max-width: 992px) {
    .mobile-toggle {
        display: block !important;
    }

    .header-nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        /* Smaller, cleaner width */
        height: 100vh;
        background: #ffffff;
        display: flex !important;
        flex-direction: column;
        padding: 40px 30px;
        /* More standard padding */
        z-index: 9999;
        box-shadow: 10px 0 50px rgba(0, 0, 0, 0.1);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        overflow-y: auto;
    }

    .header-nav-links.active {
        left: 0;
    }

    /* Added Close Button Inside Menu */
    .mobile-menu-close {
        display: block;
        font-size: 24px;
        margin-bottom: 30px;
        color: #999;
        cursor: pointer;
    }

    .mobile-nav-top {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 30px;
        border-bottom: 1px solid #f5f5f5;
        padding-bottom: 25px;
        text-align: left;
        /* Align Left */
    }

    .mobile-nav-top a {
        font-size: 22px !important;
        font-weight: 700 !important;
        color: #111 !important;
        text-decoration: none;
        letter-spacing: -0.5px;
    }

    .mobile-nav-categories {
        display: flex;
        flex-direction: column;
        gap: 10px;
        text-align: left;
        /* Align Left */
    }

    .mobile-nav-categories h4 {
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: #bbb;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .mobile-nav-categories a {
        font-size: 16px !important;
        font-weight: 500 !important;
        color: #555 !important;
        text-decoration: none;
        padding: 4px 0;
    }

    /* Hide category nav on desktop */
    .header-categories-dropdown {
        display: none;
    }
}

/* Desktop Fix for mobile-only containers */
@media (min-width: 993px) {

    .mobile-nav-categories,
    .mobile-nav-categories h4,
    .mobile-menu-close {
        display: none !important;
    }

    .mobile-nav-top {
        display: contents;
        /* Revert to normal links for desktop */
    }
}

/* Instagram Grid Styles */

@media (max-width: 992px) {
    .navbar {
        gap: 10px !important;
        padding: 5px 0 !important;
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
    }

    .header-left {
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
        flex-shrink: 0 !important;
    }

    .logo img {
        height: 32px !important;
    }

    .header-search {
        flex: 1 !important;
        min-width: 0 !important;
        /* Allow shrinking */
        margin: 0 5px !important;
        padding: 6px 12px !important;
        background: #f5f5f5 !important;
    }

    .header-search .search-dropdown {
        display: none !important;
    }

    .header-search input {
        padding: 0 5px !important;
        font-size: 13px !important;
        min-width: 0 !important;
        width: 100% !important;
    }

    .header-icons {
        gap: 8px !important;
        flex-shrink: 0 !important;
    }

    .icon-circle {
        width: 32px !important;
        height: 32px !important;
        font-size: 15px !important;
    }

    .mobile-toggle {
        display: block !important;
        margin-right: 0 !important;
    }
}

/* Instagram Grid Styles */
.nl-insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.nl-insta-grid .nl-collection-card {
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
}

@media (max-width: 992px) {
    .nl-insta-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .nl-insta-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .nl-insta-grid .nl-collection-card {
        border-radius: 12px;
    }
}

/* =====================================================
   BROWSE OUR COLLECTIONS GRID
   ===================================================== */
.nl-collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 10px;
}

.nl-collection-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    height: auto;
    display: block;
    text-decoration: none;
    background: #111;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.nl-collection-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.nl-collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease, opacity 0.4s ease;
    opacity: 0.85;
}

.nl-collection-card:hover img {
    transform: scale(1.07);
    opacity: 1;
}

.nl-collection-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 24px 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    color: white;
}

.nl-collection-overlay h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.nl-collection-overlay p {
    font-size: 13px;
    opacity: 0.75;
    margin: 0;
    font-weight: 400;
}

@media (max-width: 992px) {
    .nl-collection-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .nl-collection-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .nl-collection-overlay h3 {
        font-size: 15px;
    }

    .nl-collection-overlay p {
        display: none;
    }
}

/* =====================================================
   EXCLUSIVE RANGE / SHOP GRID
   ===================================================== */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 10px;
}

.shop-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.35s ease;
}

.shop-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
}

.shop-card .image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f5f5f5;
}

.shop-card .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.shop-card:hover .image-wrapper img {
    transform: scale(1.06);
}

.shop-card h3 {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    padding: 14px 16px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    line-height: 1.3;
}

.shop-card h3 i {
    font-size: 11px;
    color: #c5a059;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.shop-card:hover h3 i {
    transform: translateX(4px);
}

@media (max-width: 1200px) {
    .shop-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .shop-card h3 {
        font-size: 13px;
        padding: 12px 14px;
    }
}

@media (max-width: 480px) {
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* Homepage Hero Glass Navigation */
.hero-glass-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-bottom: none !important;
    z-index: 100;
}

.hero-glass-nav .category-nav-links li a {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-glass-nav .category-nav-links li a:hover {
    color: var(--nl-accent) !important;
}

.hero-glass-nav .category-nav-links li:not(:last-child)::after {
    background: rgba(255, 255, 255, 0.2) !important;
}

/* Make sure dropdowns drop UPWARDS so they don't get cut off if hero is tall */
.hero-glass-nav .mega-menu {
    top: auto !important;
    bottom: 100% !important;
    border-bottom: 2px solid var(--nl-accent) !important;
    border-top: none !important;
    box-shadow: 0 -15px 30px rgba(0, 0, 0, 0.2) !important;
    transform-origin: bottom;
    background: rgba(255, 255, 255, 0.98) !important;
}

@keyframes fadeInUpNav {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-glass-nav .mega-menu {
    animation: fadeInUpNav 0.2s ease-out !important;
}

/* Product Suggestion of the Day Section */
.nl-daily-suggestions {
    background: var(--nl-bg-alt, #fcfcfc);
    background-image: var(--nl-bg-pattern, url('../img/pattern-light.png'));
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(197, 160, 89, 0.15);
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
}

.nl-daily-suggestions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(197, 160, 89, 0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.nl-daily-suggestions .nl-section-title h2 {
    color: #1a1a1a;
    background: linear-gradient(135deg, #1a1a1a 40%, #c5a059 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.nl-daily-suggestions .nl-section-title p {
    color: #666666;
}

/* Custom badge styling */
.nl-daily-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(197, 160, 89, 0.08);
    border: 1px solid rgba(197, 160, 89, 0.25);
    color: #a68545;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

/* Marquee Styles */
.nl-suggestion-marquee {
    margin-top: 40px;
    width: 100%;
    overflow: hidden;
}

.nl-suggestion-row {
    display: flex;
    padding: 20px 0;
}

/* Custom Product Suggestion Card (Light Theme) */
.nl-suggestion-card {
    flex: 0 0 auto;
    width: 320px;
    background: #ffffff;
    border: 1px solid rgba(197, 160, 89, 0.18);
    border-radius: 24px;
    padding: 16px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #1a1a1a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.nl-suggestion-card:hover {
    transform: translateY(-8px);
    border-color: rgba(197, 160, 89, 0.6);
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.12);
}

/* Card Badge */
.nl-suggestion-card-badge {
    position: absolute;
    top: 26px;
    left: 26px;
    background: linear-gradient(135deg, #c5a059, #b38944);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(197, 160, 89, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* Card Image Wrapper */
.nl-suggestion-img-wrap {
    width: 100%;
    aspect-ratio: 1.1;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 18px;
    position: relative;
    background: #f7f7f7;
}

.nl-suggestion-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nl-suggestion-card:hover .nl-suggestion-img-wrap img {
    transform: scale(1.08);
}

/* Category Label */
.nl-suggestion-cat {
    font-size: 10px;
    font-weight: 700;
    color: #c5a059;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    text-align: left;
}

/* Product Card Heading */
.nl-suggestion-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}

.nl-suggestion-card h3 i {
    font-size: 14px;
    color: #c5a059;
    transition: transform 0.3s ease;
}

.nl-suggestion-card:hover h3 i {
    transform: translateX(4px);
}

/* Product Card Subheading / Rating */
.nl-suggestion-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.nl-suggestion-rating {
    display: flex;
    gap: 3px;
    color: #c5a059;
    font-size: 12px;
}

.nl-suggestion-desc {
    font-size: 13px;
    color: #666666;
    line-height: 1.5;
    margin: 0 0 20px 0;
    white-space: normal;
    text-align: left;
}

/* Action Area */
.nl-suggestion-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.nl-suggestion-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nl-suggestion-btn.view-btn {
    background: #f8f9fa;
    color: #1a1a1a;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.nl-suggestion-btn.view-btn:hover {
    background: #e9ecef;
    border-color: rgba(0, 0, 0, 0.15);
}

.nl-suggestion-btn.inquiry-btn {
    background: #c5a059;
    color: #ffffff;
    border: none;
}

.nl-suggestion-btn.inquiry-btn:hover {
    background: #b38944;
    transform: scale(1.03);
}

.nl-suggestion-btn i {
    font-size: 13px;
}

/* Mobile Responsiveness for suggestions */
@media (max-width: 768px) {
    .nl-daily-suggestions {
        padding: 60px 0;
    }
    .nl-suggestion-card {
        width: 280px;
        padding: 12px;
    }
    .nl-suggestion-img-wrap {
        border-radius: 14px;
    }
    .nl-suggestion-card h3 {
        font-size: 16px;
    }
    .nl-suggestion-desc {
        font-size: 12px;
        margin-bottom: 15px;
    }
    .nl-suggestion-btn {
        padding: 8px 10px;
        font-size: 10px;
    }
}

/* ==========================================
   GLOBAL CATEGORY & PRODUCT HERO OVERRIDES
   ========================================== */
.laminate-hero, 
.charcoal-hero, 
.fluted-hero, 
.decoratives-hero, 
.timber-hero, 
.soffit-hero, 
.ripple-hero, 
.rattan-hero, 
.pvc-hero, 
.profile-hero, 
.plywood-hero, 
.mosaics-hero, 
.korian-hero, 
.flexible-hero, 
.exterior-hero, 
.alabaster-hero, 
.designs-hero, 
.category-hero, 
.categories-hero, 
.asaa-hero, 
.acrylic-hero,
.product-hero,
[class*="-hero"]:not(.hero) {
    padding: 35px 0 30px !important;
}

[class*="-hero"]:not(.hero) h1, 
.product-hero h1,
.laminate-hero h1,
.charcoal-hero h1,
.fluted-hero h1 {
    font-size: 36px !important;
    margin-bottom: 8px !important;
}

[class*="-hero"]:not(.hero) .btn-view-all,
.product-hero .btn-view-all {
    display: none !important;
}

[class*="-hero"]:not(.hero) .hero-specs-summary,
.product-hero .hero-specs-summary {
    margin-top: 8px !important;
    font-size: 13px !important;
}

/* Bottom Page Quick Links Nav-Bar Styles */
.category-nav-bar {
    border-top: 1px solid #eef2f5 !important;
    border-bottom: 1px solid #eef2f5 !important;
    margin-top: 60px !important;
    margin-bottom: 0 !important;
    background: #fafbfc !important;
    padding: 25px 0 !important;
}

.category-nav-links a {
    font-weight: 600 !important;
    color: #555555 !important;
    text-transform: uppercase !important;
    font-size: 12px !important;
    letter-spacing: 0.5px !important;
}

.category-nav-links a:hover {
    color: var(--nl-accent, #c5a059) !important;
}

/* ==========================================
   PREMIUM SIDEBAR SHOP FILTERS STYLING
   ========================================== */
.shop-container {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    align-items: flex-start;
}

.filter-sidebar {
    width: 280px;
    flex-shrink: 0;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 20px;
    position: sticky;
    top: 90px;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.shop-content {
    flex-grow: 1;
}

/* Top filter bar */
.top-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    background: #ffffff;
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.top-filter-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-toggle-filter {
    display: none; /* Only show on mobile */
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    font-size: 13px;
    color: #333;
}

.results-count {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.top-filter-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sort-container {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #444;
}

.sort-select {
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #ffffff;
    font-weight: 600;
    cursor: pointer;
    outline: none;
}

.view-as-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-view-toggle {
    background: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.08);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #555;
    transition: all 0.3s;
}

.btn-view-toggle.active {
    background: #111;
    color: #fff;
    border-color: #111;
}

/* Sidebar Accordion Styling */
.filter-group {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 15px 0;
}

.filter-group:last-child {
    border-bottom: none;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    color: #111;
    user-select: none;
}

.filter-header i {
    transition: transform 0.3s;
    font-size: 12px;
    color: #888;
}

.filter-group.active .filter-header i {
    transform: rotate(45deg);
}

.filter-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding-top: 0;
}

.filter-group.active .filter-content {
    max-height: 300px;
    padding-top: 12px;
    overflow-y: auto;
}

.filter-item-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-item-list label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: #555;
    cursor: pointer;
    user-select: none;
}

.filter-item-list input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #c5a059;
    cursor: pointer;
}

/* List view styling */
.shop-grid.list-view {
    grid-template-columns: 1fr !important;
}

.shop-grid.list-view .shop-card {
    display: flex;
    align-items: center;
    height: auto;
    border-radius: 12px;
}

.shop-grid.list-view .image-wrapper {
    width: 160px;
    height: 160px;
    aspect-ratio: auto;
    flex-shrink: 0;
}

.shop-grid.list-view .card-info {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    padding: 20px 30px;
}

.shop-grid.list-view .btn-enquire {
    align-self: flex-start;
}

/* Mobile Responsiveness for Filter Sidebar */
@media (max-width: 992px) {
    .shop-container {
        flex-direction: column;
    }
    
    .filter-sidebar {
        position: fixed;
        top: 0;
        left: -320px;
        width: 300px;
        height: 100vh;
        overflow-y: auto;
        z-index: 10000;
        border-radius: 0;
        transition: left 0.4s ease;
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.15);
    }
    
    .filter-sidebar.open {
        left: 0;
    }
    
    .btn-toggle-filter {
        display: flex;
    }
}

/* ==========================================
   PREMIUM PRODUCT CARD STYLING (MOCKUP ACCURATE)
   ========================================== */
.shop-card {
    background: #ffffff !important;
    border-radius: 12px !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    overflow: hidden !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02) !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    text-decoration: none !important;
}

.shop-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06) !important;
}

/* Image Wrapper Override */
.shop-card .image-wrapper {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
    background: #fcfcfc !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04) !important;
}

.shop-card .image-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.5s ease !important;
}

.shop-card:hover .image-wrapper img {
    transform: scale(1.04) !important;
}

/* Information Container Override */
.shop-card .card-info {
    padding: 16px !important;
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
    background: #ffffff !important;
    text-align: left !important;
}

/* Category Tag Style */
.card-category-label {
    display: block !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #888888 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 6px !important;
}

/* Product Title Style */
.card-product-title {
    font-size: 14.5px !important;
    font-weight: 700 !important;
    color: #111111 !important;
    line-height: 1.4 !important;
    margin-bottom: 8px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    height: 40px !important;
    text-align: left !important;
}

/* Prices Style */
.card-price-row {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-top: auto !important;
}

.card-current-price {
    font-size: 15px !important;
    font-weight: 800 !important;
    color: #c72c1b !important;
}

.card-old-price {
    font-size: 12.5px !important;
    color: #999999 !important;
    text-decoration: line-through !important;
    font-weight: 500 !important;
    margin-left: 0 !important;
}

/* Hide original list/grid elements that are no longer needed */
.shop-card p:not(.card-product-title), 
.shop-card .btn-enquire,
.shop-card h3:not(.card-product-title) {
    display: none !important;
}

/* Hide View Toggles (List/Grid Buttons) as requested */
.view-as-container {
    display: none !important;
}

/* Force exactly 4 columns per row on desktop grid */
@media (min-width: 1024px) {
    .shop-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 24px 20px !important;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .shop-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px 15px !important;
    }
}

@media (max-width: 767px) {
    .shop-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px 10px !important;
    }
}


/* ===== BRAND CARDS ===== */
        .brand-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 28px;
        }
        .brand-card {
            background: #fff;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 3px 18px rgba(0,0,0,0.07);
            border: 1.5px solid #f0f0f5;
            display: flex;
            flex-direction: column;
            transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        .brand-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 40px rgba(26,59,143,0.14);
            border-color: #c8d5ff;
        }
        .brand-card .card-img {
            width: 100%;
            aspect-ratio: 4/5;
            overflow: hidden;
            background: #f5f6fb;
        }
        .brand-card .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .brand-card:hover .card-img img { transform: scale(1.08); }
        .brand-card .card-body {
            padding: 18px 18px 20px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            flex: 1;
        }
        .brand-name { font-size: 16px; font-weight: 700; color: #1a1a2e; line-height: 1.3; }
        .brand-desc { font-size: 13px; color: #888; line-height: 1.55; flex: 1; margin-bottom: 8px; }
        
        .card-specs {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #f8f9ff;
            padding: 10px 14px;
            border-radius: 10px;
            margin-bottom: 12px;
            font-size: 12px;
            font-weight: 600;
            color: #555;
            border: 1px solid #eef1ff;
        }
        .card-specs .spec-item { display: flex; align-items: center; gap: 5px; }
        .card-specs .spec-item i { color: #9aaeff; font-size: 11px; }
        .card-specs .price {
            color: var(--next-blue);
            font-size: 15px;
            font-weight: 800;
        }

        .card-actions {
            display: flex;
            gap: 9px;
            margin-top: auto;
        }
        .btn-wa {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
            background: #25D366;
            color: #fff;
            padding: 11px 14px;
            border-radius: 11px;
            font-size: 13px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.25s ease;
        }
        .btn-wa:hover { background: #1bab52; transform: scale(1.02); }
        .btn-phone {
            display: flex;
            align-items: center;
            justify-content: center;
            background: #eef1ff;
            color: var(--next-blue);
            padding: 11px 14px;
            border-radius: 11px;
            font-size: 14px;
            text-decoration: none;
            border: 1.5px solid #d0d9ff;
            transition: all 0.25s ease;
            min-width: 44px;
        }
        .btn-phone:hover { background: var(--next-blue); color: white; border-color: var(--next-blue); }

        @media (max-width: 768px) {
            .laminate-hero h1 { font-size: 38px; }
            .brand-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
            .lam-section-header h2 { font-size: 22px; }
            .brand-name { font-size: 14px; }
            .card-specs { padding: 8px 10px; font-size: 11px; flex-direction: column; align-items: flex-start; gap: 6px; }
            .card-specs .price { align-self: flex-end; margin-top: -20px; }
            .btn-wa, .btn-phone { padding: 9px 10px; font-size: 12px; }
        }

        /* ===== CATEGORY TABS ===== */
        .category-tabs-wrapper {
            background: #fff;
            padding: 15px 0;
            border-bottom: 1px solid #eaeaea;
            position: sticky;
            top: 70px; /* Below the main header */
            z-index: 90;
            margin-bottom: 30px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.02);
        }
        .category-tabs {
            display: flex;
            overflow-x: auto;
            gap: 12px;
            padding: 5px 10px; /* Gives room for pill hover shadows */
            scrollbar-width: none; /* Firefox */
            -webkit-overflow-scrolling: touch;
            align-items: center;
        }
        .category-tabs::-webkit-scrollbar {
            display: none; /* Chrome/Safari */
        }
        .cat-tab {
            background: #f8f9fa;
            border: 1px solid #e9ecef;
            padding: 10px 22px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            color: #4b5563;
            cursor: pointer;
            white-space: nowrap;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            box-shadow: 0 2px 4px rgba(0,0,0,0.01);
        }
        .cat-tab:hover {
            background: #fff;
            color: var(--next-blue);
            border-color: #c8d5ff;
            box-shadow: 0 4px 10px rgba(37, 99, 235, 0.1);
            transform: translateY(-2px);
        }
        .cat-tab.active {
            background: var(--next-blue);
            color: white;
            border-color: var(--next-blue);
            box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
        }
    
/* Marquee specific tweaks */
.nl-suggestion-row .brand-card {
    min-width: 280px;
    max-width: 280px;
    flex-shrink: 0;
}

/* ==========================================================================
   MOBILE CARD REDESIGN (COMPACT GRID)
   Added to override inline page styles for a cleaner mobile experience
   ========================================================================== */
@media (max-width: 768px) {
    .brand-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    .brand-card {
        border-radius: 12px !important;
    }
    .brand-card .card-img {
        aspect-ratio: 1 / 1 !important;
    }
    .brand-card .card-body {
        padding: 10px !important;
        gap: 5px !important;
    }
    .brand-name {
        font-size: 13px !important;
        line-height: 1.2 !important;
        margin-bottom: 2px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    .brand-desc {
        display: none !important;
    }
    .card-specs {
        padding: 6px 8px !important;
        font-size: 10px !important;
        margin-bottom: 6px !important;
        gap: 4px !important;
    }
    .card-specs .spec-item i {
        font-size: 9px !important;
    }
    .card-specs .price {
        font-size: 13px !important;
    }
    .card-actions {
        gap: 6px !important;
        margin-top: 0 !important;
    }
    .btn-wa, .btn-phone {
        padding: 7px !important;
        font-size: 11px !important;
        border-radius: 8px !important;
    }
    .btn-wa i, .btn-phone i {
        font-size: 11px !important;
    }
}

/* ==========================================================================
   MOBILE SHOWROOM SLIDER FIX
   ========================================================================== */
@media (max-width: 768px) {
    .nl-showroom-card {
        height: auto !important;
        aspect-ratio: 1 / 1 !important;
        border-radius: 20px !important;
    }
    .nl-split-image {
        padding: 20px !important;
        min-height: auto !important;
    }
}

/* ==========================================================================
   MOBILE PDP (PRODUCT DETAILS) FIX
   ========================================================================== */
@media (max-width: 768px) {
    .pdp-layout {
        padding: 25px 15px !important;
        gap: 15px !important;
    }
    .pdp-title {
        font-size: 22px !important;
        line-height: 1.3 !important;
        margin-bottom: 2px !important;
    }
    .pdp-details {
        gap: 12px !important;
    }
    .pdp-price .current {
        font-size: 22px !important;
    }
    .pdp-price .old {
        font-size: 14px !important;
    }
    .pdp-sku {
        font-size: 11px !important;
        margin-bottom: 0 !important;
    }
    .btn-wa-large {
        padding: 14px 20px !important;
        font-size: 16px !important;
        border-radius: 12px !important;
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3) !important;
    }
}

/* ==========================================================================
   MOBILE PDP (PART 2) - IMAGE & SCROLL FIXES
   ========================================================================== */
@media (max-width: 768px) {
    .pdp-main-image img {
        aspect-ratio: 1 / 1 !important;
        object-fit: contain !important;
        background: #f5f5f5 !important;
        max-height: 400px !important;
    }
    .specs-table {
        display: block;
        width: 100%;
        overflow-x: auto;
    }
    .gallery-header h2 {
        font-size: 24px !important;
    }
    .crayon-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    .crayon-img-wrap {
        aspect-ratio: 1 / 1 !important;
        border-radius: 8px !important;
    }
}

/* ==========================================================================
   MOBILE PDP (PART 3) - REMOVE IMAGE SPACING
   ========================================================================== */
@media (max-width: 768px) {
    .pdp-main-image img {
        aspect-ratio: auto !important;
        background: transparent !important;
    }
}

/* ==========================================================================
   MOBILE HOME PAGE CATEGORY GRID FIX
   ========================================================================== */
@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    .cat-card {
        aspect-ratio: 1 / 1 !important;
        border-radius: 12px !important;
    }
    .cat-overlay {
        padding: 15px !important;
    }
    .cat-overlay h3 {
        font-size: 15px !important;
        line-height: 1.2 !important;
    }
    .cat-explore {
        display: none !important;
    }
}

/* ==========================================================================
   MOBILE MENU POLISH
   ========================================================================== */
@media (max-width: 992px) {
    .header-nav-links {
        align-items: stretch !important;
        padding: 60px 30px 40px !important;
    }
    .mobile-menu-close {
        position: absolute !important;
        top: 20px !important;
        right: 20px !important;
        margin: 0 !important;
        width: 40px !important;
        height: 40px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: #f5f5f5 !important;
        border-radius: 50% !important;
        color: #333 !important;
        font-size: 18px !important;
        z-index: 10 !important;
    }
    .mobile-nav-top {
        width: 100% !important;
        text-align: left !important;
        border-bottom: 2px solid #f0f0f0 !important;
        margin-bottom: 25px !important;
        padding-bottom: 20px !important;
        align-items: flex-start !important;
    }
    .mobile-nav-top a {
        display: block !important;
        width: 100% !important;
        padding: 12px 0 !important;
        font-size: 20px !important;
    }
    .mobile-nav-categories {
        width: 100% !important;
        text-align: left !important;
        align-items: flex-start !important;
    }
    .mobile-nav-categories h4 {
        margin-bottom: 20px !important;
    }
    .mobile-nav-categories a {
        display: block !important;
        width: 100% !important;
        padding: 12px 0 !important;
        font-size: 16px !important;
        border-bottom: 1px dashed #f5f5f5 !important;
    }
    .mobile-nav-categories a:last-child {
        border-bottom: none !important;
    }
}


/* Mobile Fixes for Category Filters */
@media (max-width: 900px) {
    .cat-filter-scroll, .category-tabs {
        justify-content: flex-start !important;
        padding: 0 15px !important;
    }
    .cat-tab {
        padding: 12px 16px !important;
        font-size: 13px !important;
    }
}


/* Skeleton Loader Animations */
@keyframes shimmer {
    0% { background-position: -400px 0; }
    100% { background-position: 400px 0; }
}
.skeleton {
    background: #f6f7f8;
    background-image: linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
    background-repeat: no-repeat;
    background-size: 800px 100%;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: shimmer;
    animation-timing-function: linear;
    border-radius: 8px;
}
.skeleton-card {
    height: 350px;
    border-radius: 20px;
}
.skeleton-text {
    height: 15px;
    margin-bottom: 10px;
    border-radius: 4px;
}
.skeleton-img {
    height: 200px;
    border-radius: 20px 20px 0 0;
}


/* Google Review Card specific styles */
.google-review-card {
    padding: 30px !important;
    background: #fff !important;
    border: 1px solid #e0e0e0 !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.google-review-card p::before {
    display: none !important;
}
.gr-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}
.gr-icon img {
    width: 24px;
    height: 24px;
}
.gr-stars {
    color: #fbbc04;
    font-size: 14px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}
.google-review-card p {
    font-size: 15px !important;
    font-style: normal !important;
    color: #3c4043 !important;
    line-height: 1.6 !important;
    margin-bottom: 0 !important;
}
.nl-author-info p {
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-size: 12px !important;
    margin-top: 4px !important;
}

/* ===== GLOBAL LIGHTBOX ===== */
.lightbox-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}
.lightbox-img-container {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}
.lightbox-overlay img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}
.lightbox-overlay.active img {
    transform: scale(1);
}
.lightbox-close {
    position: absolute;
    top: -40px; right: -40px;
    color: white; font-size: 30px;
    cursor: pointer;
    transition: color 0.2s;
}
.lightbox-close:hover { color: #ff4757; }
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white; font-size: 40px;
    cursor: pointer;
    background: rgba(0,0,0,0.5);
    width: 50px; height: 50px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}
.lightbox-nav:hover { background: rgba(0,0,0,0.8); }
.lightbox-prev { left: -70px; }
.lightbox-next { right: -70px; }

@media (max-width: 768px) {
    .lightbox-close { top: -40px; right: 0; }
    .lightbox-nav { width: 40px; height: 40px; font-size: 25px; }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
}
