:root {
    --bg-main: radial-gradient(circle at 15% 20%, rgba(255,255,255,0.65) 0%, rgba(255,255,255,0.25) 30%, transparent 55%),
               radial-gradient(circle at 85% 5%, rgba(255,214,239,0.75) 0%, rgba(255,214,239,0.15) 40%, transparent 60%),
               linear-gradient(135deg, #f6f7fb 0%, #ecf1ff 60%, #dee6ff 100%);
    --bg-panel: linear-gradient(150deg, rgba(255,255,255,0.9), rgba(238,244,255,0.95));
    --bg-card: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(244,248,255,0.95));
    --primary: #ff8c37;
    --primary-strong: #ff4f87;
    --accent: #58d6ff;
    --accent-soft: rgba(88,214,255,0.2);
    --accent-green: #3ecf8e;
    --accent-green-soft: rgba(62,207,142,0.18);
    --text-light: #1f2636;
    --text-muted: #647197;
    --border: rgba(18, 32, 64, 0.08);
    --radius-lg: 30px;
    --radius-md: 20px;
    --shadow-lg: 0 50px 120px rgba(3, 6, 18, 0.85);
    --shadow-sm: 0 22px 50px rgba(3, 7, 22, 0.65);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    background: var(--bg-main);
    color: var(--text-light);
    min-height: 100vh;
    background-attachment: fixed;
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    color: #8fe7ff;
}

header {
    backdrop-filter: blur(14px);
    background: rgba(255,255,255,0.85);
    border-bottom: 1px solid rgba(18,32,64,0.08);
    padding: 18px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(5,8,18,0.65);
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 26px;
    margin: 0;
    padding: 0;
    align-items: center;
}

header nav ul li {
    position: relative;
}

header nav ul li a {
    color: var(--text-light);
    font-weight: 600;
}

header .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(120deg, rgba(255,255,255,0.12), rgba(94,248,255,0.15));
    padding: 8px 18px;
    border-radius: 999px;
    box-shadow: 0 25px 45px rgba(0,0,0,0.45);
}

header .logo img {
    height: 50px;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.45));
}

