/* ===========================
   FEATURED PRODUCTS
=========================== */

.featured-products-section{
    padding:80px 0;
    border-top:1px solid rgba(255,184,0,.15);
    border-bottom:1px solid rgba(255,184,0,.15);
}

.featured-products-section .container{
    max-width:1280px;
    margin:0 auto;
    padding:0 20px;
}

/* Heading */

.featured-products-section .section-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:40px;
}

.featured-products-section h2{
    color:#fff;
    font-size:34px;
    font-weight:700;
    text-transform:uppercase;
    position:relative;
    margin:0;
}

.featured-products-section h2::after{
    content:"";
    display:inline-block;
    width:80px;
    height:3px;
    background:#ffb800;
    margin-left:15px;
    vertical-align:middle;
}

/* GRID */

.products-grid{
    display:grid !important;
    grid-template-columns:repeat(4,1fr) !important;
    gap:30px;
}

/* IMPORTANT */

.products-grid > .views-row{
    width:auto !important;
    margin:0 !important;
    float:none !important;
    display:block !important;
}

/* CARD */

.product-card{
    background:#181a25;
    border:1px solid rgba(255,184,0,.15);
    border-radius:14px;
    overflow:hidden;
    transition:.3s;
    height:100%;
}

.product-card:hover{
    transform:translateY(-8px);
    border-color:#ffb800;
    box-shadow:0 0 25px rgba(255,184,0,.2);
}

/* IMAGE */

.product-image{
    height:260px;
    overflow:hidden;
    background:#111;
    margin-top: 25px;
}

.product-image img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
    transition:.4s;
}

.product-card:hover img{
    transform:scale(1.05);
}

/* BODY */

.product-body{
    padding:20px;
}

.product-title{
    color:#fff;
    font-size:20px;
    margin-bottom:12px;
    font-weight:600;
}

.product-title div{
    color:#fff;
}

.product-price{
    color:#ffb800;
    font-size:22px;
    font-weight:700;
    margin-bottom:20px;
}

.product-price > div > div:first-child{
    display:none;
}

.product-cart input[type="submit"],
.product-cart .button{
    width:100%;
    background:#ffb800;
    color:#111;
    border:none;
    padding:12px;
    border-radius:8px;
    font-weight:700;
    cursor:pointer;
}

.product-cart .form-item{
    margin-bottom:12px;
}

/* Responsive */

@media(max-width:1100px){

.products-grid{
    grid-template-columns:repeat(3,1fr) !important;
}

}

@media(max-width:768px){

.products-grid{
    grid-template-columns:repeat(2,1fr) !important;
}

}

@media(max-width:576px){

.products-grid{
    grid-template-columns:1fr !important;
}

}
