/* ==========================================
   TACOS MODERNOS - ESTILOS PRINCIPALES
   ========================================== */

/* Variables CSS */
:root {
    --primary-color: #ff6b35;
    --secondary-color: #f7c744;
    --accent-pink: #ff1493;
    --accent-cyan: #00ffff;
    --accent-lime: #39ff14;
    --accent-purple: #9b59b6;
    --dark-bg: #0a0a0a;
    --card-bg: #1a1a1a;
    --card-border: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #888888;
    --gold: #ffd700;
    --gradient-neon: linear-gradient(135deg, var(--accent-pink), var(--accent-cyan), var(--accent-lime));
    --gradient-gold: linear-gradient(135deg, #ffd700, #ff8c00, #ffd700);
    --shadow-glow: 0 0 20px rgba(255, 107, 53, 0.5);
    --shadow-neon: 0 0 30px rgba(0, 255, 255, 0.3);
}

/* Reset y Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
}

/* ==========================================
   SPLASH SCREEN
   ========================================== */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.splash-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.splash-content {
    text-align: center;
    animation: fadeInUp 0.8s ease;
}

.splash-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.splash-logo i {
    font-size: 3rem;
    color: var(--accent-pink);
    animation: pulse 1.5s infinite;
}

.splash-logo i.flip {
    transform: scaleX(-1);
}

.splash-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    letter-spacing: 8px;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    animation: glowText 2s infinite;
}

.splash-subtitle {
    font-size: 1rem;
    color: var(--accent-cyan);
    letter-spacing: 4px;
    margin-top: 5px;
}

.splash-loader {
    width: 200px;
    height: 4px;
    background: var(--card-bg);
    border-radius: 4px;
    margin: 30px auto 0;
    overflow: hidden;
}

.loader-bar {
    width: 0;
    height: 100%;
    background: var(--gradient-neon);
    animation: loading 2s ease-in-out forwards;
}

@keyframes loading {
    0% { width: 0; }
    100% { width: 100%; }
}

