html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
}

header {
    direction: ltr;
    text-align: left;
}

.header-fixed {
    background-color: black;
    box-shadow: 0 1px 1px #ccc;
    padding: 20px 0px;
    /* padding: 20px 40px; */
    height: auto;
    color: #ffffff;
    transition: top 0.3s;
    width: 100%;
}

.header-fixed .header-limiter {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.header-fixed .header-limiter h1 {
    font: normal 24px Cookie, Arial, Helvetica, sans-serif;
    margin: 0;
    line-height: 1;
}

.header-fixed .header-limiter h1 span {
    color: orange;
}

.header-fixed .header-limiter h1 a {
    /* color: white; */
    text-decoration: none;
    color: orange;

}

.header-fixed .header-limiter nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.header-fixed .header-limiter nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    padding: 5px 10px;
    transition: color 0.3s ease;
}

.header-fixed .header-limiter nav a:hover {
    color: orange;
}

.cart-icon {
    font-size: 1.2rem;
}

.search-container {
    display: flex;
    align-items: center;
    border: 1px solid #C5CBD5;
    border-radius: 3px;
    background: #FFFFFF;
    padding: 5px 10px;
    flex-grow: 1;
    max-width: 400px;
}

.input-inset {
    flex: 1;
    border: none;
    outline: none;
    padding: 5px;
    font-size: 1rem;
    background: transparent;
}

.input-inset::placeholder {
    color: #838D99;
}

#search-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

#search-button img {
    width: 20px;
    height: 20px;
    pointer-events: none;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .header-fixed .header-limiter {
        justify-content: space-evenly;
    }
}

@media (max-width: 900px) and (min-width: 550px) {
    .header-fixed .header-limiter nav {
        display: flex;
        align-items: center;
    }

    .search-container {
        padding: 0px;
    }

    .input-inset {
        font-size: 0.8rem;
        width: 5rem;
    }
}

/* @media (max-width: 550px) and (min-width: 481px) { */
@media (max-width: 550px) {
    .header-fixed {
        padding: 10px 0px;
    }

    .header-fixed .header-limiter {
        flex-direction: column;
        align-items: center;
    }

    .header-fixed .header-limiter h1 {
        text-align: center;
        width: 100%;
        margin-bottom: 10px;
    }

    .search-container {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 10px;
        margin: 0% 10%;
    }

    /* #navbar>a:first-child {
        display: none;
    } */

    .header-fixed .header-limiter nav {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 10px;
    }

    .icon-container {
        display: flex;
        justify-content: center;
        width: 100%;
    }
}