/* ==========================================================================
   PC KUMAR — WHITE THEME WITH STEALTH BLACK HERO SECTION & LOGO RED ACCENTS
   - Header & Page: Clean White Theme (#ffffff / #f8fafc)
   - Hero Section ONLY: Deep Stealth Black Theme (#050505) with Crimson Red (#dc2626)
   - Font Family: Poppins (Sans-Serif) across all elements
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. COLOR PALETTE & DESIGN SYSTEM
   -------------------------------------------------------------------------- */
* {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
}
   
   
:root {
    --bg-surface: #ffffff;
    --bg-hero-black: #050505;

    /* Logo Crimson Red Accent: #dc2626 */
    --theme-red: #dc2626;
    --theme-red-dark: #b91c1c;
    --theme-red-bright: #ef4444;
    --theme-red-glow: rgba(220, 38, 38, 0.4);
    
    --gradient-red: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    --gradient-red-hover: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);

    /* Secondary Accents */
    --nvsx-green: #059669;

    /* Text Colors */
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-muted: #64748b;
    --text-white: #ffffff;

    /* Borders */
    --border-light: #e2e8f0;
    --border-dark: #cbd5e1;
    --border-red: #dc2626;

    /* Fonts — Poppins Sans-Serif */
    --font-impact: 'Poppins', -apple-system, sans-serif;
    --font-heading: 'Poppins', -apple-system, sans-serif;
    --font-body: 'Poppins', -apple-system, sans-serif;
    --font-mono: 'Poppins', -apple-system, sans-serif;

    /* Transitions */
    --transition: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-page);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    background-color: #ffffff;
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

.section-header-row {
    margin-bottom: 44px;
}

.section-tag {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--theme-red);
}

.section-title {
    font-size: 50px;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--text-primary);
    text-transform: uppercase;
}

.text-red {
    color: var(--theme-red);
    text-shadow: none;
}



a { color: inherit; text-decoration: none; }
button { font-family: var(--font-body); border: none; background: none; cursor: pointer; outline: none; }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-page); }
::-webkit-scrollbar-thumb { background: rgba(220, 38, 38, 0.4); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--theme-red-dark); }

/* --------------------------------------------------------------------------
   2. NAVBAR HEADER & CENTERED SUB-NAVBAR (WHITE THEME)
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   3. MAIN NAVBAR HEADER & CENTERED SUB-NAVBAR WITH HOVER DROPDOWNS
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   3. MAIN NAVBAR HEADER & CENTERED SUB-NAVBAR WITH HOVER DROPDOWNS
   -------------------------------------------------------------------------- */
.navbar {
   position: relative !important;
    top: auto !important;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid #e2e8f0;
}

.navbar.sticky-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
}

.top-nav-row {
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}



/* MAIN HEADER ROW */
.main-header-row {
    padding: 10px 0;
    background: #ffffff;
}

/*.md-search-wrapper {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    background: #ffffff;*/
/*    border: 1px solid #cbd5e1;*/
/*    border-radius: 4px;*/
/*    overflow: hidden;*/
/*    flex-grow: 1;*/
/*    max-width: 580px;*/
/*    margin: 0 32px;*/
/*    height: 42px;*/
/*    transition: border-color 0.2s ease;*/
/*}*/

.md-search-wrapper:focus-within {
    border-color: #dc2626;
}

.md-search-input {
    flex-grow: 1;
    padding: 0 16px;
    height: 100%;
    border: none;
    outline: none;
    font-size: 13.5px;
    color: #0f172a;
    font-family: inherit;
}

.md-search-input::placeholder {
    color: #94a3b8;
}

.md-search-btn {
    background: #dc2626;
    color: #ffffff;
    border: none;
    width: 48px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.md-search-btn:hover {
    background: #b91c1c;
}

.md-header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.md-contact-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Header Contact Us Button */
.btn-header-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--theme-red);
    color: #ffffff;
    padding: 9px 18px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-header-contact:hover {
    background: #dc2626;
    color: #ffffff;
    border-color: #dc2626;
    transform: translateY(-1px);
}

/* SUB HEADER NAV ROW & DROPDOWN CONTAINERS */
.md-subnav-row {
    position: relative;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}

.nav-category-dropdown {
    position: relative;
}

.nav-dropdown-item.has-mega-menu {
    position: static;
}

/* Category Dropdown Container (Width Sized According to Content) */
.category-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: max-content;
    min-width: 290px;
    max-width: 340px;
    background: rgba(255, 255, 255);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(226, 232, 240, 0.85);
    border-radius: 14px;
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.08), 0 2px 6px rgba(15, 23, 42, 0.02);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.99);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 500;
    margin-top: 6px;
}

/* Simple Dropdown Container for MORE ITEMS (Width Sized According to Content, Centered) */
.simple-dropdown-menu {
    position: absolute;
    top: 55px;
    left: 50%;
    transform: translateX(-50%) translateY(10px) scale(0.99);
    width: max-content;
    min-width: 270px;
    max-width: 320px;
    background: rgba(255, 255, 255);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(226, 232, 240, 0.85);
    border-radius: 14px;
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.08), 0 2px 6px rgba(15, 23, 42, 0.02);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 500;
    margin-top: 6px;
}

/* Category & Simple Dropdown Subtle Dividers Below Every Item */
.category-dropdown-menu .dropdown-link-item,
.simple-dropdown-menu .dropdown-link-item {
    border-bottom: 1px solid #e2e8f0;
}

.category-dropdown-menu .dropdown-link-item:last-of-type,
.simple-dropdown-menu .dropdown-link-item:last-of-type {
    border-bottom: none;
}

/* --------------------------------------------------------------------------
   FULL-WIDTH MEGA MENU STYLES (EXCLUSIVELY FOR OUR PRODUCTS DROPDOWN)
   -------------------------------------------------------------------------- */
.full-width-mega {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    margin-top: 8px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(226, 232, 240, 0.85);
    border-top: 3px solid #dc2626;
    border-radius: 20px;
    /*box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.14);*/
    padding: 36px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 600;
    overflow: hidden;
}

.nav-category-dropdown:hover .category-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.nav-dropdown-item:hover .simple-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

.contact-icon {
    font-size: 26px;
}

.contact-icon-divider {
    width: 1.5px;
    height: 28px;
    background: #cbd5e1;
    margin: 0 2px;
}

.contact-text-group {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    font-size: 12px;
    color: #475569;
}

.call-text {
    font-size: 13px;
    font-weight: 700;
}

.email-text {
    font-size: 11.5px;
    color: #64748b;
    font-weight: 700;
}

/* SUBNAV ROW */
.md-subnav-row {
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
}

.md-subnav-row .nav-container {
    justify-content: space-between;
}

.btn-md-categories {
    background: #dc2626;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    transition: background 0.2s ease;
}

.btn-md-categories:hover {
    background: #b91c1c;
}

.md-nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0 auto;
}

.md-nav-item {
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #0f172a;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 0;
}

.md-user-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.md-action-link {
    font-size: 12px;
    font-weight: 700;
    color: #334155;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.md-action-link:hover {
    color: #dc2626;
}

.badge-num {
    background: #dc2626;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.milano-search-container {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 6px;
    overflow: hidden;
    width: 580px;
    max-width: 100%;
    height: 44px;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.milano-search-container:focus-within,
.milano-search-container:hover {
    border-color: #dc2626;
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.14);
}

.milano-search-input {
    flex-grow: 1;
    padding: 0 16px;
    height: 100%;
    border: none;
    outline: none;
    font-size: 13.5px;
    font-weight: 500;
    color: #0f172a;
    background: transparent;
    font-family: inherit;
}

.milano-search-input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.milano-select-wrapper {
    position: relative;
    border-left: 1px solid #e2e8f0;
    padding: 0 6px;
    display: flex;
    align-items: center;
    height: 100%;
    background: #f8fafc;
}

.milano-category-select {
    border: none;
    outline: none;
    background: transparent;
    font-size: 12.5px;
    font-weight: 700;
    color: #475569;
    padding: 0 24px 0 10px;
    height: 100%;
    cursor: pointer;
    font-family: inherit;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%20dc2626' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 6px center;
    background-size: 12px;
}

.milano-search-btn {
    background: #dc2626;
    color: #ffffff;
    border: none;
    width: 48px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.milano-search-btn:hover {
    background: #b91c1c;
}

.milano-nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-action-item {
    font-size: 22px;
    color: #0f172a;
    transition: all 0.2s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
}

.header-action-item:hover {
    color: #dc2626;
    background: #fee2e2;
}

.header-account-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #0f172a;
    transition: color 0.2s ease;
}

.account-ic {
    font-size: 24px;
    color: #0f172a;
    transition: color 0.2s ease;
}

.account-text-group {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.acc-sub {
    font-size: 11px;
    color: #64748b;
    font-weight: 500;
}

.acc-main {
    font-size: 13px;
    font-weight: 800;
    color: #0f172a;
}

.header-account-item:hover .account-ic,
.header-account-item:hover .acc-main {
    color: #dc2626;
}

.header-support-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 12px;
    border-left: 1px solid #e2e8f0;
}

.support-ic {
    font-size: 24px;
}

.support-text-group {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.sup-sub {
    font-size: 11px;
    color: #64748b;
    font-weight: 500;
}

.sup-main {
    font-size: 13px;
    font-weight: 800;
    color: #0f172a;
}

@media (max-width: 1100px) {
    .milano-search-container {
        width: 380px;
    }
    .header-support-item {
        display: none;
    }
}

@media (max-width: 900px) {
    .milano-search-container {
        display: none;
    }
}

.header-search-pill {
    background: #f8fafc;
    border: 1.5px solid #cbd5e1;
    border-radius: 30px;
    padding: 10px 24px;
    width: 640px;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: none;
}

.header-search-pill:hover {
    border-color: var(--theme-red);
    background: #ffffff;
    box-shadow: none;
}

.search-icon {
    color: var(--theme-red);
    font-size: 1.1rem;
}

.search-placeholder {
    font-size: 0.92rem;
    color: #475569;
    font-weight: 500;
    flex-grow: 1;
    margin-left: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-kbd {
    background: #e2e8f0;
    color: #334155;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 6px;
    background: #f1f5f9;
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

.icon-btn:hover {
    color: var(--theme-red);
    border-color: var(--theme-red-bright);
    background: rgba(220, 38, 38, 0.08);
}

.cart-btn { position: relative; }

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--theme-red);
    color: #fff;
    font-weight: 800;
    font-size: 0.65rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 8px rgba(220, 38, 38, 0.4);
}

.btn-yellow-quote {
    padding: 10px 24px;
    border-radius: 6px;
    background: var(--gradient-red);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-yellow-quote:hover {
    background: var(--gradient-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.45);
}

.mobile-menu-toggle { display: none; color: var(--text-primary); font-size: 1.2rem; }

.sub-nav-row {
    padding: 10px 0;
    border-top: 1px solid var(--border-light);
    background: var(--bg-surface);
    position: relative;
}



/* SEARCH BAR CONTAINER */
.md-search-wrapper {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    overflow: hidden !important;
    position: relative !important;
    flex-grow: 1;
    max-width: 580px;
    margin: 0 32px;
    height: 42px;
    transition: border-color 0.2s ease;
}

.md-search-wrapper:focus-within {
    border-color: #dc2626;
}

.md-search-input {
    flex-grow: 1;
    padding: 0 16px;
    height: 100%;
    border: none;
    outline: none;
    font-size: 13.5px;
    color: #0f172a;
    font-family: inherit;
}

.md-search-btn {
    background: #dc2626;
    color: #ffffff;
    border: none;
    width: 48px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s ease;
}

/* SEARCH RECOMMENDATIONS DROPDOWN MENU */
.search-recommendations-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    box-sizing: border-box;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.2);
    z-index: 500;
    overflow: hidden;
    display: none;
}