.logo-text {
    font-weight: 600;
    font-size: 20px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

header nav ul {
    align-items: center;
}

header nav ul li {
    display: flex;
    align-items: center;
}

.nav-cart {
    position: relative;
}

.cart-trigger {
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(18,32,64,0.08);
    border-radius: 50%;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lang-switch {
    position: relative;
    min-width: 130px;
    z-index: 5;
}

.lang-switch button {
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(18,32,64,0.08);
    color: var(--text-light);
    padding: 8px 18px;
    border-radius: 999px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-shadow: inset 0 0 8px rgba(255,255,255,0.05);
    text-transform: uppercase;
}

.lang-options {
    position: absolute;
    top: 120%;
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: 0.2s ease;
    min-width: 130px;
    z-index: 10;
}

 .lang-switch.open .lang-options {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.lang-options a {
    color: var(--text-light);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 4px;
    border-radius: 10px;
    transition: background 0.2s ease, color 0.2s ease;
}

.lang-options a.active {
    color: var(--primary);
    background: rgba(255,255,255,0.05);
}

.user-switch {
    position: relative;
    min-width: 190px;
}

.user-switch button {
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(18,32,64,0.08);
    color: var(--text-light);
    padding: 6px 16px;
    border-radius: 999px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.user-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,1), rgba(94,248,255,0.4));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.user-meta {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    text-align: left;
}

.user-meta small {
    font-size: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.user-meta strong {
    font-size: 14px;
}

.user-options {
    position: absolute;
    top: 120%;
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 10px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: 0.2s ease;
    min-width: 180px;
    z-index: 10;
}

.user-switch.open .user-options {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.user-options a {
    color: var(--text-light);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 4px;
    border-radius: 10px;
    transition: background 0.2s ease;
}

.user-options a:hover {
    background: rgba(255,255,255,0.07);
}

.user-options i {
    width: 16px;
    text-align: center;
    color: var(--text-muted);
}

.user-switch button:focus-visible {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(8,11,20,0.6), 0 0 18px rgba(45,216,255,0.35);
}

.nav-cart {
    position: relative;
}

.nav-cart #cart-count {
    position: absolute;
    top: -12px;
    right: -6px;
}

.lang-switch.open button {
    border-color: rgba(255,255,255,0.4);
    box-shadow: 0 0 12px rgba(255,140,95,0.3), inset 0 0 10px rgba(255,255,255,0.08);
}

.lang-switch button i {
    font-size: 12px;
    color: var(--text-muted);
}

.lang-switch button:focus-visible {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(8,11,20,0.6), 0 0 18px rgba(45,216,255,0.35);
}

.lang-options a:hover {
    background: rgba(255,255,255,0.07);
}

.lang-code {
    font-size: 13px;
    letter-spacing: 0.4px;
    font-weight: 600;
}

header nav ul li a:hover,
.category-navigation a.active {
    color: var(--primary);
}

.cart-icon {
    height: 32px;
    width: 32px;
    cursor: pointer;
}

#cart-count {
    position: absolute;
    min-width: 26px;
    height: 26px;
    background: linear-gradient(135deg, var(--primary), var(--accent-green));
    color: #fff;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: 0 6px 12px rgba(0,0,0,0.35);
}

.banner.futuristic {
    margin: 50px auto 30px;
    max-width: 1200px;
    border-radius: var(--radius-lg);
    padding: clamp(40px, 6vw, 70px);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    background: radial-gradient(circle at 20% 20%, rgba(255, 194, 103, 0.45), transparent 60%),
                radial-gradient(circle at 90% 10%, rgba(91, 218, 255, 0.35), transparent 60%),
                radial-gradient(circle at 60% 80%, rgba(83,255,146,0.3), transparent 65%),
                rgba(6, 8, 18, 0.92);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-content h1 {
    font-size: clamp(38px, 4.5vw, 58px);
    margin: 0;
    line-height: 1.2;
}

.banner-content p {
    color: var(--text-muted);
    margin: 18px 0 30px;
}

.banner-buttons {
    display: flex;
    gap: 16px;
}

.primary-btn,
.ghost-btn {
    border-radius: 999px;
    padding: 14px 32px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-btn {
    background: linear-gradient(135deg, var(--primary), var(--accent-green));
    color: #fff;
    box-shadow: 0 18px 36px rgba(255, 152, 51, 0.35);
}

.primary-btn:hover,
.ghost-btn:hover {
    transform: translateY(-2px);
}

.ghost-btn {
    background: rgba(255,255,255,0.95);
    color: var(--primary-strong);
    border: 1px solid rgba(83,255,146,0.4);
}

.banner-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-visual::before,
.banner-visual::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    inset: 8%;
    border: 1px solid rgba(255,255,255,0.08);
}

.banner-visual::after {
    inset: 0;
    border-color: rgba(255,255,255,0.04);
}

.banner-visual img {
    width: 100%;
    max-width: 420px;
    animation: heroFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 25px 45px rgba(0,0,0,0.55));
}

.hero-smoke {
    position: absolute;
    bottom: 55px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.85) 6%, rgba(255,255,255,0.35) 45%, rgba(255,255,255,0) 80%);
    filter: blur(3px);
    opacity: 0;
    mix-blend-mode: screen;
    animation: heroSmoke 7s ease-in-out infinite;
    box-shadow: 0 0 25px rgba(255,255,255,0.25);
}

.hero-smoke-one {
    left: 25%;
    animation-delay: 0s;
}

.hero-smoke-two {
    left: 55%;
    width: 170px;
    height: 170px;
    animation-delay: 1.2s;
}

.hero-smoke-three {
    left: 40%;
    width: 120px;
    height: 120px;
    animation-delay: 3s;
}

