/* ==========================================
   AEPL PRODUCT SELECTOR
========================================== */

.aepl-product-selector{
    margin:60px auto;
}

.aepl-selector-header{
    text-align:center;
    max-width:760px;
    margin:0 auto 35px;
}

.aepl-label{
    display:inline-block;
    color:#b61f2a;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:10px;
}

.aepl-selector-header h2{
    margin:0 0 15px;
}

.aepl-selector-header p{
    margin:0;
    color:#666;
}




/* ================= BOX ================= */

.aepl-selector-box{

    background:#fff;

    border:1px solid #e6e6e6;

    border-radius:8px;

    padding:30px;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

}




/* ================= GRID ================= */

.aepl-selector-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

    align-items:end;

}




/* ================= FIELD ================= */

.aepl-field{

    display:flex;

    flex-direction:column;

}

.aepl-field label{

    font-weight:600;

    margin-bottom:8px;

}

.aepl-field select{

    width:100%;

    height:48px;

    padding:0 14px;

    border:1px solid #ddd;

    border-radius:5px;

    background:#fff;

}

.aepl-field select:disabled{

    background:#f5f5f5;

    cursor:not-allowed;

}

.aepl-field select:focus{

    outline:none;

    border-color:#b61f2a;

}




/* ================= BUTTON ================= */

.aepl-button-wrap{

    justify-content:flex-end;

}

#aeplFindProducts{
    width:100%;
    background:#e42238!important;
    border:1px solid #e42238;
    color:#fff;
    border-radius:5px;
    cursor:pointer;
    transition:all .25s ease;
}

#aeplFindProducts:hover{
    background:#c91d31!important;
    border-color:#c91d31;
}


.aepl-product-buttons a,
.aepl-product-buttons a:link,
.aepl-product-buttons a:visited,
.aepl-product-buttons .fusion-button,
.aepl-product-buttons .fusion-button-default,
.aepl-product-buttons .fusion-button-default span{
    background:#e42238 !important;
    background-image:none !important;
    border-color:#e42238 !important;
    color:#fff !important;
}

.aepl-product-buttons a:hover,
.aepl-product-buttons .fusion-button:hover{
    background:#c91d31 !important;
    border-color:#c91d31 !important;
    color:#fff !important;
}

/* ================= RESULTS ================= */

.aepl-results{

    margin-top:35px;

}

.aepl-results-title{

    font-size:18px;

    font-weight:700;

    margin-bottom:20px;

}




/* ================= PRODUCT CARD ================= */

.aepl-product-card{

    border:1px solid #e5e5e5;

    border-left:4px solid #b61f2a;

    border-radius:6px;

    padding:20px;

    margin-bottom:15px;

    background:#fff;

}

.aepl-product-card h4{

    margin:0 0 15px;

}

.aepl-product-buttons{

    display:flex;

    gap:10px;

    flex-wrap:wrap;

}




/* ================= TABLET ================= */

@media(max-width:1024px){

.aepl-selector-grid{

grid-template-columns:repeat(2,1fr);

}

}




/* ================= MOBILE ================= */

@media(max-width:768px){

.aepl-selector-grid{

grid-template-columns:1fr;

}

.aepl-selector-box{

padding:22px;

}

.aepl-product-buttons{

flex-direction:column;

}

.aepl-product-buttons a{

width:100%;

text-align:center;

}

}