.mobile-search-wrapper {
    position: relative !important;
    overflow: visible !important;
}

.mobile-search-wrapper .search-recommendations-dropdown {
    left: 24px;
    width: calc(100% - 48px);
    top: calc(100% + 6px);
}

.search-recommendations-dropdown.active {
    display: block;
    animation: dropDownFadeIn 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes dropDownFadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.recommendation-header-label {
    
    padding: 10px 16px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.recommendation-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    text-decoration: none;
    color: #0f172a;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.15s ease;
}

.recommendation-item:last-child {
    border-bottom: none;
}

.recommendation-item:hover,
.recommendation-item.selected {
    background: #f4f5f8;
}

.rec-thumb-img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 4px;
    flex-shrink: 0;
}

.rec-info-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex-grow: 1;
    min-width: 0;
}

.rec-title {
    font-size: 0.88rem;
    font-weight: 500;
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.recommendation-item:hover .rec-title {
    color: #dc2626;
}

.rec-cat-badge {
    font-size: 10px;
    font-weight: 400;
    color: #64748b;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.rec-price {
   font-weight: 600;
    color: var(--text-secondary);
    margin-left: auto;
    flex-shrink: 0;
}

.recommendation-footer-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #0f172a;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.recommendation-footer-link:hover {
    background: #dc2626;
}

/* --------------------------------------------------------------------------
   CENTERED HORIZONTAL NAVBAR (ALL CATEGORIES + LINKS SIDE BY SIDE IN CENTER)
   -------------------------------------------------------------------------- */
.nav-centered-horizontal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: 100%;
    margin: 0 auto;
}

.inline-centered-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-vertical-divider {
    width: 1px;
    height: 22px;
    background: #cbd5e1;
    flex-shrink: 0;
}


/* --------------------------------------------------------------------------
   CENTERED SUB-NAVBAR & PREMIUM CALL PILL
   -------------------------------------------------------------------------- */
.nav-between-centered,
.nav-centered-horizontal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: 100%;
}

.nav-right-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.premium-call-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f8fafc;
    padding: 5px 14px 5px 6px;
    border-radius: 30px;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    box-shadow: none;
    transition: all 0.2s ease;
}

.premium-call-pill:hover {
    border-color: #dc2626;
    background: #ffffff;
}

.call-pill-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #dc2626;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.call-pill-details {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.call-pill-tag {
    font-size: 8.5px;
    font-weight: 800;
    letter-spacing: 0.8px;
    color: #64748b;
    text-transform: uppercase;
}

.call-pill-num {
    font-size: 12.5px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: 0.3px;
}

.nav-call-link .call-ic {
    font-size: 14px;
}

.nav-action-divider {
    width: 1px;
    height: 18px;
    background: #cbd5e1;
}

.sub-nav-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sub-nav-icon-btn:hover {
    background: #fee2e2;
    color: #dc2626;
    border-color: #fca5a5;
}

.nav-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-category-dropdown {
    position: relative;
}

.btn-category-dropdown {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0f172a;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 10px 18px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.btn-category-dropdown:hover {
    background: #dc2626;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
}

.btn-category-dropdown .arrow-ic {
    font-size: 11px;
    transition: transform 0.2s ease;
}

.nav-category-dropdown:hover .arrow-ic {
    transform: rotate(180deg);
}

/* --------------------------------------------------------------------------
   ULTRA-PREMIUM & SUBTLE LUXURY DROPDOWN MENUS
   -------------------------------------------------------------------------- */
.nav-dropdown-item,
.nav-category-dropdown {
    position: relative;
}

/* Arrow indicator rotation */
.nav-dropdown-item:hover .nav-arrow,
.nav-category-dropdown:hover .arrow-ic {
    transform: rotate(180deg);
}

.nav-arrow {
    font-size: 11px;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
    margin-left: 3px;
}


/* Position for CATEGORIES (Left Aligned) */
.category-dropdown-menu {
    left: 0;
    transform: translateY(10px) scale(0.99);
}

/* Position for OUR PRODUCTS & MORE ITEMS (Centered Below Nav Link) */
.simple-dropdown-menu {
    left: 50%;
    transform: translateX(-50%) translateY(10px) scale(0.99);
}

/* Subtle Bottom Borders Below Every Item in All Dropdowns */
.category-dropdown-menu .dropdown-link-item,
.simple-dropdown-menu .dropdown-link-item {
    border-bottom: 1px solid rgba(241, 245, 249, 0.85);
}

.category-dropdown-menu .dropdown-link-item:last-of-type,
.simple-dropdown-menu .dropdown-link-item:last-of-type {
    border-bottom: none;
}

/* --------------------------------------------------------------------------
   FULL-WIDTH MEGA MENU STYLES (OUR PRODUCTS MEGA DROPDOWN)
   -------------------------------------------------------------------------- */
.nav-dropdown-item.has-mega-menu {
    position: static;
}

.full-width-mega {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 2px solid #dc2626;
    border-bottom: 1px solid rgba(226, 232, 240, 0.85);
    box-shadow: 0 25px 50px -18px rgba(15, 23, 42, 0.1);
    padding: 36px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 600;
}

.nav-dropdown-item.has-mega-menu:hover .full-width-mega {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.full-width-mega::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 0;
    width: 100%;
    height: 14px;
}

.mega-grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.mega-column {
    display: flex;
    flex-direction: column;
}

.mega-heading {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #475569;
    text-transform: uppercase;
    padding-bottom: 8px;
    margin-bottom: 14px;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
}

.mega-heading::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 24px;
    height: 2px;
    background: #dc2626;
    border-radius: 2px;
}

.mega-menu-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* Dropdown Item Typography & Subtle Accent Line */
.dropdown-link-item,
.mega-item-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
    border-left: 2px solid transparent;
}

.drop-text-group {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    line-height: 1.3;
}

.drop-title {
    font-size: 13.5px;
    font-weight: 600;
    color: #1e293b;
    transition: color 0.2s ease;
    letter-spacing: -0.1px;
}

.dropdown-link-item:hover .drop-title,
.mega-item-link:hover .drop-title {
    color: #dc2626;
}

.drop-sub {
    font-size: 11px;
    font-weight: 400;
    color: #94a3b8;
    margin-top: 1px;
}

.drop-arrow {
    font-size: 11px;
    color: #cbd5e1;
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.2s ease;
}

.dropdown-link-item:hover .drop-arrow {
    opacity: 1;
    color: #dc2626;
    transform: translateX(0);
}

/* Subtle CTA Button inside Footer */
.dropdown-footer-link {
    margin-top: 8px;
    padding-top: 6px;
}

.drop-all-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: #f8fafc;
    color: #0f172a;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.drop-all-btn:hover {
    background: #dc2626;
    color: #ffffff;
    border-color: #dc2626;
    box-shadow: 0 4px 14px rgba(220, 38, 38, 0.25);
}

/* Hover trigger state */
.nav-category-dropdown:hover .category-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.nav-dropdown-item:hover .simple-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

/* Invisible Hover Bridge */
.category-dropdown-menu::before,
.simple-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 0;
    width: 100%;
    height: 14px;
}

/* Trailing Angle Arrow */
.drop-arrow {
    font-size: 12px;
    color: #cbd5e1;
    transition: all 0.2s ease;
    opacity: 0;
    transform: translateX(-4px);
}

.dropdown-link-item:hover .drop-arrow,
.cat-drop-item:hover .drop-arrow {
    opacity: 1;
    color: #dc2626;
    transform: translateX(0);
}

/* Footer Action Link */
.dropdown-footer-link {
    margin-top: 6px;
    padding-top: 8px;
    border-top: 1px solid #f1f5f9;
}

.drop-all-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: #fef2f2;
    border-radius: 8px;
    color: #dc2626;
    font-size: 12.5px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.drop-all-btn:hover {
    background: #dc2626;
    color: #ffffff;
}

.drop-all-btn i {
    transition: transform 0.2s ease;
}

.drop-all-btn:hover i {
    transform: translateX(4px);
}

.sub-nav-menu.centered-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    width: 100%;
}

.sub-nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: var(--text-secondary);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    padding: 4px 0;
    transition: var(--transition);
}

.sub-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--theme-red);
    transition: var(--transition);
    transform: translateX(-50%);
}

.sub-nav-link:hover::after, .sub-nav-link.active-link::after {
    width: 100%;
}

.sub-nav-link:hover, .sub-nav-link.active-link {
    color: var(--theme-red);
    font-weight: 700;
}

.sub-nav-link.highlight-green {
    color: var(--nvsx-green);
    font-weight: 700;
}

.sub-nav-link.italic-labs span {
    font-style: italic;
    color: var(--theme-red);
}

.nav-pill-badge {
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 1px 6px;
    border-radius: 10px;
    line-height: 1.3;
}

.red-pill {
    background: rgba(220, 38, 38, 0.12);
    color: #dc2626;
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.green-pill {
    background: rgba(5, 150, 105, 0.12);
    color: #059669;
    border: 1px solid rgba(5, 150, 105, 0.3);
}

.yellow-pill {
    background: rgba(245, 158, 11, 0.12);
    color: #d97706;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.nav-arrow {
    font-size: 0.65rem;
    opacity: 0.7;
    transition: transform 0.2s ease, color 0.2s ease;
}

/* 4-Column Mega Dropdown */
.nav-dropdown-item {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-dropdown-item.has-mega-menu {
    position: static;
}

.elite-mega-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 92vw;
    max-width: 1380px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 0 0 18px 18px;
    padding: 36px 44px;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 200;
}

.nav-dropdown-item:hover .elite-mega-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nav-dropdown-item:hover .sub-nav-link {
    color: var(--theme-red);
}

.nav-dropdown-item:hover .nav-arrow {
    transform: rotate(180deg);
    color: var(--theme-red);
}

.mega-dropdown-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: left;
}

.mega-column {
    display: flex;
    flex-direction: column;
}

.mega-heading {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.mt-24 { margin-top: 24px; }

.mega-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mega-list li a {
    font-size: 0.8rem;
    color: #475569;
    font-weight: 500;
    transition: color 0.18s ease, transform 0.18s ease;
    display: inline-block;
}

.mega-list li a:hover {
    color: var(--theme-red);
    font-weight: 600;
    transform: translateX(3px);
}

/* Mobile Navigation Drawer Styles */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 340px;
    max-width: 85vw;
    background: #ffffff;
    z-index: 350;
    box-shadow: 20px 0 50px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
}

