
/* Grid Layout */
.product-container{
    display:grid;
    grid-template-columns: repeat(5, 1fr);
    gap:15px;
    padding:20px;
}

/* Card */
.product-card{
    text-align:center;
}

/* Image */
.product-card img{
    width:100%;
    height:400px;
    object-fit:cover;
    border-radius:0; /* IMPORTANT: no radius */
}

.product-card a{
    text-decoration:none;
}
/* Product Name */
.product-name{
    margin-top:10px;
    font-size:14px;
    font-weight:500;
    color:#000;
}
.top-bar{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 30px;
    border-bottom:1px solid #ddd;
    background:#fff;
}

/* Left Big Title */
.left-title{
    font-size:28px;
    font-weight:bold;
    text-transform:uppercase;
     font-family: 'Playfair Display', serif;
}

/* Right Breadcrumb */
.right-breadcrumb{
    font-size:14px;
    color:#777;
}

.right-breadcrumb a{
    text-decoration:none;
    color:#555;
}

.right-breadcrumb a:hover{
    color:black;
}
.result-count {
    max-width: 1200px;
    margin: 10px auto 20px;
    font-size: 14px;
    color: #555;
    padding: 0 10px;
}
/* No Product Found */
.no-product {
    text-align: center;
    padding: 20px 20px;
    background: #f8f8f8;
    margin-top: 20px;
}

.no-product i {
    font-size: 80px;
    color: #dcdcdc;
}

.no-product p {
    color: #777;
    font-size: 16px;
}


/* ================= TABLET ================= */
@media (max-width:1024px){
    .product-container{
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ================= MOBILE ================= */
@media (max-width:600px){

    /* 2 cards per row */
    .product-container{
        grid-template-columns: repeat(2, 1fr);
        gap:10px;
        padding:10px;
    }

    /* reduce image height */
    .product-card img{
        height:300px;
          object-fit:contain;
            
    }

    /* top bar responsive */
    .top-bar{
        flex-direction:column;
        align-items:flex-start;
        gap:8px;
        padding:15px;
    }

    .left-title{
        font-size:20px;
    }

    .right-breadcrumb{
        font-size:12px;
    }
}

