* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; line-height: 1.6; color: #333; }

/* FIXED NAVBAR - Stays at top of viewport */
.navbar { 
    background: #8B4513; color: white; padding: 1rem 0; 
    position: fixed; width: 100%; top: 0; z-index: 1000; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.nav-container { 
    max-width: 1200px; margin: 0 auto; display: flex; 
    justify-content: space-between; align-items: center; padding: 0 2rem; 
}
.nav-menu { display: flex; list-style: none; gap: 2rem; }
.nav-menu a { color: white; text-decoration: none; font-weight: 500; }
.hamburger { display: none; flex-direction: column; cursor: pointer; }
.hamburger span { width: 25px; height: 3px; background: white; margin: 3px 0; }

/* Cart Counter - Bottom Right */
.cart-counter {
    position: fixed; bottom: 30px; right: 20px; background: #D2691E; 
    color: white; padding: 12px 18px; border-radius: 25px; 
    font-weight: 600; z-index: 1001; cursor: pointer; 
    box-shadow: 0 6px 20px rgba(0,0,0,0.3); font-size: 1.1rem;
}
.cart-counter:hover { 
    background: #A0522D; transform: scale(1.08); 
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.hero { 
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('hero-bake.jpg') center/cover; 
    height: 100vh; display: flex; align-items: center; justify-content: center; 
    text-align: center; color: white; padding-top: 80px;
}
.cta-btn { 
    background: #D2691E; color: white; padding: 1.2rem 3rem; text-decoration: none; 
    border-radius: 50px; font-weight: 600; font-size: 1.1rem; transition: all 0.3s ease;
    display: inline-block; margin-top: 1rem; margin-bottom: 3rem;  /* ← ADDED */
}

.cta-btn:hover { background: #A0522D; transform: translateY(-3px); }

.section-title { 
    text-align: center; font-size: 2.8rem; margin: 5rem 0 3rem; color: #8B4513; 
}

.menu-grid { 
    max-width: 1200px; margin: 0 auto; display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2.5rem; padding: 0 2rem; 
}
.menu-item {
    background: #fff; border-radius: 20px; padding: 1.5rem; text-align: center; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: all 0.4s ease;
}
.menu-item:hover { transform: translateY(-15px) scale(1.02); box-shadow: 0 25px 50px rgba(0,0,0,0.25); }
.menu-item img { width: 100%; height: 220px; object-fit: cover; border-radius: 15px; margin-bottom: 1rem; }
.menu-item h3 { font-size: 1.4rem; margin-bottom: 0.5rem; color: #8B4513; }
.menu-item p { font-size: 1.2rem; font-weight: 600; color: #D2691E; margin-bottom: 1rem; }

.quantity-controls {
    display: flex; align-items: center; justify-content: center; gap: 15px;
    margin-bottom: 1rem; font-weight: 700; font-size: 1.3rem; color: #8B4513;
}
.qty-minus, .qty-plus {
    width: 40px; height: 40px; border: 2px solid #D2691E; background: white;
    border-radius: 50%; cursor: pointer; font-size: 1.5rem; font-weight: bold;
    color: #8B4513; transition: all 0.2s ease;
}
.qty-minus:hover, .qty-plus:hover { background: #D2691E; color: white; transform: scale(1.1); }
.qty-display { min-width: 30px; text-align: center; font-weight: 700; color: #D2691E; }

.add-cart {
    background: linear-gradient(45deg, #8B4513, #A0522D); color: white; 
    border: none; padding: 14px 28px; border-radius: 30px; cursor: pointer; 
    font-weight: 700; font-size: 1rem; width: 100%; transition: all 0.3s ease;
}
.menu-item:hover .add-cart { opacity: 1; transform: translateY(0); }
.add-cart:hover { background: linear-gradient(45deg, #A0522D, #D2691E); transform: scale(1.05); }

.contact, .about { padding: 5rem 2rem; max-width: 1200px; margin: 0 auto; text-align: center; }
.contact form { max-width: 600px; margin: 2rem auto; display: flex; flex-direction: column; gap: 1.2rem; }
.contact input, .contact textarea { padding: 1.2rem; border: 2px solid #eee; border-radius: 12px; font-family: inherit; }
.contact button { background: linear-gradient(45deg, #8B4513, #A0522D); color: white; padding: 1.2rem; border: none; border-radius: 12px; cursor: pointer; font-size: 1.2rem; font-weight: 600; }

/* ===== CART PAGE BILL-STYLE (NO IMAGES) ===== */
.cart-page { background: linear-gradient(135deg, #fff8e1 0%, #fce4ec 100%); min-height: 100vh; }
.cart-container { max-width: 1200px; margin: 0 auto; padding: 2rem; }
.cart-header { 
    display: flex; justify-content: space-between; align-items: center; 
    margin-bottom: 2.5rem; padding: 2rem 0 1rem 0; border-bottom: 3px solid #D2691E;
}
.cart-header h1 { 
    font-size: 1.8rem; color: #8B4513; margin: 0; font-weight: 700; 
    line-height: 1.2; position: relative; top: 3px;
}
.back-home { 
    background: transparent; color: #8B4513; border: 2px solid #D2691E; 
    padding: 10px 22px; border-radius: 25px; cursor: pointer; font-weight: 600; 
    font-size: 0.95rem; transition: all 0.3s ease; position: relative; top: 2px;
}
.back-home:hover { background: #D2691E; color: white; transform: translateY(-2px); }

.cart-items { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 3rem; }
.cart-item {
    background: white; border-radius: 15px; padding: 1.8rem 2.2rem; 
    display: flex; justify-content: space-between; align-items: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08); border-left: 5px solid #D2691E;
    transition: all 0.3s ease;
}
.cart-item:hover { transform: translateX(8px); box-shadow: 0 12px 40px rgba(0,0,0,0.15); }

.cart-item-details { flex: 1; margin-right: 1.5rem; }
.cart-item-details h4 { margin: 0 0 0.4rem 0; color: #8B4513; font-size: 1.25rem; font-weight: 600; }
.cart-item-details p { margin: 0; color: #666; font-size: 0.95rem; font-weight: 500; }

.quantity-controls-cart {
    display: flex; align-items: center; gap: 10px; background: #f8f9fa; 
    padding: 8px 16px; border-radius: 25px; min-width: 130px;
}
.qty-btn-cart { 
    width: 36px; height: 36px; border: 2px solid #D2691E; background: white; 
    border-radius: 50%; cursor: pointer; font-size: 1.3rem; font-weight: bold; 
    color: #8B4513; display: flex; align-items: center; justify-content: center;
}
.qty-btn-cart:hover { background: #D2691E; color: white; transform: scale(1.05); }
.qty-display-cart { font-weight: 800; color: #8B4513; font-size: 1.4rem; min-width: 30px; text-align: center; }

.delete-item { 
    background: #ff4757; color: white; border: none; width: 42px; height: 42px; 
    border-radius: 50%; cursor: pointer; font-size: 1.3rem; margin-left: 1.5rem;
}
.delete-item:hover { background: #ff3838; transform: scale(1.1); }

.item-total { font-weight: 800; color: #D2691E; font-size: 1.6rem; min-width: 90px; text-align: right; }

#cartFooter { 
    background: white; border-radius: 25px; padding: 2rem; display: flex; 
    justify-content: space-between; align-items: center; box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    max-width: 1200px; margin: 0 auto; margin-top: 2rem;
}

.cart-summary h3 { margin: 0 0 1.5rem 0; color: #666; font-size: 1.3rem; }
.cart-summary h2 { margin: 0; color: #8B4513; font-size: 3rem; font-weight: 700; }
.checkout-btn { 
    background: linear-gradient(45deg, #8B4513, #D2691E); color: white; 
    border: none; padding: 1.2rem 3rem; border-radius: 35px; font-size: 1.2rem; 
    font-weight: 700; cursor: pointer; text-transform: uppercase;
    white-space: nowrap;  /* Prevents wrapping */
}

.checkout-btn:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(139,69,19,0.4); }

/* Navbar fix for cart page */
.cart-page .navbar a[href="index.html"], .cart-page .nav-menu a { color: white !important; text-decoration: none !important; }

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-menu { position: fixed; flex-direction: column; background: #8B4513; top: 70px; left: -100%; width: 100%; text-align: center; padding: 2rem 0; transition: 0.3s; }
    .nav-menu.active { left: 0; }
    .hero { height: 80vh; padding-top: 70px; }
    .menu-grid { grid-template-columns: 1fr; gap: 1.5rem; padding: 0 1rem; }
    .cart-header { flex-direction: column; gap: 1.5rem; text-align: center; }
    .cart-item { flex-direction: column; gap: 1.2rem; text-align: left; padding: 1.5rem; }
    .quantity-controls-cart { order: -1; width: 100%; justify-content: center; }
    .delete-item { order: 2; margin-left: 0; }
    .item-total { order: 3; font-size: 1.5rem; }
    .cart-footer { flex-direction: column; gap: 2rem; text-align: center; padding: 2rem; }
    .checkout-btn { width: 100%; padding: 1.5rem; font-size: 1.3rem; }
    .cart-counter { bottom: 20px; right: 15px; padding: 10px 14px; font-size: 1rem; }
}

/* Divine Deserts About Section */
.about-content { 
    max-width: 800px; margin: 0 auto; text-align: center; padding: 0 2rem; 
}
.about-text { 
    width: 100%; 
}


.about-features {
    margin: 2rem 0;  /* Top/bottom spacing */
}
.about-features > div {
    margin-bottom: 1.2rem;  /* Gap between items */
    padding: 0.8rem 0;      /* Internal padding */
    font-size: 1.1rem;
    color: #555;
    line-height: 1.5;
    position: relative;
    padding-left: 1.8rem;   /* Space for invisible bullet */
}

.about-features > div::before {
    content: "▸";           /* Custom thin arrow */
    position: absolute;
    left: 0;
    color: #D2691E;
    font-weight: 700;
    font-size: 1rem;
}

/* Mobile */
@media (max-width: 768px) {
    .about-content { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .about-features > div { margin-bottom: 1rem; padding-left: 2rem; text-align: left; }
}

/* Contact Section */
.contact {
    padding: 5rem 2rem; background: linear-gradient(135deg, #fff8e1 0%, #fce4ec 100%);
    text-align: center;
}

.contact-content {
    max-width: 800px; margin: 0 auto; display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem;
}

.contact-item {
    background: white; padding: 2.5rem 2rem; border-radius: 20px; 
    box-shadow: 0 10px 40px rgba(0,0,0,0.1); transition: all 0.3s ease;
    border-top: 4px solid #D2691E;
}

.contact-item:hover {
    transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.contact-icon {
    font-size: 3.5rem; margin-bottom: 1rem; 
}

.contact-item h3 {
    color: #8B4513; font-size: 1.8rem; margin: 0 0 0.5rem 0; 
    font-weight: 700;
}

.contact-item p {
    color: #666; font-size: 1.1rem; margin: 0; font-weight: 500;
}

/* Mobile */
@media (max-width: 768px) {
    .contact-content { grid-template-columns: 1fr; gap: 2rem; }
    .contact-item { padding: 2rem 1.5rem; }
    .contact-icon { font-size: 3rem; }
}
