/* ===== PIZZA FORM STYLES ===== */
#pizzaForm {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    font-family: 'Arial', sans-serif;
}

/* ===== CUSTOMER DETAILS ===== */
.customer-box h3,
.customer-box h4 {
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.customer-box label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #555;
}

.customer-box input[type="text"],
.customer-box input[type="email"] {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    transition: border 0.3s;
}

.customer-box input[type="text"]:focus,
.customer-box input[type="email"]:focus {
    border-color: #ff6b6b;
    outline: none;
}

.row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.row .col {
    flex: 1;
    min-width: 200px;
}

.full {
    width: 100%;
}

/* ===== PIZZA GRID ===== */
.pizza-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin: 30px 0;
}
/* ===== PIZZA CARD (Image Top, Other Bottom) ===== */
.pizza-card {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column; /* Stack image on top */
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.pizza-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.pizza-card img {
    width: 100%;
    height: 160px;
    object-fit: contain;
    border-radius: 12px;
    margin-bottom: 12px;
}

.pizza-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.pizza-card .pizza-controls {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
}

.pizza-card .pizza-check {
    transform: scale(1.2);
    cursor: pointer;
}

.pizza-card .qty {
    width: 60px;
    padding: 5px 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
    text-align: center;
}

/* ===== PIZZA CHECKBOX & QTY ===== */
.pizza-card .pizza-check {
    margin-bottom: 8px;
    transform: scale(1.2);
    cursor: pointer;
}

.pizza-card .qty {
    width: 60px;
    padding: 5px 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
    text-align: center;
}

/* ===== ORDER BOX ===== */
.order-box {
    margin-top: 30px;
    padding: 20px;
    border-top: 2px solid #eee;
}

.order-box label {
    margin-right: 15px;
    font-weight: 500;
    cursor: pointer;
}

.order-box h2 {
    margin-top: 15px;
    font-size: 22px;
    color: #ff6b6b;
}

/* ===== BUTTON ===== */
.order-box button[type="submit"] {
    margin-top: 15px;
    padding: 12px 25px;
    background: #ff6b6b;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.order-box button[type="submit"]:hover {
    background: #e65555;
}

/* ===== TERMS & CONDITIONS ===== */
.pizza-terms {
    margin-top: 30px;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fdfdfd;
}

.pizza-terms h4 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #333;
}

.pizza-terms ul {
    padding-left: 20px;
    color: #555;
}

.pizza-terms li {
    margin-bottom: 8px;
    font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
    .row {
        flex-direction: column;
    }

    .pizza-card img {
        height: 120px;
    }
}
.mb-4 {
    margin-bottom: 40px;
}
.d-flex{
    display: flex;
}
.gap-1 {
    gap: 0.25rem !important;
}



/* ===== PIZZA PRE-ORDER NOTICE ===== */
.pizza-notice {
    max-width: 900px;
    margin: 0 auto 30px auto;
    padding: 15px 20px;
    background: #fffae6;
    border-left: 5px solid #ff6b6b;
    border-radius: 8px;
    text-align: center;
    font-family: 'Arial', sans-serif;
    color: #333;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.pizza-notice p {
    margin: 5px 0;
    font-size: 16px;
}

.pizza-notice strong {
    color: #ff6b6b;
}

.order-box .full {
    margin-top: 15px; /* space between fields */
}

.order-box label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.order-box input[type="text"],
.order-box textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
    transition: border 0.3s, box-shadow 0.3s;
}

.order-box input[type="text"]:focus,
.order-box textarea:focus {
    border-color: #000; /* or your theme color */
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    outline: none;
}

.order-box textarea {
    min-height: 80px;
    resize: vertical;
}