:root {
    --primary: #16a34a; /* Premium Green */
    --primary-dark: #15803d;
    --primary-light: #bbf7d0;
    --accent: #dc2626; /* Vibrant Red */
    --accent-light: #fef2f2;
    --bg-main: #f8fafc; /* Very soft slate for background */
    --bg-card: #ffffff;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --black-brand: #000000;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.05);
    --shadow-hover: 0 12px 24px -4px rgba(0,0,0,0.12);
    
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.5;
    padding-bottom: 80px; /* Space for bottom nav */
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--black-brand);
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animations */
@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(22, 163, 74, 0); }
    100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}

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

@keyframes fadeInScale {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes flashRed {
    0%, 100% { background-color: var(--accent); }
    50% { background-color: #b91c1c; }
}

/* Floating Open Badge */
.glass-badge {
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--primary-light);
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-md);
    animation: slideDown 0.5s ease-out;
}

.glass-badge .dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    animation: pulseGlow 2s infinite;
}

/* Top Nav Bar (Zuppy-style) */
.top-nav-bar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    border-bottom: 1px solid #f1f5f9;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.top-menu-btn {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: #334155;
    cursor: pointer;
}

.top-store-pill {
    background: #f1f5f9;
    padding: 6px 18px;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-check-icon {
    color: #3b82f6;
    font-size: 0.9rem;
}

/* Header & Hero */
.main-header {
    background-color: #ffffff;
}

.hero-banner {
    position: relative;
    height: 220px;
    background-color: var(--black-brand);
    display: flex;
    justify-content: center;
}

.banner-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('../images/banner-street.png');
    background-size: cover;
    background-position: center;
}

.logo-container {
    position: absolute;
    bottom: -75px;
    width: 150px;
    height: 150px;
    background: #ffffff;
    border-radius: 50%;
    border: 5px solid #ffffff;
    z-index: 10;
    box-shadow: 0 8px 24px rgba(0,0,0,0.22);
    overflow: hidden;
}

.logo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Store Info Section */
.store-info {
    text-align: center;
    padding-top: 85px;
    padding-bottom: 16px;
    background: #ffffff;
}

.store-name {
    font-size: 1.45rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 6px;
    color: #000000;
}

.verification-badge {
    color: #3b82f6;
    font-size: 1.1rem;
}

.social-btn-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
}

.social-circle-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #475569;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.info-row-1 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.82rem;
    color: #475569;
    margin-bottom: 6px;
}

.info-dot {
    color: #94a3b8;
}

.badge-free {
    background: #16a34a;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.72rem;
    padding: 2px 8px;
    border-radius: 6px;
}

.info-row-2 {
    font-size: 0.82rem;
    color: #475569;
    margin-bottom: 6px;
}

.location-icon {
    color: #dc2626;
    margin-right: 4px;
}

.info-row-3 {
    font-size: 0.85rem;
    color: #000000;
    margin-bottom: 10px;
}

.star-icon {
    color: #eab308;
    margin-right: 4px;
}

.reviews-text {
    color: #64748b;
    font-weight: 400;
}

.info-row-4 {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}

.status-open-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 16px;
    border-radius: 20px;
    border: 1.5px solid #16a34a;
    outline: 1.5px solid #16a34a;
    color: #16a34a;
    font-size: 0.78rem;
    font-weight: 700;
}

.green-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #16a34a;
}

/* Promos Section matching Screenshot */
.promo-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #1e293b;
    padding: 0;
}

.black-banner {
    background: #1e293b;
    color: #ffffff;
    padding: 12px 16px;
    text-align: center;
    font-weight: 700;
    font-size: 0.88rem;
}

.white-card-banner {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 12px;
    margin: 12px 16px;
    text-align: center;
    font-size: 0.85rem;
    color: #334155;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

/* Categories Section matching Screenshot */
.categories-wrapper {
    padding: 16px 16px 10px;
    background: #ffffff;
}

.categories-heading {
    font-size: 1.15rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 12px;
}

.categories-row {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 6px;
}

.categories-row::-webkit-scrollbar {
    display: none;
}

.cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
    background: #f4f4f5;
    color: #3f3f46;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cat-pill.active {
    background: #18181b;
    color: #ffffff;
}

/* Menu Sections */
.menu-section {
    margin-bottom: 40px;
    scroll-margin-top: 80px;
}

