.page-header {
    text-align: center;
    padding: 40px 20px;
    background-color: #f4f4f4;
    margin-top: 130px;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #1c1c1c;
}

.page-header p {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 40px 20px;
}

.product-card {
    display: block;
    background-color: white;
    border: 1px solid #e1e1e1;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    display: block;
    background-color: #f9f9f9;
    padding: 10px;
    border-bottom: 1px solid #eee;
}



.product-card h2 {
    font-size: 1.2rem;
    margin: 15px 10px;
    color: #333;
}
