* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-bg: #0A0A0A;
    --dark-panel: #1A1A1A;
    --accent-blue: #3a86ff;
    --accent-purple: #8338ec;
    --text-light: #f5f5f5;
    --text-gray: #b0b0b0;
    --glass-bg: rgba(26, 26, 26, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-primary: 0 10px 25px rgba(58, 134, 255, 0.3);
    --premium-gold: #FFD700;
    --premium-silver: #C0C0C0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
    padding-bottom: 60px;
    -webkit-tap-highlight-color: transparent;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(45deg, var(--accent-blue), var(--accent-purple));
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(58, 134, 255, 0.4);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(58, 134, 255, 0.6);
}

/* Hero Section */
#hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(10,10,10,0.9) 0%, rgba(26,26,26,0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 20px;
    width: 100%;
}

.logo {
    font-size: clamp(2rem, 8vw, 4rem);
    margin-bottom: 15px;
    background: linear-gradient(45deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(58, 134, 255, 0.3);
    font-weight: 800;
    line-height: 1.2;
    color: #33CCFF;
    text-shadow: 0 0 8px rgba(51, 204, 255, 0.7);
}

.tagline {
    font-size: clamp(1rem, 4vw, 1.6rem);
    margin-bottom: 30px;
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.4;
    padding: 0 10px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.countdown-box {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 12px 10px;
    border-radius: 12px;
    min-width: 60px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.countdown-value {
    font-size: clamp(1.4rem, 6vw, 2.2rem);
    font-weight: 700;
    background: linear-gradient(45deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.countdown-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gray);
    margin-top: 3px;
}

/* Waitlist Popup */
#waitlist-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.popup-content {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 25px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 0 40px rgba(58, 134, 255, 0.2);
    position: relative;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.close-btn:hover {
    opacity: 1;
}

#waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#waitlist-form h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
    text-align: center;
}

#waitlist-form p {
    color: var(--text-gray);
    margin-bottom: 15px;
    text-align: center;
    font-size: 0.9rem;
}

.form-group {
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 12px 18px;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--text-light);
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 10px rgba(58, 134, 255, 0.3);
}

/* Sections */
.section {
    padding: 50px 0;
}

.section-title {
    text-align: center;
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    margin-bottom: 15px;
    background: linear-gradient(45deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.3;
    padding: 0 10px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    padding: 0 15px;
}

/* Mockups */
.mockup-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 30px;
}

.mockup-card {
    background: var(--dark-panel);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-header {
    text-align: center;
    margin-bottom: 20px;
}

.mockup-title {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--accent-blue);
}

.mockup-subtitle {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.phone-mockup {
    width: 100%;
    max-width: 260px;
    height: auto;
    aspect-ratio: 9/16;
    background: #1a1a1a;
    border-radius: 25px;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5),
                0 0 0 6px #333,
                0 0 0 9px #0a0a0a;
}

.phone-screen {
    position: absolute;
    top: 12px;
    left: 10px;
    right: 10px;
    bottom: 12px;
    background: #0a0a0a;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    font-size: 14px;
}

.screen-content {
    padding: 12px;
    flex-grow: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.screen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid var(--glass-border);
    font-size: 1rem;
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(5px);
    position: sticky;
    top: 0;
    z-index: 5;
}

.screen-title {
    font-weight: 600;
    font-size: 1rem;
}

.cart-icon {
    position: relative;
    font-size: 1.1rem;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent-blue);
    color: white;
    font-size: 0.65rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Back Button */
.back-btn {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Customer Screens */
.scanner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #000;
    position: relative;
    cursor: pointer;
}

.scanner-frame {
    width: 160px;
    height: 160px;
    border: 3px solid var(--accent-blue);
    position: relative;
    animation: scan 3s infinite linear;
}

@keyframes scan {
    0% { box-shadow: 0 0 0 0 rgba(58, 134, 255, 0.7); }
    50% { box-shadow: 0 0 15px 4px rgba(58, 134, 255, 0.3); }
    100% { box-shadow: 0 0 0 0 rgba(58, 134, 255, 0); }
}

.menu-categories {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 5px;
}

.category-btn {
    padding: 6px 12px;
    background: var(--dark-panel);
    border: none;
    border-radius: 20px;
    color: var(--text-light);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
}

.category-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.category-btn.active {
    background: linear-gradient(45deg, var(--accent-blue), var(--accent-purple));
    box-shadow: var(--shadow-primary);
}

.menu-items {
    display: grid;
    gap: 10px;
}

.menu-item {
    background: var(--dark-panel);
    border-radius: 15px;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.menu-item:hover {
    transform: translateY(-3px);
    background: #252525;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.item-details h4 {
    font-size: 0.9rem;
    margin-bottom: 3px;
}

.item-details p {
    color: var(--text-gray);
    font-size: 0.75rem;
}

.item-price {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--accent-blue);
}

