:root {
    --green: #146A34;
    --yellow: #FFB81C;
    --orange: #ff6b00;
    --dark: #222;
    --text: #333;
    --muted: #666;
    --light-muted: #888;
    --border: #e0e0e0;
    --soft-border: #efefef;
    --light-bg: #f9f9f9;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

/* Main Content */
.menu-section {
    margin-bottom: 50px;
}

.menu-category {
    margin-bottom: 40px;
    position: relative;
    padding-left: 15px;
}

.menu-category::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--yellow), var(--green));
    border-radius: 4px;
}

.section-title {
    color: var(--green);
    font-size: 2em;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--yellow);
    font-weight: 700;
}

.menu-category h3 {
    color: var(--green);
    font-size: 1.5em;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-category h3::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--yellow);
    border-radius: 50%;
    flex-shrink: 0;
}

.category-badge {
    display: inline-block;
    background: var(--yellow);
    color: var(--green);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75em;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

/* Price Table */
.price-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0;
    background: var(--light-bg);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    margin-bottom: 15px;
}

.price-row {
    display: flex;
    flex-direction: column;
    padding: 15px 20px;
    border-bottom: 1px solid var(--soft-border);
    background: var(--white);
    transition: background 0.3s ease, transform 0.3s ease;
    position: relative;
}

.price-row:last-child {
    border-bottom: none;
}

.price-row:hover {
    background: linear-gradient(90deg, rgba(20, 106, 52, 0.03) 0%, transparent 100%);
    transform: translateX(3px);
}

.price-row::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--yellow);
    transform: scaleX(0);
    opacity: 0;
    transition: all 0.3s ease;
    transform-origin: left;
}

.price-row:hover::before {
    opacity: 1;
    transform: scaleX(1);
}

.price-row-name {
    color: var(--text);
    font-weight: 600;
    font-size: 0.95em;
    margin-bottom: 5px;
}

.price-row-desc {
    color: var(--light-muted);
    font-size: 0.8em;
    margin-bottom: 8px;
}

.price-row-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.price-row-price {
    color: var(--green);
    font-weight: 700;
    font-size: 1.2em;
    background: rgba(255, 184, 28, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

.price-row-cal {
    font-size: 12px;
    background: #b8dfca;
    color: var(--green);
    padding: 4px 10px;
    border-radius: 3px;
    font-weight: bold;
    word-break: break-word;
    overflow-wrap: break-word;
}

/* Menu Table */
.menu-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.menu-table thead {
    background: var(--light-bg);
}

.menu-table th {
    padding: 15px;
    text-align: left;
    color: var(--green);
    font-weight: 700;
    border-right: 1px solid var(--soft-border);
    border-bottom: 2px solid var(--yellow);
}

.menu-table th:last-child {
    border-right: none;
}

.menu-table td {
    padding: 12px 15px;
    border-right: 1px solid var(--soft-border);
    border-bottom: 1px solid var(--soft-border);
    transition: background 0.3s ease;
}

.menu-table td:last-child {
    border-right: none;
}

.menu-table tbody tr:hover {
    background: rgba(20, 106, 52, 0.02);
}

.menu-table tbody tr:last-child td {
    border-bottom: none;
}

.price-highlight {
    color: var(--green);
    font-weight: 700;
    font-size: 1.1em;
}

.cal-highlight {
    color: #000;
    font-size: 0.9em;
}

/* Notes */
.combo-note {
    font-size: 0.85em;
    color: var(--muted);
    margin-top: 8px;
    font-style: italic;
}

.note-box {
    background: linear-gradient(135deg, rgba(20, 106, 52, 0.05) 0%, rgba(255, 184, 28, 0.05) 100%);
    padding: 15px 20px;
    border-left: 4px solid var(--yellow);
    border-radius: 4px;
    margin: 15px 0;
}

.note-box strong {
    color: var(--green);
}

/* Footer Note */
.footer-note {
    text-align: center;
    color: #999;
    font-size: 0.9em;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.footer-note strong {
    color: var(--green);
}

/* New Sections */
.new-section {
    margin: 3rem 0;
    padding: 2rem 1rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}

.new-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--green);
    font-size: 1.8rem;
}

/* How to Order */
.steps-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.step-card {
    flex: 1 1 200px;
    background: #faf9f8;
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.06);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.step-card h3 {
    margin: 0.5rem 0;
    color: var(--green);
}

.order-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.order-now-btn {
    background: var(--green);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.order-now-btn.secondary {
    background: var(--yellow);
    color: var(--green);
}

.order-now-btn:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.order-note {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--muted);
}

/* Locations */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.location-card {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.2s ease;
    border: 1px solid #eee;
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.06);
}

.location-card i {
    font-size: 2rem;
    color: var(--green);
    margin-bottom: 0.5rem;
}

.location-card h3 {
    margin: 0.5rem 0;
    color: var(--dark);
}

.directions-btn {
    display: inline-block;
    margin-top: 10px;
    color: var(--orange);
    text-decoration: none;
    font-weight: bold;
}

.locator-box {
    background: #f0f7f0;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
}

.locator-btn {
    display: inline-block;
    background: var(--green);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    text-decoration: none;
    margin-top: 8px;
}



/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 30px 20px;
    }

    .header h1 {
        font-size: 2em;
    }

    .section-title {
        font-size: 1.5em;
    }

    .menu-category {
        padding-left: 12px;
    }

    .menu-category h3 {
        font-size: 1.25em;
    }

    .price-table {
        grid-template-columns: 1fr;
    }

    .price-row {
        padding: 14px 16px;
    }

    .price-row:hover {
        transform: none;
    }

    .menu-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .menu-table th,
    .menu-table td {
        padding: 10px 8px;
        font-size: 0.9em;
    }

    .new-section {
        padding: 1rem;
        margin: 2rem 0;
    }

    .new-section h2 {
        font-size: 1.5rem;
    }

    .step-card {
        flex: 1 1 160px;
    }

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

    .faq-question {
        font-size: 1rem;
        padding: 1rem;
    }

    .faq-answer {
        padding: 0 1rem 1rem;
    }
}

@media (max-width: 480px) {
    .price-row-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .order-now-btn {
        width: 100%;
        justify-content: center;
    }

    .order-actions {
        flex-direction: column;
    }
}
.footer-counter {
    display: none !important;
}

/* Combo article content rhythm */
.section {
    padding: 2.25rem;
}

.section > h2:not(:first-child) {
    margin-top: 2.5rem;
}

.section > p,
.section > ul,
.section > ol {
    line-height: 1.75;
}

.section > ul,
.section > ol {
    margin: 1rem 0 1.5rem;
    padding-left: 1.5rem;
}

.section > ul li,
.section > ol li {
    margin-bottom: 0.55rem;
}

.section .info-box {
    margin: 1.25rem 0 1.75rem;
    padding: 1.35rem 1.5rem;
    line-height: 1.7;
}

.section .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    margin: 1.5rem 0 2rem;
}

.section .menu-item {
    min-height: 145px;
    padding: 1.4rem;
}

.section .menu-table {
    margin: 1.25rem 0 1.5rem;
}

.section .features-grid {
    gap: 1.25rem;
    margin: 1.25rem 0 2rem;
}

@media (max-width: 768px) {
    .section {
        padding: 1.25rem;
    }

    .section > h2:not(:first-child) {
        margin-top: 2rem;
    }

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

    .section .menu-item {
        min-height: auto;
    }
}
