@import 'variables.css';

/*--------------------------------------------------------------
# Shop Index
--------------------------------------------------------------*/
@media (max-width: 768px){
    .shop .sidebar{
        display: none;
    }
}
.shop .sidebar h4{
    color: var(--color1);
    background: #FFD6D9;
    padding: 10px 20px;
    text-align: center;
    border-radius: 25px;
    margin-top: 20px;
    transition: 0.6s;
}
.shop .sidebar h4:hover{
    color: white;
    background: var(--color1);
}

.shop .sidebar .list-group .list-group-item, .shop .sidebar .list-group .list-group-item a{
    color: var(--color1);
    border: none;
    font-family: var(--font-secondary);
}

.shop .sidebar .list-group .list-group-item.active, .shop .sidebar .list-group .list-group-item.active a{
    background: none;
    color: #f97222;
    font-weight: bold;
}

.shop .sidebar .list-group .list-group-item a:hover{
    text-decoration: underline;
}

.shop .product{
    margin-top: 20px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}
@media (max-width: 768px){
    .shop .product{
        flex-wrap: wrap;
    }
}
.shop .product .about-product h2{
    color: var(--color1);
    padding: 20px 0;
    text-align: left;
}
@media (max-width: 768px){
    .shop .product .about-product h2{
        text-align: center;
    }
}
.shop .product .about-product .description{
    width: 80%;
    text-align: left;
}
@media (max-width: 768px){
    .shop .product .about-product .description{
        text-align: center;
    }
}
.shop .product .img-product{
    max-width: 100%;
    max-height: 277px;
}
.shop .list-products{
    margin: 30px 0;
    display: flex;
    justify-content: center;
    gap: 15px 10px;
    flex-wrap: wrap;
}
.shop .list-products .item-product{
    width: 210px;
    max-height: 450px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--color1);
    padding: 20px;
    border-radius: 10px;
    box-shadow:1px 8px 18px #00000026;
}
.shop .list-products .item-product .img-product{
    max-height: 120px;
}
.shop .list-products .item-product .name-product {
    text-align: center;
    font-size: 16px;
    padding: 20px 0 0;
    color: var(--color6);
    font-family: var(--font-secondary);
}
.shop .list-products .item-product .price-product{
    color: var(--color1);
    font-weight: 600;
}
.shop .list-products .item-product .btn-shop{
    border: 1px solid var(--color1);
    font-family: var(--font-secondary);
    padding: 5px 20px;
    border-radius: 10px;
    color: var(--color1);
    transition: 0.6s;
}
.shop .list-products .item-product .btn-shop:hover{
    background: var(--color1);
    color: white;
}
/*--------------------------------------------------------------
# Shop Show
--------------------------------------------------------------*/

.shop-show ul, .shop-show ol{
    font-family: var(--font-secondary);
}
.shop-show .product{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.shop-show .product .img-product{
    width: 30%;
}
.shop-show .product .optional-color{
    display: flex;
    gap: 10px;
}
.shop-show .product .optional-color img{
    width: 10%;
    background: white;
    border: 1px solid var(--color1);
    padding: 5px 15px;
    border-radius: 10px;
}
@media (max-width: 768px){
    .shop-show .product .optional-color img{
        width: 20%;
    }
}
.shop-show .product .optional-color img:hover{
    box-shadow: 0px 6px 11px #d53434a6;
}

.shop-show .desc-product .heading{
    color: var(--color6);
    font-weight: 600;
    padding: 20px 0;
}
.shop-show .desc-product .description ol, .shop-show .desc-product .description ul{
    padding-left: 20px;
}
.shop-show .desc-product .description ol, .shop-show .desc-product .description ul, .shop-show .desc-product .description li, .shop-show .desc-product .description p{
    font-size: 16px;
}
.shop-show .desc-product .price{
    color: var(--color1);
    font-weight: 600;
    font-size: 40px;
}
.shop-show .desc-product .market-links{
    display: flex;
    flex-wrap: wrap;
    margin: 10px 0;
    gap: 5px;
}
.shop-show .desc-product .market-links .shop-link{
    border: 1px solid red;
    padding: 10px 20px;
    color: red;
    gap: 10px;
    border-radius: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
    transition: 0.8s;
}
.shop-show .desc-product .market-links .shop-link:hover{
    background: white;
    box-shadow: 0px 6px 11px #d53434a6;
}
.shop-show .desc-product .market-links .shop-link img{
    max-height: 30px;
}
.shop-show .optional-chooice{
    margin: 20px 0;
    background: #FFE5E7;
    padding: 40px;
    width: 100%;
    border-radius: 10px;
}
.shop-show .optional-chooice h3{
    text-align: center;
    color: var(--color1);
    font-weight: 500;
}
.shop-show .optional-chooice .best-seller{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    gap: 20px;
    margin-top: 20px;
}
.shop-show .optional-chooice .best-seller .best-item{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background: white;
    border-radius: 20px;
    padding: 20px;
    max-width: 240px;
    min-height: 340px;
}
.shop-show .optional-chooice .best-item .name-product{
    font-size: 16px;
}
@media(max-width: 425px){
    .shop-show .optional-chooice .best-seller .best-item{
        min-width: 240px;
        min-height: 340px;
    }
}
.shop-show .best-seller div .name-product, .shop-show .best-seller div .price-product, .shop-show .best-seller div .btn-shop{
    text-align: center;
}

.shop-show .best-seller div .btn-shop{
    border: 1px solid #FAC33B;
    background: var(--color1);
    padding: 10px 20px;
    color: white;
    border-radius: 20px;
    transition: 0.8s;
}
.shop-show .best-seller div .btn-shop:hover{
    background: white;
    color: var(--color1);
}

.shop-show .optional-chooice .best-seller div .item-product{
    padding: 15px 35px;
    max-height: 180px;
}
