:root {
    --header-primary: #ef7a17;
    --header-primary-light: #ff9a44;
    --header-secondary: #032038;
    --header-white: #ffffff;
    --header-gray: #64748b;
    --header-light-bg: #f8fafc;
    --header-gold: #d4a24e;
    --header-gold-soft: #e7c98b;
    --header-navy: #0a1b2a;
    --header-navy-deep: #08131f;
}

/* ==========================================
   HEADER WRAPPER
========================================== */
.lc-header {
    position: absolute;   /* overlays the hero but scrolls away — NOT sticky */
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lc-header--transparent {
    background: transparent;
}

.lc-header--scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.lc-header--scrolled .lc-topbar {
    display: none;
}

.lc-header--scrolled .lc-header__logo-text {
    color: var(--header-secondary);
}

.lc-header--scrolled .lc-header__nav-link {
    color: var(--header-secondary);
}

.lc-header--scrolled .lc-header__nav-link:hover {
    color: var(--header-primary);
    background: rgba(239, 122, 23, 0.08);
}

.lc-header--scrolled .lc-header__icon-btn {
    color: var(--header-secondary);
}

/* ==========================================
   TRANSPARENT STATE — White text & icons
========================================== */
.lc-header--transparent .lc-header__logo-text {
    color: var(--header-white);
}

.lc-header--transparent .lc-header__nav-link {
    color: var(--header-white);
}

.lc-header--transparent .lc-header__nav-link:hover {
    color: var(--header-white);
    background: rgba(255, 255, 255, 0.12);
}

.lc-header--transparent .lc-header__nav-link--active::after {
    background: var(--header-white);
}

.lc-header--transparent .lc-header__icon-btn {
    color: var(--header-white);
}

.lc-header--transparent .lc-header__icon-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--header-white);
}

.lc-header--transparent .lc-topbar__usp {
    color: var(--header-white);
}

.lc-header--transparent .lc-topbar__usp--link:hover {
    color: rgba(255, 255, 255, 0.7);
}

.lc-header--transparent .lc-topbar__usp svg,
.lc-header--transparent .lc-topbar__usp-icon {
    color: var(--header-white);
}

.lc-header--transparent .lc-topbar__divider {
    background: rgba(255, 255, 255, 0.25);
}

/* ==========================================
   TOP BAR (USP Bar) - Minimal, transparent
========================================== */
.lc-topbar {
    background: transparent;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.lc-topbar__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.lc-topbar__usps {
    display: flex;
    align-items: center;
    gap: 24px;
}

.lc-topbar__usp {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--header-secondary);
}

.lc-topbar__usp--link {
    text-decoration: none;
    transition: color 0.2s ease;
}

.lc-topbar__usp--link:hover {
    color: var(--header-primary);
}

.lc-topbar__usp svg,
.lc-topbar__usp-icon {
    width: 16px;
    height: 16px;
    flex: none;
    color: var(--header-primary);
}

.lc-topbar__divider {
    width: 1px;
    height: 12px;
    background: rgba(3, 32, 56, 0.15);
}

/* ==========================================
   MAIN HEADER
========================================== */
.lc-header__main {
    padding: 18px 0;
    transition: padding 0.3s ease;
}

.lc-header--scrolled .lc-header__main {
    padding: 12px 0;
    border-radius: 0;
}

.lc-header__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.lc-header__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    z-index: 10;
}

.lc-header__logo img {
    height: 65px;
    width: auto;
    transition: all 0.3s ease;
}

.lc-header--scrolled .lc-header__logo img {
    height: 50px;
}

.lc-header__logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--header-secondary);
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.lc-header__logo-accent {
    color: var(--header-primary);
}

/* Navigation — right-aligned */
.lc-header__nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.lc-header__nav-item {
    position: relative;
}

.lc-header__nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 18px;
    font-size: 15px;
    font-weight: 600;
    color: var(--header-secondary);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.lc-header__nav-link:hover {
    color: var(--header-primary);
    background: rgba(239, 122, 23, 0.08);
}

