/* Header */
.header {
    background: #f8a134;
    padding: 1rem 0;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    position: relative;
    width: 100%;

}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100% !important;
    padding: 1rem 1rem;
    background: #f8a134;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-inner {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo img {
    height: 40px;
    margin-right: 0.5rem;
}

.logo .green {
    color: #72a31e;
}

.nav a {
    color: white;
    text-decoration: none;
    margin-left: 1.5rem;
    font-weight: 500;
}

.cart-wrapper {
    position: relative;
    cursor: pointer
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -10px;
    background: #ff5722;
    color: #fff;
    font-size: .7rem;
    border-radius: 50%;
    padding: 2px 6px;
    display: none
}

@media (max-width: 768px) {
    nav {
        display: none;
    }

    .cart-wrapper img {
        width: 30px;
        height: 30px;
    }

    .container {
        padding-inline: 10px;
    }
}