:root {
    --bg-color: #0a0a0a;
    --surface-color: #141414;
    --accent-color: #c5a059;
    --text-primary: #f5f5f5;
    --text-secondary: #888888;
    --border-color: rgba(197, 160, 89, 0.2);
    --font-main: 'Montserrat', sans-serif;
    --font-accent: 'Urbanist', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    padding-bottom: 120px;
}

h1, h2, h3 {
    font-family: var(--font-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.container {
    padding: 0 20px;
    max-width: 600px;
    margin: 0 auto;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
.skeleton {
    background: linear-gradient(90deg, #141414 25%, #1f1f1f 50%, #141414 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite linear;
    border-radius: 6px;
}
.skeleton-img-box {
    width: 100%;
    height: 280px;
    border-bottom: 2px solid #222;
}
.skeleton-text {
    height: 16px;
    margin-bottom: 10px;
    width: 100%;
}
.skeleton-text.short { width: 60%; }
.skeleton-title { height: 24px; width: 80%; margin-bottom: 15px; }

header {
    padding: 40px 0 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
    position: relative;
}

header h1 {
    color: var(--accent-color);
    font-size: 28px;
    letter-spacing: 3px;
}

header p {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 5px;
    letter-spacing: 2px;
}

.lang-toggle {
    position: absolute;
    top: 15px;
    right: 20px;
    display: flex;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
}

.lang-btn {
    cursor: pointer;
    color: var(--text-secondary);
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid transparent;
    transition: 0.3s;
}

.lang-btn.active {
    color: #000;
    background: var(--accent-color);
    border-color: var(--accent-color);
}

#history-section { display: none; margin-bottom: 30px; }
.history-card {
    background: linear-gradient(145deg, #1a1a1a, #141414);
    border: 1px solid var(--border-color); border-radius: 15px; padding: 15px; margin-bottom: 10px;
    display: flex; justify-content: space-between; align-items: center; cursor: pointer; transition: 0.3s;
}
.history-card:active { transform: scale(0.98); }
.history-info h4 { color: var(--accent-color); font-size: 14px; margin-bottom: 3px; font-family: var(--font-accent); letter-spacing: 1px;}
.history-info p { font-size: 11px; color: var(--text-secondary); }
.history-status { font-size: 10px; text-transform: uppercase; padding: 4px 8px; border-radius: 4px; background: #000; border: 1px solid #333; font-weight: 600; }
.status-cooking { color: var(--bg-color); background: var(--accent-color); border-color: var(--accent-color); }

.section-title {
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
    margin-left: 15px;
}

.main-lunch {
    background: var(--surface-color);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    margin-bottom: 30px;
    transition: box-shadow 0.3s ease;
}

.main-lunch:hover {
    box-shadow: 0 0 25px rgba(197, 160, 89, 0.15);
}

.main-lunch img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-bottom: 2px solid var(--accent-color);
    background-color: #222;
    display: block;
}

.main-lunch-content {
    padding: 25px;
}

.main-lunch .item-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.main-lunch .item-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
    white-space: pre-line;
}

.main-lunch .item-desc b {
    color: var(--accent-color);
    font-weight: 600;
}

.promo-container {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.main-lunch-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.main-lunch .item-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-color);
    font-family: var(--font-accent);
}

.catering-card {
    transition: all 0.4s ease;
}
.catering-card:hover {
    border-style: solid !important;
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.2);
}
.client-logos-wrapper {
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: rgba(0, 0, 0, 0.15);
}
.logos-title {
    font-size: 10px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 12px;
    font-weight: 400;
}
.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.logo-item {
    height: 24px;
    opacity: 0.35;
    filter: grayscale(100%) brightness(1.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}
.logo-item i {
    font-size: 24px;
    color: var(--text-primary);
    transition: color 0.3s;
}

.logo-item img {
    height: 100%;
    width: auto;
    display: block;
    object-fit: contain;
}

.catering-card:hover .logo-item {
    opacity: 0.75;
    filter: grayscale(0%) brightness(1);
}
.catering-card:hover .logo-item i {
    color: var(--accent-color);
}
.logo-item:hover {
    opacity: 1 !important;
    transform: scale(1.1);
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 200;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.modal-content {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px 25px;
    width: 100%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    animation: modalFadeIn 0.3s ease forwards;
}
@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(15px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
    position: absolute;
    top: 20px; right: 20px;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 20px;
    transition: color 0.2s;
    width: 30px; height: 30px;
    display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { color: var(--accent-color); }
.modal-title { font-size: 22px; color: var(--accent-color); margin-bottom: 5px; text-align: center; }
.modal-subtitle { font-size: 12px; color: var(--text-secondary); text-align: center; margin-bottom: 25px; font-weight: 300; }

.modal-content .form-group { margin-bottom: 16px; width: 100%; }

.marketing-pulse-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px 0 25px;
}
.pulse-ring {
    width: 70px;
    height: 70px;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.2);
    animation: ringGlow 3s infinite ease-in-out;
}
.pulse-ring i {
    font-size: 26px;
    color: var(--accent-color);
}
@keyframes ringGlow {
    0% { box-shadow: 0 0 15px rgba(197, 160, 89, 0.2); transform: scale(1); }
    50% { box-shadow: 0 0 30px rgba(197, 160, 89, 0.5); transform: scale(1.04); }
    100% { box-shadow: 0 0 15px rgba(197, 160, 89, 0.2); transform: scale(1); }
}

.item-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.addon-icon {
    width: 50px;
    text-align: center;
}

.addon-icon i {
    font-size: 26px;
    color: var(--accent-color);
}

.item-info {
    flex: 1;
}

.item-card .item-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.item-card .item-price {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 14px;
}

.qty-control {
    display: flex;
    align-items: center;
    background: #000;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 4px;
}

.qty-btn {
    background: transparent;
    color: var(--accent-color);
    border: none;
    width: 36px;
    height: 36px;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.1s ease, background 0.2s ease;
}

.qty-btn:active {
    transform: scale(0.9);
    background: rgba(197, 160, 89, 0.2);
    border-radius: 50%;
}

.qty-value {
    width: 30px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}

.payment-toggle {
    display: flex;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
}
.payment-toggle input[type="radio"] {
    display: none; 
}
.payment-toggle label {
    flex: 1;
    text-align: center;
    padding: 18px 10px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.payment-toggle input[type="radio"]:checked + label {
    background: var(--accent-color);
    color: #000;
}

.dynamic-panel {
    display: none;
    background: #101010;
    border: 1px dashed var(--accent-color);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 25px;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.input-field {
    display: block; 
    width: 100%;
    height: 56px; 
    margin: 0; 
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    padding: 0 18px; 
    line-height: 54px; 
    border-radius: 12px;
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
    box-sizing: border-box; 
    -webkit-appearance: none; 
    -moz-appearance: none;
    appearance: none;
}

input[type="date"], input[type="time"] {
    color-scheme: dark;
}

select.input-field {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c5a059' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 16px;
    padding-right: 40px; 
    cursor: pointer;
}

select.input-field option {
    background-color: #1a1a1a;
    color: var(--text-primary);
}

.input-field:focus {
    border-color: var(--accent-color);
}

.input-field::placeholder {
    color: #555;
    font-family: var(--font-main);
}

footer {
    margin-top: 60px;
    padding: 40px 20px 120px;
    background: var(--surface-color);
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-socials { display: flex; justify-content: center; gap: 25px; margin-bottom: 30px; }
.footer-socials a { color: var(--accent-color); font-size: 24px; text-decoration: none; transition: opacity 0.2s; }
.footer-socials a:active { opacity: 0.7; }

.footer-info { color: var(--text-secondary); font-size: 13px; margin-bottom: 12px; }

.footer-logo {
    font-family: var(--font-accent);
    font-size: 18px;
    color: var(--accent-color);
    letter-spacing: 3px;
    margin-top: 25px;
}

.footer-dev { 
    margin-top: 35px; 
    font-size: 11px; 
    color: var(--text-secondary); 
    letter-spacing: 1px; 
    text-transform: uppercase; 
}
.footer-dev a { 
    color: var(--accent-color); 
    text-decoration: none; 
    font-weight: 700; 
    font-family: var(--font-accent); 
    letter-spacing: 2px; 
    transition: all 0.3s ease; 
}
.footer-dev a:hover, .footer-dev a:active { 
    text-shadow: 0 0 10px rgba(197, 160, 89, 0.6); 
}

.footer-privacy {
    margin-top: 15px;
    font-size: 11px;
}
.footer-privacy a {
    color: var(--text-secondary);
    text-decoration: underline;
    transition: color 0.2s ease;
    cursor: pointer;
}
.footer-privacy a:hover {
    color: var(--accent-color);
}

.checkout-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 20px 15px;
    border-top: 1px solid var(--border-color);
    z-index: 100;
}

.consent-text {
    font-size: 10px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 8px;
    line-height: 1.3;
}
.consent-text a {
    color: var(--accent-color);
    text-decoration: none;
}

.btn-main {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: block;
    background: var(--accent-color);
    color: #000;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-accent);
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.1s;
}

.btn-main:active { opacity: 0.8; transform: scale(0.98); }
.btn-main:disabled { background: #333; color: #666; cursor: not-allowed; }

.notification {
    display: none;
    text-align: center;
    padding: 40px 20px;
    background: var(--surface-color);
    border: 1px solid var(--accent-color);
    border-radius: 12px;
    margin-top: 20px;
}

.status-tracker { 
    margin: 30px 0; 
    display: flex; 
    justify-content: space-between; 
    position: relative; 
}
.status-step { 
    flex: 1; 
    text-align: center; 
    font-size: 11px; 
    color: var(--text-secondary); 
    position: relative; 
    z-index: 2; 
    transition: all 0.3s;
}
.status-step i { 
    display: block; 
    width: 35px; 
    height: 35px; 
    background: var(--surface-color); 
    border: 1px solid var(--border-color); 
    border-radius: 50%; 
    line-height: 35px; 
    margin: 0 auto 10px; 
    color: var(--text-secondary); 
    transition: 0.3s; 
}
.status-step.active i { 
    background: var(--accent-color); 
    color: #000; 
    border-color: var(--accent-color); 
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.4); 
}
.status-step.active { color: var(--text-primary); }
.status-line { 
    position: absolute; 
    top: 17px; 
    left: 10%; 
    right: 10%; 
    height: 1px; 
    background: var(--border-color); 
    z-index: 1; 
}

.btn-secondary { 
    display: block; 
    width: 100%; 
    background: transparent; 
    border: 1px solid var(--accent-color); 
    color: var(--accent-color); 
    padding: 18px; 
    border-radius: 12px; 
    text-decoration: none; 
    font-weight: 600; 
    margin-top: 20px; 
    transition: background 0.2s; 
}
.btn-secondary:active { background: rgba(197, 160, 89, 0.1); }

.btn-text {
    display: block;
    width: 100%;
    color: var(--text-secondary);
    padding: 15px;
    text-decoration: none;
    font-size: 14px;
    margin-top: 10px;
    transition: color 0.2s;
    cursor: pointer;
}
.btn-text:active { color: #fff; }