@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Palette - Honey Amber & Velvet Charcoal */
    --bg-dark: #090a0f;
    --bg-darker: #050608;
    --bg-card: rgba(18, 20, 26, 0.75);
    --bg-card-solid: #12141a;
    --accent-honey: #ff9f1c;
    --accent-honey-rgb: 255, 159, 28;
    --accent-amber: #e76f51;
    --accent-amber-rgb: 231, 111, 81;
    --accent-green: #2ec4b6;
    --text-white: #f8f9fa;
    --text-muted: #9ba1ad;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-color-focus: rgba(255, 159, 28, 0.5);
    
    /* Layout & Shadow */
    --shadow-premium: 0 20px 50px rgba(0, 0, 0, 0.5);
    --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.6);
    --radius-lg: 20px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-honey) var(--bg-darker);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

/* Background Gradients (Dynamic Blobs) */
.bg-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    z-index: -1;
    opacity: 0.15;
    pointer-events: none;
    animation: pulse 12s infinite alternate;
}

.bg-glow-1 {
    background: radial-gradient(circle, var(--accent-honey) 0%, transparent 70%);
    top: -200px;
    right: -100px;
}

.bg-glow-2 {
    background: radial-gradient(circle, var(--accent-amber) 0%, transparent 70%);
    bottom: -200px;
    left: -100px;
    animation-delay: 4s;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-honey);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-amber);
}

/* Typography & Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    padding: 24px 0;
    border-bottom: 1px solid var(--border-color);
    background: rgba(9, 10, 15, 0.8);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--accent-honey), var(--accent-amber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo i {
    background: linear-gradient(135deg, var(--accent-honey), var(--accent-amber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.user-greeting {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-white);
    background: rgba(255, 159, 28, 0.1);
    border: 1px solid rgba(255, 159, 28, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
    opacity: 0;
    transform: translateY(-10px);
}

.user-greeting.active {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 0 40px;
    position: relative;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 159, 28, 0.08);
    border: 1px solid rgba(255, 159, 28, 0.15);
    border-radius: 30px;
    color: var(--accent-honey);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: fadeInDown 0.6s ease;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #d5d8e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--accent-honey), var(--accent-amber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-honey), var(--accent-amber));
    color: #000000;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(255, 159, 28, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 159, 28, 0.5);
    background: linear-gradient(135deg, #ffae3c, #ff7e5f);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-white);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-white);
}

/* App Grid (Demo Area) */
.app-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 80px;
    align-items: start;
}

@media (max-width: 992px) {
    .app-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* Glassmorphic Form Card */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: rgba(255, 159, 28, 0.15);
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-subtitle {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 24px;
}

/* Form Styling */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-white);
}

.form-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    color: var(--text-white);
    font-size: 15px;
    transition: var(--transition-smooth);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-honey);
    box-shadow: 0 0 10px rgba(255, 159, 28, 0.2);
}

/* Toggle Tabs for Enlace vs Archivo */
.toggle-container {
    display: flex;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-md);
    padding: 4px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.toggle-tab {
    flex: 1;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    color: var(--text-muted);
}

.toggle-tab.active {
    background: rgba(255, 159, 28, 0.15);
    color: var(--accent-honey);
    border: 1px solid rgba(255, 159, 28, 0.25);
}

/* File Upload Area */
.file-dropzone {
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.01);
    transition: var(--transition-smooth);
}

.file-dropzone:hover, .file-dropzone.dragover {
    border-color: var(--accent-honey);
    background: rgba(255, 159, 28, 0.03);
}

.file-dropzone i {
    font-size: 32px;
    color: var(--text-muted);
    margin-bottom: 12px;
    transition: var(--transition-smooth);
}

.file-dropzone:hover i {
    color: var(--accent-honey);
    transform: translateY(-3px);
}

.file-dropzone p {
    font-size: 14px;
    color: var(--text-muted);
}

.file-dropzone span {
    font-size: 12px;
    color: rgba(155, 161, 173, 0.6);
    display: block;
    margin-top: 4px;
}

.file-preview {
    display: none;
    align-items: center;
    justify-content: space-between;
    background: rgba(46, 196, 182, 0.08);
    border: 1px solid rgba(46, 196, 182, 0.2);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    margin-top: 10px;
    animation: fadeIn 0.3s ease;
}

