<style>
/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
    font-family: 'Poppins', Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    margin: 0;
    padding: 0;
}

header {
    background-color: #ff6600; /* Brand color */
    color: #fff;
    text-align: center;
    padding: 20px 10px;
}

header h1 {
    margin: 0;
    font-weight: 600;
}

nav a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

nav a:hover {
    color: #ffcc00;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 15px;
    width: 260px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.product-card img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}

.product-card h3 {
    font-size: 16px;
    margin: 10px 0;
}

.product-card p {
    font-weight: bold;
    color: #ff6600;
}

.button {
    display: inline-block;
    background: #ff6600;
    color: #fff;
    padding: 8px 12px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 8px;
    transition: background 0.2s ease;
}

.button:hover {
    background: #e65c00;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 15px 10px;
    font-size: 14px;
}

footer a.social-icon {
    display: inline-block;
    margin: 0 8px;
    color: #fff;
    font-size: 20px;
    transition: color 0.2s ease;
}

footer a.social-icon:hover {
    color: #ff6600;
}

@media (max-width: 900px) {
    .product-grid {
        flex-direction: column;
        align-items: center;
    }
}
</style>
