/* ===========================================
   VAPE & MORE — HEADER
   =========================================== */

:root {
    --primary: var(--color-primary);
    --primary-light: rgba(var(--color-primary-rgb), 0.20);
    --primary-dark: var(--color-primary-dark);
    --dark: #2d2d2d;
    --gray: #666;
    --gray-light: #999;
    --light: #f8f8f8;
    --white: #fff;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.35s cubic-bezier(0.4,0,0.2,1);
    --border-radius: 12px;
}

* {
    box-sizing: border-box;
}

/* ── Header base ── */
#cx-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #111111;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    overflow: visible;
}

    #cx-header.header-hidden {
        transform: translateY(-100%);
    }

.header {
    max-width: 1480px;
    margin: 0 auto;
    overflow: visible;
}

/* ── Announcement bar ── */
.mby-banner {
    width: 100%;
    height: 40px;
    background: var(--color-announcement-bar);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.mby-banner__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.mby-banner__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
    z-index: 1;
}

.mby-banner__bg:not([style*="url"]) ~ .mby-banner__overlay,
.mby-banner__bg[style*="url('')"] ~ .mby-banner__overlay,
.mby-banner__bg[style*='url("")'] ~ .mby-banner__overlay {
    background: transparent;
}

.mby-banner__content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1480px;
    padding: 0 24px;
    height: 100%;
}

.mby-banner__item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
    height: 100%;
    padding: 0 12px;
    border-right: 1px solid rgba(255,255,255,0.12);
    white-space: nowrap;
}

    .mby-banner__item:last-child {
        border-right: none;
    }

.mby-banner__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-announcement-icon);
}

    .mby-banner__icon svg {
        width: 15px;
        height: 15px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2.2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.mby-banner__item-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1;
    letter-spacing: 0.01em;
}

@media (max-width: 768px) {
    .mby-banner {
        height: 36px;
    }

    .mby-banner__item:nth-child(2), .mby-banner__item:nth-child(3) {
        display: none;
    }

    .mby-banner__item-text {
        font-size: 0.72rem;
    }
}

@media (max-width: 480px) {
    .mby-banner {
        height: 32px;
    }

    .mby-banner__item:not(:first-child) {
        display: none;
    }

    .mby-banner__item {
        border-right: none;
    }
}

/* ── Main header row ── */
.main-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px;
    gap: 20px;
    background: #111111 !important;
    background-image: none !important;
    color: #ffffff;
    overflow: visible;
    position: relative;
}

/* ── Hamburger ── */
.PreHeader {
    display: none;
}

cx-hamburger-menu {
    display: block;
    line-height: 0;
    flex-shrink: 0;
}

.hamburger-btn {
    display: none;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 10px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0;
    z-index: 10;
}

/* ── Logo ── */
.SiteLogo {
    flex: 0 0 auto;
    display: flex !important;
    align-items: center;
    justify-content: flex-start !important;
    text-align: left !important;
}

cx-page-slot.SiteLogo {
    display: flex !important;
    justify-content: flex-start !important;
    text-align: left !important;
}

cx-banner {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px;
}

    cx-banner cx-generic-link, cx-banner cx-generic-link a {
        display: flex !important;
        align-items: center;
        justify-content: flex-start !important;
    }

.logo-link {
    display: block;
    transition: transform var(--transition-fast);
    margin: 0 !important;
}

    .logo-link:hover {
        transform: scale(1.02);
    }

