.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 20px;
}

.product-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
    text-align: center;
}

.product-card:hover {
    transform: scale(1.03);
}

.product-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.cta-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: black;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.cta-button:hover,
.cta-button:focus {
    background-color: orange;
    color: white;
}
.product-category-group>h2 {
    text-align: center;
    font-size: 1.8rem;
    color: #222;
    margin-top: 40px;
    margin-bottom: 20px;
}
.product-listing>h1 {
    text-align: center;
    font-size: 2.2rem;
    margin-top: 50px;
    margin-bottom: 30px;
    color: #111;
}