.file-preview-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.file-preview-info i {
    font-size: 20px;
    color: var(--accent-green);
}

.file-preview-name {
    font-size: 14px;
    font-weight: 500;
    max-width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-preview-remove {
    background: transparent;
    border: none;
    color: #ff5e36;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
}

/* Smartphone Simulator */
.simulator-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 100px;
}

.phone-mockup {
    width: 320px;
    height: 640px;
    background: #000000;
    border-radius: 40px;
    border: 10px solid #1c1d22;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 0 2px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Phone Top Bar */
.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 18px;
    background: #1c1d22;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 10;
}

.phone-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 20px 4px;
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    background: #050608;
    z-index: 9;
}

.phone-status-icons {
    display: flex;
    gap: 4px;
}

/* Phone Content Screen */
.phone-screen {
    flex: 1;
    background: #0d0f12;
    padding: 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    scrollbar-width: none; /* Hide scrollbar for layout */
}

.phone-screen::-webkit-scrollbar {
    display: none;
}

/* Simulator Empty State */
.phone-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    color: var(--text-muted);
    padding: 20px;
}

.phone-empty-state i {
    font-size: 48px;
    color: rgba(255, 159, 28, 0.2);
    margin-bottom: 16px;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.phone-empty-state h3 {
    color: var(--text-white);
    margin-bottom: 8px;
    font-size: 18px;
}

.phone-empty-state p {
    font-size: 13px;
}

/* Phone Live Preview Card State */
.phone-live-preview {
    display: none;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
}

.phone-restaurant-header {
    width: 100%;
    background: linear-gradient(135deg, rgba(255, 159, 28, 0.1), rgba(231, 111, 81, 0.1));
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: var(--radius-md);
    text-align: center;
    margin-bottom: 16px;
}

.phone-restaurant-logo {
    width: 48px;
    height: 48px;
    background: var(--accent-honey);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    margin: 0 auto 8px;
    box-shadow: 0 4px 10px rgba(255, 159, 28, 0.3);
}

.phone-restaurant-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.phone-restaurant-email {
    font-size: 11px;
    color: var(--text-muted);
}

/* QR Code Container in Phone */
.phone-qr-box {
    background: #ffffff;
    padding: 16px;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.phone-qr-box canvas, .phone-qr-box img {
    max-width: 130px;
    max-height: 130px;
}

.phone-demo-info {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px;
    text-align: center;
    margin-bottom: 12px;
}

.phone-demo-counter {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-honey);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 4px;
}

.phone-demo-expiry {
    font-size: 10px;
    color: var(--text-muted);
}

.phone-view-button {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-honey), var(--accent-amber));
    color: #000000;
    font-weight: 700;
    padding: 10px;
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 13px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: none;
    display: block;
}

.phone-view-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 159, 28, 0.3);
}

/* Lock Overlay when Demo Expirado */
.phone-lock-overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 6, 8, 0.95);
    backdrop-filter: blur(8px);
    z-index: 20;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    text-align: center;
    animation: fadeIn 0.4s ease;
}

.phone-lock-icon {
    font-size: 40px;
    color: #ff5e36;
    margin-bottom: 16px;
    background: rgba(255, 94, 54, 0.1);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 94, 54, 0.2);
}

.phone-lock-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-white);
}

.phone-lock-desc {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.4;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 48px;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(22, 24, 28, 0.9), rgba(14, 15, 18, 0.9));
    border: 2px solid var(--accent-honey);
    border-radius: var(--radius-lg);
    padding: 40px;
    width: 100%;
    max-width: 380px;
    text-align: left;
    box-shadow: 0 15px 40px rgba(255, 159, 28, 0.1);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(255, 159, 28, 0.2);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent-honey);
    color: #000000;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 30px;
    transform: rotate(45deg);
    text-transform: uppercase;
}

.plan-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-white);
}

.plan-price {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-white);
    display: flex;
    align-items: baseline;
}

.plan-price span {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-muted);
    margin-left: 6px;
}

.plan-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
}

.plan-features li {
    font-size: 14px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d5d8e1;
}

.plan-features li i {
    color: var(--accent-green);
    font-size: 16px;
}

.btn-pricing {
    width: 100%;
}

