/* CSS Variables */
:root {
    --primary: #D42027;
    --primary-dark: #b31a1f;
    --secondary: #1A1A1A;
    --accent: #F5A623;
    --background: #FFF8F0;
    --white: #FFFFFF;
    --text: #333333;
    --text-light: #666666;
    --gray: #f4f4f4;
    --border: #e0e0e0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --radius: 12px;
    --radius-sm: 8px;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--background);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

html {
  overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.section-subtitle {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 42px;
    margin: 10px 0;
    color: var(--secondary);
}

.section-header p {
    color: var(--text-light);
    font-size: 18px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 32, 39, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-outline.logged-in {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-block {
    width: 100%;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-social {
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--white);
}

.btn-social:hover {
    background: var(--primary);
}

.quiz-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 15px;
    transition: transform 0.3s;
}

.quiz-btn:hover {
    transform: scale(1.05);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 15px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.logo img {
    background: transparent !important;
    object-fit: contain;
}

.store-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    background: #f0f0f0;
}

.store-status.open {
    background: #d4edda;
    color: #155724;
}

.store-status.closed {
    background: #f8d7da;
    color: #721c24;
}

.store-status .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    animation: pulse-dot 2s infinite;
}

.store-status.open .status-dot {
    background: #28a745;
}

.store-status.closed .status-dot {
    background: #dc3545;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@media (max-width: 768px) {
    .store-status { 
        display: flex !important;
    }
    
    .header-content {
        position: relative;
    }
    
    #statusStore {
        position: absolute;
        top: 18px;
        right: 50px;
        z-index: 999;
        display: flex !important;
    }
}

.logo i {
    font-size: 28px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    font-weight: 500;
    color: var(--text);
    transition: color 0.3s;
    position: relative;
}

.nav a:hover {
    color: var(--primary);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: 12px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text);
    z-index: 1001;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #fff5f0 0%, #fff 50%, #fff8f0 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 32, 39, 0.05) 0%, transparent 70%);
    transform: rotate(-15deg);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 60px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.hero-text h1 .highlight {
    color: var(--primary);
    position: relative;
}

.hero-tagline {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 450px;
}

.hero-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 30px;
}

.price-label {
    font-size: 16px;
    color: var(--text-light);
}

.price-value {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
}

.hero-cta {
    display: flex;
    gap: 15px;
    align-items: center;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Features Section */
.features {
    padding: 60px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: var(--radius);
    background: var(--background);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 30px;
    color: var(--white);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--secondary);
}

.feature-card p {
    color: var(--text-light);
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-img-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img-placeholder i {
    font-size: 150px;
    color: rgba(255, 255, 255, 0.3);
}

.about-text h2 {
    font-size: 42px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 16px;
}

.about-info {
    margin-top: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.info-item i {
    width: 40px;
    height: 40px;
    background: var(--background);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

/* Menu Section */
.menu {
    padding: 100px 0;
    background: var(--background);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.menu-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.menu-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
}

.menu-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.menu-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.menu-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--background);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-icon i {
    font-size: 35px;
    color: var(--primary);
}

.menu-card h3 {
    font-size: 24px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.menu-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 15px;
}

.menu-price {
    margin-bottom: 25px;
}

.menu-price .price {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
}

.menu-price .unit {
    color: var(--text-light);
    font-size: 14px;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--background);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
}

.testimonial-stars {
    color: var(--accent);
    font-size: 18px;
    margin-bottom: 20px;
}

.testimonial-card p {
    color: var(--text);
    font-style: italic;
    margin-bottom: 25px;
    font-size: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

.testimonial-author span {
    font-weight: 600;
    color: var(--secondary);
}

/* Location Section */
.location {
    padding: 100px 0;
    background: var(--background);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-items {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item > i {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    color: var(--secondary);
    margin-bottom: 5px;
}

.contact-item span, .contact-item a {
    color: var(--text-light);
}

.map-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--text-light);
}

.map-placeholder i {
    font-size: 60px;
    color: var(--primary);
}

/* Footer */
.footer {
    background: var(--secondary);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 15px;
}

.footer-brand p {
    color: #999;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.social-link:hover {
    background: var(--primary);
}

.footer-links h4, .footer-hours h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links a {
    display: block;
    color: #999;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-hours p {
    color: #999;
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius);
    max-width: 450px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlide 0.3s ease;
}

.modal-lg {
    max-width: 550px;
}

.modal-xl {
    max-width: 700px;
}

@keyframes modalSlide {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-light);
    z-index: 10;
}

