body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: #333;
}

/* Header */
header {
    background: black;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 15px 50px;
    align-items: center;
}
header .logo {
    font-size: 22px;
    font-weight: bold;
}
header nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
}
header nav a:hover {
    color: #ff4d6d;
}

/* Hero */
.hero {
    background: url('images/hero.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 100px 20px;
}
.hero h1 {
    font-size: 48px;
}
.hero button {
    background: #ff4d6d;
    color: white;
    padding: 10px 20px;
    border: none;
    font-size: 16px;
    cursor: pointer;
}
.hero button:hover {
    background: #e63b59;
}

/* Products */
.products {
    padding: 50px;
    text-align: center;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.product {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 5px;
}
.product img {
    max-width: 100%;
    border-radius: 5px;
}
.product button {
    background: black;
    color: white;
    padding: 8px 15px;
    border: none;
    margin-top: 10px;
    cursor: pointer;
}
.product button:hover {
    background: #ff4d6d;
}

/* Footer */
footer {
    background: black;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 50px;
}
