*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}

body{
background:#f6f6fb;
color:#222;
text-align:center;
}

/* HEADER */

header{
background:#6A0DAD;
color:white;
padding:25px;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
}

header h1{
font-size:32px;
letter-spacing:1px;
}

header p{
opacity:0.9;
margin-top:5px;
}

/* PRODUCTS GRID */

.products{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:35px;
padding:50px 30px;
}

/* PRODUCT CARD */

.product{
width:240px;
background:white;
border-radius:12px;
padding:18px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
cursor:pointer;
transition:all 0.3s ease;
}

.product:hover{
transform:translateY(-6px);
box-shadow:0 18px 40px rgba(0,0,0,0.15);
}

.product img{
width:100%;
border-radius:10px;
margin-bottom:10px;
}

.product h3{
font-size:18px;
margin:8px 0;
}

.product p{
font-size:18px;
font-weight:bold;
color:#6A0DAD;
}

/* BUTTONS */

button{
background:#FFD500;
color:#222;
border:none;
padding:12px 22px;
font-size:16px;
border-radius:8px;
cursor:pointer;
font-weight:bold;
transition:0.3s;
}

button:hover{
background:#ffc400;
transform:scale(1.05);
}

/* PRODUCT PAGE */

input{
padding:10px;
width:80px;
font-size:16px;
border-radius:6px;
border:1px solid #ccc;
text-align:center;
margin-top:10px;
}

/* RECEIPT */

.receipt{
background:white;
width:350px;
margin:40px auto;
padding:25px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
text-align:left;
}

.receipt h2{
text-align:center;
color:#6A0DAD;
margin-bottom:20px;
}

.receipt p{
margin:10px 0;
font-size:16px;
}

.total{
font-size:20px;
font-weight:bold;
color:#6A0DAD;
margin-top:15px;
}

/* MESSAGE TEXT */

.note{
margin-top:25px;
font-size:14px;
color:#666;
}