:root {
    --navy: #0B1F33;
    --blue: #0066B3;
    --blue-dark: #004A84;
    --red: #E31E24;
    --silver: #D9E1EA;
    --soft: #F4F7FB;
    --text: #102033;
    --muted: #667085;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: var(--soft);
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(11,31,51,.08);
}

.header-inner {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    font-size: 24px;
    color: var(--navy);
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--blue), #00AEEF);
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 900;
    box-shadow: 0 12px 30px rgba(0,102,179,.24);
}

.brand span strong {
    color: var(--red);
}

.nav {
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--navy);
    font-weight: 700;
    font-size: 15px;
}

.nav a:hover {
    color: var(--blue);
}

.header-cta {
    background: var(--blue);
    color: #fff !important;
    padding: 12px 18px;
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(0,102,179,.20);
}

.header-cta:hover {
    background: var(--blue-dark);
}

/* Hero */

.hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(110deg, rgba(11,31,51,.96), rgba(11,31,51,.78), rgba(0,102,179,.42)),
        url('../images/hero-warehouse.jpg');
    background-size: cover;
    background-position: center;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 22%, rgba(0,174,239,.22), transparent 34%),
        radial-gradient(circle at 15% 82%, rgba(227,30,36,.16), transparent 30%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    color: #fff;
    padding: 90px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    color: #D9F0FF;
    margin-bottom: 24px;
}

.hero h1 {
    margin: 0;
    font-size: clamp(42px, 7vw, 82px);
    line-height: .98;
    letter-spacing: -3px;
}

.hero h1 span {
    color: #7BD7FF;
}

.hero p {
    margin: 24px 0 0;
    max-width: 650px;
    font-size: 20px;
    line-height: 1.65;
    color: rgba(255,255,255,.84);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 900;
    border: 0;
    cursor: pointer;
}

.btn-primary {
    background: var(--red);
    color: #fff;
    box-shadow: 0 18px 40px rgba(227,30,36,.28);
}

.btn-primary:hover {
    filter: brightness(.94);
}

.btn-secondary {
    background: rgba(255,255,255,.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,.30);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 48px;
    max-width: 720px;
}

.stat {
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.14);
    backdrop-filter: blur(12px);
    border-radius: 22px;
    padding: 20px;
}

.stat strong {
    display: block;
    font-size: 28px;
}

.stat span {
    display: block;
    margin-top: 4px;
    color: rgba(255,255,255,.76);
    font-size: 14px;
}

/* Sections */

.section {
    padding: 86px 0;
}

.section-white {
    background: #fff;
}

.section-dark {
    background: var(--navy);
    color: #fff;
}

.section-head {
    max-width: 760px;
    margin-bottom: 36px;
}

.section-head h2 {
    margin: 0;
    font-size: clamp(32px, 4vw, 50px);
    letter-spacing: -1.5px;
    line-height: 1.08;
}

.section-head p {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
}

.section-dark .section-head p {
    color: rgba(255,255,255,.72);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.card {
    background: #fff;
    border-radius: 26px;
    padding: 28px;
    box-shadow: 0 20px 60px rgba(16,24,40,.08);
    border: 1px solid rgba(11,31,51,.06);
}

.card-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(0,102,179,.10);
    display: grid;
    place-items: center;
    color: var(--blue);
    font-size: 24px;
    margin-bottom: 20px;
}

.card h3 {
    margin: 0;
    font-size: 22px;
}

.card p {
    color: var(--muted);
    line-height: 1.65;
}

/* Product Categories */

.category-card {
    min-height: 290px;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    background: var(--navy);
    box-shadow: 0 24px 70px rgba(16,24,40,.14);
}

.category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(11,31,51,.96), rgba(11,31,51,.28)),
        var(--image);
    background-size: cover;
    background-position: center;
    transition: transform .5s ease;
}

.category-card:hover::before {
    transform: scale(1.06);
}

.category-content {
    position: absolute;
    inset: auto 0 0 0;
    padding: 28px;
    color: #fff;
}

.category-content h3 {
    margin: 0;
    font-size: 25px;
}

.category-content p {
    margin: 10px 0 0;
    color: rgba(255,255,255,.78);
    line-height: 1.55;
}

/* About Split */

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 46px;
    align-items: center;
}