.section-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.section-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 20px;
    background: var(--primary);
    border-radius: 4px;
    margin-right: 10px;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Product Card */
.product-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    padding: 16px;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
    border-color: var(--black-brand);
}

.featured-card {
    border: 2px solid var(--primary);
    animation: pulseGlow 3s infinite;
}

.featured-card:hover {
    border-color: var(--primary-dark);
}

.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.3;
}

.product-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 800;
    margin-bottom: 8px;
    align-self: flex-start;
}

.double-badge {
    background: #fdf4ff;
    color: #a21caf;
}

.discount-badge {
    background: var(--accent-light);
    color: var(--accent);
}

.price-block {
    margin-top: auto;
    display: flex;
    flex-direction: column;
}

.old-price {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.new-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.highlight-price {
    background: var(--primary);
    color: white;
    padding: 2px 6px;
    border-radius: var(--radius-sm);
    display: inline-block;
    align-self: flex-start;
    margin-top: 2px;
}

.scarcity-alert {
    font-size: 0.7rem;
    color: var(--accent);
    margin-top: 8px;
    font-weight: 500;
}

.card-image {
    width: 110px;
    height: 110px;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .card-image img {
    transform: scale(1.1);
}

.add-btn {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--black-brand);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
    box-shadow: var(--shadow-md);
}

.add-btn:hover {
    transform: scale(1.1);
    background: var(--primary);
}

.add-btn:active {
    transform: scale(0.95);
}

/* Countdown Promo */
.countdown-promo {
    background: var(--accent-light);
    border: 1px dashed var(--accent);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    margin-bottom: 40px;
}

.countdown-promo h3 {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.timer {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-num {
    background: var(--accent);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 10px 15px;
    border-radius: var(--radius-sm);
    min-width: 60px;
    font-family: var(--font-heading);
}

.pulse-text {
    animation: flashRed 1s infinite;
}

.time-label {
    margin-top: 5px;
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
}

/* Bottom Navigation (App-like) */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 62px;
    background: #ffffff;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.06);
}

.bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 3px;
    color: #64748b;
    font-size: 0.75rem;
    font-weight: 600;
    transition: color 0.2s;
    text-decoration: none;
}

.bottom-nav-item i {
    font-size: 1.25rem;
    display: block;
    line-height: 1;
}

.bottom-nav-item:hover, .bottom-nav-item.active {
    color: #000000;
}

.cart-trigger {
    position: relative;
}

.cart-icon-wrapper {
    position: relative;
    display: inline-block;
}

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

/* Product Customization Modal */
/* Full Screen Product Subpage Modal */
.product-card {
    cursor: pointer;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: white;
    z-index: 9999;
    display: flex;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    overflow: hidden;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.product-modal-card {
    background: white;
    width: 100%;
    max-width: 580px;
    height: 100%;
    max-height: 100vh;
    border-radius: 0;
    overflow-y: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    padding-bottom: 95px;
}

/* Eye-Catching Fixed Sticky Close Button */
.close-modal-btn {
    position: fixed;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #000000;
    color: #ffffff;
    border: 2px solid #ffffff;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 10005;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    transition: transform 0.2s, background-color 0.2s;
}

.close-modal-btn:hover {
    transform: scale(1.1);
    background: #dc2626;
}

.modal-product-header {
    position: relative;
}

.modal-product-header img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.modal-product-info {
    padding: 16px;
}

.modal-product-info h2 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.modal-product-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.modal-product-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
}

.modal-options-body {
    padding: 0 16px 20px;
    flex: 1;
}

.option-group {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 14px;
    margin-bottom: 14px;
}

.option-group-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.option-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.required-badge {
    font-size: 0.7rem;
    font-weight: 700;
    background: #dcfce7;
    color: #15803d;
    padding: 3px 10px;
    border-radius: 12px;
}

/* Option Items with Drink/Side Thumbnails & Quantity Controls */
.option-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #edf2f7;
}

.option-item-row:last-child {
    border-bottom: none;
}

.option-item-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.option-thumb {
    width: 44px;
    height: 44px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.08));
}

.option-item-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-main);
}

.option-free-tag {
    font-size: 0.7rem;
    font-weight: 700;
    color: #16a34a;
    background: #dcfce7;
    padding: 2px 6px;
    border-radius: 8px;
    display: inline-block;
    margin-top: 2px;
}

