.custom-shop-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 30px;
    font-family: "Lato", sans-serif;
}

.shop-search-wrapper {
    flex: 1;
    min-width: 0;
}

.shop-product-search {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: stretch;
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 4px;
    overflow: hidden;
    margin: 0;
}

.shop-search-input {
    flex: 1;
    height: 50px !important;
    margin: 0 !important;
    padding: 0 14px !important;
    border: 0 !important;
    outline: none !important;
    box-shadow: none !important;
    background: #fff !important;
    color: #333;
    font-family: "Lato", sans-serif !important;
    font-size: 14px !important;
    font-weight: 400;
    min-width: 500px !important;
    width: 100%;
}

.shop-search-input::placeholder {
    color: #777;
    opacity: 1;
}

.shop-category-select {
    width: 180px;
    min-width: 180px;
    height: 50px !important;
    margin: 0 !important;
    padding: 0 32px 0 14px !important;
    border: 0 !important;
    border-left: 1px solid #ddd !important;
    outline: none !important;
    box-shadow: none !important;
    background-color: #fff !important;
    color: #777;
    font-family: "Lato", sans-serif !important;
    font-size: 12px !important;
    font-weight: 400;
    cursor: pointer;
    margin-right: 15px !important;
}

.shop-search-button {
    width: 47px;
    min-width: 47px;
    height: 50px;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #ffd400 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.shop-search-button:hover {
    background: #ffd400 !important;
}

.shop-search-button svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: #111;
    stroke-width: 1.8;
    stroke-linecap: round;
}


.shop-header-icon {
    position: relative;
    width: 43px;
    min-width: 43px;
    height: 50px;
    margin: 0;
    padding: 0;
    border-radius: 6px;
    background: #ffd400;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
}

.shop-header-icon:hover {
    background: #ffd400;
}

.shop-header-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: #111;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.wishlist-count,
.cart-count {
    position: absolute;
    top: -7px;
    right: -7px;
    min-width: 19px;
    height: 19px;
    padding: 0 5px;
    border-radius: 50%;
    background: #fff;
    color: #222;
    font-family: "Lato", sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: 19px;
    text-align: center;
    box-shadow: 0 0 0 1px #ddd;
}


.shop-cart-box {
    position: relative;
    min-width: 100px;
    height: 50px;
    margin: 0;
    padding: 0 13px;
    border-radius: 6px;
    background: #ffd400;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #111 !important;
    text-decoration: none !important;
    font-family: "Lato", sans-serif;
}

.shop-cart-box:hover {
    background: #ffd400;
    color: #111 !important;
}

.shop-cart-box svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: #111;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cart-total {
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

@media (max-width: 1199px) {

    .shop-search-input {
        min-width: 350px !important;
    }

}

@media (max-width: 991px) {

    .custom-shop-header {
        gap: 20px;
    }

    .shop-category-select {
        width: 145px;
        min-width: 145px;
    }

    .shop-cart-box {
        min-width: 85px;
    }

     .shop-search-input {
        min-width: 180px !important;
    }

}

@media (max-width: 767px) {

    .custom-shop-header {
        flex-wrap: wrap;
    }

    .shop-search-wrapper {
        flex: 100%;
        width: 100%;
    }

    .shop-header-icon {
        width: 43px;
        min-width: 43px;
    }

    .shop-cart-box {
        flex: 1;
    }

    .shop-search-wrapper {
        display: none;
    }

}

@media (max-width: 480px) {

    .shop-category-select {
        display: none;
    }

    .shop-search-input {
        font-size: 12px !important;
    }

}