.modal-header {
    padding: 30px 30px 0;
    text-align: center;
}

.modal-header h2 {
    color: var(--secondary);
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.modal-header h2 i {
    color: var(--primary);
}

.modal-form {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

/* Acompanhamentos */
.accompaniments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.accompaniment-item {
    cursor: pointer;
}

.accompaniment-item input {
    display: none;
}

.accompaniment-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: white;
    border: 2px solid var(--border);
    border-radius: 10px;
    transition: all 0.3s;
}

.accompaniment-item input:checked + .accompaniment-box {
    border-color: var(--primary);
    background: #fff5f5;
}

.accompaniment-name {
    font-weight: 600;
    font-size: 14px;
}

.accompaniment-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 13px;
}

/* Selos de Confiança */
.trust-seals {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 20px 0;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
}

.trust-seal {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.trust-icon {
    font-size: 18px;
}

@media (max-width: 480px) {
    .accompaniments-grid {
        grid-template-columns: 1fr;
    }
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    color: var(--text-light);
}

.form-footer a {
    color: var(--primary);
    font-weight: 600;
}

.selected-product {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--background);
    border-radius: var(--radius-sm);
    border: 2px solid var(--primary);
}

.selected-product i {
    font-size: 24px;
    color: var(--primary);
}

.selected-product span:first-of-type {
    flex: 1;
    font-weight: 600;
}

.price-tag {
    font-weight: 700;
    color: var(--primary);
    font-size: 18px;
}

.quantity-input {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quantity-input button {
    width: 45px;
    height: 45px;
    border: 2px solid var(--border);
    background: var(--white);
    border-radius: var(--radius-sm);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.quantity-input button:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.quantity-input input {
    width: 80px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
}

.order-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--background);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
}

.order-totals {
    background: var(--background);
    border-radius: var(--radius-sm);
    padding: 20px;
    margin-bottom: 20px;
}

.subtotal-row, .shipping-row, .discount-row, .total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.subtotal-row {
    border-bottom: 1px solid var(--border);
    color: var(--text-light);
}

.shipping-row {
    color: var(--text);
}

.discount-row {
    border-bottom: 1px solid var(--border);
    color: var(--success);
}

.total-row {
    font-size: 20px;
    font-weight: 700;
    padding-top: 15px;
}

.total-value {
    color: var(--primary);
    font-size: 28px;
}

.payment-options h4 {
    margin-bottom: 15px;
    color: var(--secondary);
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.payment-option {
    cursor: pointer;
}

.payment-option input {
    display: none;
}

.payment-card {
    padding: 15px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    text-align: center;
    transition: all 0.3s;
}

.payment-option input:checked + .payment-card {
    border-color: var(--primary);
    background: var(--background);
}

.payment-card i {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 5px;
    display: block;
}

.payment-card span {
    font-size: 14px;
    font-weight: 500;
}

/* Dashboard */
.dashboard {
    padding: 10px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border);
}

.dashboard-header h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--secondary);
    font-size: 24px;
}

.dashboard-header h2 i {
    color: var(--primary);
    font-size: 28px;
}

.dashboard-user {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 30px;
    color: white;
    position: relative;
    overflow: hidden;
}

.dashboard-user::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.dashboard-user h3 {
    font-size: 22px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dashboard-user .user-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.dashboard-user .info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    opacity: 0.95;
}

.dashboard-user .info-item i {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-user strong {
    color: white;
}

.dashboard-user p {
    margin-bottom: 0;
}

/* Points Card */
.user-points {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.3);
}

