/* 
  ===========================================
  Aegis - Landing Page Styles
  ===========================================
*/

/* --- Variables & Theming --- */
:root {
    /* Colors based on image_0 and user request */
    --bg-dark: #07080a;           /* Deep almost black */
    --bg-surface: #101216;        /* Slightly lighter for cards/panels */
    --bg-surface-light: #1a1d24;  /* Hover states or lighter panels */
    
    --text-primary: #ffffff;
    --text-secondary: #a0a5b0;
    --text-muted: #6b7280;
    
    --accent-color: #ff652f;      /* Vibrant Orange as requested */
    --accent-hover: #e55a29;
    --accent-glow: rgba(255, 101, 47, 0.3);
    
    --success: #10b981;
    --danger: #ef4444;
    --blue: #3b82f6;

    /* Admin Panel Colors (image_1 inspiration) */
    --admin-sidebar: #171b26;
    --admin-bg: #f3f4f6;
    --admin-text: #1f2937;
    --admin-text-light: #6b7280;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing & Utilities */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* --- Typography Classes --- */
.text-accent { color: var(--accent-color); }
.text-muted { color: var(--text-muted); }
.text-blue { color: var(--blue); }
.text-center { text-align: center; }

.text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.is-hidden { display: none !important; }
.is-block { display: block !important; }
.is-grid { display: grid !important; }

.heading-md {
    font-size: 1.75rem;
    font-weight: 600;
}

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

.section {
    padding: 6rem 0;
    position: relative;
}

.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mt-6 { margin-top: 4rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-md { max-width: 600px; }

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gap-3 { gap: 1.5rem; }

.grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.align-center { align-items: center; }
.align-start { align-items: flex-start; }

.dark-surface {
    background-color: var(--bg-surface);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    gap: 0.5rem;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 101, 47, 0.4);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-outline-small {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
}

.btn-outline-small:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-xl {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
    border-radius: 50px;
}

.bounce-hover:hover {
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(-2px); }
    50% { transform: translateY(-6px); }
}

/* --- Glassmorphism Panels --- */
.glass-panel {
    background: rgba(26, 29, 36, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 2rem;
}

/* --- Header / Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(7, 8, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.5px;
}

.logo-image {
    width: 68px;
    height: 68px;
    object-fit: contain;
}

.logo-wordmark {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.logo-icon-accent {
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-links a:not(.btn):hover {
    color: var(--accent-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,101,47,0.15) 0%, rgba(7,8,10,0) 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.hero-visual {
    position: relative;
    height: 450px;
    perspective: 1000px;
}

.main-panel {
    position: absolute;
    right: 0;
    top: 50px;
    width: 80%;
    height: 300px;
    padding: 1.5rem;
    transform: rotateY(-10deg) rotateX(5deg);
    box-shadow: -20px 20px 50px rgba(0,0,0,0.5);
}

.panel-header {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.dots {
    display: flex;
    gap: 6px;
}

.dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
}

.skeleton-chart {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    height: 100px;
    margin-bottom: 2rem;
}

.skeleton-chart .bar {
    flex: 1;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
}

.bar-h-30 { height: 30%; }
.bar-h-40 { height: 40%; }
.bar-h-50 { height: 50%; }
.bar-h-60 { height: 60%; }
.bar-h-80 { height: 80%; }

.skeleton-chart .bar.accent {
    background: var(--accent-color);
    box-shadow: 0 0 15px var(--accent-glow);
}

.skeleton-lines .s-line {
    height: 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
    margin-bottom: 10px;
}
.skeleton-lines .w-full { width: 100%; }
.skeleton-lines .w-half { width: 60%; }

.floating-panel-1 {
    position: absolute;
    left: -20px;
    bottom: 20px;
    width: 220px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 6s ease-in-out infinite;
}

.floating-panel-1 strong { display: block; font-family: var(--font-heading); }
.floating-panel-1 span { font-size: 0.8rem; color: var(--success); }

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

/* --- Section Headers --- */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.subtitle-tight-line {
    line-height: 1.6;
}

/* --- Feature Lists --- */
.feature-list {
    margin: 1.5rem 0;
}
.feature-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-secondary);
}
.feature-list i {
    margin-top: 5px;
}
.problem-list i { color: var(--danger); }
.success-list i { color: var(--success); }

/* --- Steps --- */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-left: 2px dashed rgba(255, 101, 47, 0.3);
    padding-left: 1.5rem;
    margin-left: 1rem;
}
.step {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-surface-light);
    padding: 1rem;
    border-radius: var(--radius-sm);
}
.step-icon {
    position: absolute;
    left: -2.3rem;
    width: 30px;
    height: 30px;
    background: var(--bg-dark);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 0.8rem;
}

