:root {
    --brand-green: #1faa5d;
    --brand-green-dark: #158f4d;
    --brand-cream: #f5f9f3;
    --brand-yellow: #f7c948;
    --text-color: #1f2933;
    --muted-color: #6c7a86;
    --card-radius: 20px;
    --section-spacing: clamp(3rem, 6vw, 5rem);
    font-size: 16px;
}

body {
    font-family: 'Poppins', 'Segoe UI', Roboto, sans-serif;
    color: var(--text-color);
    background-color: #f7faf7;
}

a {
    color: var(--brand-green-dark);
}

a:hover {
    color: var(--brand-green);
}

.navbar {
    border-radius: var(--card-radius);
    margin: 1rem auto;
    max-width: 1200px;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
}

.navbar .navbar-brand {
    font-weight: 600;
    color: var(--brand-green-dark);
}

.navbar .navbar-brand .brand-logo {
    height: 40px;
    width: auto;
}

.navbar .nav-link {
    font-weight: 500;
    color: var(--muted-color);
    border-radius: 999px;
    padding: 0.4rem 1rem;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--brand-green), var(--brand-green-dark));
}

.hero-section {
    background: linear-gradient(120deg, #f1f9f3 0%, #fef6e6 100%);
    border-radius: var(--card-radius);
    overflow: hidden;
    padding: clamp(2.5rem, 6vw, 4.5rem);
    margin-top: 1rem;
}

.hero-copy h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-copy p {
    color: var(--muted-color);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.hero-actions .btn {
    padding: 0.75rem 1.75rem;
    border-radius: 999px;
    font-weight: 600;
}

.btn-brand {
    background: linear-gradient(135deg, var(--brand-green), var(--brand-green-dark));
    border: none;
    color: #fff;
    padding: 6px;
}

.btn-brand:hover,
.btn-brand:focus {
    background: linear-gradient(135deg, var(--brand-green-dark), var(--brand-green));
    color: #fff;
}

.btn-outline-brand {
    border-radius: 999px;
    border: 2px solid rgba(31, 170, 93, 0.2);
    color: var(--brand-green-dark);
    font-weight: 600;
    border-radius: 4px;
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
    background: rgba(31, 170, 93, 0.08);
    border-color: rgba(31, 170, 93, 0.5);
    color: var(--brand-green-dark);
    border-radius: 4px;
}

.hero-visual {
    position: relative;
    text-align: center;
}

.hero-visual::before {
    content: '';
    position: absolute;
    inset: 10% 12%;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0));
    box-shadow: 0 40px 60px rgba(31, 170, 93, 0.15);
}

.hero-visual img {
    position: relative;
    max-width: min(420px, 100%);
    z-index: 1;
    filter: drop-shadow(0 20px 30px rgba(31, 170, 93, 0.2));
}

.info-card img {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 12px 24px rgba(31, 170, 93, 0.12);
    border: 3px solid #ffffff;
}

.business-card-photo {
    height: 220px;
    object-fit: cover;
}

.landing-section {
    margin-top: var(--section-spacing);
}

.order-card,
.summary-card,
.info-card,
.business-card,
.status-card {
    border-radius: var(--card-radius);
    border: none;
    box-shadow: 0 25px 50px rgba(15, 99, 54, 0.08);
    background: #fff;
}

.order-card .card-body {
    padding: clamp(1.5rem, 3vw, 2.5rem);
}

.field-label {
    font-weight: 600;
    color: var(--text-color);
}

.form-select,
.form-control {
    border-radius: 14px;
    border: 1px solid rgba(15, 143, 77, 0.15);
    padding: 0.75rem 1rem;
}

.form-select:focus,
.form-control:focus {
    border-color: var(--brand-green);
    box-shadow: 0 0 0 0.25rem rgba(31, 170, 93, 0.15);
}

.badge-status {
    background-color: rgba(31, 170, 93, 0.12);
    color: var(--brand-green-dark);
    font-weight: 600;
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
}

.badge-status.offline {
    background-color: rgba(108, 122, 134, 0.12);
    color: var(--muted-color);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
}

.menu-card {
    border-radius: 18px;
    padding: 1.2rem;
    border: 1px solid rgba(31, 170, 93, 0.08);
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 30px rgba(31, 170, 93, 0.12);
}

.menu-card .menu-photo {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
    height: 150px;
}

.menu-card .menu-price {
    font-weight: 600;
    color: var(--brand-green-dark);
}

.quantity-control {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(31, 170, 93, 0.25);
    border-radius: 999px;
    overflow: hidden;
    background: rgba(31, 170, 93, 0.05);
}

.quantity-control button {
    border: none;
    background: transparent;
    width: 36px;
    height: 36px;
    font-weight: 600;
    color: var(--brand-green-dark);
}

.quantity-control span {
    min-width: 40px;
    text-align: center;
    font-weight: 600;
}

.summary-card .card-body {
    padding: 2rem;
}

.summary-card h5 {
    font-weight: 600;
}

.summary-card .list-group-item {
    border: none;
    padding-left: 0;
    padding-right: 0;
    display: flex;
    justify-content: space-between;
    color: var(--text-color);
}

.summary-total {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--brand-green-dark);
}

.info-card {
    padding: 1.5rem;
}

.info-card img {
    width: 88px;
    height: 88px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 12px 25px rgba(15, 99, 54, 0.18);
}

.section-heading {
    font-weight: 600;
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

.business-card .card-body {
    padding: 1.5rem;
}

.business-card img {
    border-top-left-radius: var(--card-radius);
    border-top-right-radius: var(--card-radius);
    height: 180px;
    object-fit: cover;
}

.status-card {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(31, 170, 93, 0.08), rgba(31, 170, 93, 0));
}

.status-card .icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(31, 170, 93, 0.12);
    color: var(--brand-green-dark);
    font-size: 1.5rem;
}

.footer-blurb {
    color: var(--muted-color);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #0abe55);
    color: #fff;
    border-radius: 9px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.whatsapp-btn:hover {
    color: #fff;
    background: linear-gradient(135deg, #0abe55, #25d366);
}

@media (max-width: 991px) {
    .navbar {
        margin: 0 1rem;
    }

    .summary-card {
        order: -1;
    }
}

@media (max-width: 575px) {
    .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-visual::before {
        inset: 18% 15%;
    }
}