.mobile-nav-drawer.active {
    transform: translateX(0);
}

.mobile-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    z-index: 340;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-drawer-backdrop.active {
    opacity: 1 important;
    visibility: visible !important;
}

.mobile-drawer-header {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-light);
    background: #f8fafc;
}

.mobile-drawer-close {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid var(--border-light);
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-drawer-close:hover {
    background: var(--theme-red);
    color: #ffffff;
    border-color: var(--theme-red);
}

.mobile-search-wrapper {
    position: relative;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-light);
}

.mobile-search-input {
    width: 100%;
    padding: 10px 16px 10px 38px;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    background: #f1f5f9;
    font-size: 0.85rem;
    outline: none;
}

.mobile-search-input:focus {
    border-color: var(--theme-red);
    background: #ffffff;
}

.mobile-search-icon {
    position: absolute;
    left: 36px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--theme-red);
    font-size: 0.85rem;
}

.mobile-nav-list {
    list-style: none;
    padding: 12px 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.mobile-nav-item {
    padding: 14px 24px;
    font-size: 0.92rem;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #f1f5f9;
    transition: var(--transition);
}

.mobile-nav-item i {
    color: var(--theme-red);
    width: 20px;
    text-align: center;
}

.mobile-nav-item:hover, .mobile-nav-item.active {
    background: rgba(220, 38, 38, 0.05);
    color: var(--theme-red);
    padding-left: 30px;
}

.mobile-drawer-footer {
    padding: 24px;
    margin-top: auto;
    background: #f8fafc;
    border-top: 1px solid var(--border-light);
}

.btn-mobile-quote {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    background: var(--gradient-red);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mobile-contact-info {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.75rem;
    color: #64748b;
}

/* HAMBURGER TOGGLE BUTTON (DEFAULT HIDDEN ON DESKTOP) */
.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--theme-white);
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 20px;
    color: #0f172a;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}
.mobile-menu-toggle:hover {
    background: #fee2e2;
    color: #dc2626;
    border-color: #fca5a5;
}

/* SECTION 3 RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
    .nav-container { padding: 0 24px; }
    .header-search-pill { display: none; }
    .mobile-menu-toggle { display: flex !important; align-items: center; justify-content: center; width: 42px; height: 42px; background: var(--theme-white); border-radius: 8px; border: 1px solid var(--border-light); font-size: 1.15rem; color: #0f172a; cursor: pointer; transition: var(--transition); }
    .mobile-menu-toggle:hover { background: rgba(220, 38, 38, 0.1); color: var(--theme-red); border-color: var(--theme-red); }
    .sub-nav-row { display: none; }
    .btn-yellow-quote { display: none; }
}
    
/* MOBILE SLIDE-OUT DRAWER OVERLAY */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    background: #ffffff;
    z-index: 350;
    box-shadow: 20px 0 50px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
}
.mobile-nav-drawer.active {
    transform: translateX(0);
}
.mobile-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    z-index: 340;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-drawer-backdrop.active {
    opacity: 1;
    visibility: visible;
}
/* SEGMENTED TABS (MENU | CATEGORIES) */
.mobile-tab-nav {
    display: flex;
    align-items: center;
    padding: 6px;
    border-bottom: 1px solid #e2e8f0;
}
.mobile-tab-btn {
    flex: 1;
    padding: 10px 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #64748b;
    background: transparent;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}
.mobile-tab-btn.active {
    background: #dc2626;
    color: #ffffff;
}
.mobile-tab-content {
    width: 100%;
}

/* ACCORDION DROPDOWNS INSIDE MOBILE DRAWER */
.mobile-dropdown-btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 13.5px;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: none;
    border-bottom: 1px solid #f1f5f9;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.2s ease;
}

.mobile-dropdown-btn:hover {
    background: #f8fafc;
}

.mobile-dropdown-arrow {
    font-size: 12px;
    color: #64748b;
    transition: transform 0.3s ease, color 0.3s ease;
}

.mobile-sub-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    background: #f8fafc;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    opacity: 0;
}

.mobile-sub-link {
    display: block;
    padding: 12px 20px 12px 42px;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    border-bottom: 1px solid #e2e8f0;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mobile-sub-link:hover {
    color: #dc2626;
    background: #ffffff;
    padding-left: 48px;
}

/* OPEN ACCORDION STATE */
.mobile-dropdown-item.open .mobile-sub-menu {
    max-height: 500px !important;
    opacity: 1 !important;
    border-top: 1px solid #e2e8f0;
}

.mobile-dropdown-item.open .mobile-dropdown-arrow {
    transform: rotate(180deg);
    color: #dc2626;
}

.mobile-dropdown-item.open .mobile-dropdown-btn {
    color: #dc2626;
    background: #f8fafc;
}

@media (max-width: 768px) {
    .nav-container { padding: 0 20px; }
}

/* --------------------------------------------------------------------------
   3. HERO SECTION ONLY: STEALTH DEEP BLACK (#050505) WITH CRIMSON RED ACCENTS
   -------------------------------------------------------------------------- */
.nvsx-hero-section {
    position: relative;
    width: 100%;
    min-height: 720px;
    padding: 70px 0;
    display: block;
    align-items: center;
    background: #050505;
    color: #ffffff;
    overflow: hidden;
}


.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 50px;
}

.hero-grid {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(450px, 0.9fr);
    align-items: center;
    gap: 60px;
}

.hero-left-content {
    width: 100%;
    max-width: 720px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.yellow-dash {
    color: var(--theme-red);
    font-weight: 900;
}

.hero-main-title {
    margin: 0;
    font-family: var(--font-body);
    font-size: clamp(48px, 4.2vw, 70px);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -1.5px;
    text-transform: uppercase;
    color: #ffffff;
}

.text-red {
    color: var(--theme-red-bright);
}

.text-outline {
    color: #ffffff;
}

/* Subtitle Paragraph */
.hero-subtitle {
    max-width: 680px;
    margin: 0;
    font-family: var(--font-body);
    font-size: 1.02rem;
    line-height: 1.65;
    color: #a1a1a1;
}

.hero-subtitle strong {
    color: #ffffff;
    font-weight: 700;
}

.section-para{
    color : var(--text-secondary);
}

/* CTAs Row */
.hero-btn-group {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 8px;
}

.btn-yellow-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 6px;
    background: var(--gradient-red);
    color: #ffffff;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-yellow-cta:hover {
    background: var(--gradient-red-hover);
    transform: translateY(-3px);
}

.btn-outline-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 17px 36px;
    border-radius: 6px;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-outline-cta:hover {
    border-color: var(--theme-red-bright);
    background: rgba(220, 38, 38, 0.2);
    transform: translateY(-3px);
}

/* Trust Badges Row (Hero Dark Cards) */
.trust-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 14px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    width: 100%;
}

.badge-item {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #a1a1a1;
    padding: 8px 14px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.badge-item:hover {
    color: #ffffff;
    border-color: var(--theme-red);
}

.green-dot {
    color: #00ff66;
    font-size: 0.6rem;
    text-shadow: 0 0 8px #00ff66;
}

/* --------------------------------------------------------------------------
   5. RIGHT STAGE: PC VISUAL ON DARK HERO
   -------------------------------------------------------------------------- */
.hero-right-stage {
    width: 100%;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 30px rgba(220, 38, 38, 0.35));
}

.pc-image-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-pc-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;

    /* Remove this if your image already has a transparent background */
    mix-blend-mode: lighten;
}

/* Interactive Hotspots */
.hotspot {
    position: absolute;
    z-index: 20;
    width: 26px;
    height: 26px;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.hotspot-pulse {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--theme-red-bright);
    border: 3px solid #ffffff;
    box-shadow: 0 0 20px var(--theme-red-bright);
    animation: pulseHotspot 2s infinite;
}

@keyframes pulseHotspot {
    0% { transform: scale(0.9); opacity: 0.8; }
    50% { transform: scale(1.25); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.8; }
}

.hotspot-tooltip {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid var(--theme-red);
    padding: 8px 14px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
}

.hotspot-tooltip strong {
    font-size: 0.8rem;
    color: #fff;
}

.hotspot-tooltip span {
    font-size: 0.7rem;
    color: var(--theme-red-bright);
}

.hotspot:hover .hotspot-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Hotspots coordinates */
.hs-cooling { top: 24%; left: 47%; }
.hs-purple-gpu { top: 57%; left: 45%; }

/* --------------------------------------------------------------------------
   6. FLOATING AI VOLT WIDGET
   -------------------------------------------------------------------------- */
.ai-widget-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 90;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ai-widget-btn {
    padding: 10px 18px;
    border-radius: 6px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.ai-widget-btn i {
    color: var(--theme-red);
}

.ai-widget-btn:hover {
    border-color: var(--theme-red);
    color: var(--theme-red);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.2);
    transform: translateY(-2px);
}

.ai-lightning-btn {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    background: var(--gradient-red);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 900;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.35);
    cursor: pointer;
    transition: var(--transition);
}

.ai-lightning-btn:hover {
    transform: scale(1.1) rotate(10deg);
}

/* --------------------------------------------------------------------------
   7. QUOTE MODAL (WHITE THEME CARD)
   -------------------------------------------------------------------------- */
.quote-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.quote-modal.active {
    opacity: 1;
    visibility: visible;
}



.quote-card {
    position: relative;
    width: 90%;
    max-width: 620px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15), 0 0 30px rgba(220, 38, 38, 0.1);
    border-radius: 12px;
    padding: 36px;
    z-index: 10;
    transform: translateY(-20px) scale(0.95);
    transition: var(--transition);
}

.quote-modal.active .quote-card {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.modal-close:hover { color: var(--text-primary); }

.modal-header h2 {
    font-family: var(--font-body);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-top: 4px;
}

.yellow-tag {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--theme-red);
    letter-spacing: 2px;
}

.modal-header p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-top: 6px;
    margin-bottom: 24px;
}

#quoteForm {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 6px;
    border: 1px solid var(--border-light);
    background: #f8fafc;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

.form-input:focus {
    border-color: var(--theme-red);
    background: #ffffff;
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.15);
}

.form-textarea { resize: vertical; }

.full-width {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}


/* --------------------------------------------------------------------------
   9. RESPONSIVE MEDIA QUERIES
   -------------------------------------------------------------------------- */