.main-logo {
    display: block;
    height: 60px;
    width: auto;
    margin: 0 !important;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.main-header-container .main-logo {
    background: #ffffff;
    border-radius: 50%;
    padding: 6px;
    height: 52px;
    box-sizing: content-box;
}

.brand-feeling {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2;
    white-space: nowrap;
}

/* ── Search (hidden slot) ── */
cx-page-slot.SearchBox {
    display: none !important;
}

/* ── Nav ── */
.NavigationBar {
    display: none !important;
}

.navigation-items {
    display: flex !important;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* nav-item wrapper */
.nav-item {
    position: relative;
    display: inline-flex;
    align-items: center;
    overflow: visible;
}

/* header_nav-link */
.header_nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: background-color 0.2s ease, color 0.2s ease;
    border-radius: 50px;
    background: transparent;
    white-space: nowrap;
    cursor: pointer;
}

    a.header_nav-link:hover, .header_nav-link:hover {
        background-color: #22C55E !important;
        color: #111111 !important;
        text-decoration: none !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

/* hide platform-injected display:none on solo links */
.nav-item > a.header_nav-link {
    display: inline-flex !important;
}

/* Arrow only on items with dropdown */
.nav-item:has(.dropdown-content) > .header_nav-link::after,
.nav-item:has(.dropdown-list-2) > .header_nav-link::after {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    margin-left: 6px;
    opacity: 0.7;
    transition: transform 0.2s ease;
    vertical-align: middle;
}

.nav-item:has(.dropdown-content):hover > .header_nav-link::after,
.nav-item:has(.dropdown-list-2):hover > .header_nav-link::after {
    transform: rotate(225deg) translateY(2px);
}

.nav-item:not(:has(.dropdown-content)):not(:has(.dropdown-list-2)) > .header_nav-link::after {
    display: none !important;
}

/* Force-hide platform dropdown-content — overlay handles it */
#cx-header .dropdown-content,
#cx-header .dropdown-content2 {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* ── Header icons ── */
.header-icons {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.MiniCart {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.40);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    position: relative;
    cursor: pointer;
    transition: all var(--transition-smooth);
    flex-shrink: 0;
}

    .icon-btn svg {
        width: 20px;
        height: 20px;
        transition: transform var(--transition-fast);
    }

    .icon-btn:hover svg {
        transform: scale(1.1);
    }

.icon-wishlist svg {
    fill: #ffffff;
}

header#cx-header .icon-btn:hover {
    background: #22C55E !important;
    border-color: #22C55E !important;
    color: #000000 !important;
    transform: translateY(-2px);
}

    header#cx-header .icon-btn:hover svg {
        stroke: #000000 !important;
        fill: none !important;
    }

header#cx-header .icon-wishlist:hover svg {
    fill: #000000 !important;
    stroke: none !important;
}

/* badge */
.badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 20px;
    height: 20px;
    background: #22C55E;
    color: #000000;
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid #111111;
    box-shadow: 0 2px 8px rgba(0,0,0,0.40);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
    line-height: 1;
}

    .badge.is-visible {
        opacity: 1;
    }

header#cx-header .icon-btn:hover .badge {
    background: #111111 !important;
    color: #22C55E !important;
    border-color: #22C55E !important;
}

/* CTA button */
.header-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #22C55E !important;
    color: #000000 !important;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none !important;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 2px 12px rgba(34,197,94,0.35);
}

    .header-cta-btn svg {
        width: 16px;
        height: 16px;
        stroke: currentColor;
        flex-shrink: 0;
    }

    .header-cta-btn:hover {
        background: #16A34A !important;
        transform: translateY(-1px);
        color: #000000 !important;
        text-decoration: none !important;
        box-shadow: 0 4px 20px rgba(34,197,94,0.50);
    }

/* ── Expandable search toggle ── */
.search-toggle-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-direction: row; /* flyout(1st)=left, button(2nd)=right */
}
    /* Force button to always be last / rightmost */
    .search-toggle-wrap .icon-btn.icon-search {
        order: 2;
        flex-shrink: 0;
    }

    .search-toggle-wrap .search-flyout {
        order: 1;
    }
/* Flyout — hidden by default */
.search-flyout {
    width: 0;
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    transition: width 0.35s cubic-bezier(0.4,0,0.2,1), max-width 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.25s ease;
    pointer-events: none;
    flex-shrink: 0;
}

.search-toggle-wrap.is-open .search-flyout {
    width: 260px;
    max-width: 260px;
    opacity: 1;
    pointer-events: auto;
}
/* Inner label — fixed width so it's always full size inside the clip */
.search-flyout-inner {
    width: 260px;
    display: flex;
    align-items: center;
    height: 44px;
    background: rgba(255,255,255,0.10);
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 22px;
    overflow: hidden;
}

.search-toggle-wrap.is-open .search-flyout-inner:focus-within {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px var(--glow-primary);
    background: rgba(255,255,255,0.14);
}

.icon-btn.icon-search {
    flex-shrink: 0;
}
/* search-flyout-inner defined above in search-toggle-wrap section */
.search-flyout-input {
    flex: 1;
    height: 100%;
    padding: 0 10px;
    background: transparent;
    border: none;
    outline: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    color: #ffffff;
    min-width: 0;
    line-height: 44px;
}

    .search-flyout-input::placeholder {
        color: rgba(255,255,255,0.45);
        font-style: italic;
    }

