body {
    background: black;
    font-family: 'IBM Plex Sans', sans-serif;
}

#wrapper {
    background: green;
}

.btn-primary {
    background: black;
}

.cart-products-count {
    color: white;
    font-size: 6px;
    background: rgba(240, 107, 154, 1);
    height: 16px;
    width: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    top: 5px;
    right: 20px;

}

#header .header-nav {
    border-bottom: none;
}

#search_widget form {
    display: flex;
    align-items: center;
    justify-content: center;
}

#search_widget form input {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 7px;
}

#search_widget form i {
    color: white;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 40px;
    background: rgba(240, 107, 154, 1);
    border-radius: 7px;
}

#header .header-top{
    padding-top: 0;
}

#custom-text{
    padding: 0;
    margin-bottom: 0;
}


.home-categories {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.category-item {
    width: 100%;
    height: 100%;
}

.category-item a img {
    border-radius: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 180px;
    max-height: 180px;
    margin-inline: auto;
}

.category-item a h3 {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    text-align: center;
}