/* Main Site Styles - Adeola Alamala */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #2d5016;
    --light-green: #4a7c23;
    --accent-green: #6b9b3a;
    --wood-brown: #8b4513;
    --wood-light: #d4a574;
    --cream: #faf8f3;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --whatsapp: #25d366;
    --error: #e74c3c;
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-hover: 0 18px 40px rgba(0,0,0,0.14);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
select,
textarea {
    font: inherit;
}

a,
button {
    -webkit-tap-highlight-color: transparent;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.75rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-image {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 50%;
    background: white;
    box-shadow: 0 8px 20px rgba(45,80,22,0.12);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a:focus {
    color: var(--primary-green);
}

.nav-links a:hover::after,
.nav-links a:focus::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Cart Icon */
.cart-icon {
    position: relative;
    cursor: pointer;
    padding: 0.5rem;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 8px 18px rgba(45,80,22,0.25);
}

.cart-icon:hover {
    transform: scale(1.08);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--error);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    background: white;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 16px;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.875rem 1rem;
    border-radius: 10px;
    transition: background 0.3s ease, color 0.3s ease;
}

.mobile-nav a:hover,
.mobile-nav a:focus {
    background: var(--cream);
    color: var(--primary-green);
}

/* Cart Sidebar */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: white;
    z-index: 2001;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 1.15rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--primary-green);
    color: white;
}