.search-flyout-btn {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    margin: 0 4px 0 0;
    border-radius: 50%;
    background: var(--color-primary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    transition: background 0.2s ease, transform 0.15s ease;
}

    .search-flyout-btn svg {
        width: 15px;
        height: 15px;
        stroke: #000000;
    }

    .search-flyout-btn:hover {
        background: var(--color-primary-dark);
        transform: scale(1.08);
    }

.search-toggle-wrap.is-open .icon-btn.icon-search {
    background: #22C55E;
    border-color: #22C55E;
    color: #111111;
}

    .search-toggle-wrap.is-open .icon-btn.icon-search svg {
        stroke: #111111;
    }

/* ── Mega-menu overlay ── */
#mega-menu-overlay {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1100;
    background: #ffffff;
    border-top: 3px solid #22C55E;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.25);
    padding: 28px 40px;
    flex-direction: row;
    gap: 0;
    flex-wrap: wrap;
    pointer-events: auto !important;
}

    #mega-menu-overlay a,
    #mega-menu-overlay button {
        pointer-events: auto !important;
        cursor: pointer !important;
    }

    #mega-menu-overlay > .submenu2_gral {
        flex: 1;
        min-width: 140px;
        padding: 0 20px 0 0;
        border-right: 1px solid rgba(0,0,0,0.07);
        margin-right: 20px;
    }

        #mega-menu-overlay > .submenu2_gral:last-child {
            border-right: none;
            padding-right: 0;
            margin-right: 0;
        }

    #mega-menu-overlay .menu_item_submenu.dropdown2 > a {
        display: block !important;
        font-family: 'Poppins', sans-serif;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #22C55E !important;
        text-decoration: none !important;
        padding: 0 0 10px 0 !important;
        margin: 0 0 8px 0 !important;
        border-bottom: 2px solid rgba(34,197,94,0.20);
        background: transparent !important;
    }

        #mega-menu-overlay .menu_item_submenu.dropdown2 > a:hover {
            color: #16A34A !important;
        }

        #mega-menu-overlay .menu_item_submenu.dropdown2 > a::after {
            display: none !important;
        }

    #mega-menu-overlay .dropdown-content2 {
        display: block !important;
        position: static !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    #mega-menu-overlay .menu_item_submenu2 > a {
        display: flex !important;
        align-items: center;
        gap: 6px;
        padding: 8px 12px !important;
        color: #111111 !important;
        font-family: 'Poppins', sans-serif;
        font-size: 0.9rem;
        font-weight: 500;
        text-decoration: none !important;
        border-radius: 8px;
        transition: background 0.15s ease, color 0.15s ease;
        background: transparent !important;
        cursor: pointer !important;
        pointer-events: auto !important;
    }

        #mega-menu-overlay .menu_item_submenu2 > a:hover {
            background: rgba(34,197,94,0.10) !important;
            color: #16A34A !important;
            text-decoration: underline !important;
        }

        #mega-menu-overlay .menu_item_submenu2 > a::after {
            display: none !important;
        }

        #mega-menu-overlay .menu_item_submenu2 > a::before {
            display: none !important;
        }

/* ── Sidebar modals ── */
.sidebar-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1998;
}

    .sidebar-backdrop.active {
        display: block;
    }

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 1999;
    cursor: pointer;
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.sidebar-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 440px;
    max-width: 92vw;
    height: 100%;
    background: var(--white);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.32,0.72,0,1);
    box-shadow: -20px 0 60px rgba(0,0,0,0.25);
}

.sidebar-backdrop.active .sidebar-panel {
    transform: translateX(0);
}

/* ── Cart sidebar ── */
.cart-panel .title, .wishlist-panel .title {
    padding: 20px 24px;
    background: #ffffff;
    border-bottom: 3px solid #22C55E;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

    .cart-panel .title h2, .wishlist-panel .title h2 {
        margin: 0;
        font-family: 'Poppins', sans-serif;
        font-size: 1.2rem;
        font-weight: 700;
        color: #111111;
    }

#cart .items, #wishlist .items {
    background: #f5f5f5 !important;
    padding: 12px !important;
}

.cart-panel .items, .wishlist-panel .items {
    flex: 1;
    overflow-y: auto;
    background: #f5f5f5 !important;
    padding: 12px !important;
}

.cart-panel .ci-cart-item, .wishlist-panel .ci-cart-item {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 10px;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 8px;
    align-items: start;
    background: #ffffff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.cart-panel .cx-item-list-row, .wishlist-panel .cx-item-list-row {
    background: transparent !important;
    border: none !important;
}

.cart-panel .cx-image-container img, .wishlist-panel .cx-image-container img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.cart-panel .cx-name div, .cart-panel .cx-name a {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #111111 !important;
    text-decoration: none;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cart-panel .cx-price, .cart-panel .price {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #22C55E !important;
    margin: 6px 0;
}

.cart-panel cx-item-counter {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
}

.cart-panel .btn-quantity {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34,197,94,0.12) !important;
    color: #22C55E !important;
    border: 1px solid rgba(34,197,94,0.30) !important;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    user-select: none;
}

    .cart-panel .btn-quantity:hover {
        background: #22C55E !important;
        color: #111111 !important;
    }

.cart-panel .input-value {
    width: 36px;
    height: 28px;
    text-align: center;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #111111;
    background: #f9f9f9;
}