.image-panel {
    min-height: 460px;
    border-radius: 34px;
    background:
        linear-gradient(to top, rgba(11,31,51,.38), transparent),
        url('../images/tradepro-logistics.jpg');
    background-size: cover;
    background-position: center;
    box-shadow: 0 26px 80px rgba(16,24,40,.18);
}

.check-list {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.check-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--text);
    font-weight: 700;
}

.check-item span {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(0,102,179,.12);
    color: var(--blue);
    display: grid;
    place-items: center;
    flex: 0 0 24px;
}

/* Page */

.page-hero {
    background:
        linear-gradient(110deg, rgba(11,31,51,.96), rgba(0,74,132,.82)),
        url('../images/hero-warehouse.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 105px 0 75px;
}

.page-hero h1 {
    font-size: clamp(42px, 6vw, 76px);
    margin: 0;
    letter-spacing: -2px;
}

.page-content {
    background: #fff;
    padding: 60px;
    border-radius: 30px;
    margin-top: -44px;
    position: relative;
    z-index: 3;
    box-shadow: 0 24px 70px rgba(16,24,40,.10);
    line-height: 1.8;
    font-size: 18px;
}

/* CTA */

.cta-band {
    background: linear-gradient(135deg, var(--blue), var(--navy));
    color: #fff;
    border-radius: 34px;
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 24px 80px rgba(0,102,179,.22);
}

.cta-band h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 46px);
    letter-spacing: -1px;
}

.cta-band p {
    margin: 10px 0 0;
    color: rgba(255,255,255,.76);
}

/* Footer */

.site-footer {
    background: #071827;
    color: rgba(255,255,255,.72);
    padding: 48px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 28px;
}

.footer-grid h3 {
    color: #fff;
    margin-top: 0;
}

.footer-grid p,
.footer-grid a {
    color: rgba(255,255,255,.72);
    line-height: 1.7;
}

.footer-bottom {
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.10);
    font-size: 14px;
}

/* Mobile */

.mobile-cta {
    display: none;
}

@media (max-width: 900px) {
    .nav {
        display: none;
    }

    .hero {
        min-height: auto;
    }

    .hero-content {
        padding: 70px 0;
    }

    .hero h1 {
        letter-spacing: -1.5px;
    }

    .hero p {
        font-size: 17px;
    }

    .hero-stats,
    .grid-3,
    .split,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta-band {
        flex-direction: column;
        align-items: flex-start;
        padding: 32px;
    }

    .page-content {
        padding: 28px;
    }

    .mobile-cta {
        position: fixed;
        left: 16px;
        right: 16px;
        bottom: 16px;
        display: flex;
        justify-content: center;
        background: var(--red);
        color: #fff;
        padding: 15px 18px;
        border-radius: 999px;
        font-weight: 900;
        z-index: 999;
        box-shadow: 0 18px 44px rgba(227,30,36,.36);
    }
}

/* =========================
   PREMIUM EXTENSIONS
========================= */

.hero-premium {
    position: relative;
}

.hero-premium::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 18%, rgba(0,174,239,.18), transparent 26%),
        radial-gradient(circle at 18% 82%, rgba(227,30,36,.16), transparent 26%);
    pointer-events: none;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.8px;
    color: var(--blue);
    text-transform: uppercase;
}

.section-soft {
    background: linear-gradient(to bottom, #fff, #f7f9fc);
}

.category-card-link {
    display: block;
    text-decoration: none;
}

.category-card-link .card-link {
    display: inline-flex;
    margin-top: 18px;
    color: #7BD7FF;
    font-weight: 800;
    font-size: 14px;
}

.category-card-link:hover .card-link {
    transform: translateX(4px);
    transition: .2s ease;
}

.floating-badge {
    position: absolute;
    right: 24px;
    bottom: 24px;
    background: rgba(255,255,255,.94);
    padding: 18px 20px;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(16,24,40,.14);
    max-width: 240px;
}

.floating-badge strong {
    display: block;
    color: var(--navy);
    font-size: 18px;
}

.floating-badge span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    line-height: 1.5;
}

.section-cta {
    padding-top: 0;
}

.cta-box {
    background:
        linear-gradient(135deg, rgba(0,102,179,.96), rgba(11,31,51,.98));
    border-radius: 34px;
    padding: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 28px 90px rgba(0,102,179,.24);
}

.cta-box::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -220px;
    top: -220px;
    background: radial-gradient(circle, rgba(123,215,255,.18), transparent 70%);
}