@media (max-width: 768px) {
    .nav-container { padding: 0 20px; }
    .hero-container { padding: 0 20px; }
    .sub-nav-menu { display: none; }
    .mobile-menu-toggle { display: block; }
    .hero-main-title { font-size: 2.8rem; }
    .hero-btn-group { flex-direction: column; width: 100%; }
    .btn-yellow-cta, .btn-outline-cta { width: 100%; justify-content: center; }
    .form-row { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   6. OVERLAPPING KEY METRICS BOXES (50% IN HERO, 50% OUTSIDE HERO)
   -------------------------------------------------------------------------- */
.metrics-bar-section {
    position: relative;
    z-index: 50;
    margin-top: -65px; /* Pulls boxes 50% inside hero and 50% outside */
    margin-bottom: 40px;
}

.metrics-container {
    max-width: 1760px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px; /* Space between individual boxes */
}

.metric-box {
    background: #0d0d0d;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45), 0 0 25px rgba(220, 38, 38, 0.18);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.metric-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-red);
    opacity: 0.8;
    transition: var(--transition);
}

.metric-box:hover {
    transform: translateY(-8px);
    border-color: var(--theme-red-bright);
    background: #121212;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 35px rgba(220, 38, 38, 0.4);
}

.metric-box:hover::before {
    height: 4px;
    opacity: 1;
    box-shadow: 0 0 15px var(--theme-red-bright);
}

.metric-value {
    font-family: var(--font-body);
    font-size: clamp(2.4rem, 3.5vw, 3.6rem);
    font-weight: 900;
    line-height: 1;
    color: #ffffff;
    letter-spacing: -1px;
}

.accent-symbol {
    color: var(--theme-red-bright);
    margin-left: 2px;
    font-weight: 900;
    text-shadow: 0 0 15px rgba(239, 68, 68, 0.5);
}

.metric-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #a1a1a1;
    margin-top: 10px;
    text-transform: uppercase;
}

.slash-accent {
    color: var(--theme-red-bright);
    font-weight: 900;
    margin: 0 2px;
}

/* Common container */
.container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}

/* Small laptops and tablets */
@media screen and (max-width: 1200px) {
    .container {
        padding-left: 30px;
        padding-right: 30px;
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Small mobile */
@media screen and (max-width: 480px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* --------------------------------------------------------------------------
   6. GEARNIX DRIBBBLE 2X2 GRID GAMING GEAR SECTION
   -------------------------------------------------------------------------- */
.gearnix-category-section {
    padding: 50px 0;
    background: #ffffff;
    position: relative;
    z-index: 25;
}

.gearnix-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.gearnix-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.gearnix-card {
    background: #f4f5f8;
    border-radius: 10px;
    padding: 20px 0px 20px 20px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid transparent;
}

.gearnix-card:hover{
    cursor : pointer;
}

.gearnix-card-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    height: 100%;
    z-index: 5;
}

.gearnix-title {
    font-size: 25px;
    font-weight: 600;
    line-height: 1.1;
    color: #0f172a;
    letter-spacing: -0.8px;
}

.gearnix-pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 48px;
    transition: var(--transition);
}

.gearnix-arrow-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background:var( --theme-red) ;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transform: rotate(45deg);
    transition: var(--transition);
}

.gearnix-pill-btn span:last-child {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.2px;
    color: var(--theme-red);
    transition: var(--transition);
}

.gearnix-card-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    height: 250px;
}

.gearnix-img {
    height: 270px;
    width: auto;
    max-width: 130%;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.12));
    transform: scale(1.08) translateX(15px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}



.gearnix-card:hover .gearnix-arrow-icon {
    background: var(--theme-red);
    transform: rotate(45deg) scale(1.1);
}

.gearnix-card:hover .gearnix-pill-btn span:last-child {
    color: var(--theme-red);
}

/* Laptop */
@media screen and (max-width: 1200px) {
    .gearnix-category-section .container {
        padding: 0 30px;
    }

    .gearnix-grid {
        gap: 22px;
    }

    .gearnix-card {
        grid-template-columns: 1fr 1fr;
        min-height: 250px;
    }

    .gearnix-card-right {
        height: 220px;
    }

    .gearnix-img {
        width: 100%;
        height: 230px;
        max-width: 100%;
    }
}

/* Tablet */
@media screen and (max-width: 768px) {
    .gearnix-grid {
        grid-template-columns: 1fr;
    }

    .gearnix-card {
        grid-template-columns: 0.8fr 1.2fr;
        min-height: 260px;
    }

    .gearnix-card-right {
        height: 230px;
    }

    .gearnix-img {
        height: 240px;
    }
}

/* Mobile */
@media screen and (max-width: 576px) {
    .gearnix-category-section {
        padding: 40px 0;
    }

    .gearnix-category-section .container {
        padding: 0 16px;
    }

    .gearnix-grid {
        gap: 16px;
    }

    .gearnix-card {
        grid-template-columns: 0.8fr 1.2fr;
        min-height: 210px;
        padding: 18px 0 18px 16px;
    }

    .gearnix-title {
        font-size: 21px;
    }

    .gearnix-card-right {
        height: 180px;
    }

    .gearnix-img {
        width: 100%;
        height: 190px;
        max-width: 100%;
        transform: scale(1.05) translateX(8px);
    }

    .gearnix-pill-btn {
        gap: 7px;
        margin-top: 25px;
    }

    .gearnix-arrow-icon {
        width: 28px;
        height: 28px;
    }

    .gearnix-pill-btn span:last-child {
        font-size: 12px;
        letter-spacing: 0.5px;
    }
}

/* Extra-small mobile */
@media screen and (max-width: 380px) {
    .gearnix-card {
        grid-template-columns: 0.9fr 1.1fr;
        min-height: 190px;
        padding-left: 14px;
    }

    .gearnix-title {
        font-size: 18px;
    }

    .gearnix-card-right {
        height: 160px;
    }

    .gearnix-img {
        height: 170px;
    }

    .gearnix-pill-btn span:last-child {
        font-size: 10px;
    }
}


/* --------------------------------------------------------------------------
   6. FEATURED PROMOTIONAL BANNER SECTION (COMPACT HEIGHT UNCROPPED BANNER)
   -------------------------------------------------------------------------- */
.promo-banner-section {
    padding: 0 40px;
    position: relative;
    z-index: 22;
    width: 100%;
    background : #ffffff;
}

.banner-container {
    max-width: 1600px;
    margin: 0 auto;
}

.banner-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    max-height: 350px;
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-banner-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: fill;
    object-position: center;
}

.banner-overlay {
    position: absolute;
    bottom: 20px;
    right: 28px;
    z-index: 10;
}

.banner-cta-btn {
    padding: 10px 22px;
    border-radius: 6px;
    background: var(--gradient-red);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4);
    transition: var(--transition);
}

.banner-cta-btn:hover {
    background: var(--gradient-red-hover);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.6);
}


/* --------------------------------------------------------------------------
   6. FEATURED PRODUCTS HORIZONTAL SLIDER (TRANSFORM TRANSLATE NO BLANK SPACE)
   -------------------------------------------------------------------------- */
.nvsx-products-section {
    padding: 65px 0;
    background: #ffffff;
    position: relative;
    z-index: 22;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.nvsx-header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.slider-overlay-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) scale(0.85);
    z-index: 35;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid var(--border-light);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

/* REVEAL NAV BUTTONS ON HOVER OVER THE SLIDER TRACK / CARDS */
.categories-slider-wrapper:hover .slider-overlay-btn,
.nvsx-product-slider-wrapper:hover .slider-overlay-btn {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(-50%) scale(1);
}

/* FLOATING DIRECTLY OVER THE FIRST PRODUCT CARD VISIBLE ON SCREEN */
.slider-overlay-btn.btn-prev {
    left: 12px;
}

/* FLOATING DIRECTLY OVER THE LAST PRODUCT CARD VISIBLE ON SCREEN */
.slider-overlay-btn.btn-next {
    right: 12px;
}

.slider-overlay-btn:hover {
    background: var(--theme-red);
    border-color: var(--theme-red);
    color: #ffffff;
    transform: translateY(-50%) scale(1.14) !important;
}



 /*Horizontal Slider Wrapper & Inner Track */
.nvsx-product-slider-wrapper {
    width: 100%;
    position: relative;
    margin-top: 36px;
    overflow: hidden;
    padding-bottom: 20px;
    padding-top: 6px;
}

.nvsx-product-grid.slider-track {
    display: flex;
    grid-template-columns: none;
    gap: 24px;
    margin-top: 0;
    width: 100%;
    overflow: visible;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

/* EXACTLY 4 CARDS PER SLIDE VIEW FORMULA: calc((100% - (3 * 24px)) / 4) */
.nvsx-product-grid.slider-track .nvsx-prod-card {
    flex: 0 0 calc((100% - 72px) / 4);
    width: calc((100% - 72px) / 4);
    min-width: calc((100% - 72px) / 4);
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    cursor : pointer;
}

/* Featured Gold/Yellow Border Accent Card */

.nvsx-prod-card.featured-card:hover {
    border-color: #eab308;
    box-shadow: 0 20px 45px rgba(234, 179, 8, 0.3);
}

/* Top Image Container — Product takes FULL HEIGHT & WIDTH of container */
.prod-img-box {
    background: #ffffff;
    height: 300px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    border-bottom: 1px solid var(--border-light);
}

.nvsx-prod-img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    max-width: 100%;
    object-position: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nvsx-prod-card:hover .nvsx-prod-img {
    transform: scale(1.06);
}

/* Bottom White Theme Info Container */
.prod-info-box {
    background: #ffffff;
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.prod-cat-tag {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.prod-title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: #64748b;
    line-height: 1.4;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.prod-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
}

.prod-price {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: #3d3d3d;
    letter-spacing: -0.5px;
}


.prod-view-btn {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--theme-red);
    transition: all 0.2s ease;
    text-decoration: none;
}

.prod-view-btn:hover {
    color: var(--theme-red-dark);
    transform: translateX(4px);
}

/* Small laptops: 3 cards */
@media screen and (max-width: 1200px) {
    .nvsx-product-grid.slider-track {
        gap: 20px;
    }

    .nvsx-product-grid.slider-track .nvsx-prod-card {
        flex: 0 0 calc((100% - 40px) / 3);
        width: calc((100% - 40px) / 3);
        min-width: calc((100% - 40px) / 3);
    }

    .prod-img-box {
        height: 260px;
    }

    .prod-info-box {
        padding: 18px;
    }
}

/* Tablets: 2 cards */
@media screen and (max-width: 768px) {
    .nvsx-products-section {
        padding: 50px 0;
    }

    .nvsx-product-slider-wrapper {
        margin-top: 28px;
    }

    .nvsx-product-grid.slider-track {
        gap: 16px;
    }

    .nvsx-product-grid.slider-track .nvsx-prod-card {
        flex: 0 0 calc((100% - 16px) / 2);
        width: calc((100% - 16px) / 2);
        min-width: calc((100% - 16px) / 2);
    }

    .prod-img-box {
        height: 230px;
    }

    .prod-info-box {
        padding: 16px;
    }

    .prod-cat-tag {
        font-size: 17px;
    }

    .prod-price {
        font-size: 16px;
    }

    .prod-view-btn {
        font-size: 13px;
    }

    /* Keep slider arrows visible on touchscreens */
    .slider-overlay-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(-50%) scale(1);
    }

    .slider-overlay-btn.btn-prev {
        left: 8px;
    }

    .slider-overlay-btn.btn-next {
        right: 8px;
    }
}

