/* ═══════════════════════════════════════
   NAVIGATION & HEADER STYLES
   ═══════════════════════════════════════ */

/* ═══ ANNOUNCEMENT BAR ═══ */
.swz-announce-bar {
    overflow: hidden;
    padding: 10px 0;
    background: var(--swz-black);
    display: none;
}

@media (min-width: 768px) {
    .swz-announce-bar {
        display: block;
    }
}

.swz-marquee-track {
    display: flex;
    width: max-content;
    animation: swzMarquee 32s linear infinite;
    color: var(--swz-white);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}
.swz-announce-bar:hover .swz-marquee-track {
    animation-play-state: paused;
}

@keyframes swzMarquee {
    to {
        transform: translateX(-50%);
    }
}

.swz-marquee-item {
    padding: 0 48px;
    white-space: nowrap;
}

.swz-marquee-sep {
    opacity: 0.3;
}

/* ═══ HEADER ═══ */
.swz-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.6);
    transition:
        background var(--swz-transition),
        border-color var(--swz-transition);
}

.swz-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 8px var(--swz-shadow);
}

.swz-header-left {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
}

.swz-header-right {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ═══ LOGO ═══ */
.swz-logo {
    font-family: "Playfair Display", serif;
    font-weight: 800;
    font-size: 22px;
    color: var(--swz-black);
    text-decoration: none;
    font-style: italic;
    white-space: nowrap;
    transition: transform var(--swz-transition);
}

.swz-logo:hover {
    transform: scale(1.02);
}

.swz-logo img {
    height: 34px;
    width: auto;
    display: block;
}

/* ═══ DESKTOP NAVIGATION ═══ */
.swz-desk-nav {
    display: none;
    gap: 28px;
    align-items: center;
}

@media (min-width: 1024px) {
    .swz-desk-nav {
        display: flex;
    }
}

.swz-nav-link {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--swz-gray);
    text-decoration: none;
    position: relative;
    transition: color var(--swz-transition);
    padding-bottom: 4px;
}

.swz-nav-link::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--swz-black);
    transition: width var(--swz-transition);
}

.swz-nav-link:hover,
.swz-nav-link.active {
    color: var(--swz-black);
}

.swz-nav-link:hover::after,
.swz-nav-link.active::after {
    width: 100%;
}

.swz-nav-link--sale {
    color: var(--swz-red) !important;
}

.swz-nav-link--sale::after {
    background: var(--swz-red);
}

/* ═══ SEARCH ═══ */
.swz-search-wrap {
    position: relative;
    display: none;
    align-items: center;
}

@media (min-width: 1024px) {
    .swz-search-wrap {
        display: flex;
    }
}

.swz-search-input {
    padding: 8px 12px 8px 14px;
    font-size: 13px;
    border: none;
    background: transparent;
    color: var(--swz-black);
    border-bottom: 1px solid var(--swz-border);
    transition: border-color var(--swz-transition);
    width: 0;
    transition: width var(--swz-transition);
}

.swz-search-wrap:hover .swz-search-input {
    width: 140px;
    border-color: var(--swz-black);
}

.swz-search-input::placeholder {
    color: var(--swz-lgray);
}

.swz-search-input:focus {
    outline: none;
    border-color: var(--swz-black);
}

.swz-search-icon {
    width: 18px;
    height: 18px;
    color: var(--swz-gray);
    stroke-width: 2.5;
    flex-shrink: 0;
    margin-left: 8px;
}

/* ═══ ICON BUTTONS ═══ */
.swz-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition:
        background var(--swz-transition),
        color var(--swz-transition);
    position: relative;
    color: var(--swz-black);
    stroke-width: 1.8;
}

.swz-icon-btn:hover {
    background: #f2f2f2;
}

.swz-icon-btn svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
}

.swz-wishlist-btn {
    display: none;
}

@media (min-width: 768px) {
    .swz-wishlist-btn {
        display: flex;
    }
}

.swz-cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--swz-black);
    color: var(--swz-white);
    font-size: 9px;
    font-weight: 700;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--swz-white);
}

/* ═══ PROFILE DROPDOWN ═══ */
/* ═══ PROFILE DROPDOWN ═══ */
.swz-profile-wrap {
    position: relative;
    display: inline-block;
}

.swz-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dropdown */
.swz-profile-dropdown {
    position: absolute;
    top: calc(100% + 2px);
    right: 0;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    min-width: 180px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s ease;

    z-index: 999;
    pointer-events: none;
}

/* Active State */
.swz-profile-wrap.active .swz-profile-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Links */
.swz-drop-link {
    display: block;
    padding: 12px 16px;
    font-size: 13px;
    color: #222;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: 0.2s;
}

.swz-drop-link:last-child {
    border-bottom: none;
}

.swz-drop-link:hover {
    background: #f5f5f5;
}

.swz-drop-link--red:hover {
    background: #e53935;
    color: #fff;
}

/* Optional: Hover support for desktop */
@media (hover: hover) {
    .swz-profile-wrap:hover .swz-profile-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
}
/* ═══ HAMBURGER MENU ═══ */
.swz-hamburger {
    display: flex;
}

@media (min-width: 1024px) {
    .swz-hamburger {
        display: none;
    }
}

.swz-hamburger svg {
    width: 21px;
    height: 21px;
}

/* ═══ MOBILE MENU ═══ */
.swz-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--swz-white);
    z-index: 1000;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform var(--swz-transition);
}

.swz-mobile-menu.active {
    transform: translateX(0);
}

.swz-mobile-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.swz-mobile-close svg {
    width: 23px;
    height: 23px;
    stroke: var(--swz-black);
    stroke-width: 2.2;
}

.swz-mobile-nav {
    padding: 80px 24px 24px;
}

@media (max-width: 480px) {
    .swz-mobile-nav {
        padding: 80px 40px 40px;
    }
}

.swz-mobile-nav-link {
    display: block;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--swz-gray);
    text-decoration: none;
    border-bottom: 1px solid var(--swz-border);
    transition: color var(--swz-transition);
}

.swz-mobile-nav-link:hover,
.swz-mobile-nav-link.active {
    color: var(--swz-black);
}

.swz-mobile-nav-link--sale {
    color: var(--swz-red) !important;
}

.swz-mobile-footer {
    padding: 24px;
    border-top: 1px solid var(--swz-border);
    margin-top: 24px;
}

.swz-mobile-footer-link {
    display: block;
    padding: 10px 0;
    font-size: 13px;
    color: var(--swz-black);
    text-decoration: none;
    transition: color var(--swz-transition);
}

.swz-mobile-footer-link:hover {
    color: var(--swz-accent);
}
