:root {
    --primary-color: #D97736; /* Terracotta Orange from mockup */
    --secondary-color: #E65100;
    --bg-color: #FFF8E7; /* Cream background */
    --text-dark: #5D4037; /* Dark Brown */
    --text-light: #8D6E63;
    --accent-green: #66BB6A;
    --white: #FFFFFF;
    --shadow: 0 4px 12px rgba(93, 64, 55, 0.1);
    --border-radius: 16px;
    --font-heading: 'Merriweather', serif;
    --font-body: 'Lato', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.5;
    /* Center content for desktop to match mobile mockup style */
    max-width: 100%;
    overflow-x: hidden;
}

/* --- Typography --- */
h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
}

/* --- Header --- */
.app-header {
    background-color: var(--primary-color);
    height: 60px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 20px;
    max-width: 480px; /* Constrain to mobile width on desktop */
    margin: 0 auto;
}

.menu-btn, .profile-btn, .back-btn, .cart-btn {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
}

.logo-container {
    height: 40px;
    display: flex;
    align-items: center;
}

.logo {
    max-height: 30px; /* Fits inside navbar */
    width: auto;
    filter: brightness(0) invert(1); /* Make logo white for orange bg */
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    overflow: hidden;
}

.hero-bg-container {
    position: relative;
    width: 100%;
    height: 400px;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    z-index: 10;
    color: var(--white);
}

.hero-content h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 300;
    opacity: 0.9;
}

.cta-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(217, 119, 54, 0.4);
    transition: transform 0.2s;
}

.cta-btn:hover {
    transform: scale(1.05);
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 5;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* --- Main Content Layout --- */
main {
    max-width: 480px;
    margin: 0 auto;
    background-color: var(--bg-color);
    min-height: 100vh;
}

.section-container {
    padding: 20px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

/* --- Daily Specials --- */
.specials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.food-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    /* Pattern background for card body */
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjZmZmZmZmIi8+CjxyZWN0IHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9IiNmN2Y3ZjciLz4KPC9zdmc+'); 
}

.card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image .img-container {
    width: 100%;
    height: 100%;
    border-radius: 50%; /* Circular images inside card */
    overflow: hidden;
}

.card-image .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 0.6rem;
    padding: 4px 8px;
    border-radius: 10px;
    font-weight: 700;
    z-index: 2;
}

.card-details {
    padding: 10px;
    text-align: center;
    background-color: rgba(255,255,255,0.8);
}

.card-details h3 {
    font-size: 0.9rem;
    margin-bottom: 5px;
    font-weight: 700;
    color: var(--text-dark);
}

.price-row {
    display: flex;
    justify-content: center;
    gap: 8px;
    align-items: center;
    font-size: 0.85rem;
}

.old-price {
    text-decoration: line-through;
    color: #999;
}

.new-price {
    color: var(--text-dark);
    font-weight: 700;
}

/* --- Health Promise --- */
.promise-grid {
    display: flex;
    gap: 15px;
}

.promise-card {
    flex: 1;
    background-color: var(--bg-color);
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius);
    padding: 20px 10px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.card-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 0;
}

.card-bg-pattern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.icon-check {
    width: 30px;
    height: 30px;
    background-color: var(--accent-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    position: relative;
    z-index: 1;
    font-size: 0.8rem;
}

.promise-card p {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

/* --- Menu Highlights --- */
.highlights-scroll {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none; /* Hide scrollbar */
}

.highlights-scroll::-webkit-scrollbar {
    display: none;
}

.highlight-card {
    min-width: 100px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 15px 10px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.circle-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 10px;
    border: 2px solid var(--primary-color);
    position: relative;
    z-index: 1;
}

.circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    font-size: 0.5rem;
    padding: 2px 4px;
    border-radius: 4px;
}

.highlight-card p {
    font-size: 0.85rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

/* --- Info Sections --- */
.info-text {
    font-size: 1rem;
    color: var(--text-light);
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-icon {
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* --- Map --- */
.map-wrapper {
    width: 100%;
    height: 150px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Bottom Nav --- */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    height: 60px;
    background-color: var(--primary-color);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 100;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.7rem;
    gap: 4px;
    transition: color 0.3s;
}

.nav-item i {
    font-size: 1.2rem;
}

.nav-item.active {
    color: var(--white);
}

/* --- Menu Page Styles --- */
.menu-page {
    padding-top: 20px;
}

.page-header {
    text-align: center;
    margin-bottom: 20px;
}

.page-header h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.menu-item {
    display: flex;
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 10px;
    box-shadow: var(--shadow);
    gap: 15px;
}

.menu-img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.menu-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-info h3 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.menu-info .desc {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.price-add {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-weight: 700;
    color: var(--text-dark);
}

.add-btn {
    background-color: var(--white);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
}

.add-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* --- Nutrition Card --- */
.nutrition-card {
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.nutrition-card h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
}

.nutrition-card p {
    position: relative;
    z-index: 1;
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.nutrition-grid {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
}

.nutri-item {
    text-align: center;
}

.nutri-item span {
    display: block;
    font-size: 0.8rem;
    color: #888;
}

.nutri-item strong {
    color: var(--primary-color);
}

/* --- About Page Styles --- */
.story-hero {
    text-align: center;
    margin-bottom: 30px;
}

.story-img-container {
    width: 100%;
    height: 200px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.story-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lead-text {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-light);
}

.philosophy-card {
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-dark);
}

.promises-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.promise-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    padding: 15px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.promise-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.promise-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.promise-text h3 {
    font-size: 1rem;
    margin-bottom: 2px;
}

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

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.team-member {
    text-align: center;
    background: var(--white);
    padding: 15px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.member-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 10px;
}

.member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.team-member p {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

/* --- Contact Form --- */
.contact-form {
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-body);
}

.submit-btn {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background-color: var(--secondary-color);
}

/* --- Animations --- */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* --- Responsive Adjustments for Desktop --- */
@media (min-width: 768px) {
    /* On larger screens, we keep the mobile app look centered */
    body {
        background-color: #f0f0f0; /* Darker bg outside the app container */
    }
    
    .app-header, .bottom-nav, main {
        box-shadow: 0 0 20px rgba(0,0,0,0.1);
    }
    
    /* Optional: Make grid items 3 columns if we wanted to expand, 
       but here we stick to the mobile fidelity requested */
}