.lc-header__nav-link svg {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
}

.lc-header__nav-item:hover .lc-header__nav-link svg {
    transform: rotate(180deg);
}

/* Active indicator */
.lc-header__nav-link--active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: linear-gradient(90deg, var(--header-primary), var(--header-primary-light));
    border-radius: 2px;
}

/* Right Actions */
.lc-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Icon buttons (cart, account) */
.lc-header__icon-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 12px;
    color: var(--header-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.lc-header__icon-btn:hover {
    background: rgba(239, 122, 23, 0.1);
    color: var(--header-primary);
}

.lc-header__icon-btn svg {
    width: 22px;
    height: 22px;
}

/* Cart badge */
.lc-header__cart-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    font-size: 11px;
    font-weight: 700;
    color: var(--header-white);
    background: var(--header-primary);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Account dropdown */
.lc-header__account-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    background: var(--header-white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 12px;
    z-index: 100;
}

.lc-header__icon-btn:hover .lc-header__account-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lc-header__account-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--header-secondary);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.lc-header__account-link:hover {
    background: var(--header-light-bg);
    color: var(--header-primary);
}

.lc-header__account-link svg {
    width: 18px;
    height: 18px;
    color: var(--header-gray);
}

.lc-header__account-link:hover svg {
    color: var(--header-primary);
}

.lc-header__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #1c1206;
    background: linear-gradient(135deg, #e7c98b, #d4a24e);
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lc-header__cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 46px -14px rgba(212, 162, 78, 0.85);
}

.lc-header__cta svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.lc-header__cta:hover svg {
    transform: translateX(4px);
}

/* Mobile Toggle — culinary "wereldkeuken" icon (crossed cutlery → close) */
.lc-header__mobile-toggle {
    display: none;
    position: relative;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 162, 78, 0.55);
    border-radius: 14px;
    color: var(--header-gold-soft);
    cursor: pointer;
    transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.lc-header__mobile-toggle:hover {
    background: rgba(212, 162, 78, 0.16);
    border-color: var(--header-gold);
    color: #fff;
}

.lc-header__mobile-toggle:active { transform: scale(0.94); }

.lc-header__mobile-toggle svg {
    position: absolute;
    width: 24px;
    height: 24px;
    transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.lc-header__mobile-toggle .lc-header__mobile-toggle-close {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

.lc-header__mobile-toggle.is-active .lc-header__mobile-toggle-open {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

.lc-header__mobile-toggle.is-active .lc-header__mobile-toggle-close {
    opacity: 1;
    transform: rotate(0) scale(1);
}

/* ==========================================
   MEGA MENU
========================================== */
.lc-megamenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 900px;
    background: var(--header-white);
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    z-index: 100;
    overflow: hidden;
}

.lc-header__nav-item:hover .lc-megamenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* Mega Menu - Wide version for Veranda's */
.lc-megamenu--wide {
    width: 1100px;
    left: -250%;
    transform: translateY(10px);
}

.lc-header__nav-item:hover .lc-megamenu--wide {
    transform: translateY(0);
}

.lc-megamenu__inner {
    display: grid;
    grid-template-columns: 350px 1fr;
}

/* Categories sidebar */
.lc-megamenu__categories {
    background: var(--header-light-bg);
    padding: 20px;
    border-right: 1px solid #e5e7eb;
}

.lc-megamenu__category-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--header-gray);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}

.lc-megamenu__category-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lc-megamenu__category-item {
    margin-bottom: 2px;
}

.lc-megamenu__category-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--header-secondary);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.lc-megamenu__category-link:hover {
    background: var(--header-white);
    color: var(--header-primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.lc-megamenu__category-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--header-white);
    border-radius: 10px;
    color: var(--header-primary);
    transition: all 0.3s ease;
}

.lc-megamenu__category-link:hover .lc-megamenu__category-icon {
    background: linear-gradient(135deg, var(--header-primary), var(--header-primary-light));
    color: var(--header-white);
}