/* Premium Quantity Selector */
.quantity-selector {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 20px;
    padding: 4px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.menu-item.active .quantity-selector {
    opacity: 1;
    pointer-events: all;
}

.quantity-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--accent-purple), var(--accent-blue));
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.quantity-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 8px rgba(58, 134, 255, 0.5);
}

.quantity-display {
    min-width: 20px;
    text-align: center;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-light);
}

.cart-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.9rem;
    align-items: center;
}

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

.control-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--dark-panel);
    border: none;
    color: var(--text-light);
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.2s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.control-btn:hover {
    background: var(--accent-blue);
    transform: scale(1.1);
}

.payment-options {
    display: grid;
    gap: 10px;
    margin-top: 12px;
}

.payment-option {
    background: var(--dark-panel);
    border-radius: 15px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.payment-option:hover {
    transform: translateY(-3px);
    background: #252525;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.payment-option.active {
    border: 2px solid var(--accent-blue);
}

.payment-icon {
    font-size: 1.5rem;
    color: var(--accent-blue);
}

.confirmation-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 25px 12px;
}

.checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--accent-blue), var(--accent-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
    animation: pulse 2s infinite;
    box-shadow: var(--shadow-primary);
}


    @keyframes pulse {
        0% {
            transform: scale(1);
            opacity: 0.8;
        }
        50% {
            transform: scale(1.05);
            opacity: 1;
        }
        100% {
            transform: scale(1);
            opacity: 0.8;
        }
    }


/* Dashboard Screens */
.order-list {
    display: grid;
    gap: 12px;
}

.order-item {
    background: var(--dark-panel);
    border-radius: 15px;
    padding: 12px;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.order-table {
    font-weight: 600;
    font-size: 0.9rem;
}

.order-items {
    color: var(--text-gray);
    font-size: 0.75rem;
    margin-bottom: 6px;
    line-height: 1.4;
}

.status-btn {
    padding: 4px 10px;
    border-radius: 20px;
    border: none;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.status-btn:hover {
    transform: scale(1.05);
}

.pending {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.in-progress {
    background: rgba(0, 123, 255, 0.2);
    color: #007bff;
}

.completed {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.menu-editor {
    display: grid;
    gap: 12px;
}

.menu-editor-item {
    background: var(--dark-panel);
    border-radius: 15px;
    padding: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.editor-row {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.editor-row input {
    flex-grow: 1;
    padding: 10px;
    background: #0a0a0a;
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 0.85rem;
    min-width: 100px;
}

.editor-row select {
    background: #0a0a0a;
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 10px;
    color: var(--text-light);
    min-width: 100px;
    font-size: 0.85rem;
}

.qr-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 12px;
    text-align: center;
}

.table-input {
    background: var(--dark-panel);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 12px;
    width: 100%;
    max-width: 180px;
    margin: 15px 0;
    color: var(--text-light);
    text-align: center;
    font-size: 1rem;
}

.qr-download-btn {
    margin-top: 15px;
    padding: 10px 20px;
    background: linear-gradient(45deg, var(--accent-blue), var(--accent-purple));
    color: white;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-primary);
    transition: all 0.3s;
}

.qr-download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(58, 134, 255, 0.6);
}

/* Dashboard Menu */
.dashboard-menu {
    display: grid;
    gap: 15px;
    padding: 15px;
}

.dashboard-option {
    background: var(--dark-panel);
    border-radius: 20px;
    padding: 20px 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.dashboard-option:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
    box-shadow: 0 10px 20px rgba(58, 134, 255, 0.2);
}

.dashboard-option i {
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--accent-blue);
}

.dashboard-option h4 {
    font-size: 1.1rem;
    margin: 8px 0;
    color: #33CCFF;
}

.dashboard-option p {
    color: var(--text-gray);
    font-size: 0.85rem;
}

/* Call to Action */
#cta {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(10, 10, 10, 0.9));
    text-align: center;
    padding: 50px 20px;
    position: relative;
    overflow: hidden;
}

#cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(58, 134, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

#cta h2 {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    margin-bottom: 20px;
    line-height: 1.3;
    padding: 0 15px;
}