.cart-panel .cx-icon.trash {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f5f5f5;
    transition: background 0.2s;
}

    .cart-panel .cx-icon.trash:hover {
        background: #fee2e2;
    }

.cart-panel .total {
    padding: 16px 20px;
    border-top: 2px solid #f0f0f0;
    background: #ffffff;
    flex-shrink: 0;
}

.cart-panel .cart-totals .row {
    display: flex;
    justify-content: space-between;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    color: #555;
    padding: 4px 0;
}

    .cart-panel .cart-totals .row.total {
        font-size: 1rem;
        font-weight: 700;
        color: #111111;
        border-top: 1px solid #e5e5e5;
        margin-top: 8px;
        padding-top: 10px;
    }

.cart-panel .cart-totals .value {
    font-weight: 600;
    color: #111111;
}

.cart-panel .btn.btn-block.btn-primary, .wishlist-panel .btn.btn-block, .wishlist-panel .btn-primary-wishlist {
    display: block;
    margin: 12px 20px 16px;
    background: #22C55E !important;
    border-radius: 8px;
    text-align: center;
    border: none !important;
    transition: background 0.2s ease;
}

    .cart-panel .btn.btn-block.btn-primary a, .wishlist-panel .btn.btn-block a {
        display: block;
        padding: 14px 24px;
        color: #111111 !important;
        font-family: 'Poppins', sans-serif;
        font-size: 0.95rem;
        font-weight: 700;
        text-decoration: none !important;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .cart-panel .btn.btn-block.btn-primary:hover, .wishlist-panel .btn.btn-block:hover {
        background: #16A34A !important;
    }

.cart-panel .items button:not(.btn-quantity):not([aria-label="remove"]):not([aria-label="Add one more"]):not([aria-label="remove one"]),
.wishlist-panel .items button:not(.btn-quantity) {
    background: #22C55E !important;
    color: #111111 !important;
    border: 2px solid #22C55E !important;
    border-radius: 50px !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    cursor: pointer;
}

#cart .cx-link, #wishlist .cx-link {
    color: #111111 !important;
}

/* ── Utility ── */
.espacio_inicial {
    height: auto;
}

#drop-paises {
    display: none;
}

.cart {
    display: none;
}

.wishlist {
    display: none;
}

/* ── Mobile ── */
@media (max-width: 992px) {
    .PreHeader {
        display: block;
        flex-shrink: 0;
    }

    .hamburger-btn {
        display: flex;
    }

    cx-page-slot.SearchBox {
        display: none !important;
    }

    .header-cta-btn {
        display: none;
    }

    .SiteLogo, cx-page-slot.SiteLogo {
        display: flex !important;
        justify-content: flex-start !important;
        align-items: center !important;
        text-align: left !important;
        width: 100% !important;
    }

    cx-banner {
        justify-content: flex-start !important;
        width: 100% !important;
        gap: 8px !important;
    }

    .main-logo {
        height: 44px !important;
    }

    .brand-feeling {
        font-size: 0.72rem !important;
    }

    .navigation-items {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0 !important;
        background: #1a1a1a;
        border-top: 3px solid var(--color-primary);
        box-shadow: 0 8px 24px rgba(0,0,0,0.30);
        padding: 8px 16px 16px;
        z-index: 999;
        justify-content: flex-start !important;
    }

    .header_nav-link {
        display: block !important;
        padding: 14px 16px !important;
        border-radius: 10px !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
        text-align: left !important;
        border-bottom: 1px solid rgba(255,255,255,0.08) !important;
        color: #ffffff !important;
        background: transparent !important;
        white-space: normal !important;
    }

    .icon-btn {
        width: 40px;
        height: 40px;
    }

        .icon-btn svg {
            width: 18px !important;
            height: 18px !important;
        }

    .MiniCart {
        gap: 6px !important;
    }

    .sidebar-panel {
        width: 100%;
        max-width: 100%;
    }

    .search-toggle-wrap.is-open .search-flyout {
        width: 160px;
    }
}

@media (max-width: 480px) {
    .brand-feeling {
        display: none !important;
    }

    .main-logo {
        height: 36px !important;
    }

    .search-flyout {
        position: fixed;
        top: auto;
        right: 0;
        left: 0;
        width: 0 !important;
        transform: none;
        border-radius: 0;
        z-index: 999;
    }

    .search-toggle-wrap.is-open .search-flyout {
        width: 100% !important;
        top: 92px;
    }

    .search-flyout-inner {
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-top: none;
        border-bottom: 2px solid var(--color-primary);
        background: #111111;
    }

    .search-flyout-input {
        padding: 14px 16px;
        font-size: 1rem;
    }
}

cx-hamburger-menu {
    display: none !important;
}
