/* =========================================================
   MAIN SELECTOR
========================================================= */
.e4a-selector {
    width:100%;
    background:#ffffff;
    font-family:inherit;
}
.e4a-selector-title {
    text-align:center;
    font-size:42px;
    font-weight:500;
    margin-bottom:50px;
    color:#222;
}
/* =========================================================
   STEP NAVIGATION
========================================================= */
.e4a-steps {
    display:flex;
    justify-content:center;
    max-width:930px;
    margin:0 auto;
}
.e4a-step {
    width:50%;
    min-height:90px;
    padding:18px 30px;
    display:flex;
    align-items:flex-start;
    gap:15px;
    color:#a5aaad;
    cursor:pointer;
    transition:.25s ease;
}
.e4a-step.active {
    background:#eeeeee;
    color:#222;
}
.e4a-step.completed {
    color:#222;
}
.e4a-loading {
    font-size:30px;
    line-height:1;
}
.e4a-step strong {
    display:block;
    font-size:18px;
    margin-bottom:8px;
}
.e4a-step span {
    font-size:15px;
}
/* =========================================================
   OPTION PANEL
========================================================= */
.e4a-panel {
    background:#eeeeee;
    padding:40px 7%;
}
/* =========================================================
   ATTRIBUTE OPTION GRID
========================================================= */
.e4a-options {
    display:grid;
    grid-template-columns:
    repeat(6, minmax(150px,1fr));
    gap:15px;
    max-width:100%;
    margin:auto;
    justify-content: stretch;
}
/* =========================================================
   ATTRIBUTE CARD
========================================================= */
.e4a-option {
    width: 100%;
    border:none;
    padding:0;
    background:#fff;
    min-height:220px;
    border-radius:8px;
    overflow:hidden;
    cursor:pointer;
    display:flex;
    flex-direction:column;
    box-shadow:
    0 5px 15px rgba(0,0,0,.08);
    transition:
    transform .25s ease,
    box-shadow .25s ease;
}
.e4a-option:hover {
    transform:translateY(-5px);
    box-shadow:
    0 10px 25px rgba(0,0,0,.15);
}
.e4a-option.selected {
    outline:
    3px solid #ffa727;
}

/* =========================================================
   ICON AREA
========================================================= */
.option-icon {
    display:flex;
    justify-content:center;
    align-items:center;
    height: 180px;
    width: 100%;

}
.attribute-icon, .attribute-png-icon  {
    width:100px;
    height:100px;
    display:flex;
    justify-content:center;
    align-items:center;
}

.attribute-png-icon {
    width:80%;
    height:80%;
    object-fit:contain;
}
   


/* =========================================================
   ATTRIBUTE NAME
========================================================= */
.option-name {
    margin-top:auto;
    width:100%;
    background:#ffa727;
    padding:12px 5px;
    color:#111;
    font-size:15px;
    text-align:center;
}
/* =========================================================
   PRODUCT RESULTS
========================================================= */
#e4a-product-results {
    max-width:1200px;
    margin:60px auto;
}
/* =========================================================
   PRODUCT GRID
========================================================= */
.e4a-products-grid {
    display:grid;
    grid-template-columns:
    repeat(3,1fr);
    gap:30px;
    align-items:stretch;
}

/* =========================================================
   PRODUCT CARD
========================================================= */
.e4a-product-card {
    background:#fff;
    border:1px solid #eeeeee;
    border-radius:10px;
    overflow:hidden;
    text-decoration:none;
    color:inherit;
    display:flex;
    flex-direction:column;
    height:100%;
    transition:.25s ease;
}
.e4a-product-card:hover {
    transform:translateY(-5px);
    box-shadow:
    0 10px 30px rgba(0,0,0,.12);
}
/* =========================================================
   PRODUCT IMAGE
========================================================= */
.product-image {
    height:250px;
    padding:25px;
    display:flex;
    justify-content:center;
    align-items:center;
}
.product-image img {
    max-width:100%;
    max-height:210px;
   object-fit:contain;
}
/*=======================================================
   PRODUCT INFORMATION
========================================================= */
.product-information {
    padding:25px;
    display:flex;
    flex-direction:column;
    flex-grow:1;
}
.product-information h3 {
    font-size:22px;
    margin:0 0 15px;
    color:#222;
}
.product-description {
    color:#666;
    line-height:1.5;
    flex-grow:1;
}
.view-product {
    margin-top:25px;
    font-weight:600;
    color:#222;
}
/* =========================================================
   LOADING / EMPTY
========================================================= */
.e4a-loading,.e4a-no-products {
    padding:50px;
    text-align:center;
    font-size:18px;
}
/* =========================================================
   TABLET
========================================================= */
@media(max-width:980px){
    .e4a-options {
        grid-template-columns:
        repeat(3,1fr);
    }
    .e4a-products-grid {
        grid-template-columns:
        repeat(2,1fr);
    }
}
/* =========================================================
   MOBILE
========================================================= */
@media(max-width:600px){
    .e4a-selector-title {
        font-size:30px;
    }
.e4a-steps {
       flex-direction:column;
    }
    .e4a-step {
        width:100%;
    }
    .e4a-options {
        grid-template-columns:
        repeat(2,1fr);
    }
    .e4a-products-grid {
        grid-template-columns:
        1fr;
    }
}