@keyframes heroSmoke {
    0% { transform: translateY(40px) scale(0.55); opacity: 0; }
    15% { opacity: 0.35; }
    35% { opacity: 0.7; }
    65% { opacity: 0.55; }
    100% { transform: translateY(-170px) scale(1.55); opacity: 0; }
}

@keyframes heroFloat {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

.category-navigation {
    max-width: 1100px;
    margin: 0 auto 35px;
}

.category-navigation ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    padding: 0;
    margin: 0;
}

.category-navigation a {
    padding: 11px 22px;
    border-radius: 999px;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(62, 207, 142, 0.25);
    color: var(--text-light);
    transition: all 0.2s ease;
    box-shadow: 0 6px 18px rgba(62,207,142,0.15);
}

.category-navigation a:hover,
.category-navigation a.active {
    border-color: var(--accent-green);
    background: linear-gradient(135deg, rgba(255,255,255,1), rgba(94,248,255,0.3));
}

.menu {
    max-width: 1200px;
    margin: 0 auto 90px;
}

.menu-section {
    margin-bottom: 50px;
}

.menu-section h3 {
    font-size: 28px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 28px;
}

.menu-item {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(18,32,64,0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 18px 45px rgba(6, 13, 40, 0.12);
    transition: transform 0.25s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.menu-item:hover {
    transform: translateY(-6px);
    border-color: rgba(62,207,142,0.45);
    box-shadow: 0 25px 60px rgba(62,207,142,0.2);
}

.menu-item::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: calc(var(--radius-md) - 2px);
    border: 1px solid rgba(255,255,255,0.5);
    opacity: 0.25;
    pointer-events: none;
}

.menu-item-media {
    background: linear-gradient(140deg, rgba(255,255,255,0.95), rgba(232,238,255,0.9));
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    padding: 20px;
}

.menu-item-media img {
    max-height: 165px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 35px rgba(0,0,0,0.45));
}

.synthetic-thumb {
    width: 140px;
    height: 140px;
    border-radius: 28px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(68, 240, 255, 0.35));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    font-weight: 600;
    color: rgba(15, 19, 33, 0.9);
    text-shadow: 0 8px 18px rgba(0,0,0,0.35);
    position: relative;
    overflow: hidden;
}

.synthetic-thumb::after {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.6);
    opacity: 0.35;
}

.menu-item-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.menu-item-body h4 {
    margin: 0;
    color: var(--text-light);
}

.menu-item-desc {
    color: var(--text-muted);
    min-height: 48px;
}

.menu-item-price {
    font-weight: 600;
    color: var(--primary-strong);
}

.menu-item button {
    align-self: flex-start;
    background: linear-gradient(120deg, var(--primary), var(--primary-strong));
    border: none;
    color: #fff;
    padding: 10px 22px;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 20px rgba(255,140,55,0.35);
}

.menu-item button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(255,140,55,0.5);
}

.cart-popup {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    height: 100%;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    z-index: 200;
    box-shadow: -20px 0 40px rgba(4,8,24,0.15);
    padding: 10px 0;
}

.cart-popup-content,
.add-to-cart-popup-content {
    background: var(--bg-panel);
    border-radius: var(--radius-md);
    padding: 26px;
    margin: 40px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.cart-popup-content {
    display: flex;
    flex-direction: column;
    height: calc(100% - 80px);
    overflow: hidden;
}

.cart-popup .close,
.add-to-cart-close-btn {
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-muted);
}

.cart-items {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow-y: auto;
    padding-right: 4px;
    flex: 1;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.12);
    background: linear-gradient(140deg, rgba(255,255,255,0.08), rgba(83,255,146,0.16));
    box-shadow: 0 22px 38px rgba(5,8,24,0.55);
    font-size: 15px;
}

.cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cart-item-info .item-name {
    font-weight: 600;
    letter-spacing: 0.2px;
}

.cart-item-info .item-price,
.cart-item-info .item-meta {
    font-size: 13px;
    color: var(--text-muted);
}