/* Mobile: 1 card */
@media screen and (max-width: 576px) {
    .nvsx-products-section {
        padding: 40px 0;
    }

    .nvsx-product-slider-wrapper {
        margin-top: 22px;
        padding-top: 4px;
        padding-bottom: 15px;
    }

    .nvsx-product-grid.slider-track {
        gap: 14px;
    }

    .nvsx-product-grid.slider-track .nvsx-prod-card {
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
    }

    .prod-img-box {
        height: 280px;
    }

    .prod-info-box {
        padding: 18px;
    }

    .prod-cat-tag {
        font-size: 18px;
    }

    .prod-title {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .prod-price {
        font-size: 17px;
    }

    .prod-view-btn {
        font-size: 14px;
    }

    .slider-overlay-btn {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .slider-overlay-btn.btn-prev {
        left: 6px;
    }

    .slider-overlay-btn.btn-next {
        right: 6px;
    }
}

/* Extra-small mobile */
@media screen and (max-width: 380px) {
    .prod-img-box {
        height: 240px;
    }

    .prod-info-box {
        padding: 15px;
    }

    .prod-price-row {
        gap: 8px;
    }

    .prod-price {
        font-size: 15px;
    }

    .prod-view-btn {
        font-size: 12px;
        letter-spacing: 0.5px;
    }
}



/*SSD PRODUCT SECTION CSS*/

.ssd-products-section {
    padding: 0px 0px 65px 0px; 
    background: #ffffff;
    position: relative;
    z-index: 22;
}

.ssd-header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* REVEAL NAV BUTTONS ON HOVER OVER THE SLIDER TRACK / CARDS */
.categories-slider-wrapper:hover .slider-overlay-btn,
.ssd-product-slider-wrapper:hover .slider-overlay-btn {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(-50%) scale(1);
}


 /*Horizontal Slider Wrapper & Inner Track */
.ssd-product-slider-wrapper {
    width: 100%;
    position: relative;
    margin-top: 36px;
    overflow: hidden;
    padding-bottom: 20px;
    padding-top: 6px;
}

.ssd-product-grid.slider-track {
    display: flex;
    grid-template-columns: none;
    gap: 24px;
    margin-top: 0;
    width: 100%;
    overflow: visible;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

/* EXACTLY 4 CARDS PER SLIDE VIEW FORMULA: calc((100% - (3 * 24px)) / 4) */
.ssd-product-grid.slider-track .ssd-prod-card {
    flex: 0 0 calc((100% - 72px) / 4);
    width: calc((100% - 72px) / 4);
    min-width: calc((100% - 72px) / 4);
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor : pointer;
}


/* Featured Gold/Yellow Border Accent Card */

.ssd-prod-card.featured-card:hover {
    border-color: #eab308;
    box-shadow: 0 20px 45px rgba(234, 179, 8, 0.3);
}

/* Top Image Container — Product takes FULL HEIGHT & WIDTH of container */
.prod-img-box {
    background: #ffffff;
    height: 300px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    border-bottom: 1px solid var(--border-light);
}

.ssd-prod-img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ssd-prod-card:hover .nvsx-prod-img {
    transform: scale(1.06);
}


/* Small laptops: 3 cards */
@media screen and (max-width: 1200px) {
    .ssd-product-grid.slider-track {
        gap: 20px;
    }

    .ssd-product-grid.slider-track .ssd-prod-card {
        flex: 0 0 calc((100% - 40px) / 3);
        width: calc((100% - 40px) / 3);
        min-width: calc((100% - 40px) / 3);
    }

    .ssd-prod-card .prod-img-box {
        height: 260px;
    }
    
    .amd-hero-img.desktop{
       display : none;        
    }
    
}

/* Tablets: 2 cards */
@media screen and (max-width: 768px) {
    .ssd-products-section {
        padding-bottom: 50px;
    }

    .ssd-product-slider-wrapper {
        margin-top: 28px;
    }

    .ssd-product-grid.slider-track {
        gap: 16px;
    }

    .ssd-product-grid.slider-track .ssd-prod-card {
        flex: 0 0 calc((100% - 16px) / 2);
        width: calc((100% - 16px) / 2);
        min-width: calc((100% - 16px) / 2);
    }

    .ssd-prod-card .prod-img-box {
        height: 230px;
    }

    .ssd-prod-card .prod-info-box {
        padding: 16px;
    }

    .ssd-prod-card .prod-cat-tag {
        font-size: 17px;
    }

    .ssd-prod-card .prod-price {
        font-size: 16px;
    }

    .ssd-prod-card .prod-view-btn {
        font-size: 13px;
    }

    /* Keep slider arrows visible on touchscreens */
    .ssd-product-slider-wrapper .slider-overlay-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(-50%) scale(1);
    }

    .ssd-product-slider-wrapper .btn-prev {
        left: 8px;
    }

    .ssd-product-slider-wrapper .btn-next {
        right: 8px;
    }
}

/* Mobile: 1 card */
@media screen and (max-width: 576px) {
    .ssd-products-section {
        padding-bottom: 40px;
    }

    .ssd-product-slider-wrapper {
        margin-top: 22px;
        padding-top: 4px;
        padding-bottom: 15px;
    }

    .ssd-product-grid.slider-track {
        gap: 14px;
    }

    .ssd-product-grid.slider-track .ssd-prod-card {
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
    }

    .ssd-prod-card .prod-img-box {
        height: 280px;
    }

    .ssd-prod-card .prod-info-box {
        padding: 18px;
    }

    .ssd-prod-card .prod-cat-tag {
        font-size: 18px;
    }

    .ssd-prod-card .prod-title {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .ssd-prod-card .prod-price {
        font-size: 17px;
    }

    .ssd-prod-card .prod-view-btn {
        font-size: 14px;
    }

    .ssd-product-slider-wrapper .slider-overlay-btn {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .ssd-product-slider-wrapper .btn-prev {
        left: 6px;
    }

    .ssd-product-slider-wrapper .btn-next {
        right: 6px;
    }
}

/* Extra-small mobile */
@media screen and (max-width: 380px) {
    .ssd-prod-card .prod-img-box {
        height: 240px;
    }

    .ssd-prod-card .prod-info-box {
        padding: 15px;
    }

    .ssd-prod-card .prod-price-row {
        gap: 8px;
    }

    .ssd-prod-card .prod-price {
        font-size: 15px;
    }

    .ssd-prod-card .prod-view-btn {
        font-size: 12px;
        letter-spacing: 0.5px;
    }
}


  /*6C. NEW STATIC GRID PRODUCT SECTION WITH IMAGE HOVER SWAP EFFECT (NO SLIDER)*/
.static-grid-products-section {
    padding-bottom: 65px;
    background: #ffffff;
    position: relative;
    z-index: 26;
}

.static-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 36px;
}

.static-grid-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}


/* DUAL IMAGE HOVER CROSS-FADE SWAP STYLING */
.swap-img-box {
    background: #ffffff;
    height: 280px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid var(--border-light);
}

.prod-img-primary,
.prod-img-hover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.prod-img-primary {
    opacity: 1;
    z-index: 1;
    transform: scale(1);
}

.prod-img-hover {
    opacity: 0;
    z-index: 2;
    transform: scale(1.08);
}

/* ON CARD HOVER -> SWAP IMAGE WITH ZOOM EFFECT */
.swap-img-box:hover .prod-img-primary {
    opacity: 0;
    transform: scale(0.95);
}

.swap-img-box:hover .prod-img-hover {
    opacity: 1;
    transform: scale(1.06);
}

/* Small laptops: 3 cards */
@media screen and (max-width: 1200px) {
    .static-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }

    .swap-img-box {
        height: 250px;
    }
}

/* Tablets: 2 cards */
@media screen and (max-width: 900px) {
    .static-grid-products-section {
        padding-bottom: 50px;
    }

    .static-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
        margin-top: 28px;
    }

    .swap-img-box {
        height: 260px;
    }
}

/* Mobile */
@media screen and (max-width: 576px) {
    .static-grid-products-section {
        padding-bottom: 40px;
    }

    .static-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        margin-top: 22px;
    }

    .static-grid-card {
        border-radius: 12px;
    }

    .swap-img-box {
        height: 170px;
    }

    .static-grid-card .prod-info-box {
        padding: 14px 12px;
    }

    .static-grid-card .prod-cat-tag {
        font-size: 14px;
        letter-spacing: 0.5px;
    }

    .static-grid-card .prod-title {
        min-height: 40px;
        margin-bottom: 12px;
        font-size: 12px;
        line-height: 1.4;
    }

    .static-grid-card .prod-price-row {
        gap: 8px;
        padding-top: 10px;
    }

    .static-grid-card .prod-price {
        font-size: 14px;
        white-space: nowrap;
    }

    .static-grid-card .prod-view-btn {
        font-size: 11px;
        letter-spacing: 0;
        white-space: nowrap;
    }
}

/* Extra-small mobile: 1 card */
@media screen and (max-width: 380px) {
    .static-product-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .swap-img-box {
        height: 260px;
    }

    .static-grid-card .prod-info-box {
        padding: 17px;
    }

    .static-grid-card .prod-cat-tag {
        font-size: 17px;
    }

    .static-grid-card .prod-title {
        font-size: 14px;
    }

    .static-grid-card .prod-price {
        font-size: 17px;
    }

    .static-grid-card .prod-view-btn {
        font-size: 13px;
    }
}



 /*AMD Processor Section*/
 
.amd-processors-section {
    padding-bottom: 65px;
    background: #ffffff;
    position: relative;
    z-index: 28;
}

.amd-dark-panel {
    background: #000000;
    border-radius: 24px;
    padding: 44px;
}

.amd-section-heading {
    font-family: var(--font-body);
    font-size: 50px;
    font-weight: 700;
    color: #ffffff;
    text-align: left;
    margin-bottom: 36px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.amd-main-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 24px;
    align-items: stretch;
}

/* LEFT HERO SPOTLIGHT CARD */
.amd-hero-card {
    background: linear-gradient(180deg, #0d0d0d 0%, #1a140b 100%);
    border: 1.5px solid var(--theme-red-dark);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), inset 0 0 30px rgba(245, 158, 11, 0.05);
}

.amd-hero-img-box {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    overflow: hidden;
    border-radius: 12px;
}

.amd-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.amd-hero-img.mobile{
    display : none;
}

.amd-hero-details {
    margin-top: 18px;
}

.amd-hero-title {
    font-family: var(--font-body);
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffcc00;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.amd-hero-sub {
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 500;
    margin-top: 4px;
}

.amd-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 18px 0;
}

.amd-specs-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.amd-specs-list li {
    font-size: 0.8rem;
    color: #e2e8f0;
    font-weight: 500;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.amd-specs-list li::before {
    content: "•";
    color: #ffcc00;
    font-weight: 900;
}

.btn-amd-buy {
    width: 100%;
    padding: 14px 0;
    border-radius: 8px;
    background: var(--theme-red);
    color: #000000;
    font-family: var(--font-body);
    font-weight: 900;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    margin-top: 24px;
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.35);
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn-amd-buy:hover {
    background: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 204, 0, 0.5);
}