.cart-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.close-cart {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.close-cart:hover {
    background: rgba(255,255,255,0.2);
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.empty-cart {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-light);
}

.empty-cart-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.cart-item {
    display: flex;
    gap: 0.85rem;
    padding: 0.85rem;
    background: var(--cream);
    border-radius: 14px;
    margin-bottom: 0.85rem;
    align-items: center;
}

.cart-item-image {
    width: 54px;
    height: 54px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-image .fallback-icon {
    font-size: 1.4rem;
    color: white;
}

.cart-item-details {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-weight: 600;
    margin-bottom: 0.15rem;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.3;
}

.cart-item-price {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 0.88rem;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.45rem;
    flex-wrap: wrap;
}

.qty-btn {
    width: 30px;
    height: 30px;
    border: 1px solid var(--border-color);
    background: white;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: all 0.2s ease;
}

.qty-btn:hover {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
}

.cart-item-qty {
    font-weight: 600;
    min-width: 18px;
    text-align: center;
    font-size: 0.95rem;
}

.remove-item {
    background: #fff;
    border: 1px solid #f1c7c2;
    color: var(--error);
    cursor: pointer;
    font-size: 1rem;
    padding: 0.35rem 0.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.remove-item:hover {
    background: #fff5f4;
}

/* Cart Footer */
.cart-footer {
    padding: 1rem;
    border-top: 1px solid var(--border-color);
    background: white;
}

.customer-fields {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.field-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.field-group input,
.field-group textarea,
.delivery-select select {
    width: 100%;
    padding: 0.8rem;
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
    font-size: 0.95rem;
    background: white;
    transition: border-color 0.3s ease;
}

.field-group textarea {
    min-height: 84px;
    resize: vertical;
}

.field-group input:focus,
.field-group textarea:focus,
.delivery-select select:focus {
    outline: none;
    border-color: var(--primary-green);
}

.delivery-select {
    margin-bottom: 0.85rem;
}

.delivery-select label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.cart-summary {
    background: var(--cream);
    padding: 0.9rem;
    border-radius: 12px;
    margin-bottom: 0.9rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.94rem;
    gap: 1rem;
}

.summary-row.total {
    font-size: 1.14rem;
    font-weight: 700;
    color: var(--primary-green);
    border-top: 2px solid var(--border-color);
    padding-top: 0.5rem;
    margin-top: 0.5rem;
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    background: var(--whatsapp);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.checkout-btn:disabled {
    background: #bbb;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.print-receipt-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary-green);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 0.5rem;
}

.print-receipt-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(45, 80, 22, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background:
        linear-gradient(135deg, rgba(45, 80, 22, 0.84), rgba(45, 80, 22, 0.65)),
        url('../images/amala.jpg.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 74px;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.12), transparent 35%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 2rem;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.9s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 1px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.3rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-subtext {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0.95;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-green);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.45);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

/* Sections */
section {
    padding: 4rem 2rem;
    max-width: 1240px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
}

.section-tag::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-green);
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* About Section */
.about {
    background: var(--white);
    position: relative;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.about-text strong {
    color: var(--primary-green);
    font-weight: 600;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: var(--cream);
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.feature h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature p {
    font-size: 0.92rem;
    color: var(--text-light);
}

/* Book Promo Section */
.book-promo {
    padding: 2rem;
    max-width: 1240px;
    margin: 0 auto 1rem;
}

.book-promo-card {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: white;
    border-radius: 28px;
    padding: 2.5rem;
    box-shadow: 0 18px 45px rgba(45,80,22,0.18);
    overflow: hidden;
    position: relative;
}

.book-promo-card::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}

.book-promo-text {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.book-promo .section-tag {
    color: #dff3cd;
}

.book-promo .section-tag::after {
    background: #dff3cd;
}

.book-promo .section-title {
    color: white;
    margin-bottom: 1rem;
}

.book-promo-copy {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    opacity: 0.97;
}

.book-promo-author {
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

/* Menu Section */
.menu-section {
    background: var(--cream);
    padding: 4rem 0;
}

.menu-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
}

.menu-category {
    margin-bottom: 4rem;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-green);
}

.category-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: var(--primary-green);
}

.notice-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1rem 1.5rem;
    margin: 1rem 0 2rem;
    border-radius: 0 8px 8px 0;
    font-size: 0.95rem;
    color: #856404;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* Menu Items */
.menu-item {
    background: white;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.35s ease;
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    position: relative;
}

.menu-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.menu-item-image {
    width: 100%;
    height: 210px;
    background: linear-gradient(135deg, #dfead7, #f4efe4);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.08);
}

.menu-item-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.18), transparent 45%);
    pointer-events: none;
}

.menu-image-fallback {
    font-size: 3rem;
    color: var(--primary-green);
    opacity: 0.85;
}

.menu-item-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.65rem;
}

.menu-item-name {
    font-weight: 700;
    font-size: 1.06rem;
    color: var(--text-dark);
    line-height: 1.35;
}

.menu-item-price {
    font-weight: 700;
    color: var(--primary-green);
    font-size: 1.05rem;
    white-space: nowrap;
}

.menu-item-desc {
    font-size: 0.92rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.extra-soup-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
    background: var(--cream);
    border-radius: 8px;
    font-size: 0.9rem;
}

.extra-soup-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-green);
    cursor: pointer;
}

.extra-soup-option label {
    cursor: pointer;
    font-weight: 500;
    color: var(--text-dark);
}

.extra-soup-price {
    color: var(--primary-green);
    font-weight: 600;
    margin-left: auto;
}

.add-to-cart {
    width: 100%;
    padding: 0.9rem;
    background: var(--primary-green);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    margin-top: auto;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.add-to-cart:hover {
    background: var(--light-green);
    transform: scale(1.02);
}

.add-to-cart:active {
    transform: scale(0.98);
}

/* Pepper Soup Cartel Section */
.pepper-soup-cartel {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 4rem 0;
    margin: 4rem 0;
}

.pepper-soup-cartel .section-header .section-tag {
    color: var(--wood-light);
}

.pepper-soup-cartel .section-header .section-tag::after {
    background: var(--wood-light);
}

.pepper-soup-cartel .section-header .section-title {
    color: white;
}

.pepper-soup-cartel .category-header {
    border-bottom-color: var(--wood-light);
}

.pepper-soup-cartel .category-title {
    color: white;
}

.pepper-soup-cartel .category-icon {
    background: var(--wood-brown);
}

.pepper-soup-cartel .menu-item {
    background: rgba(255,255,255,0.06);
    color: white;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

.pepper-soup-cartel .menu-item-image {
    background: linear-gradient(135deg, rgba(139,69,19,0.65), rgba(212,165,116,0.35));
}

.pepper-soup-cartel .menu-image-fallback {
    color: white;
}

.pepper-soup-cartel .menu-item-name,
.pepper-soup-cartel .menu-item-desc {
    color: white;
}

.pepper-soup-cartel .menu-item-price {
    color: var(--wood-light);
}

.pepper-soup-cartel .add-to-cart {
    background: var(--wood-brown);
}

.pepper-soup-cartel .add-to-cart:hover {
    background: var(--wood-light);
    color: var(--text-dark);
}

/* Location Section */
.location {
    background: var(--white);
    padding: 4rem 0;
}

.location-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.location-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--cream);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateX(5px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.info-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.map-container {
    background: var(--cream);
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-align: center;
    padding: 2rem;
}

.map-placeholder strong {
    color: var(--primary-green);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 2rem 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1240px;
    margin: 0 auto;
}

.footer-logo-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: white;
}

.footer-tagline {
    color: #888;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.footer-contact {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ccc;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    color: #666;
    font-size: 0.9rem;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 95px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--text-dark);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 999px;
    font-weight: 500;
    z-index: 3000;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align: center;
    max-width: calc(100% - 2rem);
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Floating Action Button */
.fab {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.fab:hover {
    transform: scale(1.08) rotate(8deg);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.55s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 980px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }
}

@media (max-width: 768px) {
    .hero {
        margin-top: 72px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtext {
        font-size: 1rem;
    }

    .location-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-container {
        height: 300px;
        order: -1;
    }

    .cart-sidebar {
        max-width: 100%;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .footer-contact {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-container,
    .menu-container,
    .location-container,
    .book-promo {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    section {
        padding: 3.5rem 1rem;
    }

    .book-promo-card {
        padding: 2rem 1.4rem;
    }

    .logo-image {
        width: 58px;
        height: 58px;
    }

    .footer-logo-image {
        width: 100px;
        height: 100px;
    }
}

/* ================================
   NEW: Order Type Toggle & Checkout
   ================================ */

.order-type-toggle {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    background: var(--cream);
    padding: 0.35rem;
    border-radius: 12px;
}

.order-type-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    background: transparent;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-light);
}

.order-type-btn.active {
    background: var(--primary-green);
    color: white;
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.25);
}

.order-type-btn:not(.active):hover {
    background: rgba(45, 80, 22, 0.1);
    color: var(--primary-green);
}

/* Screenshot Upload */
.screenshot-upload {
    margin-top: 0.5rem;
}

.upload-area {
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--cream);
}

.upload-area:hover {
    border-color: var(--primary-green);
    background: rgba(45, 80, 22, 0.05);
}

.upload-area.has-file {
    border-style: solid;
    border-color: var(--primary-green);
}

.upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
}

.upload-icon {
    font-size: 2rem;
    opacity: 0.7;
}

.upload-preview {
    position: relative;
    display: inline-block;
}

.upload-preview img {
    max-width: 100%;
    max-height: 150px;
    border-radius: 8px;
    object-fit: contain;
}

.remove-screenshot {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: var(--error);
    color: white;
    border: 2px solid white;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.remove-screenshot:hover {
    transform: scale(1.1);
}

.upload-hint {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-light);
    font-size: 0.8rem;
}

/* Eat-In Mode Adjustments */
#deliveryFields.hidden {
    display: none;
}