.cart-item-info .item-price {
    color: var(--primary-strong);
    font-size: 15px;
}

.cart-item.empty {
    justify-content: center;
    border-style: dashed;
    color: var(--text-muted);
    background: transparent;
    box-shadow: none;
    min-height: 80px;
    text-align: center;
}

.cart-total {
    margin-top: 18px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(18,32,64,0.08);
    border-radius: 14px;
    padding: 14px 18px;
}

.checkout-btn {
    display: inline-block;
    margin-top: 16px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 999px;
    cursor: pointer;
    text-align: center;
    width: 100%;
}

.checkout-btn:hover {
    transform: translateY(-2px);
}

.form-container {
    background: var(--bg-panel);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.checkout-wrapper {
    max-width: 1180px;
    margin: 50px auto 90px;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 32px;
}

.checkout-details input,
.checkout-details select,
.checkout-details textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 14px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(10, 14, 30, 0.9);
    color: var(--text-light);
}

.checkout-details label {
    display: block;
    margin-bottom: 6px;
    color: var(--text-muted);
}

.voucher-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

.info-text {
    color: var(--text-muted);
    font-size: 13px;
    min-height: 20px;
}

.checkout-summary {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
}

.summary-line.total-line {
    border-bottom: none;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-light);
}

.checkout-summary-cta {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(255,255,255,0.95);
    padding: 14px;
    border-radius: 18px;
    box-shadow: 0 18px 30px rgba(5,8,24,0.08);
}

.checkout-summary-cta .checkout-btn {
    width: 100%;
}

@media (min-width: 900px) {
    .checkout-summary-cta {
        position: sticky;
        bottom: 24px;
    }
}

.paypal-actions,
.cash-actions {
    margin-top: 18px;
}

.payment-hint {
    font-size: 13px;
    color: var(--text-muted);
    margin: -4px 0 12px;
}

.cash-actions {
    display: none;
}

.paypal-actions {
    padding-top: 6px;
}

.paypal-warning {
    color: #ff9a7b;
    font-size: 13px;
    min-height: 18px;
    margin-top: 8px;
}

.error-text,
.result-msg {
    margin-top: 6px;
    min-height: 18px;
    font-size: 13px;
    color: #ffb4a2;
}

.checkout-btn.loading {
    opacity: 0.6;
    pointer-events: none;
}

.input-error {
    border-color: rgba(255,107,107,0.85) !important;
    box-shadow: 0 0 0 1px rgba(255,107,107,0.35);
}

.extras-container {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.extras-option {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.muted {
    color: var(--text-muted);
    font-size: 14px;
}

.login-form,
.register-form {
    max-width: 440px;
    margin: 60px auto;
    background: var(--bg-panel);
    padding: 34px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.login-form form,
.register-form form {
    display: grid;
    gap: 12px;
}

.login-form input,
.register-form input,
.login-form button,
.register-form button {
    padding: 12px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.95);
    color: var(--text-light);
}

.login-form button,
.register-form button {
    background: linear-gradient(135deg, var(--primary), var(--accent-green));
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: #fff;
}

.error-msg {
    color: #ff9f9f;
}

.success-msg {
    color: #6bffaf;
}

.guest-cta {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-muted);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-panel);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.admin-table th,
.admin-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    font-size: 14px;
}

.admin-table th {
    background: rgba(255, 255, 255, 0.04);
}

.admin-order-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 24px;
    background: var(--bg-panel);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.admin-order-info p {
    margin: 8px 0;
    color: var(--text-muted);
}

.admin-order-info strong {
    color: var(--text-light);
}

.admin-order-items h3 {
    margin-top: 0;
}

.admin-table.compact th,
.admin-table.compact td {
    padding: 10px 12px;
    font-size: 13px;
}

.align-right {
    text-align: right;
}

.admin-order-actions form {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 16px;
}

.admin-order-actions select,
.admin-order-actions input {
    padding: 10px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: rgba(7, 10, 18, 0.85);
    color: var(--text-light);
}

