    :root {
        --header-offset: 115px;
    }

    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
        padding-bottom: 120px;
        box-sizing: border-box;
    }

    body {
        margin: 0;
        font-family: Arial, sans-serif;
        background: #0b1f3a;
        color: white;
        padding-top: var(--header-offset);
    }

    header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 20px;
        background: #08162a;
        height: 95px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        box-sizing: border-box;
        z-index: 100;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
    }

    ::selection {
        background-color: #000000;
        color: #ff9100;
    }

    ::-moz-selection {
        background-color: #000000;
        color: #ff9100;
    }

    .nav-left {
        display: flex;
        align-items: center;
        margin: 20px
    }

    .logo a {
        font-size: 35px;
        font-weight: bold;
        color: #ff9100;
        cursor: pointer;
        text-decoration: none;
        font-family: "Averia Gruesa Libre", system-ui;
        font-optical-sizing: auto;
        font-style: normal;
        font-variation-settings:
            "wdth" 100;
    }

    .nav-center {
        width: 50%;
        display: flex;
        justify-content: center;
    }

    .search-bar {
        display: flex;
        width: 60%;
    }

    .search-bar input {
        flex: 1;
        padding: 10px;
        border: none;
        font-size: 14px;
        outline: none;
        border-radius: 5px 0 0 5px;
    }

    .search-bar button {
        padding: 10px 15px;
        border: none;
        background: #ff9100;
        cursor: pointer;
        border-radius: 0 5px 5px 0;
        display: inline-flex;
        align-items: center;
        background-image: url(assets/search.png);
        justify-content: center;
        background-size: 25px;
        background-position: center;
        background-repeat: no-repeat;
        min-width: 54px;
    }

    .search-bar button span {
        color: #000000;
        font-size: 16px;
        line-height: 1;
    }

    .suggestions {
        position: absolute;
        top: 70%;
        width: 560px;
        background: #122b4d;
        border-radius: 0 0 8px 8px;
        display: none;
        flex-direction: column;
        max-height: 200px;
        overflow-y: auto;
        z-index: 1000;
        margin-top: 0;
        border-top: none;
    }

    .suggestion-item {
        padding: 10px;
        cursor: pointer;
        border: none;
        width: 100%;
        background: transparent;
        color: white;
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }

    .suggestion-item:hover {
        background: #ff9100;
        color: black;
    }

    .nav-right {
        display: flex;
        gap: 20px;
        font-size: 14px;
    }

    .dropdown {
        position: absolute;
        top: 40px;
        right: 0;
        background: #122b4d;
        padding: 15px;
        border-radius: 10px;
        width: 200px;
        display: none;
        flex-direction: column;
        align-items: center;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }

    .nav-item {
        text-align: center;
        cursor: pointer;
    }

    .nav-item span {
        font-size: 12px;
        color: lightgray;
        display: block;
    }

    .site-footer {
        background-color: #051224;
        color: white;
        padding: 60px 40px 120px 40px;
        border-top: 2px solid #ff9100;
        margin-top: 50px;
    }

    .footer-content {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .footer-column {
        flex: 1;
        min-width: 220px;
        max-width: 320px;
    }

    .footer-logo {
        color: #ff9100;
        font-size: 24px;
        margin-bottom: 15px;
    }

    .footer-column h4 {
        color: #ff9100;
        margin-bottom: 20px;
        font-size: 18px;
        text-transform: uppercase;
    }

    .footer-column ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-column ul li {
        margin-bottom: 10px;
    }

    .footer-column ul li a {
        color: lightgray;
        text-decoration: none;
        transition: color 0.3s;
    }

    .footer-column ul li a:hover {
        color: #ff9100;
    }

    .footer-bottom {
        text-align: center;
        margin-top: 40px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 14px;
        color: gray;
    }

    .payment-methods {
        margin-top: 10px;
        font-size: 18px;
        letter-spacing: 3px;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .nav-item strong a {
        color: inherit;
        text-decoration: none;
    }

    @media (max-width: 900px) {
        :root {
            --header-offset: 150px;
        }

        header {
            flex-wrap: wrap;
            height: auto;
            gap: 14px;
        }

        .nav-left,
        .nav-center,
        .nav-right {
            width: 100%;
            margin: 0;
        }

        .nav-center {
            order: 3;
        }

        .search-bar {
            width: 100%;
        }

        .suggestions {
            width: calc(100% - 40px);
            left: 20px;
            top: 116px;
        }

        .nav-right {
            justify-content: flex-end;
        }
    }

    @media (max-width: 640px) {
        /* :root {
        --header-offset: 165px;
    } */

        header {
            align-items: center;
            justify-content: space-between;
            padding: 16px 18px;
            gap: 18px;
        }

        .nav-left,
        .nav-right {
            width: auto;
            flex: 0 0 auto;
        }

        .nav-center {
            width: 100%;
            order: 3;
        }

        .nav-right {
            justify-content: flex-end;
            gap: 10px;
        }

        .nav-left {
            margin: 0;
        }

        .logo a {
            font-size: 30px;
        }

        .nav-item {
            min-width: 72px;
            padding: 4px 0;
        }

        .nav-item span {
            font-size: 11px;
        }

        .search-bar {
            min-height: 40px;
        }

        .search-bar input {
            min-width: 0;
            padding: 14px 12px;
        }

        .search-bar button {
            min-width: 58px;
        }

        .site-footer {
            padding: 40px 20px 120px 20px;
        }
    }