/* final.css */

body {
font-family: Verdana, Geneva, Tahoma, sans-serif;
background-color: #FFF0F5; /* light lavender */
color: #333;
padding: 20px;
}


h1 {
    text-align: center;
    font-size: 35px;
    color: #ff8bbd;
    text-shadow: 2px 2px #ffe3f1;
    font-family: "Comic Sans MS", "Chalkboard SE", cursive;
}

form {
    background: white;
    width: 550px;
    margin: auto;
    padding: 20px;
    border-radius: 20px;
    border: 3px solid #ffd5e5;
    box-shadow: 0 0 15px rgba(255, 182, 193, 0.5);
}


fieldset {
border: 2px solid #FFDAB9; /* peach border */
border-radius: 10px;
padding: 15px;
margin-bottom: 20px;
background-color: #FFF8DC; /* light cream */
}


label {
display: inline-block;
margin-bottom: 10px;
}


input[type=text], textarea {
padding: 5px;
border-radius: 5px;
border: 1px solid #ccc;
}


textarea {
resize: none;
}


button {
background: #ffb7dd;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}


button:hover {
background-color: #FF69B4;
}


/* Cookie icons next to checkboxes */
.cookie-label {
display: flex;
align-items: center;
margin-bottom: 8px;
}


.cookie-label img {
width: 25px;
height: 25px;
margin-right: 8px;
}

/* Optional: small spacing for quantity inputs */
.qty {
width: 30px;
text-align: center;
}