.cta-box h2 {
    margin: 10px 0 0;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.02;
    letter-spacing: -2px;
}

.cta-box p {
    margin-top: 16px;
    color: rgba(255,255,255,.78);
    max-width: 640px;
    line-height: 1.7;
    font-size: 18px;
}

.cta-box .btn-primary {
    flex-shrink: 0;
}

@media (max-width: 900px) {

    .cta-box {
        padding: 34px;
        flex-direction: column;
        align-items: flex-start;
    }

    .floating-badge {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 24px;
    }

}

/* =========================
   MOBILE MENU
========================= */

.mobile-toggle {
    display: none;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    border: 1px solid rgba(11,31,51,.08);
    background: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 10px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(420px, 100%);
    height: 100vh;
    background: #fff;
    z-index: 999;
    transition: .35s ease;
    box-shadow: -20px 0 60px rgba(16,24,40,.14);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    padding: 110px 30px 40px;
    gap: 20px;
}

.mobile-menu-inner a {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
}

.mobile-menu-cta {
    margin-top: 18px;
    background: var(--red);
    color: #fff !important;
    padding: 16px 20px;
    border-radius: 999px;
    text-align: center;
    box-shadow: 0 18px 40px rgba(227,30,36,.22);
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11,31,51,.48);
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
    z-index: 998;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 900px) {

    .nav {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

}

/* =========================
   PRODUCT FRONTEND
========================= */

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    background: #fff;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(16,24,40,.12);
    border: 1px solid rgba(11,31,51,.06);
    transition: .25s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 90px rgba(16,24,40,.16);
}

.product-image {
    min-height: 240px;
    background-size: cover;
    background-position: center;
    background-color: #eef2f6;
}

.product-body {
    padding: 24px;
}

.product-body h3 {
    margin: 0;
    font-size: 22px;
    color: var(--navy);
}

.product-body p {
    color: var(--muted);
    line-height: 1.6;
}

.product-body span {
    color: var(--blue);
    font-weight: 900;
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 44px;
    align-items: start;
}

.product-detail-image {
    background: #fff;
    border-radius: 30px;
    padding: 24px;
    box-shadow: 0 24px 70px rgba(16,24,40,.10);
}

.product-detail-image img {
    width: 100%;
    display: block;
    border-radius: 22px;
}

.product-detail-content .page-content {
    margin-top: 0;
    margin-bottom: 24px;
}

@media (max-width: 900px) {
    .product-grid,
    .product-detail {
        grid-template-columns: 1fr;
    }
}

/* =========================
   CATEGORY GALLERY
========================= */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-card {
    display: block;
    border-radius: 28px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 22px 70px rgba(16,24,40,.12);
    transition: .25s ease;
}

.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 90px rgba(16,24,40,.16);
}

.gallery-card img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}

@media (max-width: 900px) {

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-card img {
        height: 260px;
    }

}


/* =========================
   DYNAMIC MEGA MENU
========================= */

.nav-item {
    position: relative;
}

.has-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 14px);
    width: min(960px, calc(100vw - 40px));
    background: #fff;
    border: 1px solid rgba(11,31,51,.08);
    border-radius: 24px;
    box-shadow: 0 28px 90px rgba(16,24,40,.16);
    opacity: 0;
    visibility: hidden;
    transition: .25s ease;
    z-index: 300;
    padding: 26px;
}

.mega-menu-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.mega-column {
    padding: 16px;
    border-radius: 18px;
    background: #f7f9fc;
}

.mega-title {
    display: block;
    color: var(--navy);
    font-size: 17px;
    font-weight: 900;
    margin-bottom: 14px;
}

.mega-title:hover {
    color: var(--blue);
}

.mega-links {
    display: grid;
    gap: 10px;
}

