/* Modern LottoBoomaroo - Clean Minimalist Design */

/* CSS Variables */
:root {
    --primary: #6366F1;
    --primary-dark: #4F46E5;
    --primary-light: #A5B4FC;
    --secondary: #F59E0B;
    --secondary-dark: #D97706;
    --accent: #10B981;
    --accent-dark: #059669;
    
    --dark: #0F172A;
    --dark-light: #1E293B;
    --light: #FFFFFF;
    --gray: #F8FAFC;
    --gray-light: #E2E8F0;
    --gray-dark: #64748B;
    --gray-darker: #334155;
    
    --gradient-primary: linear-gradient(135deg, var(--primary), var(--accent));
    --gradient-secondary: linear-gradient(135deg, var(--secondary), var(--primary));
    --gradient-dark: linear-gradient(135deg, var(--dark), var(--dark-light));
    
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.3);
    
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Geo', sans-serif;
    background: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Geo', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 800;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-dark);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* Main Layout */
.main-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 0;
    min-height: calc(100vh - 80px);
    margin-top: 80px;
}

.main-content {
    padding: 2rem 0;
}

/* Right Sidebar */
.right-sidebar {
    background: var(--gray);
    border-left: 1px solid var(--gray-light);
    position: sticky;
    top: 80px;
    height: calc(100vh - 80px);
    overflow-y: auto;
    padding: 2rem 1.5rem;
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-section {
    background: var(--light);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-light);
}

.sidebar-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-title::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    border: none;
    border-radius: var(--border-radius);
    font-family: 'Geo', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    justify-content: center;
}

.action-btn.primary {
    background: var(--gradient-primary);
    color: var(--light);
    box-shadow: var(--shadow-md);
}

.action-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.action-btn.secondary {
    background: var(--light);
    color: var(--dark);
    border: 1px solid var(--gray-light);
}

.action-btn.secondary:hover {
    background: var(--gray);
    border-color: var(--primary);
}

.action-icon {
    font-size: 1.1rem;
}

/* Stats List */
.stats-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-light);
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-label {
    color: var(--gray-dark);
    font-size: 0.9rem;
    font-weight: 500;
}

.stat-value {
    color: var(--dark);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Winners List */
.winners-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.winner-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--gray);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.winner-item:hover {
    background: var(--gray-light);
    transform: translateX(4px);
}

.winner-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--light);
}

.winner-info {
    flex: 1;
}

.winner-name {
    font-weight: 500;
    color: var(--dark);
    font-size: 0.9rem;
}

.winner-amount {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.8rem;
}

/* Support Options */
.support-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.support-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--gray);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--dark);
    transition: var(--transition);
    font-size: 0.9rem;
    font-weight: 500;
}

.support-link:hover {
    background: var(--gray-light);
    transform: translateX(4px);
}

.support-icon {
    font-size: 1.1rem;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-glow, .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-family: 'Geo', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--light);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--light);
    color: var(--dark);
    border: 1px solid var(--gray-light);
}

.btn-secondary:hover {
    background: var(--gray);
    border-color: var(--primary);
}

.btn-glow {
    background: var(--gradient-primary);
    color: var(--light);
    box-shadow: var(--shadow-glow);
    border: 2px solid var(--primary);
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 1px solid var(--gray-dark);
}

.btn-outline:hover {
    background: var(--gray-dark);
    color: var(--light);
}

.btn-hero {
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: var(--border-radius-lg);
}

.btn-icon {
    font-size: 1.1rem;
}

/* Hero Section */
.hero-section {
    padding: 4rem 0;
    background: var(--light);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--light);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.title-line {
    display: block;
    opacity: 0;
    animation: slideInUp 0.8s ease forwards;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.title-line:nth-child(3) {
    animation-delay: 0.4s;
}

.title-line.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray-dark);
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: slideInUp 0.8s ease forwards 0.6s;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: slideInUp 0.8s ease forwards 0.8s;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gray-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: slideInUp 0.8s ease forwards 1s;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: slideInRight 0.8s ease forwards 1.2s;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.lottery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    width: 300px;
    height: 300px;
}

.grid-item {
    background: var(--gradient-secondary);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--light);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    animation: floatItem 6s ease-in-out infinite;
}

.grid-item:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.item-1 { animation-delay: 0s; }
.item-2 { animation-delay: 1s; }
.item-3 { animation-delay: 2s; }
.item-4 { animation-delay: 3s; }
.item-5 { animation-delay: 4s; }
.item-6 { animation-delay: 5s; }