.lc-megamenu__category-icon svg {
    width: 20px;
    height: 20px;
}

.lc-megamenu__category-arrow {
    margin-left: auto;
    width: 16px;
    height: 16px;
    color: #cbd5e1;
    transition: all 0.3s ease;
}

.lc-megamenu__category-link:hover .lc-megamenu__category-arrow {
    color: var(--header-primary);
    transform: translateX(4px);
}

/* Active category state */
.lc-megamenu__category-link.is-active {
    background: var(--header-white);
    color: var(--header-primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.lc-megamenu__category-link.is-active .lc-megamenu__category-icon {
    background: linear-gradient(135deg, var(--header-primary), var(--header-primary-light));
    color: var(--header-white);
}

.lc-megamenu__category-link.is-active .lc-megamenu__category-arrow {
    color: var(--header-primary);
    transform: translateX(4px);
}

/* Content area */
.lc-megamenu__content {
    padding: 30px;
}

/* Featured panels - hidden by default */
.lc-megamenu__featured-panel {
    display: none;
}

.lc-megamenu__featured-panel.is-active {
    display: block;
    animation: fadeInPanel 0.3s ease;
}

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

.lc-megamenu__section-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--header-gray);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

/* Featured products grid */
.lc-megamenu__featured {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.lc-megamenu__product {
    display: block;
    text-decoration: none;
    border-radius: 16px;
    overflow: hidden;
    background: var(--header-light-bg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lc-megamenu__product:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(239, 122, 23, 0.12);
}

.lc-megamenu__product-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.lc-megamenu__product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.lc-megamenu__product:hover .lc-megamenu__product-image img {
    transform: scale(1.08);
}

.lc-megamenu__product-info {
    padding: 16px;
}

.lc-megamenu__product-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--header-secondary);
    margin: 0 0 6px 0;
}

.lc-megamenu__product-price {
    font-size: 13px;
    font-weight: 600;
    color: var(--header-primary);
}

/* Bottom CTA bar */
.lc-megamenu__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.lc-megamenu__footer-text {
    font-size: 14px;
    color: var(--header-gray);
}

.lc-megamenu__footer-text strong {
    color: var(--header-secondary);
}

.lc-megamenu__footer-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--header-primary);
    text-decoration: none;
    transition: gap 0.3s ease;
}

.lc-megamenu__footer-link:hover {
    gap: 12px;
}

.lc-megamenu__footer-link svg {
    width: 16px;
    height: 16px;
}

/* Simple mega menu (for smaller dropdowns) */
.lc-megamenu--simple {
    width: 280px;
    padding: 16px;
}

.lc-megamenu--simple .lc-megamenu__inner {
    display: block;
}

.lc-megamenu__simple-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lc-megamenu__simple-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--header-secondary);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.lc-megamenu__simple-link:hover {
    background: var(--header-light-bg);
    color: var(--header-primary);
}

.lc-megamenu__simple-link svg {
    width: 18px;
    height: 18px;
    color: var(--header-primary);
}

/* ==========================================
   MOBILE MENU
========================================== */
.lc-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background:
        radial-gradient(120% 55% at 100% 0%, rgba(196, 146, 60, 0.1) 0%, transparent 55%),
        #ffffff;
    color: #1c1e21;
    z-index: 10000;
    transition: right 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    box-shadow: -30px 0 80px -30px rgba(10, 27, 42, 0.35);
}

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

.lc-mobile-menu__overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(5px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}

.lc-mobile-menu__overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.lc-mobile-menu__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 24px;
}

.lc-mobile-menu__logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
}

.lc-mobile-menu__logo img {
    height: 52px;
    width: auto;
    /* logo.webp is white (made for the dark header); darken it for the
       white mobile panel */
    filter: brightness(0);
}

.lc-mobile-menu__close {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 146, 60, 0.08);
    border: 1px solid rgba(196, 146, 60, 0.45);
    border-radius: 14px;
    color: #c4923c;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lc-mobile-menu__close:hover {
    background: #c4923c;
    border-color: #c4923c;
    color: #fff;
}

