/* ── TOP BAR ── */
.sa-topbar {
    background: rgba(255,100,50,0.07);
    border-bottom: 1px solid rgba(255,100,50,0.12);
    font-size: 12px;
    padding: 7px 0;
}
.sa-topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.sa-topbar-text  { color: var(--sa-text-2); }
.sa-topbar-contact { display: flex; gap: 16px; }
.sa-topbar-contact a { color: var(--sa-gold); font-size: 11px; }

/* ── HEADER ── */
.sa-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(8,9,13,0.82);
    backdrop-filter: blur(28px) saturate(1.4);
    -webkit-backdrop-filter: blur(28px) saturate(1.4);
    border-bottom: 1px solid var(--sa-border);
    transition: background 0.4s, border-color 0.4s, box-shadow 0.4s;
}
.sa-header.scrolled {
    background: rgba(8,9,13,0.95);
    border-color: rgba(255,100,50,0.14);
    box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}
.sa-header-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.sa-header-flex {
    display: flex; align-items: center; justify-content: space-between;
    height: 68px; gap: 24px;
}

/* LOGO */
.sa-logo { display: flex; align-items: center; flex-shrink: 0; }
.sa-logo img { height: 44px; width: auto; }
.sa-logo-text {
    font-family: var(--sa-font-display);
    font-size: 1.5rem; font-weight: 900;
    letter-spacing: 0.1em; color: #fff;
    background: var(--sa-grad-text);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

/* DESKTOP NAV */
.sa-nav { display: none; }
@media (min-width: 960px) { .sa-nav { display: flex; align-items: center; } }
.sa-nav-list { display: flex; align-items: center; gap: 4px; list-style: none; }
.sa-nav-item  { position: relative; }
.sa-nav-link  {
    display: flex; align-items: center; gap: 4px;
    padding: 8px 14px; border-radius: 8px;
    font-size: 13px; font-weight: 600; letter-spacing: 0.03em;
    color: var(--sa-text-2);
    transition: color 0.2s, background 0.2s;
    text-decoration: none;
}
.sa-nav-link:hover, .sa-nav-item.current-menu-item > .sa-nav-link {
    color: #fff;
    background: var(--sa-surface);
}
.sa-nav-item.current-menu-item > .sa-nav-link { color: var(--sa-gold); }
.sa-chevron { transition: transform 0.22s; margin-left: 2px; }
.sa-has-dropdown:hover .sa-chevron { transform: rotate(180deg); }

/* DROPDOWN */
.sa-dropdown {
    position: absolute; top: calc(100% + 6px); left: 0;
    min-width: 200px;
    background: rgba(10,12,18,0.96);
    border: 1px solid var(--sa-border);
    border-radius: var(--sa-radius-lg);
    backdrop-filter: blur(24px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    list-style: none;
    padding: 6px;
    opacity: 0; visibility: hidden; pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.22s, transform 0.22s, visibility 0.22s;
    z-index: 200;
}
.sa-has-dropdown:hover > .sa-dropdown {
    opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
}
.sa-dropdown .sa-nav-link { padding: 9px 14px; font-size: 13px; border-radius: 8px; }

/* HEADER ACTIONS */
.sa-header-actions { display: flex; align-items: center; gap: 6px; }
.sa-icon-btn {
    display: flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: 10px;
    background: var(--sa-surface); border: 1px solid var(--sa-border);
    color: var(--sa-text-2); cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    position: relative;
}
.sa-icon-btn:hover { background: var(--sa-orange-dim); border-color: var(--sa-border-hover); color: #fff; }
.sa-cart-count {
    position: absolute; top: -4px; right: -4px;
    min-width: 18px; height: 18px; padding: 0 4px;
    background: var(--sa-orange); color: #000;
    border-radius: 999px; font-size: 10px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    line-height: 1;
}
.sa-cart-count:empty, .sa-cart-count[data-count="0"] { display: none; }

/* SEARCH BAR */
.sa-search-bar {
    background: rgba(8,9,13,0.97);
    border-top: 1px solid var(--sa-border);
    padding: 14px 0;
}
.sa-search-bar form { display: flex; gap: 10px; }
.sa-search-bar input[type="search"] {
    flex: 1; background: var(--sa-surface); border: 1px solid var(--sa-border);
    border-radius: var(--sa-radius); padding: 11px 16px;
    color: var(--sa-text); font-size: 14px; font-family: var(--sa-font-body); outline: none;
}
.sa-search-bar input[type="search"]:focus { border-color: var(--sa-border-hover); }
.sa-search-bar button { padding: 0 22px; }

/* MOBILE BURGER */
.sa-mobile-toggle { display: flex; }
@media (min-width: 960px) { .sa-mobile-toggle { display: none; } }
.sa-burger { display: block; width: 16px; height: 2px; background: currentColor; position: relative; }
.sa-burger::before, .sa-burger::after {
    content: ''; position: absolute; left: 0; width: 100%; height: 2px; background: currentColor;
}
.sa-burger::before { top: -5px; } .sa-burger::after { top: 5px; }

/* MOBILE MENU */
.sa-mobile-menu {
    position: fixed; inset: 0; z-index: 999;
    background: #080912;
    display: flex; flex-direction: column;
    transform: translateX(-100%); transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.sa-mobile-menu.open { transform: translateX(0); }
.sa-mobile-menu-inner { display: flex; flex-direction: column; height: 100%; padding: 20px; overflow-y: auto; }
.sa-mobile-menu-head  { display: flex; align-items: center; justify-content: space-between; padding-bottom: 20px; border-bottom: 1px solid var(--sa-border); margin-bottom: 20px; }
.sa-mobile-nav-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.sa-mobile-nav-list .sa-nav-link { font-size: 1.6rem; font-family: var(--sa-font-display); font-weight: 900; letter-spacing: 0.04em; padding: 10px 0; color: var(--sa-text-2); }
.sa-mobile-nav-list .sa-nav-link:hover { color: #fff; }
.sa-mobile-actions { margin-top: auto; padding-top: 20px; border-top: 1px solid var(--sa-border); }
.sa-overlay { position: fixed; inset: 0; z-index: 998; background: rgba(0,0,0,0.7); display: none; }
.sa-overlay.visible { display: block; }

/* Page body offset for fixed header */
.sa-page-wrapper { padding-top: 68px; }
.sa-topbar ~ .sa-header ~ .sa-page-wrapper { padding-top: 105px; }