/* RIGHT 8-CARD GRID */
.amd-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.amd-proc-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}


.amd-card-img-box {
    background: #ffffff;
    height: 160px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #f1f5f9;
}

.amd-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.amd-proc-card:hover .amd-card-img {
    transform: scale(1.08);
}

.amd-card-info {
    padding: 16px 16px 12px 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.amd-card-title {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.25;
}

.amd-card-sub {
    font-size: 0.76rem;
    color: #64748b;
    font-weight: 500;
    margin-top: 4px;
}

.btn-amd-view {
    width: 100%;
    padding: 12px 0;
    background: var(--theme-red);
    color: #ffffff;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border: none;
    border-radius: 0 0 16px 16px;
    cursor: pointer;
    transition: background 0.2s ease;
    text-align : center;
}

.amd-hero-img.mobile{
    display : none;
}

/* Large laptops */
@media screen and (max-width: 1400px) {
    .amd-dark-panel {
        padding: 36px;
    }

    .amd-section-heading {
        font-size: 42px;
    }

    .amd-main-grid {
        grid-template-columns: 300px 1fr;
        gap: 20px;
    }

    .amd-cards-grid {
        gap: 14px;
    }

    .amd-card-img-box {
        height: 140px;
    }
}

/* Small laptops */
@media screen and (max-width: 1200px) {
    .amd-main-grid {
        grid-template-columns: 1fr;
    }

    .amd-hero-card {
        height: 450px;
    }

    .amd-hero-img-box {
        height: 100%;
    }
    .amd-hero-img.desktop{
        display : none;
    }
    
    .amd-hero-img.mobile{
        display : block;
        object-fit : fill
    }
    
    .amd-cards-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* Tablets */
@media screen and (max-width: 992px) {
    .amd-processors-section {
        padding-bottom: 50px;
    }

    .amd-dark-panel {
        padding: 30px;
        border-radius: 20px;
    }

    .amd-section-heading {
        margin-bottom: 28px;
        font-size: 36px;
    }

    .amd-hero-card {
        height: 320px;
    }

    .amd-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .amd-card-img-box {
        height: 180px;
    }
}

/* Mobile */
@media screen and (max-width: 576px) {
    .amd-processors-section {
        padding-bottom: 40px;
    }

    .amd-dark-panel {
        padding: 20px;
        border-radius: 14px;
    }

    .amd-section-heading {
        margin-bottom: 22px;
        font-size: 28px;
        line-height: 1.15;
        letter-spacing: 0;
    }

    .amd-main-grid {
        gap: 18px;
    }

    .amd-hero-card {
        height: 260px;
    }

    .amd-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .amd-proc-card {
        border-radius: 12px;
    }

    .amd-card-img-box {
        height: 130px;
    }

    .amd-card-info {
        padding: 12px 10px 10px;
    }

    .amd-card-title {
        font-size: 14px;
    }

    .amd-card-sub {
        font-size: 0.7rem;
    }

    .btn-amd-view {
        min-height: 40px;
        padding: 10px 4px;
        border-radius: 0 0 12px 12px;
        font-size: 0.68rem;
        letter-spacing: 0.3px;
    }
}

/* Extra-small mobile */
@media screen and (max-width: 380px) {
    .amd-dark-panel {
        padding: 16px;
    }

    .amd-section-heading {
        font-size: 24px;
    }

    .amd-hero-card {
        height: 220px;
    }

    .amd-cards-grid {
        grid-template-columns: 1fr;
    }

    .amd-card-img-box {
        height: 190px;
    }

    .amd-card-title {
        font-size: 15px;
    }

    .btn-amd-view {
        font-size: 0.75rem;
    }
}






/*4B. FOUR RULES WE DON'T BEND SECTION (ULTRA-MODERN LUXURY PREMIUM LOOK)*/
 
.four-rules-section {
    padding: 0px 0px 65px 0px;
    background: #ffffff;
    color: var(--text-primary);
    position: relative;
    z-index: 25;
    overflow: visible;
}

.four-rules-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.four-rules-container {
    max-width: 1760px;
    margin: 0 auto;
    padding: 0 40px;
}

.four-rules-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 70px;
    align-items: start; /* Critical for CSS sticky element alignment */
}

.rules-tag {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: var(--theme-red);
    text-transform: uppercase;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rules-tag::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 3px;
    background: var(--gradient-red);
    border-radius: 2px;
}

.text-red-highlight {
    color: var(--theme-red);
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rules-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ULTRA-MODERN BOTTOM BORDER DIVIDER ITEM WITH GLOW ACCENT */
.rule-item {
    position: relative;
    padding: 28px 12px;
    background: transparent;
    border: none;
    border-bottom: 1.5px solid var(--border-light);
    cursor: pointer;
}

/*.rule-item::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    bottom: -1.5px;*/
/*    left: 0;*/
/*    width: 0;*/
/*    height: 2.5px;*/
/*    background: var(--gradient-red);*/
/*    box-shadow: 0 0 12px rgba(220, 38, 38, 0.6);*/
/*    transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);*/
/*}*/

/*.rule-item:hover::before,*/
/*.rule-item.active::before {*/
/*    width: 100%;*/
/*}*/

/*.rule-item:hover {*/
/*    background: linear-gradient(90deg, rgba(220, 38, 38, 0.02) 0%, transparent 100%);*/
/*    transform: translateX(8px);*/
/*}*/

/*.rule-item.active {*/
/*    background: linear-gradient(90deg, rgba(220, 38, 38, 0.04) 0%, transparent 100%);*/
/*}*/

.rule-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rule-title-group {
    display: flex;
    align-items: center;
    gap: 22px;
}


/*.rule-item:hover .rule-num,*/
/*.rule-item.active .rule-num {*/
/*    color: #ffffff;*/
/*    background: var(--theme-red);*/
/*    border-color: var(--theme-red);*/
/*    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.35);*/
/*}*/

.rule-name {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: #0f172a;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

.rule-item:hover .rule-name,
.rule-item.active .rule-name {
    color: var(--theme-red);
}

.rule-toggle-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

/*.rule-item:hover .rule-toggle-icon {*/
/*    border-color: var(--theme-red);*/
/*    color: var(--theme-red);*/
/*    background: rgba(220, 38, 38, 0.08);*/
/*    transform: scale(1.08);*/
/*}*/

.rule-item.active .rule-toggle-icon {
    background: var(--gradient-red);
    border-color: var(--theme-red);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.45);
    transform: rotate(180deg) scale(1.08);
}

.rule-description {
    max-height: 0;
    overflow: hidden;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.68;
    padding-left: 68px;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding-top 0.3s ease;
}

.rule-item.active .rule-description {
    max-height: 160px;
    padding-top: 18px;
}

.rule-summary-badge {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--theme-red);
    background: rgba(220, 38, 38, 0.05);
    padding: 8px 16px;
    border-radius: 8px;
    border-left: 3px solid var(--theme-red);
    border: 1px solid rgba(220, 38, 38, 0.15);
    border-left-width: 3px;
    box-shadow: 0 2px 10px rgba(220, 38, 38, 0.05);
}

/* RIGHT COLUMN LUXURY GLASS STICKY VISUAL CONTAINER */
.rules-visual-col {
    position: sticky;
    top: 110px;
    z-index: 20;
}

.rules-visual-wrapper {
    position: relative;
    width: 100%;
    border-radius: 28px;
    overflow: hidden;
    background: #ffffff;
}

.rules-img-box {
    position: relative;
    width: 100%;
    height: 640px; /* TALL MODERN HEIGHT */
    overflow: hidden;
    background: #f8fafc;
}

.rules-feature-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.rules-feature-img.active-feature-img {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.rules-visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 34px 34px 34px;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.95) 100%);
    z-index: 5;
    color: #ffffff;
}

.visual-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gradient-red);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    margin-bottom: 12px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.visual-title {
    font-family: var(--font-body);
    font-size: 1.6rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.5px;
    line-height: 1.25;
}

.visual-subtitle {
    font-size: 0.88rem;
    color: #cbd5e1;
    margin-top: 6px;
    line-height: 1.5;
}

.rules-visual-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 85px rgba(220, 38, 38, 0.2);
    border-color: var(--theme-red);
}


/*FOOTER SECTION CSS*/

.footer-section {
    background: var(--bg-hero-black);
    color: #cbd5e1;
    position: relative;
    z-index: 30;
    border-top: 1px solid rgba(220, 38, 38, 0.2);
    font-family: var(--font-body);
}