@keyframes glowText {
    0%, 100% { filter: drop-shadow(0 0 10px var(--accent-pink)); }
    50% { filter: drop-shadow(0 0 20px var(--accent-cyan)); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ==========================================
   APP CONTAINER
   ========================================== */
.app-container {
    min-height: 100vh;
    padding-bottom: 90px;
    transition: opacity 0.5s ease;
}

.app-container.has-items {
    padding-bottom: 90px;
}

.app-container.hidden {
    opacity: 0;
    visibility: hidden;
}

.app-container.visible {
    opacity: 1;
    visibility: visible;
}

/* ==========================================
   HEADER
   ========================================== */
.app-header {
    position: relative;
    padding: 30px 20px;
    text-align: center;
    background: linear-gradient(180deg, #1a1a2e 0%, var(--dark-bg) 100%);
    border-bottom: 2px solid;
    border-image: var(--gradient-neon) 1;
    overflow: hidden;
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 20, 147, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

.header-content {
    position: relative;
    z-index: 1;
}

.logo-section {
    margin-bottom: 15px;
}

.logo-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.neon-icon {
    font-size: 1.8rem;
    color: var(--accent-pink);
    filter: drop-shadow(0 0 10px var(--accent-pink));
    animation: neonFlicker 3s infinite;
}

.neon-icon.main {
    font-size: 2.5rem;
    color: var(--accent-cyan);
    filter: drop-shadow(0 0 15px var(--accent-cyan));
}

.neon-icon.flip {
    transform: scaleX(-1);
}

@keyframes neonFlicker {
    0%, 100% { opacity: 1; }
    92% { opacity: 1; }
    93% { opacity: 0.8; }
    94% { opacity: 1; }
    96% { opacity: 0.9; }
    97% { opacity: 1; }
}

.brand-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    letter-spacing: 10px;
    color: var(--text-primary);
    text-shadow: 
        0 0 10px var(--accent-cyan),
        0 0 20px var(--accent-cyan),
        0 0 40px var(--accent-cyan);
    margin: 0;
}

.brand-subtitle {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 6px;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 5px 0 0;
}

.header-info {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.info-item i {
    color: var(--accent-lime);
    font-size: 0.9rem;
}

/* ==========================================
   MENU CONTAINER
   ========================================== */
.menu-container {
    padding: 20px 15px;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   CATEGORY STYLES
   ========================================== */
.menu-category {
    margin-bottom: 30px;
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 0 10px;
}

.category-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.category-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 3px;
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(247, 199, 68, 0.5);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.category-title i {
    font-size: 1rem;
    color: var(--accent-lime);
}

/* ==========================================
   MENU ITEMS
   ========================================== */
.menu-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.menu-item {
    position: relative;
    background: linear-gradient(145deg, var(--card-bg), #222);
    border: 2px solid var(--secondary-color);
    border-radius: 15px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-item:hover::before,
.menu-item:active::before {
    opacity: 1;
}

.menu-item:hover,
.menu-item:active {
    transform: scale(1.02);
    box-shadow: 
        0 0 20px rgba(255, 215, 0, 0.3),
        inset 0 0 20px rgba(255, 215, 0, 0.1);
}

.menu-item.selected {
    border-color: var(--accent-lime);
    box-shadow: 0 0 25px rgba(57, 255, 20, 0.4);
}

.item-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--secondary-color);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-image .placeholder-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.item-details {
    flex: 1;
    position: relative;
    z-index: 1;
}

.item-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.item-description {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.item-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

/* Quantity Controls */
.quantity-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    background: transparent;
    color: var(--secondary-color);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.qty-btn:hover,
.qty-btn:active {
    background: var(--secondary-color);
    color: var(--dark-bg);
}

.qty-btn.add {
    border-color: var(--accent-lime);
    color: var(--accent-lime);
}

.qty-btn.add:hover,
.qty-btn.add:active {
    background: var(--accent-lime);
    color: var(--dark-bg);
}

.qty-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--text-primary);
    min-width: 25px;
    text-align: center;
}

/* ==========================================
   REVIEW ORDER BAR
   ========================================== */
.review-order-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a2e, #0d0d1a);
    border-top: 2px solid var(--accent-lime);
    padding: 12px 15px;
    display: none;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
    box-shadow: 
        0 -5px 30px rgba(57, 255, 20, 0.3),
        0 -2px 20px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease;
}

.review-order-bar.visible {
    display: flex;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.review-bar-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
}

.review-count {
    background: var(--accent-lime);
    color: var(--dark-bg);
    font-weight: 800;
    font-size: 1rem;
    min-width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-items-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.review-separator {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.review-total {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    color: var(--accent-lime);
    letter-spacing: 1px;
}

.review-btn {
    background: linear-gradient(135deg, var(--accent-lime), #00cc00);
    border: none;
    color: var(--dark-bg);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 14px 25px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(57, 255, 20, 0.4);
}

.review-btn:hover,
.review-btn:active {
    transform: scale(1.02);
    box-shadow: 0 6px 25px rgba(57, 255, 20, 0.6);
}

.review-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.review-btn:hover i {
    transform: translateX(3px);
}

/* Pulse animation for the bar */
.review-order-bar::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-lime);
    animation: barPulse 2s infinite;
}

@keyframes barPulse {
    0%, 100% { 
        box-shadow: 0 0 10px var(--accent-lime), 0 0 20px var(--accent-lime); 
        opacity: 1;
    }
    50% { 
        box-shadow: 0 0 20px var(--accent-lime), 0 0 40px var(--accent-lime); 
        opacity: 0.8;
    }
}

/* Pulse animation when item added */
.review-order-bar.pulse {
    animation: addItemPulse 0.4s ease;
}

@keyframes addItemPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); background: linear-gradient(135deg, #252545, #1a1a30); }
    100% { transform: scale(1); }
}



/* ==========================================
   MODALS
   ========================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: linear-gradient(180deg, #1a1a2e, var(--dark-bg));
    border-radius: 25px 25px 0 0;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid var(--secondary-color);
    border-bottom: none;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    border-bottom: 1px solid var(--card-border);
}

.modal-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-header h2 i {
    color: var(--accent-lime);
}

.close-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--text-muted);
    background: transparent;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.close-btn:hover {
    border-color: var(--accent-pink);
    color: var(--accent-pink);
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 25px;
}

.modal-footer {
    padding: 20px 25px;
    border-top: 1px solid var(--card-border);
}

/* ==========================================
   CART MODAL
   ========================================== */
.cart-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.cart-item-image {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-image .placeholder-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 3px;
}

.cart-item-price {
    font-size: 0.85rem;
    color: var(--accent-lime);
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-item-qty .qty-btn {
    width: 28px;
    height: 28px;
    font-size: 1rem;
}

.cart-item-qty .qty-value {
    font-size: 1.1rem;
}

.cart-item-total {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    color: var(--secondary-color);
    min-width: 70px;
    text-align: right;
}

.cart-empty {
    text-align: center;
    padding: 40px 20px;
    display: none;
}

.cart-empty.show {
    display: block;
}

.cart-empty i {
    font-size: 4rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.cart-empty p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.cart-empty span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.cart-summary {
    margin-bottom: 15px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.summary-row.total {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    border-top: 1px solid var(--card-border);
    padding-top: 12px;
    margin-top: 5px;
}

.summary-row.total span:last-child {
    color: var(--accent-lime);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
}

.checkout-btn {
    width: 100%;
    padding: 18px;
    border-radius: 15px;
    border: none;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--dark-bg);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.checkout-btn:hover:not(:disabled) {
    transform: scale(1.02);
    box-shadow: 0 5px 25px rgba(247, 199, 68, 0.4);
}

.checkout-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ==========================================
   TABLE MODAL
   ========================================== */
.table-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.table-grid > .table-btn:last-child {
    grid-column: span 2;
}

.table-btn {
    padding: 25px 15px;
    border-radius: 15px;
    border: 2px solid var(--card-border);
    background: var(--card-bg);
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.table-btn i {
    font-size: 2rem;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.table-btn:hover {
    border-color: var(--secondary-color);
}

.table-btn:hover i {
    color: var(--secondary-color);
}

.table-btn.selected {
    border-color: var(--accent-lime);
    background: rgba(57, 255, 20, 0.1);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
}

.table-btn.selected i {
    color: var(--accent-lime);
}

/* Para Llevar button special style */
.table-btn.takeaway {
    border-color: var(--primary-color);
    background: linear-gradient(145deg, rgba(255, 107, 53, 0.1), var(--card-bg));
}

.table-btn.takeaway i {
    color: var(--primary-color);
}

.table-btn.takeaway:hover {
    border-color: var(--primary-color);
    background: rgba(255, 107, 53, 0.15);
}

.table-btn.takeaway:hover i {
    color: var(--primary-color);
}

.table-btn.takeaway.selected {
    border-color: var(--accent-lime);
    background: rgba(57, 255, 20, 0.1);
}

.table-btn.takeaway.selected i {
    color: var(--accent-lime);
}

.whatsapp-btn {
    width: 100%;
    padding: 18px;
    border-radius: 15px;
    border: none;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover:not(:disabled) {
    transform: scale(1.02);
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.whatsapp-btn i {
    font-size: 1.4rem;
}

/* ==========================================
   SUCCESS MODAL
   ========================================== */
.success-modal {
    text-align: center;
    padding: 40px 25px;
    border-radius: 25px;
    max-height: auto;
    transform: translateY(50px);
    opacity: 0;
}

.modal.active .success-modal {
    transform: translateY(0);
    opacity: 1;
}

.success-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-lime), #00cc00);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    animation: successPop 0.5s ease;
}

@keyframes successPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.success-icon i {
    font-size: 3rem;
    color: var(--dark-bg);
}

.success-modal h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 3px;
    color: var(--accent-lime);
    margin-bottom: 10px;
}

.success-modal p {
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.success-modal .table-info {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin: 20px 0;
}

.success-modal .table-info span {
    color: var(--accent-lime);
}

.new-order-btn {
    padding: 15px 40px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--dark-bg);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.new-order-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 25px rgba(247, 199, 68, 0.4);
}

/* ==========================================
   FOOTER
   ========================================== */
.app-footer {
    background: linear-gradient(180deg, var(--dark-bg), #1a1a2e);
    padding: 25px 20px;
    text-align: center;
    border-top: 2px solid;
    border-image: var(--gradient-neon) 1;
    margin-top: 30px;
}

.social-handle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: var(--card-bg);
    border-radius: 30px;
    border: 2px solid var(--accent-lime);
    margin-bottom: 15px;
}

.social-handle i {
    font-size: 1.3rem;
    color: var(--accent-pink);
}

.social-handle span {
    font-weight: 600;
    color: var(--text-primary);
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer-info i {
    color: var(--accent-lime);
}

/* Admin Panel Button */
.admin-panel-btn {
    margin-top: 20px;
    padding: 12px 25px;
    border-radius: 10px;
    border: 1px solid var(--card-border);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.85rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.admin-panel-btn:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    background: rgba(247, 199, 68, 0.1);
}

.admin-panel-btn i {
    font-size: 0.9rem;
}

/* ==========================================
   ADMIN LOGIN MODAL
   ========================================== */
.admin-login-modal {
    max-width: 350px;
}

.admin-login-form {
    padding: 10px 0;
}

.input-group {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--card-bg);
    border: 2px solid var(--card-border);
    border-radius: 12px;
    padding: 15px 20px;
    transition: all 0.3s ease;
}

.input-group:focus-within {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.input-group i {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.input-group:focus-within i {
    color: var(--accent-cyan);
}

.input-group input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    outline: none;
}

.input-group input::placeholder {
    color: var(--text-muted);
}

.login-error {
    color: #ff4757;
    font-size: 0.85rem;
    text-align: center;
    margin-top: 15px;
    min-height: 20px;
}

.admin-login-submit {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, var(--accent-cyan), #0099cc);
    color: var(--dark-bg);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.admin-login-submit:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 25px rgba(0, 255, 255, 0.4);
}

/* ==========================================
   ANIMATIONS & UTILITIES
   ========================================== */
.shake {
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.bounce {
    animation: bounce 0.5s ease;
}

@keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (min-width: 600px) {
    .modal-content {
        border-radius: 25px;
        margin: auto;
        max-height: 85vh;
        border: 2px solid var(--secondary-color);
    }
    
    .modal {
        align-items: center;
        padding: 20px;
    }
}

@media (max-width: 380px) {
    .brand-title {
        font-size: 2.8rem;
        letter-spacing: 6px;
    }
    
    .brand-subtitle {
        font-size: 1.4rem;
        letter-spacing: 4px;
    }
    
    .category-title {
        font-size: 1.2rem;
    }
    
    .item-name {
        font-size: 0.9rem;
    }
    
    .item-price {
        font-size: 1.2rem;
    }
    
    .cart-button {
        min-width: 120px;
        height: 55px;
        padding: 0 20px;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Touch feedback */
@media (hover: none) {
    .menu-item:active {
        transform: scale(0.98);
    }
    
    .qty-btn:active {
        transform: scale(0.9);
    }
    
    .table-btn:active {
        transform: scale(0.95);
    }
}
