* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f4f4f4;
    color: #333;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 40px;
}

h1 {
    font-size: 2rem;
    color: #e54d26;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.2s ease;
}

.product-card:hover {
    transform: scale(1.03);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: 8px;
}

.product-card h2 {
    margin: 15px 0 10px;
    font-size: 1.2rem;
    color: #222;
}

.product-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.product-card a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #e54d26;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.2s ease;
}

.product-card a:hover {
    background-color: #c43f1d;
}

footer {
    margin-top: 50px;
    text-align: center;
    font-size: 0.9rem;
    color: #777;
}
