:root {
    --header-primary: #ef7a17;
    --header-primary-light: #ff9a44;
    --header-secondary: #032038;
    --header-white: #ffffff;
    --header-gray: #64748b;
    --header-light-bg: #f8fafc;
}

/* ==========================================
   HEADER WRAPPER
========================================== */
.lc-header {
    position: fixed;
    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-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-icon {
    width: 14px;
    height: 14px;
    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__logo-scrolled {
    display: none;
}

.lc-header--scrolled .lc-header__logo-default {
    display: none;
}

.lc-header--scrolled .lc-header__logo-scrolled {
    display: block;
}

.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;
    color: var(--header-white);
    background: linear-gradient(135deg, var(--header-primary), var(--header-primary-light));
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(239, 122, 23, 0.3);
}

.lc-header__cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(239, 122, 23, 0.4);
}

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

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

/* Mobile Toggle */
.lc-header__mobile-toggle {
    display: none;
    width: 48px;
    height: 48px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lc-header--scrolled .lc-header__mobile-toggle {
    background: var(--header-light-bg);
}

.lc-header__mobile-toggle span {
    width: 22px;
    height: 2px;
    background: var(--header-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.lc-header--scrolled .lc-header__mobile-toggle span {
    background: var(--header-secondary);
}

.lc-header__mobile-toggle.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.lc-header__mobile-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.lc-header__mobile-toggle.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ==========================================
   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: var(--header-white);
    z-index: 10000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

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

.lc-mobile-menu__overlay {
    position: fixed;
    inset: 0;
    background: rgba(3, 32, 56, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s 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: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
}

.lc-mobile-menu__logo {
    font-size: 20px;
    font-weight: 800;
    color: var(--header-secondary);
    text-decoration: none;
}

.lc-mobile-menu__close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--header-light-bg);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lc-mobile-menu__close:hover {
    background: var(--header-primary);
    color: var(--header-white);
}

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

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

.lc-mobile-menu__item {
    border-bottom: 1px solid #f1f5f9;
}

.lc-mobile-menu__link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--header-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.lc-mobile-menu__link:hover {
    color: var(--header-primary);
}

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

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

/* 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: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--header-gray);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

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

.lc-mobile-submenu__icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--header-light-bg);
    border-radius: 8px;
    color: var(--header-primary);
}

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

/* Mobile CTA */
.lc-mobile-menu__cta {
    margin: 24px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: var(--header-white);
    background: linear-gradient(135deg, var(--header-primary), var(--header-primary-light));
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(239, 122, 23, 0.3);
}

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

/* Mobile contact info */
.lc-mobile-menu__contact {
    padding: 24px;
    border-top: 1px solid #e5e7eb;
}

.lc-mobile-menu__contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 14px;
    color: var(--header-gray);
    text-decoration: none;
}

.lc-mobile-menu__contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--header-primary);
}

/* 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: var(--header-light-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
}

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

.lc-mobile-menu__action-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--header-white);
    border-radius: 10px;
    color: var(--header-primary);
    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: var(--header-white);
    background: var(--header-primary);
    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;
    }
}
