﻿


.section-title {
    position: relative;
    display: inline-block;
    font-size: 28px;
    font-weight: 700;
    color: #222;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding-bottom: 10px;
}

    .section-title span {
        color: #ff4d4d; /* Accent color */
    }

    .section-title::after {
        content: "";
        position: absolute;
        width: 60%;
        height: 4px;
        background: linear-gradient(90deg, #ff4d4d, #ff944d);
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 2px;
    }

.section-subtitle {
    margin-top: 10px;
    font-size: 14px;
    color: #777;
    letter-spacing: 2px;
}
.product-card {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: 0.3s;
}

    .product-card:hover {
        transform: translateY(-5px);
    }

    .product-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

    .product-card h4 {
        margin: 10px 0;
    }

