@import url(../Features/navBar.css);
@import url(../Features/footer.css);
@import url(../Features/products.css);
@import url(../Features/homeSection.css);
@import url(../Features/service.css);
@import url(../Features/selectBox.css);
@import url(../Features/loader.css);
@import url(../defaults.css);
@import url(../Features/pagination.css);

/* 
===================
  #SHOP--filters
=================
*/

.shop-filter {
    background-color: #F9F1E7;
    padding: 3rem 0 3rem 0;
    height: 15rem;
    transition: all 0.5s ease-in-out;
}

.shop-filter--active {
    height: 20rem;
    padding: 3rem 0 3rem 0;
}

.shop-filters {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--primary-font);
}

.shop-filter__box-icon {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.shop-filter__box-icon::after {
    content: "";
    width: 0.2rem;
    height: 4rem;
    background-color: var(--gray-color);
}

.shop-filters__result-text-box-icon {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.shop-filter__icon-name-filter {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.shop-filter__name {
    font-size: 2rem;
}

.shop-filter__input-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;

}

.shop-filter__input-box--number,
.shop-filter__input-box--text {
    width: 5.5rem;
    height: 5.5rem;
    background-color: #ffff;
    appearance: none;

}

.shop-filter__input-box--text {
    width: 18.8rem;
}

.shop-filter__input {
    outline: none;
    border: none;
    background-color: transparent;
    width: 100%;
    height: 100%;
    font-size: 2rem;
    color: var(--gray-color);
    appearance: none;
    -webkit-appearance: none;
}

.shop-filter__input::placeholder {
    font-size: 2rem;
    color: var(--gray-color);
}

.shop-filter__input--text {
    width: 18.8rem;
}

.shop-filter__svg-icon {
    cursor: pointer;
}

.shop-filter__svg-icon--active {
    fill: var(--Primary-color);
}

.shop-filter__svg-icon-filter {
    cursor: pointer;
}

/* 
====================
  #Box-filter
====================
*/

.container-box-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.box-filter__select--active {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 30rem;
    height: 5rem;
    opacity: 1;
    visibility: visible;
    background-color: #f9f1e7;
    box-shadow: 0.5rem 0.5rem 1rem gray;
    color: var(--Primary-color);
    border-radius: 0.6rem;
    padding: 0 1.5rem;
    margin-right: 2rem;
    transition: opacity 1s ease-in;
}

.custom-selected,
.arrow-down {
    color: var(--Primary-color);
}

.custom-options {
    background-color: #f9f1e7;
    box-shadow: 0.5rem 0.5rem 1rem gray;
    top: 4.8rem;
}

/* 
====================
  #SHOP--products
====================
*/
.product-box-col {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}

.img-box-overlay-col {
    width: 60%;
}

.product-Introductions-col {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.product-name-col {
    font-size: 3.5rem;
}

.product-Introduction-col {
    font-size: 2rem;
}

.product-price-col {
    font-size: 2.8rem;
}

.product-discountPrice-col {
    font-size: 2.8rem;
}

.footer-Shop {
    margin-bottom: 2rem;
}