#deliveryFeeRow.hidden {
    display: none;
}

/* Checkout Button States */
.checkout-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.checkout-btn.loading {
    position: relative;
    color: transparent;
}

.checkout-btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Order Confirmation Modal */
.confirmation-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.confirmation-modal.active {
    opacity: 1;
    visibility: visible;
}

.confirmation-content {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    max-width: 400px;
    width: 100%;
    text-align: center;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.confirmation-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.confirmation-content h2 {
    color: var(--primary-green);
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.confirmation-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.order-id-display {
    background: var(--cream);
    padding: 1rem;
    border-radius: 12px;
    margin: 1rem 0;
}

.order-id-display strong {
    font-size: 1.5rem;
    color: var(--primary-green);
    font-family: monospace;
}

.confirmation-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary-green);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.confirmation-btn:hover {
    background: var(--light-green);
}

/* ================================
   NEW: Logistics Section
   ================================ */

.logistics-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem 2rem;
}

.logistics-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.logistics-content {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.logistics-content .section-tag {
    color: var(--primary-green);
}

.logistics-content .section-title {
    margin-bottom: 1rem;
}

.logistics-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.btn-logistics {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(45, 80, 22, 0.25);
}

.btn-logistics:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(45, 80, 22, 0.35);
}

/* Mobile adjustments for new components */
@media (max-width: 768px) {
    .order-type-toggle {
        flex-direction: row;
    }

    .order-type-btn {
        padding: 0.65rem 0.75rem;
        font-size: 0.9rem;
    }

    .logistics-content {
        padding: 1.75rem;
    }

    .confirmation-content {
        padding: 1.5rem;
    }
}