/* Footer */
footer {
    background: var(--dark-panel);
    padding: 30px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(45deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-tagline {
    color: var(--text-gray);
    margin-bottom: 15px;
    max-width: 600px;
    font-size: 0.9rem;
    padding: 0 15px;
}

.contact-email {
    color: var(--accent-blue);
    text-decoration: none;
    margin-bottom: 15px;
    display: block;
    font-weight: 500;
    font-size: 0.95rem;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px);
    background: linear-gradient(45deg, var(--accent-blue), var(--accent-purple));
}

.copyright {
    color: var(--text-gray);
    font-size: 0.8rem;
    margin-top: 15px;
}

/* Navigation */
.nav-toggle {
    position: fixed;
    top: 15px;
    right: 15px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    cursor: pointer;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.nav-toggle i {
    font-size: 1.5rem;
}

/* Screen Transitions */
.customer-screen::-webkit-scrollbar {
    display: none;             /* Safari and Chrome */
  }
.customer-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    background: #0a0a0a;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
}
.customer-screen h1 {
    color: var(--text-gray);
    margin-top: -20px;
    /* font-size: 1.5rem; */
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.customer-screen.active {
    opacity: 1;
    pointer-events: all;
}
.customer-screen.active #scanner-screen p {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--text-gray);
    font-weight: bold; /* Make the text bolder */
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5); /* Add a subtle glow */
    animation: pulse 2s infinite ease-in-out; /* Apply the animation */
}

.dashboard-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    background: #0a0a0a;
    overflow-y: auto;
}

.dashboard-screen.active {
    opacity: 1;
    pointer-events: all;
}

/* Action Buttons */
.action-btn {
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 15px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
}

.home-btn {
    margin-top: 20px;
}

/* Premium UI Enhancements */
.menu-item {
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.dashboard-option {
    transition: transform 0.3s, box-shadow 0.3s, border 0.3s;
}

.payment-option {
    transition: transform 0.3s, background 0.3s;
}

.order-item {
    transition: transform 0.3s;
}

.order-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.menu-editor-item {
    transition: transform 0.3s;
}

.menu-editor-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

/* Responsive Improvements */
@media (max-width: 768px) {
    .countdown-box {
        min-width: 55px;
        padding: 10px;
    }
    
    .countdown-value {
        font-size: 1.3rem;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .mockup-card {
        padding: 18px;
    }
    
    .phone-mockup {
        max-width: 240px;
    }
    
    .item-details h4 {
        font-size: 0.85rem;
    }
    
    .item-price {
        font-size: 0.85rem;
    }
    
    .dashboard-option {
        padding: 18px 12px;
    }
    
    .dashboard-option h4 {
        font-size: 1rem;
    }
    
    .quantity-selector {
        right: 8px;
        padding: 3px;
        gap: 4px;
    }
    
    .quantity-btn {
        width: 22px;
        height: 22px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    #hero {
        padding: 30px 15px;
    }
    
    .countdown {
        gap: 6px;
    }
    
    .countdown-box {
        min-width: 50px;
        padding: 8px;
    }
    
    .countdown-value {
        font-size: 1.2rem;
    }
    
    .countdown-label {
        font-size: 0.65rem;
    }
    
    .phone-mockup {
        max-width: 220px;
        border-radius: 22px;
    }
    
    .phone-screen {
        top: 10px;
        left: 8px;
        right: 8px;
        bottom: 10px;
        border-radius: 18px;
        font-size: 13px;
    }
    
    .screen-header {
        padding: 10px;
    }
    
    .section {
        padding: 35px 0;
    }
    
    .btn {
        padding: 11px 22px;
        font-size: 0.95rem;
    }
    
    .mockup-title {
        font-size: 1.2rem;
    }
    
    .mockup-subtitle {
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .scanner-frame {
        width: 140px;
        height: 140px;
    }
    
    .control-btn {
        width: 26px;
        height: 26px;
        font-size: 0.9rem;
    }
    
    .item-details h4 {
        font-size: 0.8rem;
    }
    
    .item-price {
        font-size: 0.8rem;
    }
    
    .cart-item {
        font-size: 0.8rem;
    }
    
    .dashboard-option {
        padding: 15px 10px;
    }
    
    .dashboard-option i {
        font-size: 1.5rem;
    }
    
    .quantity-selector {
        right: 6px;
    }
}

@media (max-width: 380px) {
    .phone-mockup {
        max-width: 200px;
    }
    
    .scanner-frame {
        width: 120px;
        height: 120px;
    }
    
    .category-btn {
        font-size: 0.7rem;
        padding: 5px 10px;
    }
    
    .menu-item {
        padding: 10px;
    }
    
    .quantity-selector {
        right: 5px;
        gap: 3px;
    }
    
    .quantity-btn {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
}

/* Animations */
@keyframes fadeOut {
    0% { opacity: 1; }
    70% { opacity: 1; }
    100% { opacity: 0; }
}

.menu-item.added {
    animation: itemAdded 0.8s ease;
}

@keyframes itemAdded {
    0% { transform: translateY(0); box-shadow: 0 0 0 rgba(58, 134, 255, 0.5); }
    50% { transform: translateY(-5px); box-shadow: 0 0 15px rgba(58, 134, 255, 0.7); }
    100% { transform: translateY(0); box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); }
}