* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background: linear-gradient(to right, #ff6a00, #ee0979);
    color: white;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

header h1 {
    font-size: 2.5rem;
}

nav {
    background-color: white;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #ff6a00;
}

.hero {
    height: 400px;
    background: url('https://i.pinimg.com/736x/82/16/8d/82168db7333a60d0f1164c80e89b8c74.jpg') no-repeat center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.hero h2 {
    font-size: 3rem;
    background: rgba(0, 0, 0, 0.4);
    padding: 10px 20px;
    border-radius: 8px;
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 40px;
}

.card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.card:hover {
    transform: translateY(-10px);
}

.card img {
    width: 100%;
}

.card h3 {
    padding: 10px;
}

.card p {
    padding: 0 10px 10px;
    color: #777;
}

.card button {
    display: block;
    width: 90%;
    margin: 10px auto;
    padding: 10px;
    border: none;
    background: #ff6a00;
    color: white;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;

}

.card button:hover {
    background: #ee0979;
}

/* FOOTER */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 20px;
}