/* --- WhatsApp Mockup --- */
.whatsapp-mockup {
    width: 100%;
    max-width: 350px;
    background: #efeae2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.wa-header {
    background: #075e54;
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.wa-contact {
    text-align: center;
}
.wa-contact strong { display: block; font-size: 1.1rem; }
.wa-contact span { font-size: 0.75rem; opacity: 0.8; }
.wa-body {
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path fill="rgba(0,0,0,0.03)" d="M0 0h100v100H0z"/></svg>');
}
.wa-bubble {
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    max-width: 85%;
    font-size: 0.9rem;
    position: relative;
    color: #111;
    line-height: 1.4;
}
.bubble-out {
    background: #e1ffc7;
    align-self: flex-end;
    border-top-right-radius: 0;
}
.bubble-in {
    background: white;
    align-self: flex-start;
    border-top-left-radius: 0;
}
.highlight-bubble {
    box-shadow: 0 0 0 2px var(--accent-color);
    animation: pulse 2s infinite;
}
.wa-sender {
    display: block;
    color: #358c56;
    font-weight: bold;
    font-size: 0.8rem;
    margin-bottom: 0.2rem;
}
.wa-time {
    display: block;
    text-align: right;
    font-size: 0.65rem;
    color: rgba(0,0,0,0.45);
    margin-top: 0.2rem;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 101, 47, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 101, 47, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 101, 47, 0); }
}

/* --- Benefits Grid --- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.benefit-card {
    text-align: center;
    padding: 2rem 1.5rem;
}
.benefit-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.benefit-card h4 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--text-primary);
}

/* --- Gastronomia Section --- */
.differentiation-box {
    display: flex;
    background: var(--bg-surface-light);
    border-radius: var(--radius-md);
    padding: 2rem;
    align-items: center;
    position: relative;
    border: 1px solid rgba(255, 101, 47, 0.2);
}
.diff-col {
    flex: 1;
    text-align: center;
    padding: 1rem;
}
.icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(255, 101, 47, 0.1);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}
.diff-col h3 { font-size: 1.25rem; color: white; }
.diff-col p { color: var(--text-secondary); font-size: 0.9rem; }
.mode-link {
    color: white;
    text-decoration: underline;
    text-decoration-color: rgba(255, 101, 47, 0.5);
    text-underline-offset: 0.2rem;
}
.mode-link:hover {
    color: var(--accent-color);
    text-decoration-color: var(--accent-color);
}

.diff-divider {
    position: relative;
    width: 2px;
    height: 80px;
    background: rgba(255,255,255,0.1);
}
.diff-divider span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bg-surface-light);
    padding: 0.5rem;
    color: var(--accent-color);
    font-weight: bold;
    font-family: var(--font-heading);
}

/* --- Admin Panel Mockup (image_1 style) --- */
.admin-mockup-wrapper {
    background: linear-gradient(135deg, #2a2e38 0%, #171a21 100%);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
}
.dynamic-media-wrapper {
    min-height: 450px;
    display: grid;
    place-items: center;
}
.dynamic-feature-image {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: contain;
    display: none;
    background: #0b0d10;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.08);
}
.feature-image-empty {
    min-height: 420px;
    border-radius: var(--radius-md);
    border: 1px dashed rgba(255, 255, 255, 0.25);
    background: rgba(0, 0, 0, 0.12);
    color: var(--text-secondary);
    display: grid;
    place-content: center;
    text-align: center;
    padding: 2rem;
    gap: 0.75rem;
}
.feature-image-empty i {
    font-size: 2.2rem;
    color: var(--accent-color);
}
.feature-image-empty p {
    margin: 0 auto;
    max-width: 340px;
}
.admin-mockup {
    display: flex;
    height: 450px;
    background: var(--admin-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}
.admin-sidebar {
    width: 220px;
    background: var(--admin-sidebar);
    color: white;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
}
.admin-brand {
    margin-bottom: 2rem;
    padding-left: 0.5rem;
}
.admin-brand strong { display: block; font-size: 1.1rem; }
.admin-brand span { font-size: 0.7rem; color: var(--text-secondary); letter-spacing: 1px; }
.admin-menu { flex-grow: 1; }
.admin-menu li {
    padding: 0.8rem 1rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.admin-menu li.active {
    background: var(--accent-color);
    color: white;
    font-weight: 500;
}
.admin-logout {
    padding: 0.8rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    font-size: 0.85rem;
    color: #9ca3af;
}

.admin-content {
    flex: 1;
    padding: 2rem;
    color: var(--admin-text);
}
.admin-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}
.admin-topbar h3 { color: var(--admin-text); font-size: 1.4rem; margin:0;}
.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--success);
}
.status-indicator .dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
}