.footer-top-strip {
    background: linear-gradient(132deg, #000000 0%, #202121 100%);
    padding: 44px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.newsletter-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 540px;
}

.newsletter-title {
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.newsletter-sub {
    font-size: 0.85rem;
    color: #94a3b8;
}

.newsletter-form {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 480px;
    max-width: 100%;
}

.newsletter-input {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 12px 18px;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.newsletter-input:focus {
    border-color: var(--theme-red);
    background: rgba(255, 255, 255, 0.1);
}

.btn-subscribe {
    padding: 12px 26px;
    border-radius: 8px;
    background: var(--gradient-red);
    color: #ffffff;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.35);
    white-space: nowrap;
    transition: var(--transition);
}

.btn-subscribe:hover {
    background: var(--gradient-red-hover);
    transform: translateY(-2px);
}

.footer-trust-perks {
    display: flex;
    align-items: center;
    gap: 36px;
}

.trust-perk-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.perk-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(220, 38, 38, 0.12);
    border: 1px solid rgba(220, 38, 38, 0.3);
    color: var(--theme-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.perk-text strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
}

.perk-text span {
    font-size: 0.72rem;
    color: #94a3b8;
}

.footer-main-body {
    padding: 70px 0 50px 0;
}

.footer-main-container {
    max-width: 1760px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.footer-brand-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #94a3b8;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.82rem;
    color: #cbd5e1;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-item i {
    color: var(--theme-red);
    width: 16px;
}

.footer-social-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
}

.social-link-btn {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: var(--transition);
}

.social-link-btn:hover {
    background: var(--theme-red);
    border-color: var(--theme-red);
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-col-heading {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 8px;
}

.footer-col-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--theme-red);
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-list li a {
    font-size: 0.82rem;
    color: #94a3b8;
    font-weight: 500;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.footer-links-list li a:hover {
    color: var(--theme-red);
    transform: translateX(4px);
}

.footer-bottom-bar {
    background:var(--bg-hero-black);
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.78rem;
    color: #64748b;
}

.payment-badges {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    color: #94a3b8;
}

.payment-badge-tag {
    font-size: 0.7rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
}





/* Prevent footer elements from overflowing */
.footer-section,
.footer-section * {
    box-sizing: border-box;
}

.footer-brand-col,
.footer-col,
.newsletter-box,
.footer-trust-perks,
.trust-perk-item {
    min-width: 0;
}

.footer-contact-item {
    align-items: flex-start;
}

.footer-contact-item span,
.footer-brand-desc,
.copyright-text {
    overflow-wrap: anywhere;
}

/* Medium desktop */
@media (max-width: 1400px) {
    .footer-top-container,
    .footer-main-container,
    .footer-bottom-container {
        padding-left: 30px;
        padding-right: 30px;
    }

    .footer-top-container {
        align-items: flex-start;
    }

    .footer-trust-perks {
        gap: 24px;
    }

    .footer-main-container {
        gap: 30px;
    }

    .footer-links-list li a {
        font-size: 0.78rem;
    }
}

/* Small desktop and tablet */
@media (max-width: 1200px) {
    .footer-top-container {
        flex-direction: column;
        align-items: stretch;
        gap: 32px;
    }

    .newsletter-box {
        width: 100%;
        max-width: 700px;
    }

    .newsletter-form {
        width: 100%;
        max-width: 650px;
    }

    .footer-trust-perks {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }

    .trust-perk-item {
        padding: 16px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.035);
        border: 1px solid rgba(255, 255, 255, 0.07);
    }

    .perk-icon {
        flex-shrink: 0;
    }

    /*
     * Brand section takes the full first row.
     * Four footer link columns appear below.
     */
    .footer-main-container {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .footer-brand-col {
        grid-column: 1 / -1;
        max-width: 800px;
        margin-bottom: 15px;
    }
}

/* Tablet */
@media (max-width: 900px) {
    .footer-top-strip {
        padding: 38px 0;
    }

    .footer-top-container,
    .footer-main-container,
    .footer-bottom-container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .footer-main-body {
        padding: 55px 0 40px;
    }

    .footer-main-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 40px;
        row-gap: 45px;
    }

    .footer-brand-col {
        grid-column: 1 / -1;
    }

    .footer-bottom-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .copyright-text {
        max-width: 100%;
        line-height: 1.7;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .footer-top-strip {
        padding: 34px 0;
    }

    .newsletter-title {
        font-size: 1.2rem;
        line-height: 1.35;
    }

    .newsletter-sub {
        font-size: 0.8rem;
        line-height: 1.6;
    }

    .footer-trust-perks {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .trust-perk-item {
        width: 100%;
    }

    .footer-main-body {
        padding: 45px 0 35px;
    }

    .footer-logo-img {
        height: 42px;
        max-width: 180px;
    }

    .footer-social-row {
        flex-wrap: wrap;
    }

    .footer-bottom-bar {
        padding: 20px 0;
    }

    .payment-badges {
        width: 100%;
        flex-wrap: wrap;
        gap: 10px;
    }
}

/* Small mobile */
@media (max-width: 560px) {
    .footer-top-container,
    .footer-main-container,
    .footer-bottom-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .newsletter-input,
    .btn-subscribe {
        width: 100%;
        min-height: 46px;
    }

    .btn-subscribe {
        text-align: center;
    }

    .footer-main-container {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .footer-brand-col {
        grid-column: auto;
    }

    .footer-col-heading {
        margin-bottom: 16px;
    }

    .footer-contact-item {
        line-height: 1.5;
    }

    .footer-social-row {
        gap: 9px;
    }

    .social-link-btn {
        width: 36px;
        height: 36px;
    }

    .footer-bottom-container {
        align-items: center;
        text-align: center;
    }

    .payment-badges {
        justify-content: center;
    }
}

/* Very small mobile */
@media (max-width: 380px) {
    .footer-top-container,
    .footer-main-container,
    .footer-bottom-container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .newsletter-title {
        font-size: 1.05rem;
    }

    .trust-perk-item {
        padding: 13px;
        gap: 10px;
    }

    .perk-icon {
        width: 40px;
        height: 40px;
    }

    .perk-text strong {
        font-size: 0.76rem;
    }

    .perk-text span {
        font-size: 0.68rem;
    }

    .payment-badge-tag {
        width: 100%;
        text-align: center;
    }
}


/*ZERO COMPROMISE SECTION*/

.zero-compromises-section {
    padding-bottom : 75px;
    background: #ffffff;
    color: var(--text-primary);
    position: relative;
    z-index: 24;
    width: 100%;
}

.zero-compromises-container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.zero-header-box {
    margin-bottom: 44px;
}

.zero-tag {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: var(--theme-red);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.zero-main-title {
    font-size: clamp(3.2rem, 5.5vw, 5.8rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -2px;
    text-transform: uppercase;
    color: #0f172a;
}

/* 1 LINE ME 2 BOXES (2 COLUMNS GRID) */
.zero-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
}

.zero-box {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/*.zero-box::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 3.5px;*/
/*    background: transparent;*/
/*    transition: background 0.35s ease;*/
/*}*/

.zero-box:hover {
    background: #ffffff;
    /*border-color: var(--theme-red);*/
    /*transform: translateY(-8px);*/
}

.zero-box:hover::before {
    background: var(--gradient-red);
}

.zero-box.active-highlight {
    background: #ffffff;
}

.zero-box.active-highlight::before {
    background: var(--gradient-red);
}

.zero-box-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.zero-num {
    font-size: clamp(3rem, 4vw, 4.2rem);
    font-weight: 700;
    line-height: 1;
     color: #dcdddff7;
    letter-spacing: -2px;
    transition: color 0.35s ease, transform 0.35s ease;
}

.zero-box:hover .zero-num {
  transform: scale(1.05);
  color: var(--theme-red);
}


.zero-box-title {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #0f172a;
    text-transform: uppercase;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}


.zero-box-desc {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.65;
    font-weight: 500;
    margin-bottom: 24px;
}

.zero-badge-row {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.zero-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #0f172a;
    background: #f1f5f9;
    border: 1px solid var(--border-light);
    padding: 8px 16px;
    border-radius: 20px;
    transition: var(--transition);
}

.zero-pill-badge i {
    color: var(--theme-red);
}

.zero-pill-badge.red-pill {
    background: rgba(220, 38, 38, 0.08);
    color: var(--theme-red);
    border-color: rgba(220, 38, 38, 0.25);
}


/* SECTION 17 RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
    .zero-grid-2x2 {
        gap: 20px;
    }
    .zero-box {
        padding: 30px 24px;
    }
}

@media (max-width: 768px) {
    .zero-compromises-container {
        padding: 0 20px;
    }
    .zero-grid-2x2 {
        grid-template-columns: 1fr;
    }
    .zero-main-title {
        font-size: 2.8rem;
    }
}

/*CLIENT REVIEWS*/

.client-reviews-section {
    padding: 75px 0;
    background: #f4f5f8;
    color: #0f172a;
    position: relative;
    z-index: 24;
    width: 100%;
    overflow: hidden;
    margin-bottom : 60px;
}

.client-reviews-container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.client-reviews-header {
    text-align: left;
    margin: 0 0 44px 0;
}

.client-reviews-title {
    font-family: var(--font-body);
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 14px;
}

.client-reviews-subtitle {
    font-size: 0.98rem;
    color: #64748b;
    line-height: 1.6;
    font-weight: 400;
}

.reviews-marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 15px 0 25px 0;
    mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
}

.reviews-marquee-track {
    display: flex;
    gap: 28px;
    width: max-content;
    animation: marqueeAutoSlide 24s linear infinite;
    will-change: transform;
}

.reviews-marquee-wrapper:hover .reviews-marquee-track {
    animation-play-state: paused;
}

@keyframes marqueeAutoSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 14px)); }
}

.reviews-marquee-track .client-review-card {
    width: 420px;
    min-width: 420px;
    max-width: 420px;
    background: #ffffff;
    border-radius: 20px;
    padding: 38px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-light);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    flex-shrink: 0;
}

/*.client-review-card:hover {*/
/*    background: #ffffff;*/
/*    transform: translateY(-8px);*/
/*    border-color: var(--theme-red);*/
/*    box-shadow: 0 20px 45px rgba(220, 38, 38, 0.12), 0 4px 20px rgba(0, 0, 0, 0.04);*/
/*}*/

.client-review-quote {
    font-size: 0.94rem;
    color: #475569;
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 28px;
}

.client-user-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid #f1f5f9;
}