/* Modal - Simulated Flow.cl Payment Gateway */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 6, 8, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.modal-card {
    background: #ffffff;
    color: #333333;
    width: 100%;
    max-width: 480px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    animation: slideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.flow-header {
    background: #0066cc; /* Flow chile brand blue */
    color: #ffffff;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flow-logo-title {
    display: flex;
    flex-direction: column;
}

.flow-logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -1px;
}

.flow-logo span {
    color: #00ccff;
}

.flow-secured {
    font-size: 11px;
    opacity: 0.8;
}

.flow-close {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
}

.flow-body {
    padding: 24px;
    background: #f8f9fa;
}

.flow-order-summary {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flow-order-desc {
    display: flex;
    flex-direction: column;
}

.flow-order-title {
    font-weight: 700;
    font-size: 15px;
    color: #1a1a1a;
}

.flow-order-merchant {
    font-size: 12px;
    color: #777777;
}

.flow-order-price {
    font-size: 18px;
    font-weight: 800;
    color: #0066cc;
}

/* Payment Methods Grid */
.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.payment-method-item {
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 14px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.payment-method-item.active {
    border-color: #0066cc;
    background: rgba(0, 102, 204, 0.03);
}

.payment-method-item i {
    font-size: 24px;
    color: #555555;
}

.payment-method-item.active i {
    color: #0066cc;
}

.payment-method-item span {
    font-size: 12px;
    font-weight: 600;
    color: #495057;
}

/* Flow Checkout Card Form */
.flow-card-form {
    display: none;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    animation: fadeIn 0.3s ease;
}

.flow-form-group {
    margin-bottom: 14px;
}

.flow-form-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #777777;
    margin-bottom: 6px;
}

.flow-form-input {
    width: 100%;
    border: 1px solid #ced4da;
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 14px;
    color: #333333;
}

.flow-form-input:focus {
    outline: none;
    border-color: #0066cc;
}

.flow-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* Simulated Loader */
.flow-loader-container {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

.flow-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(0, 102, 204, 0.1);
    border-top-color: #0066cc;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Simulated Payment Success */
.flow-success-container {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

.flow-success-icon {
    font-size: 48px;
    color: #2ec4b6;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(46, 196, 182, 0.1);
    border: 1px solid rgba(46, 196, 182, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    animation: scaleIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.flow-success-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.flow-success-desc {
    font-size: 14px;
    color: #666666;
    margin-bottom: 24px;
}

/* Footer styling */
footer {
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

/* Animation utilities */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

@keyframes scaleIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Notification Toast */
.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--bg-card-solid);
    border: 1px solid var(--accent-honey);
    border-left: 4px solid var(--accent-honey);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateY(100px);
    opacity: 0;
    transition: var(--transition-smooth);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast i {
    color: var(--accent-honey);
    font-size: 18px;
}

.toast-message {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-white);
}

/* Menu Preview Modal (Simulating reading on Client phone) */
.menu-preview-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 6, 8, 0.95);
    backdrop-filter: blur(12px);
    z-index: 1100;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.menu-phone-mockup {
    width: 100%;
    max-width: 360px;
    height: 720px;
    max-height: 90vh;
    background: #0f1115;
    border-radius: 36px;
    border: 8px solid #22252a;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.menu-phone-header {
    background: #181b21;
    padding: 20px 20px 16px;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
    position: relative;
}

.menu-phone-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--text-white);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-phone-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    scrollbar-width: none;
}

.menu-phone-content::-webkit-scrollbar {
    display: none;
}

.menu-item-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
}

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

.menu-item-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-white);
    margin-bottom: 4px;
}

.menu-item-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
}

.menu-item-price {
    font-weight: 700;
    color: var(--accent-honey);
    font-size: 14px;
    margin-top: 6px;
}

.menu-item-photo {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    background-color: rgba(255, 255, 255, 0.05);
}

.menu-section-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-honey);
    margin-top: 10px;
    border-left: 3px solid var(--accent-honey);
    padding-left: 8px;
}

/* File view mockup inside simulator */
.menu-file-view {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.menu-file-preview-img {
    max-width: 100%;
    max-height: 380px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    margin-bottom: 20px;
}

.menu-pdf-mock {
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    width: 100%;
    margin-bottom: 20px;
}

.menu-pdf-mock i {
    font-size: 48px;
    color: #ff5e36;
    margin-bottom: 16px;
}