.item-qty-control {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 4px 8px;
    font-weight: 700;
}

.item-qty-control button {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    border: none;
    background: #f1f5f9;
    color: var(--text-main);
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.item-qty-control button:active {
    transform: scale(0.9);
}

.item-qty-control span {
    font-size: 0.9rem;
    width: 18px;
    text-align: center;
}

.modal-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 14px 16px;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.08);
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f1f5f9;
    border-radius: 14px;
    padding: 6px 12px;
    font-weight: 700;
}

.quantity-control button {
    background: none;
    border: none;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    color: var(--text-main);
    width: 24px;
}

.btn-add-modal {
    flex: 1;
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 16px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(22,163,74,0.3);
}

.btn-add-modal:active {
    transform: scale(0.98);
}

/* Mobile High Information Density Optimizations */
@media (max-width: 640px) {
    .container {
        padding: 0 10px;
    }
    .hero-banner {
        height: 180px;
    }
    .logo-container {
        bottom: -65px;
        width: 135px;
        height: 135px;
        border-width: 4px;
    }
    .store-info {
        padding-top: 75px;
    }
    .store-name {
        font-size: 1.25rem;
    }
    .nav-container {
        padding: 8px 10px;
        gap: 8px;
    }
    .nav-item {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    .promo-section {
        gap: 8px;
        margin-bottom: 20px;
    }
    .promo-banner {
        padding: 10px;
        font-size: 0.82rem;
    }
    .menu-section {
        margin-bottom: 24px;
    }
    .section-title {
        font-size: 1.15rem;
        margin-bottom: 10px;
    }
    .product-grid {
        gap: 10px;
    }
    .product-card {
        padding: 10px;
        gap: 10px;
        border-radius: 16px;
    }
    .product-title {
        font-size: 0.88rem;
        margin-bottom: 4px;
        line-height: 1.25;
    }
    .product-desc {
        font-size: 0.73rem;
        margin-bottom: 6px;
        line-height: 1.3;
        -webkit-line-clamp: 2;
    }
    .badge {
        font-size: 0.65rem;
        padding: 2px 6px;
        margin-bottom: 4px;
    }
    .new-price {
        font-size: 0.95rem;
    }
    .old-price {
        font-size: 0.7rem;
    }
    .scarcity-alert {
        font-size: 0.68rem;
        margin-top: 4px;
    }
    .card-image {
        width: 86px;
        height: 86px;
        border-radius: 12px;
    }
    .add-btn {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
    }
    .countdown-promo {
        padding: 12px;
        margin-bottom: 24px;
    }
    .countdown-promo h3 {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }
    .time-num {
        font-size: 1.2rem;
        padding: 6px 12px;
    }
}

/* Floating Green "Finalizar Pedido" Button */
.floating-order-btn {
    display: none;
    position: fixed;
    bottom: 72px;
    left: 16px;
    right: 16px;
    max-width: 480px;
    margin: 0 auto;
    height: 52px;
    background: #16a34a;
    color: #ffffff;
    border-radius: 26px;
    padding: 0 20px;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.45);
    z-index: 999;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s;
}

.floating-order-btn:hover {
    background: #15803d;
    transform: translateY(-2px);
}

.floating-order-btn:active {
    transform: scale(0.98);
}

.floating-order-btn .btn-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.floating-order-btn .btn-price {
    background: rgba(0, 0, 0, 0.18);
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 0.9rem;
    font-weight: 800;
}

/* Footer Elegante e Estruturado */
.site-footer {
    padding: 20px 16px 95px 16px;
    margin-top: 30px;
}

.footer-trust-card {
    max-width: 480px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 22px 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.official-badges-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
}

.official-badges-row .badge-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 8px 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 120px;
}

.official-badges-row .badge-item img {
    height: 24px;
    width: auto;
    object-fit: contain;
}

.security-banner-pill {
    background: #dcfce7;
    color: #15803d;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #bbf7d0;
}

.footer-copyright .brand-line {
    font-size: 0.8rem;
    color: var(--text-primary);
    margin-bottom: 3px;
}

.footer-copyright .legal-line {
    font-size: 0.72rem;
    color: #94a3b8;
    margin: 0;
}
