.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
    padding: 20px 0;
}

.product-card {
    display: block;
    text-align: center;
    padding: 15px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transition: transform .3s, box-shadow .3s;
    text-decoration: none;
    color: #000;
}

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

.product-img {
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    overflow: hidden;
    border-radius: 10px;
}

.product-img img {
    width: 70%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.product-name {
    margin-top: 10px;
    font-weight: 600;
    font-size: 1rem;
}

.product-price {
    color: #d4af37;
    font-weight: 700;
    margin-top: 5px;
}


.gender_title{
    margin-left: 20px;
}