.header-section {
    width: 100%;
    font-family: Arial, sans-serif;
    border-bottom: 1px solid #d6d3c4;
}

.top-bar {
    background-color: #584a40;
    color: #ffffff;
    text-align: center;
    padding: 10px 15px;
    font-size: 17.55px;
    font-weight: 700;
}

.main-header {
    background-color: #fffae6;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    min-height: 80px;
}

.logo-wrapper img {
    display: block;
    max-height: 120px;
    width: auto;
}

.cart-icon {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

@media (max-width: 992px) {
    .logo-wrapper img {
        max-height: 40px;
    }

    .cart-icon svg {
        width: 25px !important;
        height: 25px !important;
    }
}