.lc-mobile-menu__close svg {
    width: 20px;
    height: 20px;
}

.lc-mobile-menu__nav {
    padding: 24px;
}

.lc-mobile-menu__item {
    border-bottom: 1px solid rgba(10, 27, 42, 0.08);
}

.lc-mobile-menu__link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 19px;
    font-weight: 600;
    color: var(--header-secondary);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.lc-mobile-menu__link:hover {
    color: #c4923c;
    padding-left: 6px;
}

.lc-mobile-menu__link svg {
    width: 18px;
    height: 18px;
    color: #c4923c;
    transition: all 0.35s ease;
}

.lc-mobile-menu__item.is-open .lc-mobile-menu__link {
    color: #c4923c;
}

.lc-mobile-menu__item.is-open .lc-mobile-menu__link svg {
    transform: rotate(180deg);
    color: #c4923c;
}

/* Mobile submenu */
.lc-mobile-submenu {
    display: none;
    padding-bottom: 16px;
}

.lc-mobile-menu__item.is-open .lc-mobile-submenu {
    display: block;
}

.lc-mobile-submenu__link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    font-size: 14px;
    font-weight: 500;
    color: #5f6368;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.lc-mobile-submenu__link:hover {
    background: rgba(196, 146, 60, 0.1);
    color: var(--header-secondary);
}

.lc-mobile-submenu__icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 146, 60, 0.1);
    border: 1px solid rgba(196, 146, 60, 0.28);
    border-radius: 10px;
    color: #c4923c;
}

.lc-mobile-submenu__icon svg {
    width: 18px;
    height: 18px;
}

/* Mobile CTA */
.lc-mobile-menu__cta {
    margin: 24px;
    padding: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #1c1206;
    background: linear-gradient(135deg, var(--header-gold-soft), #c4923c);
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 14px 30px -12px rgba(196, 146, 60, 0.65);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lc-mobile-menu__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 38px -14px rgba(196, 146, 60, 0.8);
}

.lc-mobile-menu__cta svg {
    width: 18px;
    height: 18px;
}

/* Mobile contact info */
.lc-mobile-menu__contact {
    padding: 24px;
    border-top: 1px solid rgba(196, 146, 60, 0.25);
}

.lc-mobile-menu__contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 0;
    font-size: 14px;
    color: #5f6368;
    text-decoration: none;
    transition: color 0.3s ease;
}

.lc-mobile-menu__contact-item:hover {
    color: var(--header-secondary);
}

.lc-mobile-menu__contact-item svg {
    width: 20px;
    height: 20px;
    color: #c4923c;
}

/* Mobile menu actions (cart & account) */
.lc-mobile-menu__actions {
    display: flex;
    gap: 12px;
    padding: 0 24px;
    margin-bottom: 16px;
}

.lc-mobile-menu__action-link {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--header-secondary);
    text-decoration: none;
    background: rgba(196, 146, 60, 0.07);
    border: 1px solid rgba(196, 146, 60, 0.22);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.lc-mobile-menu__action-link:hover {
    background: rgba(196, 146, 60, 0.14);
    color: #c4923c;
}

.lc-mobile-menu__action-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 10px;
    color: #c4923c;
    position: relative;
}

.lc-mobile-menu__action-icon svg {
    width: 18px;
    height: 18px;
}

