/* MAIN SECTION */

.products-section {
    padding: 20px 20px;
    background: #f7f8fa;
}

.section-title {
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 42px;
    font-weight: 900;
    color: #222;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.section-title::after {
    content: "";
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #ffb300, #ff5722);
    display: block;
    margin: 10px auto 0;
    border-radius: 5px;
}


/* GRID */

.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}


/* PRODUCT CARD */

.product-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin: 0;
    padding: 0;
}


/* CONTENT */

.item-content {
    padding: 15px;
}

.item-content h3 {
    font-size: 16px;
    font-weight: 500;
    color: #222;
    margin-bottom: 4px;
}

.item-content .desc {
    font-size: 12px;
    overflow: hidden;
    color: #555;
    margin-bottom: 4px;
}

.item-content .price {
    font-size: 18px;
    font-weight: 800;
    color: #28a745;
    margin-bottom: 4px;
}


/* BUTTON */

.order-btn {
    width: 100%;
    display: block;
    text-align: center;
    padding: 10px 0;
    background: linear-gradient(90deg, #ff5722, #ff9800);
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s ease;
}

.order-btn:hover {
    opacity: 0.9;
}


/* RESPONSIVE */

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
        margin-left: 10px;
    }
}