.checkout-btn.ghost {
    background: rgba(255,255,255,0.08);
    color: var(--text-light);
}

footer {
    padding: 24px;
    text-align: center;
    color: var(--text-light);
    background: rgba(255,255,255,0.92);
    border-top: 1px solid rgba(18,32,64,0.08);
    box-shadow: 0 -10px 30px rgba(5,8,24,0.08);
}

@media (max-width: 1100px) {
    .banner.futuristic {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .banner-buttons {
        justify-content: center;
    }
}

@media (max-width: 900px) {
    header {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }

    .banner.futuristic {
        padding: 50px 30px;
    }

    .checkout-grid,
    .admin-order-card {
        grid-template-columns: 1fr;
    }

    .cart-popup {
        width: 100%;
    }

    .checkout-summary {
        order: -1;
    }

    .checkout-summary-cta {
        position: static;
    }
}

@media (max-width: 700px) {
    header nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
    }

    header .logo {
        width: 100%;
        justify-content: center;
    }

    .banner.futuristic {
        padding: 40px 18px;
    }

    .category-navigation ul {
        flex-wrap: wrap;
        gap: 10px;
    }
}


.quantity-control {
    display: flex;
    align-items: center;
    gap: 10px;
}
.qty-control {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
    color: var(--text-light);
    font-size: 18px;
    cursor: pointer;
}
.qty-control:hover {
    background: rgba(255,255,255,0.15);
}
.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 6px;
    border-radius: 999px;
    border: 1px solid rgba(83,255,146,0.35);
    background: linear-gradient(120deg, rgba(255,255,255,0.03), rgba(83,255,146,0.12));
}
.cart-qty-btn,
.remove-item {
    border: 1px solid rgba(94,248,255,0.3);
    background: rgba(94,248,255,0.12);
    color: var(--text-light);
    border-radius: 12px;
    width: 34px;
    height: 34px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s ease, transform 0.2s ease;
}
.cart-qty-display {
    min-width: 30px;
    text-align: center;
    font-weight: 700;
}
.remove-item {
    background: rgba(255,107,107,0.18);
    color: #ffd7c9;
    border-color: rgba(255,107,107,0.55);
}

.cart-qty-btn:hover,
.remove-item:hover {
    background: rgba(62,207,142,0.2);
    transform: translateY(-1px);
}

.remove-item:hover {
    background: rgba(255,107,107,0.35);
    color: #fff;
}


.legal-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}
.legal-card {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    line-height: 1.6;
}
.legal-card h1 {
    margin-top: 0;
}


.cart-item-info {
    display: flex;
    flex-direction: column;
}
.cart-item.empty {
    text-align: center;
    color: var(--text-muted);
}

.reservation-page {
    max-width: 1100px;
    margin: 60px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.reservation-card, .calendar-panel {
    background: var(--bg-panel);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.reservation-card form label {
    display: block;
    margin-top: 16px;
    color: var(--text-muted);
}

.reservation-card form input,
.reservation-card form select {
    width: 100%;
    margin-top: 6px;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(7, 10, 18, 0.9);
    color: var(--text-light);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.calendar-header button {
    border: none;
    background: rgba(255,255,255,0.08);
    color: var(--text-light);
    padding: 6px 12px;
    border-radius: 999px;
    cursor: pointer;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.calendar-grid button {
    border: none;
    padding: 10px 0;
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    color: var(--text-light);
    cursor: pointer;
}

.calendar-grid button.blocked {
    background: rgba(255, 99, 99, 0.2);
    color: rgba(255,255,255,0.4);
    cursor: not-allowed;
}

.calendar-grid button.selected {
    background: linear-gradient(135deg, var(--primary), var(--accent));
}


.flag-icon,
.flag-icon-img {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.flag-icon-img {
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.35);
    object-fit: cover;
}

.flag-icon {
    font-size: 16px;
    line-height: 1;
}

