/* BODY & PAGE */
body{
    background:#f5f7fa;
    font-family:'Inter',sans-serif;
    color:#222;
    margin:0;
    padding:0;
}

.navigation_bar{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:1rem 3rem;
    background:#fff;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.navigation_bar img{
    max-width:150px;
}

.cart_main{
    max-width:900px;
    margin:2rem auto;
    padding:0 1rem;
}

.page-title{
    text-align:center;
    font-size:2rem;
    margin-bottom:2rem;
    color:#333;
}

/* CART CARD */
.cart-card{
    background:#fff;
    border-radius:16px;
    padding:1.8rem;
    margin-bottom:1.8rem;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    border:1px solid #eee;
    transition:transform 0.2s;
}

.cart-card:hover{
    transform:translateY(-3px);
}

/* ORDER HEADER */
.cart-title{
    font-size:1.5rem;
    font-weight:700;
    margin-bottom:0.6rem;
    color:#222;
}

.cart-meta{
    display:flex;
    gap:2rem;
    font-size:1rem;
    margin-bottom:1rem;
    flex-wrap:wrap;
    color:#555;
}

.cart-divider{
    border:none;
    height:1px;
    background:#e5e5e5;
    margin:0.8rem 0;
}

/* COMBOS */
.combo-block{
    margin-bottom:1rem;
    padding:0.5rem 0.8rem;
    background:#f9f9f9;
    border-radius:10px;
    border-left:4px solid #90EE90;
    box-shadow:0 3px 10px rgba(0,0,0,0.05);
}

.combo-title{
    font-weight:600;
    font-size:1rem;
    margin-bottom:0.3rem;
    color:#333;
}

.combo-item{
    font-size:0.95rem;
    margin-left:0.3rem;
    color:#555;
    margin-bottom:0.2rem;
    word-break:break-word;
    white-space:normal;
    overflow-wrap:break-word;
}

/* SUBTOTAL & REMOVE */
.cart-subtotal{
    font-weight:600;
    font-size:1rem;
    margin-top:0.5rem;
    color:#222;
}

.remove-btn{
    margin-top:0.8rem;
    padding:0.5rem 1rem;
    border:none;
    border-radius:8px;
    background:#ff4d4d;
    color:#fff;
    cursor:pointer;
    font-size:0.9rem;
    transition:opacity 0.2s;
}

.remove-btn:hover{
    opacity:0.85;
}

/* TOTAL SUMMARY */
.cart-summary{
    background:#fff;
    padding:2rem;
    border-radius:16px;
    border:1px solid #eee;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
    margin-top:2rem;
}

.cart-summary h2{
    margin-bottom:1.2rem;
    font-size:1.4rem;
    color:#222;
}

.summary-row{
    display:flex;
    justify-content:space-between;
    font-size:1rem;
    margin-bottom:0.6rem;
    color:#555;
}

.total-row{
    font-weight:700;
    font-size:1.15rem;
    color:#222;
}

/* RESPONSIVE */
@media(max-width:768px){
    .cart-meta{
        flex-direction:column;
        gap:0.6rem;
    }
}

/* CHECKOUT BUTTON */
.checkout-btn{
    width:100%;
    margin-top:1.5rem;
    padding:1rem;
    font-size:1.1rem;
    font-weight:600;
    border:none;
    border-radius:12px;
    background:linear-gradient(135deg,#4CAF50,#2e7d32);
    color:#fff;
    cursor:pointer;
    box-shadow:0 6px 18px rgba(0,0,0,0.15);
    transition:all 0.25s ease;
}

.checkout-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

.checkout-btn:active{
    transform:scale(0.98);
}

.button-row {
    display: flex;
    justify-content: space-between; /* checkout left, continue right */
    gap: 1rem;                      /* spacing between buttons */
    max-width: 450px;               /* same width as cart area */
    margin: 1.5rem auto;            /* center row on page */
}

.button-row .checkout-btn,
.button-row .continue-btn {
    flex: 1;                        /* equal width */
    text-align: center;
}

.continue-btn {
    text-decoration: none; /* removes the underline */
    background: darkgoldenrod;
    color: black;
}

/* FOOTER */
.index_footer{
    display:flex;
    flex-direction:column;
    align-items:center;
    background:#90EE90;
    padding:2.5rem 1.5rem;
    margin-top:3rem;
    text-align:center;
}

/* LOGO */
.index_footer img{
    max-width:180px;
    margin-bottom:.5rem;
}

/* BRAND TEXT */
.footer_brand{
    font-size:.9rem;
    font-weight:500;
    opacity:.8;
    margin-bottom:1rem;
}

/* DIVIDER */
.index_footer hr{
    width:100%;
    max-width:500px;
    border:none;
    border-top:1px solid rgba(0,0,0,0.15);
    margin:1.5rem 0;
}

/* DISCLAIMER BOX */
.food_disclaimer{
    max-width:600px;
    font-size:.8rem;
    line-height:1.5;
    color:#333;
}

/* DISCLAIMER TITLE */
.food_disclaimer h3{
    font-size:.95rem;
    font-weight:600;
    margin-bottom:.5rem;
    text-transform:uppercase;
    letter-spacing:.5px;
    opacity:.8;
    opacity:.75;
    font-style:italic;
}

/* PARAGRAPHS */
.food_disclaimer p{
    margin-bottom:.5rem;
    font-style:italic;
    opacity:.75;
    
}

/* LAST NOTE (styled differently) */
.clean_note{
    margin-top:.7rem;
    font-style:italic;
}

.footer_links{
    margin-top:1.5rem;
    font-size:.8rem;
    display:flex;
    gap:.6rem;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
}

.footer_links a{
    color:#222;
    text-decoration:none;
    opacity:.7;
    transition:opacity .2s ease, transform .2s ease;
}

.footer_links a:hover{
    opacity:1;
    text-decoration:underline;
}

.footer_links span{
    opacity:.5;
}

html{
    height:100%;
}

body{
    min-height:100vh;
    display:block;
}

.cart_main{
    min-height:60vh;
}