@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap');


/* Section */
.products-section{
    padding:50px 20px;
    max-width:1600px;
    margin:auto;
}

.products-title{
    text-align:center;
    font-size:30px;
    font-weight:900;
    margin-bottom:35px;
    color:#000000;
    font-family: 'League Spartan', sans-serif;
}

/* Grid Layout */
.products-grid{
    display:grid;
    gap:20px;
}

/* Desktop & Laptop - 6 Cards */
@media(min-width:1200px){
    .products-grid{
        grid-template-columns: repeat(6, 1fr);
    }
}

/* Tablet */
@media(min-width:768px) and (max-width:1199px){
    .products-grid{
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile */
@media(max-width:767px){
    .products-grid{
        grid-template-columns: 1fr;
    }
}

/* Card */
.products-card{
    background:#ffffff;
    border-radius:14px;
    padding:28px 18px;
    text-align:center;
    box-shadow:0 8px 24px rgba(0,0,0,0.06);
    transition:all .3s ease;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.products-card:hover{
    transform:translateY(-6px);
    box-shadow:0 14px 36px rgba(0,0,0,0.12);
}

.products-card img{
    width:180px;
    border-radius:5px;
    margin:0 auto 16px;
}

.products-card h3{
    font-size:17px;
    margin-bottom:6px;
    color:#0f172a;
}

.products-card p{
    font-size:13.5px;
    color:#64748b;
    margin-bottom:20px;
}

/* Button */
.products-card a{
    display:inline-block;
    padding:9px 18px;
    background:#2563eb;
    color:#fff;
    font-size:13.5px;
    border-radius:7px;
    text-decoration:none;
    transition:background .3s ease;
}

.products-card a:hover{
    background:#1e40af;
}

/* Small Mobile Text */
@media(max-width:480px){
    .products-title{
        font-size:22px;
    }
}