body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #ffecd2, #c36fdb);
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 900px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

h1, h2 {
    text-align: center;
    color: #a84ce1;
}

#Product-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.product {
    
    background: #fff7f3;
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
}

.product span {
    display: block;
    font-size: 1.1em;
    margin-bottom: 10px;
}

.product button {
    background-color: #7f249b;
    border: none;
    color: white;
    padding: 10px 15px;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.2s;
}

.product button:hover {
    background-color: #d39823;
    transform: scale(1.05);
}

.hidden {
    display: none;
}

#checkout-btn {
    background-color: #00c6ff;
    border: none;
    color: white;
    padding: 10px 15px;
    border-radius: 25px;
    cursor: pointer;
}

#checkout-btn:hover {
    background-color: #009fcb;
}