.lc-mobile-menu__action-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    font-size: 10px;
    font-weight: 700;
    color: #1c1206;
    background: var(--header-gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* ==========================================
   RESPONSIVE
========================================== */
@media (max-width: 1200px) {
    .lc-megamenu--wide {
        width: 900px;
    }

    .lc-megamenu__featured {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .lc-header__nav,
    .lc-header__account-dropdown {
        display: none;
    }

    .lc-header__mobile-toggle {
        display: flex;
    }

    .lc-topbar {
        display: none;
    }
}

@media (max-width: 768px) {
    .lc-topbar {
        display: none;
    }

    .lc-header__container {
        padding: 0 20px;
    }

    .lc-header__cta {
        display: none;
    }

    .lc-mobile-menu {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .lc-header__logo img {
        height: 40px;
    }

    .lc-header__logo-text {
        font-size: 20px;
    }
}

/* Header spacer */
.lc-header-spacer {
    height: 120px;
}

@media (max-width: 1024px) {
    .lc-header-spacer {
        height: 80px;
    }
}

@media (max-width: 768px) {
    .lc-header-spacer {
        height: 70px;
    }
}

/* ==========================================
   ATLANTIS MEGA MENU — widget look (navy glass + gold + Playfair)
========================================== */
/* Anchor mega panels to the header container (centered), so right-aligned
   nav items never push the panel off-screen. */
.lc-header__container { position: relative; }
.lc-header__nav-item { position: static; }

.lc-megamenu--mega {
    --m-gold: #c4923c;
    --m-gold-soft: #e7c98b;
    --m-ink: #0a1b2a;
    --m-ink-2: #08131f;
    --m-line: rgba(17, 33, 47, 0.10);

    width: min(900px, calc(100vw - 48px));
    padding: 0;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid var(--m-line);
    box-shadow: 0 40px 90px -34px rgba(10, 27, 42, 0.45);
    overflow: visible;          /* allow the hover bridge below */
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}
/* Invisible bridge that fills the gap between the nav and the panel,
   so the mouse can travel into the mega menu without it closing. */
.lc-megamenu--mega::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -26px;
    height: 26px;
}
.lc-megamenu--mega .lc-megamenu__inner {
    display: grid;
    grid-template-columns: 1fr 320px;
    align-items: stretch;
    border-radius: 22px;
    overflow: hidden;          /* round the inner corners (panel is visible-overflow) */
}

/* left: link list */
.dc-mega__links { padding: 28px 30px; }
.dc-mega__col-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--m-gold);
    margin-bottom: 16px;
}
.dc-mega__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 12px;
}
.dc-mega__link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 13px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--m-ink);
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.dc-mega__link:hover {
    background: rgba(196, 146, 60, 0.10);
    color: var(--m-gold);
    transform: translateX(3px);
}
.dc-mega__link svg {
    width: 18px;
    height: 18px;
    flex: none;
    color: var(--m-gold);
}

/* right: feature panel (image + usps + cta) */
.dc-mega__feature {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 26px;
    min-height: 300px;
    text-decoration: none;
    color: #fff;
    border-left: 1px solid var(--m-line);
    background-color: var(--m-ink);
    background-image: linear-gradient(160deg, #14304a 0%, var(--m-ink) 72%);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.dc-mega__feature::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(120% 80% at 100% 0%, rgba(212, 162, 78, 0.28) 0%, transparent 55%),
        linear-gradient(180deg, rgba(8, 19, 31, 0.10) 0%, rgba(8, 19, 31, 0.88) 100%);
}
.dc-mega__feature > * { position: relative; z-index: 1; }
.dc-mega__feature-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 16px;
}
.dc-mega__usps {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    display: grid;
    gap: 10px;
}
.dc-mega__usps li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}
.dc-mega__usps svg {
    width: 16px;
    height: 16px;
    flex: none;
    color: var(--m-gold-soft);
}
.dc-mega__cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    align-self: flex-start;
    padding: 12px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--m-gold-soft), var(--m-gold));
    color: #1c1206;
    font-size: 14px;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dc-mega__feature:hover .dc-mega__cta {
    transform: translateX(3px);
    box-shadow: 0 18px 38px -14px rgba(212, 162, 78, 0.9);
}
.dc-mega__cta svg { width: 16px; height: 16px; }

@media (max-width: 1100px) {
    .lc-megamenu--mega { width: min(760px, calc(100vw - 32px)); }
    .lc-megamenu--mega .lc-megamenu__inner { grid-template-columns: 1fr 280px; }
}