.client-avatar-box {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    overflow: hidden;
    background: #0f172a;
    border: 1.5px solid var(--theme-red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.client-avatar-img {
    width: 75%;
    height: auto;
    object-fit: contain;
}

.client-user-info {
    display: flex;
    flex-direction: column;
}

.client-user-name {
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
}

.client-user-role {
    font-size: 0.78rem;
    color: #64748b;
    font-weight: 500;
    margin-top: 3px;
}

/* SECTION 18 RESPONSIVE MEDIA QUERIES */
@media (max-width: 768px) {
    .reviews-marquee-track .client-review-card {
        width: 310px;
        min-width: 310px;
        max-width: 310px;
        padding: 28px 22px;
    }
    .client-reviews-title { font-size: 2.2rem; }
}








/* =========================================================
   PC KUMAR - FINAL RESPONSIVE FIX
   Add this at the VERY END of style.css
   ========================================================= */


/* ---------------------------------------------------------
   GLOBAL RESPONSIVE FIXES
--------------------------------------------------------- */

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

.container,
.nav-container,
.hero-container {
    width: 100%;
}

.sub-nav-container{
    padding-top : 8px;
    padding-bottom : 8px;
}

/* =========================================================
   LAPTOP - 1200px
========================================================= */

@media (max-width: 1200px) {

    .nav-container {
        padding-left: 25px;
        padding-right: 25px;
    }

    .hero-container {
        padding-left: 35px;
        padding-right: 35px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(350px, 0.8fr);
        gap: 35px;
    }

    .hero-main-title {
        font-size: clamp(42px, 5vw, 60px);
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .md-search-wrapper {
        margin: 0 20px;
    }

    .md-nav-links {
        gap: 18px;
    }

    .md-user-actions {
        gap: 12px;
    }

    .md-action-link {
        font-size: 11px;
    }

    .section-title {
        font-size: 42px;
    }
}


/* =========================================================
   TABLET / SMALL LAPTOP - 1024px
========================================================= */

@media (max-width: 1024px) {

    /* ---------------- HEADER ---------------- */

    .main-header-row {
        padding: 12px 0;
    }

    .main-header-row .nav-container {
        gap: 15px;
    }

    .brand-logo-img {
        height: 40px;
    }

    .md-search-wrapper {
        flex: 1;
        max-width: none;
        margin: 0;
    }

    .md-header-right {
        gap: 10px;
    }

    .md-contact-info {
        display: none;
    }

    .btn-header-contact span {
        display: none;
    }
    .btn-header-contact {
        display : none;
    }

    /* Hide desktop sub-navigation */

    .md-subnav-row {
        display: none;
    }

    /* ---------------- HERO ---------------- */

    .nvsx-hero-section {
        min-height: auto;
        padding: 60px 0;
    }

    .hero-container {
        padding-left: 25px;
        padding-right: 25px;
    }

    .hero-grid {
        grid-template-columns: 1fr 0.8fr;
        gap: 25px;
    }

    .hero-main-title {
        font-size: clamp(38px, 5.5vw, 54px);
        line-height: 1;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .hero-btn-group {
        gap: 12px;
    }

    .btn-yellow-cta,
    .btn-outline-cta {
        padding: 15px 25px;
        font-size: 0.85rem;
    }

    .hero-pc-img {
        width: 100%;
        height: auto;
        max-width: 600px;
    }

    /* ---------------- SECTIONS ---------------- */

    .section-title {
        font-size: clamp(34px, 5vw, 44px);
        line-height: 1.1;
    }

    .section-header-row {
        margin-bottom: 30px;
    }

    /* ---------------- METRICS ---------------- */

    .metrics-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .metrics-bar-section {
        margin-top: -35px;
    }
}


/* =========================================================
   TABLET - 768px
========================================================= */

@media (max-width: 768px) {

    /* ---------------- GLOBAL ---------------- */

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .nav-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* ---------------- HEADER ---------------- */

    .main-header-row {
        padding: 10px 0;
    }

    .main-header-row .nav-container {
        justify-content: space-between;
    }

    .brand-logo-img {
        height: 38px;
    }

    .md-search-wrapper {
        display: none;
    }

    .md-header-right {
        margin-left: auto;
    }

    .btn-header-contact {
        display: none;
    }

    /*
       If your JS opens #mobileDrawer,
       this keeps the drawer available.
    */

    .mobile-nav-drawer {
        display: flex;
    }

    /* ---------------- HERO ---------------- */

    .nvsx-hero-section {
        padding: 45px 0 55px;
        min-height: auto;
    }

    .hero-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .hero-left-content {
        max-width: 100%;
        gap: 18px;
        text-align: center;
        align-items: center;
    }

    .hero-main-title {
        width: 100%;
        font-size: clamp(34px, 8vw, 48px);
        line-height: 1.02;
        letter-spacing: -1px;
    }

    /*
       Removes the forced desktop line break
       visually by allowing the heading to wrap.
    */

    .hero-main-title br {
        display: none;
    }

    .hero-subtitle {
        max-width: 650px;
        font-size: 0.88rem;
        line-height: 1.65;
        text-align: center;
    }

    .hero-btn-group {
        width: 100%;
        flex-direction: column;
        gap: 12px;
        margin-top: 5px;
    }

    .btn-yellow-cta,
    .btn-outline-cta {
        width: 100%;
        min-height: 50px;
        justify-content: center;
    }

    .hero-right-stage {
        width: 100%;
        min-height: 300px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .pc-image-wrapper {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-pc-img {
        width: min(90vw, 520px);
        height: auto;
        max-height: 420px;
        object-fit: contain;
    }

    /* ---------------- SECTION HEADINGS ---------------- */

    .section-header-row {
        margin-bottom: 25px;
    }

    .section-title {
        font-size: clamp(28px, 7vw, 38px);
        line-height: 1.1;
        letter-spacing: -0.5px;
    }

    .section-para {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    /* ---------------- GEARNIX ---------------- */

    .gearnix-category-section {
        padding: 45px 0;
    }

    .gearnix-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .gearnix-card {
        grid-template-columns: 0.85fr 1.15fr;
        min-height: 230px;
    }

    .gearnix-card-right {
        height: 220px;
    }

    .gearnix-img {
        height: 220px;
        max-width: 100%;
    }

    /* ---------------- PROMO BANNER ---------------- */

    .promo-banner-section {
        padding: 0 20px;
    }

    .promo-banner-img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* ---------------- METRICS ---------------- */

    .metrics-bar-section {
        margin-top: 0;
        margin-bottom: 30px;
    }

    .metrics-container {
        padding: 0 20px;
    }

    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* ---------------- AMD SECTION ---------------- */

    .amd-dark-panel {
        padding: 25px;
        border-radius: 18px;
    }

    .amd-section-heading {
        font-size: 32px;
    }

    .amd-main-grid {
        grid-template-columns: 1fr;
    }

    .amd-hero-card {
        height: 300px;
    }

    .amd-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    /* ---------------- STATIC PRODUCT GRID ---------------- */

    .static-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .swap-img-box {
        height: 230px;
    }

    /* ---------------- PRODUCT SLIDER ---------------- */

    .nvsx-product-grid.slider-track,
    .ssd-product-grid.slider-track {
        gap: 16px;
    }

    .nvsx-product-grid.slider-track .nvsx-prod-card,
    .ssd-product-grid.slider-track .ssd-prod-card {
        flex: 0 0 calc((100% - 16px) / 2);
        width: calc((100% - 16px) / 2);
        min-width: calc((100% - 16px) / 2);
    }

    .prod-img-box {
        height: 240px;
    }

    /* Slider buttons */

    .slider-overlay-btn {
        width: 36px;
        height: 36px;
    }
}


/* =========================================================
   MOBILE - 576px
========================================================= */

@media (max-width: 576px) {

    /* ---------------- GLOBAL ---------------- */

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .nav-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    /* ---------------- HEADER ---------------- */

    .navbar {
        position: sticky;
        top: 0;
    }

    .main-header-row {
        padding: 9px 0;
    }

    .brand-logo-img {
        height: 34px;
    }

    /* ---------------- HERO ---------------- */

    .nvsx-hero-section {
        padding: 35px 0 45px;
    }

    .hero-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-grid {
        gap: 25px;
    }

    .hero-main-title {
        font-size: clamp(30px, 9vw, 42px);
        line-height: 1.03;
    }

    .hero-subtitle {
        font-size: 0.8rem;
        line-height: 1.65;
    }

    .hero-right-stage {
        min-height: 240px;
    }

    .hero-pc-img {
        width: 95%;
        max-height: 300px;
    }

    .btn-yellow-cta,
    .btn-outline-cta {
        min-height: 48px;
        padding: 13px 18px;
        font-size: 0.78rem;
    }

    /* ---------------- SECTION ---------------- */

    .section-title {
        font-size: 27px;
    }

    .section-para {
        font-size: 0.78rem;
    }

    /* ---------------- GEARNIX ---------------- */

    .gearnix-category-section {
        padding: 38px 0;
    }

    .gearnix-grid {
        gap: 14px;
    }

    .gearnix-card {
        grid-template-columns: 0.9fr 1.1fr;
        min-height: 190px;
        padding: 16px 0 16px 14px;
        border-radius: 10px;
    }

    .gearnix-title {
        font-size: 20px;
        line-height: 1.1;
    }

    .gearnix-pill-btn {
        margin-top: 20px;
        gap: 7px;
    }

    .gearnix-arrow-icon {
        width: 28px;
        height: 28px;
    }

    .gearnix-pill-btn span:last-child {
        font-size: 11px;
        letter-spacing: 0.4px;
    }

    .gearnix-card-right {
        height: 170px;
    }

    .gearnix-img {
        height: 175px;
        transform: scale(1.04) translateX(5px);
    }

    /* ---------------- BANNER ---------------- */

    .promo-banner-section {
        padding: 0 16px;
    }

    /* ---------------- PRODUCT GRID ---------------- */

    .static-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        margin-top: 22px;
    }

    .static-grid-card {
        border-radius: 10px;
    }

    .swap-img-box {
        height: 170px;
    }

    .static-grid-card .prod-info-box {
        padding: 12px 10px;
    }

    .static-grid-card .prod-cat-tag {
        font-size: 10px;
    }

    .static-grid-card .prod-title {
        min-height: auto;
        font-size: 11px;
        line-height: 1.4;
        margin-bottom: 8px;
    }

    .static-grid-card .prod-price-row {
        gap: 5px;
        padding-top: 7px;
    }

    .static-grid-card .prod-price {
        font-size: 13px;
    }

    .static-grid-card .prod-view-btn {
        font-size: 9px;
    }

    /* ---------------- PRODUCT SLIDER ---------------- */

    .nvsx-product-grid.slider-track .nvsx-prod-card,
    .ssd-product-grid.slider-track .ssd-prod-card {
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
    }

    .prod-img-box {
        height: 260px;
    }

    .prod-info-box {
        padding: 14px;
    }

    .prod-title {
        font-size: 13px;
        line-height: 1.4;
    }

    .prod-price {
        font-size: 15px;
    }

    .prod-view-btn {
        font-size: 10px;
    }

    .slider-overlay-btn {
        width: 32px;
        height: 32px;
        font-size: 11px;
    }

    .slider-overlay-btn.btn-prev {
        left: 5px;
    }

    .slider-overlay-btn.btn-next {
        right: 5px;
    }

    /* ---------------- AMD ---------------- */

    .amd-dark-panel {
        padding: 18px;
        border-radius: 14px;
    }

    .amd-section-heading {
        font-size: 26px;
        line-height: 1.15;
        margin-bottom: 20px;
    }

    .amd-hero-card {
        height: 240px;
    }

    .amd-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .amd-proc-card {
        border-radius: 10px;
    }

    .amd-card-img-box {
        height: 120px;
    }

    .amd-card-info {
        padding: 10px 8px;
    }

    .amd-card-title {
        font-size: 12px;
    }

    .amd-card-sub {
        font-size: 10px;
    }

    .btn-amd-view {
        font-size: 10px;
        padding: 9px 0;
    }

    /* ---------------- METRICS ---------------- */

    .metrics-container {
        padding: 0 16px;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    /* ---------------- ZERO COMPROMISE ---------------- */

    .zero-compromises-container {
        padding: 0 16px;
    }

    .zero-grid-2x2 {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .zero-main-title {
        font-size: 2rem;
    }
}


/* =========================================================
   EXTRA SMALL MOBILE - 380px
========================================================= */

@media (max-width: 380px) {


    .hero-main-title {
        font-size: 29px;
    }

    .hero-subtitle {
        font-size: 0.76rem;
    }

    .hero-pc-img {
        width: 100%;
        max-height: 260px;
    }

    .gearnix-card {
        grid-template-columns: 0.95fr 1.05fr;
        min-height: 175px;
        padding-left: 12px;
    }

    .gearnix-title {
        font-size: 17px;
    }

    .gearnix-card-right {
        height: 155px;
    }

    .gearnix-img {
        height: 160px;
    }

    .gearnix-pill-btn span:last-child {
        font-size: 10px;
    }

    .static-product-grid {
        gap: 10px;
    }

    .swap-img-box {
        height: 145px;
    }

    .static-grid-card .prod-info-box {
        padding: 10px 8px;
    }

    .static-grid-card .prod-title {
        font-size: 10px;
    }

    .static-grid-card .prod-price {
        font-size: 12px;
    }

    .static-grid-card .prod-view-btn {
        font-size: 8px;
    }

    .amd-dark-panel {
        padding: 14px;
    }

    .amd-section-heading {
        font-size: 23px;
    }
}


/* =========================================================
   TOUCH DEVICES
   Prevent hover effects from causing strange mobile behavior
========================================================= */

@media (hover: none) {

    .swap-img-box:hover .prod-img-primary {
        opacity: 1;
        transform: scale(1);
    }

    .swap-img-box:hover .prod-img-hover {
        opacity: 0;
        transform: scale(1.08);
    }

    .gearnix-card:hover .gearnix-arrow-icon {
        transform: rotate(45deg);
    }

    .amd-proc-card:hover .amd-card-img {
        transform: none;
    }
}