.points-card {
    background: rgba(255,255,255,0.15);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.points-info h4 {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 5px;
}

.points-info .points-value {
    font-size: 32px;
    font-weight: 700;
}

.points-reward {
    background: #F5A623;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
}

/* Dashboard Orders */
.dashboard-orders {
    margin-bottom: 30px;
}

.dashboard-orders h3 {
    margin-bottom: 20px;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
}

.dashboard-orders h3 i {
    color: var(--primary);
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

.order-item {
    background: white;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.order-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.order-item.status-pending {
    border-left: 5px solid var(--warning);
}

.order-item.status-preparing {
    border-left: 5px solid var(--info);
}

.order-item.status-delivering {
    border-left: 5px solid var(--primary);
}

.order-item.status-completed {
    border-left: 5px solid var(--success);
}

.order-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.order-id {
    font-weight: 600;
    color: var(--secondary);
}

.order-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-preparing {
    background: #cce5ff;
    color: #004085;
}

.status-delivering {
    background: #d4edda;
    color: #155724;
}

.status-completed {
    background: #d1ecf1;
    color: #0c5460;
}

.order-details {
    color: var(--text-light);
    font-size: 14px;
}

.order-total {
    font-weight: 600;
    color: var(--secondary);
    margin-top: 10px;
}

/* Toast */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--secondary);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 3000;
}

.toast.active {
    transform: translateX(0);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast-content i {
    color: #4caf50;
    font-size: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content, .about-content, .location-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .features-grid, .menu-grid, .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 0;
    }
    
    .header-content {
        padding: 0 15px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        z-index: 1000;
        padding: 20px;
    }
    
    .nav.active {
        display: flex;
    }
    
    .nav a {
        font-size: 24px;
    }
    
    .header-actions {
        display: none;
    }
    
    .header-actions.active {
        display: flex;
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: column;
        gap: 10px;
        z-index: 1001;
        background: white;
        padding: 20px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }
    
    .menu-toggle {
        display: block;
        position: absolute;
        right: 15px;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .price-value {
        font-size: 36px;
    }
    
    .features-grid, .menu-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-card.featured {
        transform: none;
    }
    
    .menu-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .modal-content {
        margin: 10px;
    }
    
    .payment-grid {
        grid-template-columns: 1fr;
    }
    
    /* Promotions - Fix cutting off */
    .promotions > .container > div:nth-child(2) {
        grid-template-columns: 1fr !important;
        padding: 0 15px;
    }
    
    .promotions > .container > div:nth-child(2) > div {
        max-width: 100%;
    }
    
    .dashboard-actions {
        flex-direction: column !important;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-lg {
        width: 100%;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

/* Chatbot Widget */
.chatbot-widget {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    max-width: calc(100% - 60px);
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    z-index: 1001;
    display: none;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

.chatbot-widget.active {
    display: block;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.chatbot-header {
    background: linear-gradient(135deg, #25D366, #20b858);
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-avatar {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #25D366;
}

.chatbot-title {
    flex: 1;
}

.chatbot-title strong {
    display: block;
    font-size: 16px;
}

.chatbot-title span {
    font-size: 12px;
    opacity: 0.9;
}

.chatbot-close {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.chatbot-messages {
    padding: 20px;
    max-height: 400px;
    overflow-y: auto;
}

.chatbot-message {
    margin-bottom: 15px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.chatbot-message.bot p {
    background: #f5f5f5;
    padding: 12px 16px;
    border-radius: 15px 15px 15px 0;
    margin: 5px 0;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

.chatbot-message.user p {
    background: #25D366;
    color: white;
    padding: 12px 16px;
    border-radius: 15px 15px 0 15px;
    margin: 5px 0;
    font-size: 14px;
    text-align: right;
}

.chatbot-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.chatbot-options button {
    background: white;
    border: 2px solid #25D366;
    color: #25D366;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
}

.chatbot-options button:hover {
    background: #25D366;
    color: white;
}

.chatbot-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.chatbot-actions button {
    flex: 1;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-back {
    background: #f5f5f5;
    border: 2px solid #ddd;
    color: #666;
}

.btn-back:hover {
    background: #e5e5e5;
}

.btn-whatsapp {
    background: #25D366;
    border: none;
    color: white;
}

.btn-whatsapp:hover {
    background: #20b858;
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 26px;
    }
}

/* ============================================
   MARKETING - Exit Intent Popup
   ============================================ */
.exit-intent-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    z-index: 2000;
    max-width: 400px;
    width: 90%;
    opacity: 0;
    transition: all 0.3s ease;
}

.exit-intent-popup.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.exit-intent-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
}

/* ============================================
   MARKETING - Social Proof
   ============================================ */
.social-proof-bar {
    background: linear-gradient(135deg, #25D366, #20b858);
    color: white;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 14px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.social-proof-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-proof-avatar {
    width: 30px;
    height: 30px;
    background: white;
    color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.social-proof-text {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.social-proof-time {
    opacity: 0.8;
    font-size: 12px;
}

.social-proof-rating {
    color: #FFD700;
}

/* ============================================
   MARKETING - Urgência Cards
   ============================================ */
.stock-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 8px;
}

.stock-badge.low {
    background: #ff4757;
    color: white;
    animation: pulse 1s infinite;
}

.stock-badge.medium {
    background: #ffa502;
    color: white;
}

.stock-badge.high {
    background: #2ed573;
    color: white;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ============================================
   Marketing Floating Labels
   ============================================ */
.marketing-banner {
    background: linear-gradient(90deg, #D42027, #ff6b6b);
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.marketing-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 2s infinite;
}

/* Welcome Banner (First Visit) */
.welcome-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #D42027, #ff6b6b);
    color: white;
    padding: 15px 20px;
    z-index: 10000;
    animation: slideDown 0.5s ease;
    box-shadow: 0 5px 20px rgba(212, 32, 39, 0.3);
}

.welcome-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.welcome-icon {
    font-size: 30px;
}

.welcome-text h3 {
    margin: 0 0 5px;
    font-size: 18px;
}

.welcome-text p {
    margin: 0;
    font-size: 14px;
}

.welcome-btn {
    background: white;
    color: #D42027;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    font-size: 14px;
    transition: transform 0.2s;
}

.welcome-btn:hover {
    transform: scale(1.05);
}

.welcome-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0 5px;
}

@media (max-width: 600px) {
    .welcome-banner-content {
        flex-direction: column;
        text-align: center;
    }
}

/* PWA Install Banner */
.pwa-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #D42027, #ff6b6b);
    color: white;
    padding: 12px 15px;
    z-index: 9999;
    animation: slideUp 0.3s ease;
}

.pwa-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.pwa-banner-content span {
    font-size: 14px;
    font-weight: 500;
}

.pwa-install-btn {
    background: white;
    color: #D42027;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    font-size: 13px;
}

.pwa-dismiss-btn {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0 5px;
}

/* Loyalty Banner */
.loyalty-banner {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #333;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: slideDown 0.5s ease;
}

.loyalty-banner button {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #666;
}

@keyframes shimmer {
    100% { left: 100%; }
}

/* Countdown Timer */
#countdownTimer {
    background: linear-gradient(135deg, #ff6b6b, #D42027);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    display: inline-block;
    margin-top: 10px;
}

/* Speed Badge */
.speed-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: pulse 2s infinite;
    z-index: 10;
}

.speed-icon {
    font-size: 30px;
}

.speed-text {
    display: flex;
    flex-direction: column;
}

.speed-text strong {
    color: #D42027;
    font-size: 14px;
}

.speed-text small {
    color: #666;
    font-size: 12px;
}

/* Achievement Notification */
.achievement-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #333;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
}

.achievement-notification.show {
    transform: translateX(0);
}

.achievement-icon {
    font-size: 40px;
}

.achievement-text strong {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

.achievement-text p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.achievement-notification button {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #666;
}

@media (max-width: 768px) {
    .speed-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
    }
}

/* NPS Buttons */
.nps-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--border);
    border-radius: 50%;
    background: white;
    cursor: pointer;
    transition: all 0.3s;
}

.nps-btn:hover {
    transform: scale(1.2);
    border-color: var(--primary);
}

/* Scheduled Orders */
.scheduled-order-card {
    transition: transform 0.2s;
}

.scheduled-order-card:hover {
    transform: translateX(5px);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 6px;
}

/* Order Totals - Ajustes */
.order-totals {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 10px;
    margin: 15px 0;
}

.subtotal-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.discount-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
    color: #4caf50;
}

.total-row {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    border-top: 2px solid #ddd;
    padding-top: 10px;
    margin-top: 10px;
}

/* Wheel Animation */
#wheelCanvas {
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

#spinBtn {
    animation: pulse 1.5s infinite;
}

#spinBtn:disabled {
    animation: none;
    opacity: 0.7;
}

/* Weekly Challenges */
.challenge-card {
    transition: transform 0.2s;
}

.challenge-card:hover {
    transform: translateX(5px);
}

/* Order Tracker */
@keyframes progressPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Push Notification Banner */
.push-banner {
    position: fixed;
    bottom: 100px;
    left: 20px;
    right: 20px;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 10000;
    animation: slideUp 0.3s ease;
}

.push-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.push-content span {
    flex: 1;
    font-size: 14px;
}

.push-buttons {
    display: flex;
    gap: 10px;
}

.push-accept {
    background: #27ae60;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
}

.push-dismiss {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: none;
  font-size: 12px;
  cursor: pointer;
}

/* ============================================
   SKELETON LOADING ANIMATION
   ============================================ */

.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 4px;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.skeleton-text {
  height: 1em;
  margin-bottom: 0.5em;
  border-radius: 4px;
}

.skeleton-text:last-child {
  margin-bottom: 0;
  width: 80%;
}

.skeleton-title {
  height: 1.5em;
  width: 60%;
  margin-bottom: 1em;
}

.skeleton-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.skeleton-image {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  margin-bottom: 1em;
}

.skeleton-card {
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  margin-bottom: 20px;
}

.skeleton-button {
  height: 40px;
  width: 120px;
  border-radius: 8px;
  margin-top: 1em;
}

/* Skeleton Menu Card */
.skeleton-menu-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  border: 2px solid transparent;
}

.skeleton-menu-card .skeleton-image {
  height: 180px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.skeleton-menu-card .skeleton-title {
  width: 70%;
  margin: 0 auto 15px;
}

.skeleton-menu-card .skeleton-text {
  width: 80%;
  margin: 0 auto 20px;
}

.skeleton-menu-card .skeleton-button {
  width: 100px;
  margin: 0 auto;
}

/* Skeleton Grid */
.skeleton-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.skeleton-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 768px) {
  .skeleton-grid-3 {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   ERROR BOUNDARIES AND LOADING STATES
   ============================================ */

.error-boundary {
  padding: 40px;
  text-align: center;
  background: linear-gradient(135deg, #fee, #ffe6e6);
  border-radius: 16px;
  margin: 20px 0;
}

.error-boundary-icon {
  font-size: 64px;
  margin-bottom: 20px;
}

.error-boundary h3 {
  color: #D42027;
  margin-bottom: 10px;
  font-size: 24px;
}

.error-boundary p {
  color: #666;
  margin-bottom: 20px;
}

.error-boundary-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Loading Spinner */
.loading-spinner {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #D42027;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}

/* Button Loading State */
.btn-loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}

.btn-loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  border: 2px solid #ffffff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* ============================================
   ONLINE/OFFLINE STATUS INDICATOR
   ============================================ */

.connection-status {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 12px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  z-index: 9999;
  transition: transform 0.3s ease;
}

.connection-status.online {
  background: #4caf50;
  color: white;
  transform: translateY(-100%);
}

.connection-status.offline {
  background: #ff9800;
  color: white;
  transform: translateY(0);
}

/* ============================================
   ANALYTICS AND TRACKING
   ============================================ */

/* Analytics Dashboard Styles */
.analytics-card {
  background: white;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  margin-bottom: 20px;
}

.analytics-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.analytics-card-title {
  font-size: 18px;
  font-weight: 600;
  color: #1A1A1A;
}

.analytics-card-value {
  font-size: 36px;
  font-weight: 700;
  color: #D42027;
  margin: 8px 0;
}

.analytics-card-label {
  font-size: 14px;
  color: #666;
}

.analytics-trend {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.analytics-trend.up {
  background: #e8f5e9;
  color: #2e7d32;
}

.analytics-trend.down {
  background: #ffebee;
  color: #c62828;
}

/* Event Tracking Badge */
.tracking-badge {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: rgba(0,0,0,0.8);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-family: monospace;
  z-index: 10000;
  display: none;
}

.tracking-badge.active {
  display: block;
}

.tracking-badge span {
  color: #4caf50;
}

/* Performance Metrics Display */
.performance-metrics {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(0,0,0,0.9);
  color: #4caf50;
  padding: 16px;
  border-radius: 12px;
  font-family: monospace;
  font-size: 12px;
  z-index: 10000;
  min-width: 200px;
  display: none;
}

.performance-metrics.active {
  display: block;
}

.performance-metrics-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.performance-metrics-row:last-child {
  margin-bottom: 0;
}

.performance-metrics-label {
  color: #888;
}

.performance-metrics-value {
  color: #4caf50;
}

.performance-metrics-value.warning {
  color: #ff9800;
}

.performance-metrics-value.error {
  color: #f44336;
}