/* =========================================
   GLOBAL
========================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    font-family: Arial, sans-serif;

    color: #111;
    background: #fff;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}

button {
    font-family: inherit;
}


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

.hqsaga-announcement-bar {
    background: #000;
    color: #fff;

    padding: 9px 0;

    text-align: center;
}

.announcement-content p {
    margin: 0;

    font-size: 12px;
    line-height: 1.4;

    letter-spacing: 0.5px;
}


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

.hqsaga-header {
    position: relative;

    width: 100%;

    background: #fff;

    border-bottom: 1px solid #e8e8e8;

    z-index: 1000;
}

.hqsaga-header-inner {
    min-height: 78px;

    display: flex;
    align-items: center;

    gap: 30px;
}


/* =========================================
   LOGO
========================================= */

.hqsaga-logo {
    flex-shrink: 0;
}

.hqsaga-logo a {
    color: #111;

    font-size: 24px;
    font-weight: 700;

    letter-spacing: 1px;
}

.hqsaga-logo img {
    display: block;

    max-width: 80px;
    height: auto;
}


/* =========================================
   NAVIGATION
========================================= */

.hqsaga-navigation {
    flex: 1;

    display: flex;
    justify-content: center;
}

.hqsaga-menu {
    display: flex;
    align-items: center;

    gap: 32px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.hqsaga-menu li {
    margin: 0;
    padding: 0;
}

.hqsaga-menu a {
    color: #111;

    font-size: 14px;
    font-weight: 500;

    text-transform: uppercase;

    letter-spacing: 0.5px;

    transition: opacity 0.2s ease;
}

.hqsaga-menu a:hover {
    opacity: 0.55;
}


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

.hqsaga-header-actions {
    display: flex;
    align-items: center;

    gap: 16px;

    flex-shrink: 0;
}

.hqsaga-header-icon {
    position: relative;

    width: 24px;
    height: 24px;

    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;

    background: transparent;

    color: #111;

    cursor: pointer;
}

.hqsaga-header-icon svg {
    display: block;
}


/* =========================================
   CART COUNT
========================================= */

.hqsaga-cart-count {
    position: absolute;

    top: -7px;
    right: -8px;

    min-width: 16px;
    height: 16px;

    padding: 0 4px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #000;
    color: #fff;

    border-radius: 50%;

    font-size: 9px;
    line-height: 1;
}


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

.hqsaga-menu-toggle {
    display: none;

    width: 24px;
    height: 24px;

    padding: 0;

    border: 0;

    background: transparent;

    flex-direction: column;
    justify-content: center;

    gap: 5px;

    cursor: pointer;
}

.hqsaga-menu-toggle span {
    display: block;

    width: 22px;
    height: 1.5px;

    background: #111;
}


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

.hqsaga-mobile-menu {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100vh;

    background: #fff;

    z-index: 9999;

    transform: translateX(-100%);

    visibility: hidden;

    transition:
        transform 0.3s ease,
        visibility 0.3s ease;
}

.hqsaga-mobile-menu.is-open {
    transform: translateX(0);

    visibility: visible;
}

.hqsaga-mobile-menu-inner {
    position: relative;

    width: 100%;
    height: 100%;

    padding: 30px 20px;
}

.hqsaga-mobile-menu-close {
    position: absolute;

    top: 20px;
    right: 20px;

    border: 0;

    background: transparent;

    font-size: 32px;
    line-height: 1;

    cursor: pointer;
}

.hqsaga-mobile-menu-list {
    margin: 70px 0 0;
    padding: 0;

    list-style: none;
}

.hqsaga-mobile-menu-list li {
    margin-bottom: 20px;
}

.hqsaga-mobile-menu-list a {
    color: #111;

    font-size: 20px;
    font-weight: 500;

    text-transform: uppercase;
}


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

@media (max-width: 786px) {

    .hqsaga-navigation {
        display: none;
    }

    .hqsaga-menu-toggle {
        display: flex;
    }

    .hqsaga-header-inner {
        min-height: 68px;
    }

    .hqsaga-logo {
        position: absolute;

        left: 50%;

        transform: translateX(-50%);
    }

    .hqsaga-header-actions {
        margin-left: auto;
    }

    .hqsaga-search-toggle {
        display: none;
    }


.hqsaga-logo img {
    display: block;
    max-width: 65px;
    height: auto;
}


    .hqsaga-header-actions {
        gap: 12px;
    }

    .hqsaga-logo a {
        font-size: 20px;
    }

   
}