@keyframes floatItem {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background: var(--gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--light);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-image {
    margin-bottom: 1.5rem;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.feature-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.feature-card:hover .feature-img {
    transform: scale(1.05);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray-dark);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Games Section */
.games-section {
    padding: 4rem 0;
    background: var(--light);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.game-card {
    background: var(--light);
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.game-header {
    text-align: center;
    margin-bottom: 2rem;
}

.game-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.game-header h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.game-header p {
    color: var(--gray-dark);
    font-size: 0.9rem;
}

.game-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.game-select {
    padding: 0.875rem;
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius);
    background: var(--light);
    color: var(--dark);
    font-size: 0.9rem;
    transition: var(--transition);
}

.game-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.btn-add-game {
    background: var(--gradient-primary);
    color: var(--light);
    border: none;
    padding: 0.875rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-add-game:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* VIP Section */
.vip-section {
    padding: 4rem 0;
    background: var(--gray);
}

.vip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.vip-card {
    background: var(--light);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
}

.vip-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary);
}

.vip-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.vip-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.vip-card p {
    color: var(--gray-dark);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Age Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.age-modal-content {
    background: var(--light);
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius-xl);
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: var(--shadow-xl);
}

.modal-header {
    margin-bottom: 2rem;
}

.age-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.modal-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.modal-header p {
    color: var(--gray-dark);
    font-size: 1.1rem;
}

.modal-body h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.modal-body p {
    color: var(--gray-dark);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: var(--light);
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    display: none;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-icon {
    font-size: 2rem;
}

.cookie-content p {
    flex: 1;
    color: var(--dark);
    margin: 0;
}

.btn-accept {
    background: var(--gradient-primary);
    color: var(--light);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Notifications */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--light);
    color: var(--dark);
    padding: 16px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-light);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    animation: slideInRight 0.3s ease-out;
}

.notification-success {
    border-left: 4px solid var(--accent);
}

.notification-info {
    border-left: 4px solid var(--secondary);
}

.notification-error {
    border-left: 4px solid #ef4444;
}

.notification-message {
    flex: 1;
    font-weight: 500;
}

.notification-close {
    background: none;
    border: none;
    color: var(--gray-dark);
    font-size: 20px;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: var(--transition);
}

.notification-close:hover {
    background: var(--gray);
    color: var(--dark);
}

/* Cart Counter */
.cart-counter {
    background: var(--accent);
    color: var(--light);
    font-size: 12px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .main-layout {
        grid-template-columns: 1fr;
    }
    
    .right-sidebar {
        position: static;
        height: auto;
        border-left: none;
        border-top: 1px solid var(--gray-light);
        order: -1;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-hero {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .features-grid, .vip-grid {
        grid-template-columns: 1fr;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .lottery-grid {
        width: 250px;
        height: 250px;
    }
    
    .grid-item {
        font-size: 1.2rem;
    }
    
    .age-modal-content {
        padding: 2rem;
        margin: 1rem;
    }
    
    .modal-buttons {
        flex-direction: column;
    }
    
    .cookie-notice {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .feature-card, .vip-card, .game-card {
        padding: 1.5rem;
    }
    
    .lottery-grid {
        width: 200px;
        height: 200px;
        gap: 0.5rem;
    }
    
    .grid-item {
        font-size: 1rem;
    }
    
    .right-sidebar {
        padding: 1.5rem 1rem;
    }
    
    .sidebar-section {
        padding: 1rem;
    }
}

/* Mobile Navigation Styles */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: var(--transition);
    z-index: 1001;
}

.mobile-nav-toggle:hover {
    background: rgba(99, 102, 241, 0.1);
}

.mobile-nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.mobile-nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    transition: var(--transition);
    overflow-y: auto;
}

.mobile-nav-menu.active {
    left: 0;
}

.mobile-nav-container {
    display: flex;
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    height: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--dark);
    text-decoration: none;
    padding: 1.2rem 1.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    background: var(--gray);
    border: 1px solid var(--gray-light);
}

.mobile-nav-link:hover {
    background: var(--gray-light);
    color: var(--primary);
    transform: translateX(5px);
}

.mobile-nav-link.active {
    background: var(--gradient-primary);
    color: var(--light);
    border-color: var(--primary);
}

.mobile-nav-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.mobile-nav-text {
    font-weight: 500;
    flex: 1;
}

.mobile-nav-counter {
    background: var(--accent);
    color: var(--light);
    font-size: 12px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 12px;
    min-width: 20px;
    text-align: center;
    line-height: 1;
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: flex;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-nav-container {
        padding: 5rem 1.5rem 2rem;
    }
    
    .mobile-nav-link {
        padding: 1rem 1.2rem;
        font-size: 1rem;
    }
    
    .mobile-nav-icon {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .mobile-nav-container {
        padding: 4rem 1rem 2rem;
        max-width: 100%;
    }
    
    .mobile-nav-link {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
    }
    
    .mobile-nav-icon {
        font-size: 1.1rem;
    }
}

/* Body State for Mobile Menu */
body.mobile-menu-open {
    overflow: hidden;
}