@charset "UTF-8";
/* ===== TACO TEK — MENU PAGE NEW ===== */

/* --- Page Hero --- */
.page-hero {
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-soft) 100%);
    padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-3xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--gray-100);
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 212, 0, 0.06), transparent);
    border-radius: 50%;
}

.page-hero h1 {
    color: var(--navy);
    margin-bottom: var(--space-sm);
}

.page-hero .subtitle {
    margin: 0 auto;
}

/* --- New Menu Layout --- */
.menu-page-content {
    padding: var(--space-2xl) 0;
    background: var(--bg-soft);
}

.menu-layout-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-2xl);
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
}

/* --- Typography Helpers --- */
.text-red {
    color: #b71c1c !important;
}

.text-green {
    color: #2E7D32 !important;
}

.text-bold {
    font-weight: 700 !important;
}

.text-center {
    text-align: center !important;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.ml-auto {
    margin-left: auto;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* --- Left Column: A La Carte --- */
.menu-left-col {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.menu-group-title {
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    border-bottom: 3px solid #b71c1c;
    padding-bottom: 0.25rem;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.menu-group-desc {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.list-item {
    display: flex;
    align-items: center;
    padding: 0.6rem 0.85rem;
    border-left: 3px solid transparent;
    border-radius: 0 var(--radius-sm, 6px) var(--radius-sm, 6px) 0;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.list-item:hover {
    background: rgba(183, 28, 28, 0.04);
    border-left-color: #b71c1c;
}

.list-item .item-name {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--navy);
    letter-spacing: 0.2px;
}

.menu-group {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-group:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.dual-col-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* --- Badges --- */
.menu-badges {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--off-white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
}

.halal-badge {
    background: #2E7D32;
    color: white;
    padding: 1rem;
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    border: 4px solid white;
    outline: 2px solid #2E7D32;
}

.halal-badge h3 {
    font-size: 0.8rem;
    line-height: 1.1;
    margin-bottom: 0.25rem;
    font-weight: 800;
}

.halal-icon {
    background: white;
    color: #2E7D32;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1;
}

.halal-icon span {
    font-size: 0.6rem;
    letter-spacing: 1px;
}

.store-info {
    font-size: 1.2rem;
    line-height: 1.4;
}

.store-info .text-red {
    font-size: 1.4rem;
}

/* --- Right Column: Build Your Own --- */
.menu-right-col {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
}

.step-block {
    margin-bottom: 0;
}

.step-title {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    border-bottom: 3px solid #b71c1c;
    padding-bottom: 0.25rem;
}

.step-title .step-arrow {
    color: #2E7D32;
    font-size: 1.5rem;
}

.step-title .step-subtitle {
    font-size: 1.3rem;
    color: var(--navy);
    letter-spacing: 0.5px;
}

.style-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.style-card {
    background: var(--white);
    color: var(--navy);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.style-card:hover {
    transform: translateY(-8px);
    border-color: var(--yellow);
    box-shadow: var(--shadow-xl);
}

.style-card .img-wrapper {
    background: var(--white);
    padding: 0.5rem;
    border-bottom: 3px solid var(--yellow);
}

.style-card img {
    width: 100%;
    height: 90px;
    object-fit: contain;
}

.style-card span {
    padding: 1rem 0.5rem;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: var(--navy);
    color: var(--white);
    transition: background 0.3s ease;
}

.style-card:hover span {
    background: var(--yellow);
    color: var(--navy);
}

.step-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-xl);
}

.step-col {
    display: flex;
    flex-direction: column;
}

.border-left {
    border-left: 2px dashed var(--gray-300);
    padding-left: var(--space-xl);
}

.options-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.options-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.options-list li {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.options-list.bullet-list li::before {
    content: '•';
    color: var(--navy);
    font-size: 1.2rem;
    line-height: 1;
}

.options-list.star-list li::before {
    content: '★';
    color: #2E7D32;
    font-size: 1rem;
    line-height: 1;
}

.options-list.two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1rem;
}

.spicy-icon {
    font-size: 1rem;
}

.sub-text {
    font-size: 0.8rem;
    color: var(--gray-500);
    font-weight: 600;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .menu-layout-grid {
        grid-template-columns: 1fr;
        padding: var(--space-xl);
    }

    .border-left {
        border-left: none;
        padding-left: 0;
        border-top: 2px dashed var(--gray-300);
        padding-top: var(--space-xl);
    }
}

@media (max-width: 600px) {
    .style-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }

    .step-row {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .step-col {
        display: contents;
    }

    .step-block {
        order: var(--order, 0);
    }

    .step-2 {
        --order: 1;
    }

    .step-3 {
        --order: 2;
    }

    .step-4 {
        --order: 3;
    }

    .step-5 {
        --order: 4;
    }

    .step-block.border-left {
        border-left: none;
        border-top: 2px dashed var(--gray-300);
        padding-left: 0;
        padding-top: var(--space-xl);
    }

    .page-hero {
        padding-top: calc(var(--header-height) + var(--space-xl));
        padding-bottom: var(--space-xl);
    }

    .dual-col-group {
        grid-template-columns: 1fr;
    }

    .menu-layout-grid {
        padding: var(--space-md);
        gap: var(--space-xl);
    }

    .step-title {
        font-size: 1.5rem;
    }

    .step-title .step-subtitle {
        font-size: 1.1rem;
    }
}