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

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    padding: 1rem;
}

header {
    text-align: center;
    margin-bottom: 2rem;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.products {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    width: 300px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.card h2 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.price {
    font-weight: bold;
    margin-top: 0.5rem;
    font-size: 1.2rem;
    color: #006600;
}

.waitlist {
    background: #fff;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.waitlist input[type="email"] {
    width: 80%;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.waitlist button {
    padding: 0.5rem 1rem;
    background: #006600;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.waitlist button:hover {
    background: #004400;
}

@media (max-width: 600px) {
    .products {
        flex-direction: column;
        align-items: center;
    }
    .card {
        width: 90%;
    }
}
