/* =================================
   ANNOUNCEMENT BAR
================================= */

.bt-announcement {
    background: #151515;
    color: #ffffff;
    height: 38px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.bt-announcement-track {
    display: flex;
    align-items: center;
    gap: 22px;
    width: max-content;
    white-space: nowrap;
    animation: bt-announcement-scroll 22s linear infinite;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .8px;
}

.bt-announcement-track span {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.bt-announcement svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.bt-dot {
    opacity: .5;
}

@keyframes bt-announcement-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}


/* =================================
   HEADER
================================= */

.bt-header {
    height: 80px;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
    position: sticky;
    top: 0;
    z-index: 500;
}

.bt-logo img {
    width: 150px;
    height: auto;
}

.bt-menu-btn,
.bt-cart {
    background: none;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bt-menu-btn {
    color: #ffffff;
    cursor: pointer;
}

.bt-menu-btn svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
}

.bt-cart a {
    color: #ff6a00;
    display: flex;
}

.bt-cart svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* =================================
   MOBILE MENU
================================= */

.bt-mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #111;
    z-index: 999;
    padding: 30px;
    transition: .3s ease;
}

.bt-mobile-menu.active {
    left: 0;
}

.bt-mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.bt-mobile-menu nav a {
    color: white;
    font-size: 18px;
}

.bt-close-menu {
    background: none;
    border: 0;
    color: white;
    cursor: pointer;
}

.bt-close-menu svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
}
