
/*.product-category-extra-content*/

.product-category-extra-content{
    padding-top: 60px;
    position: relative;
    display: block;
    float: left;
    width: 100%;
}

.category-content-item{
    border:1px solid #e5e5e5;
    border-radius:12px;
    overflow:hidden;
    margin-bottom:16px;
    background:#fff;
}

.category-content-title{
    margin:0;
    padding:20px 60px 20px 20px;
    cursor:pointer;
    position:relative;
    font-size:20px;
    line-height:1.4;
    transition:all .3s ease;
}

.category-content-title:hover{
    background:#f8f8f8;
}

.category-content-title:after{
    content:"+";
    position:absolute;
    right:20px;
    top:50%;
    transform:translateY(-50%);
    font-size:28px;
    font-weight:300;
    transition:all .3s ease;
}

.category-content-item.active .category-content-title:after{
    transform:translateY(-50%) rotate(45deg);
}

.category-content-description{
    display:none;
    padding:0 20px 20px;
}

.category-content-description > *:first-child{
    margin-top:0;
}

.category-content-description > *:last-child{
    margin-bottom:0;
}


/*.choose-right-container*/

.choose-right-container {
    margin-bottom:40px;
}

.choose-right-container__header{
    margin-bottom:30px;
}

.choose-right-container__items {
    display:grid;
    grid-template-columns:repeat(1,1fr);
    gap:15px;
}
@media (min-width: 640px) and (max-width: 1024px){
    .choose-right-container__items{
        grid-template-columns:repeat(2,1fr);
    }
}
@media (min-width: 1024.9px){
    .choose-right-container__items{
        grid-template-columns:repeat(3,1fr);
    }
}
.choose-right-container__item{
    padding:20px;
    border:1px solid #e5e5e5;
    border-radius:8px;
}

.choose-right-container__title{
    margin-bottom:10px;
}

/*.related-categories-section*/

.related-categories-section{
    margin:60px 0;
}

.related-categories-heading{
    margin-bottom:30px;
    text-align:center;
}
.related-categories-grid{
    display:grid;
    grid-template-columns:repeat(1,1fr);
    gap:15px;
}
@media (min-width: 640px) and (max-width: 1024px){
    .related-categories-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media (min-width: 1024.9px){
    .related-categories-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

.related-category-card{
    padding:24px;
    border:1px solid #e5e5e5;
    border-radius:12px;
}

.related-category-title{
    margin-bottom:15px;
}

.related-category-button{
    background-color: #ae8b31;
    border-radius: 5px;
    display:inline-block;
    color: #fff;
    font-size: 12px;
    padding: 11px 16px;
    margin-top:15px;
    text-decoration: none;
}

.related-category-button:hover{
    color: #f7f7f7;
    background-color: #f5b14b;
    text-decoration: none;
}