.admin-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 0.5rem;
}
.admin-tabs .tab {
    font-size: 0.9rem;
    color: var(--admin-text-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
}
.admin-tabs .tab.active {
    background: rgba(255, 101, 47, 0.1);
    color: var(--accent-color);
    font-weight: 600;
}

.admin-order-card {
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    border: 1px solid #f3f4f6;
}
.admin-order-card strong { color: var(--admin-text); }
.order-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
}
.order-price strong { color: var(--accent-color); font-size: 1.1rem; }

.benefits-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.badge-outline {
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.badge-success {
    border-color: var(--success);
    color: var(--success);
}

/* --- Customization Bento Box --- */
.box-bento {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 4rem;
    border: 1px solid rgba(255,255,255,0.05);
}
.accent-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.icon-sq {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent-color);
    flex-shrink: 0;
}
.accent-list strong { color: white; display: block; margin-bottom: 0.25rem; font-family: var(--font-heading); font-size: 1.1rem; }
.accent-list p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.4; }

.bento-visual {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bento-grid-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
    width: 300px;
    height: 300px;
}
.b-box {
    background: var(--bg-surface-light);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-muted);
}
.box-1 { border-top-left-radius: 40px; background: linear-gradient(135deg, rgba(255,101,47,0.2), transparent); }
.box-2 { border-top-right-radius: 40px; }
.box-3 { border-bottom-left-radius: 40px; color: var(--accent-color); }
.box-4 { border-bottom-right-radius: 40px; background: rgba(255,255,255,0.02); }

/* --- CTA Final --- */
.cta-box {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, rgba(26,29,36,0.8) 0%, rgba(7,8,10,0.9) 100%);
    border: 1px solid rgba(255,101,47,0.2);
}

/* --- Footer --- */
.footer {
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    background: var(--bg-dark);
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .grid-2-cols { grid-template-columns: 1fr; gap: 3rem; }
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero h1 { font-size: 3rem; }
    .hero p { margin: 0 auto 2rem auto; }
    .hero-actions { justify-content: center; }
    .hero-visual { display: none; } /* Hide complex visual on mobile for speed */
    .benefits-grid { grid-template-columns: 1fr 1fr; }
    .differentiation-box { flex-direction: column; gap: 2rem; }
    .diff-divider { width: 80%; height: 2px; }
    .box-bento { padding: 2rem; }
    .dynamic-media-wrapper { min-height: 320px; }
    .dynamic-feature-image {
        max-height: 380px;
        width: 100%;
    }
    .feature-image-empty {
        min-height: 280px;
    }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .hero h1 { font-size: 2.5rem; }
    .benefits-grid { grid-template-columns: 1fr; }
    .section { padding: 4rem 0; }
    .demo-buttons { flex-direction: column; width: 100%; }
    .demo-buttons .btn { width: 100%; }
}

/* --- Dynamic Demo Sections --- */
.hidden-section {
    display: none;
    opacity: 0;
}

.visible-section {
    display: block;
    animation: fadeIn 0.8s ease forwards;
}

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

/* Gastronomy New Section */
.gastronomy-mode-card {
    background: var(--bg-surface-light);
    border: 1px solid rgba(255,101,47,0.1);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gastronomy-mode-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.gastronomy-mode-card .icon-lg {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    background: rgba(255,101,47,0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gastronomy-menu-mockup {
    background: var(--admin-bg);
    border-radius: var(--radius-md);
    padding: 2rem;
    max-width: 800px;
    margin: 4rem auto 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    color: var(--admin-text);
}

.menu-mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 1rem;
}

.menu-product-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.menu-product-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-product-img {
    width: 60px;
    height: 60px;
    background: #e5e7eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 1.5rem;
}

.menu-product-price {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 1.1rem;
}

/* --- Dynamic videos from admin --- */
.mode-video-section .dynamic-video-card {
    max-width: 800px;
    background: #000;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,101,47,0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    cursor: pointer;
}

.video-shell-card {
    max-width: 800px;
    background: #000;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,101,47,0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    cursor: pointer;
}

.video-play-icon {
    font-size: 4rem;
    color: var(--accent-color);
    transition: transform 0.3s;
}
.dynamic-video-placeholder i {
    font-size: 4rem;
    color: var(--accent-color);
}
.video-disabled {
    cursor: not-allowed !important;
    opacity: 0.85;
}

.video-played {
    cursor: default !important;
}

.video-play-icon-hover {
    transform: scale(1.1);
}

.dynamic-video-player {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-md);
    object-fit: cover;
    animation: fadeIn 0.5s ease-in-out;
}