.mega-links a {
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.mega-links a:hover {
    color: var(--blue);
}

.mobile-sub-link {
    font-size: 18px !important;
    color: var(--blue) !important;
    padding-left: 10px;
}

.mobile-sub-child {
    font-size: 16px !important;
    color: var(--muted) !important;
    padding-left: 28px;
}

@media (max-width: 900px) {
    .mega-menu {
        display: none;
    }
}

.contact-form-box {
    background: #fff;
    border-radius: 30px;
    padding: 34px;
    box-shadow: 0 24px 70px rgba(16,24,40,.10);
}

.form-row {
    margin-bottom: 18px;
}

.form-row label {
    display: block;
    font-weight: 900;
    margin-bottom: 8px;
    color: var(--navy);
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(11,31,51,.14);
    font-size: 16px;
    font-family: inherit;
}

.form-row textarea {
    resize: vertical;
}

.form-success {
    background: #dcfae6;
    color: #067647;
    padding: 14px 16px;
    border-radius: 14px;
    margin-bottom: 18px;
    font-weight: 800;
}

.form-error {
    background: #fee4e2;
    color: #b42318;
    padding: 14px 16px;
    border-radius: 14px;
    margin-bottom: 18px;
    font-weight: 800;
}


.btn-outline {
    border: 2px solid rgba(11,31,51,.12);
    color: var(--navy);
    background: transparent;
}

.btn-outline:hover {
    background: #f3f6fa;
}

.product-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* =========================
   PRODUCT GALLERY DETAIL
========================= */

.product-gallery-box {
    display: grid;
    gap: 18px;
}

.product-main-image {
    background: #fff;
    border-radius: 30px;
    padding: 18px;
    box-shadow: 0 24px 70px rgba(16,24,40,.10);
}

.product-main-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    border-radius: 22px;
}

.product-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
    gap: 12px;
}

.product-thumb {
    border: 2px solid transparent;
    background: #fff;
    padding: 6px;
    border-radius: 16px;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(16,24,40,.08);
}

.product-thumb:hover {
    border-color: var(--blue);
}

.product-thumb img {
    width: 100%;
    height: 82px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

@media (max-width: 900px) {
    .product-main-image img {
        height: 320px;
    }
}


/* =========================
   LANGUAGE SWITCHER
========================= */

.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 900;
    color: var(--muted);
    white-space: nowrap;
}

.language-switcher a {
    color: var(--muted);
    font-size: 14px;
}

.language-switcher a.active,
.language-switcher a:hover {
    color: var(--blue);
}

.mobile-language-switcher {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.mobile-language-switcher a {
    background: #f3f6fa;
    color: var(--navy);
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 900;
}

.mobile-language-switcher a.active {
    background: var(--blue);
    color: #fff;
}


/* =========================
   MOBILE CLOSE BUTTON
========================= */

.mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    border: 1px solid rgba(11,31,51,.08);
    background: #fff;
    color: var(--navy);
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 14px 40px rgba(16,24,40,.10);
}


/* =========================
   NAV POLISH
========================= */

.nav {
    gap: 18px;
}

.nav a {
    white-space: nowrap;
}

@media (max-width: 1150px) {
    .nav {
        gap: 13px;
        font-size: 14px;
    }

    .header-cta {
        padding: 11px 14px;
    }
}


/* =========================
   QUOTE / PRODUCTS GRID FIX
========================= */

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card .product-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.product-content {
    padding: 24px;
}

.product-content h3 {
    margin: 0;
    font-size: 22px;
    color: var(--navy);
}

.product-content p {
    color: var(--muted);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}


.brand-logo img {
    height: 46px;
    width: auto;
    display: block;
}

@media (max-width: 900px) {
    .brand-logo img {
        height: 40px;
    }
}

/* =========================
   MEGA MENU FIX / POLISH
========================= */

.site-header {
    overflow: visible;
}

.header-inner {
    position: relative;
}

.nav-item.has-mega {
    position: static;
}

.mega-menu {
    position: absolute;
    top: 76px;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    width: min(1040px, calc(100vw - 40px));
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    background: #fff;
    border: 1px solid rgba(11,31,51,.08);
    border-radius: 24px;
    box-shadow: 0 28px 90px rgba(16,24,40,.18);
    opacity: 0;
    visibility: hidden;
    transition: .22s ease;
    z-index: 999;
    padding: 24px;
}

.has-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.mega-column {
    padding: 16px;
    border-radius: 18px;
    background: linear-gradient(180deg, #f8fafc, #f2f5f9);
    min-width: 0;
}

.mega-title {
    display: block;
    color: var(--navy);
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 12px;
    line-height: 1.25;
}

.mega-links {
    display: grid;
    gap: 9px;
}

.mega-links a {
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
}

.simple-mega {
    width: min(360px, calc(100vw - 40px));
}

.simple-mega .mega-menu-inner {
    grid-template-columns: 1fr;
}

@media (max-width: 1150px) {
    .mega-menu {
        width: calc(100vw - 28px);
        padding: 18px;
    }

    .mega-menu-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .mega-menu {
        display: none;
    }
}