/* A.B.A.C Website - Black, Red, White Theme */

/* CSS Variables */
:root {
    --primary-black: #000000;
    --primary-red: #cc0000;
    --primary-white: #ffffff;
    --dark-gray: #333333;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --text-dark: #333333;
    --text-light: #f5f5f5;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

/* MOBILE OVERFLOW FIX - Prevent horizontal scroll */
html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
    position: relative;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--primary-white);
}

/* Force all direct children to not overflow */
body > * {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Fix any element that might cause overflow */
img, video, iframe, table, pre {
    max-width: 100%;
    height: auto;
}

section, header, footer, main, article, aside, div {
    max-width: 100vw;
}

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

/* Header Styles */
header {
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

.logo h1 {
    color: var(--primary-red);
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.logo p {
    color: var(--primary-white);
    font-size: 0.8rem;
    text-align: center;
    opacity: 0.8;
}

.logo a {
    display: block;
    line-height: 0;
}

.logo img {
    display: block;
    height: 60px;
    width: auto;
    transition: opacity 0.3s;
}

.logo img:hover {
    opacity: 0.8;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: var(--primary-white);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: var(--transition);
}

nav a:hover,
nav a.active {
    background-color: var(--primary-red);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Mobile Navigation Hamburger */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    color: var(--primary-red);
}

.mobile-menu-toggle i {
    display: block;
}

/* Mobile menu overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    color: white !important;
}

a.btn, a.btn-small, a.btn-primary {
    color: white !important;
}

.btn-primary {
    background-color: var(--primary-red);
    color: var(--primary-white);
}

.btn-primary:hover {
    background-color: #a50000;
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background-color: var(--primary-white);
    color: var(--primary-black);
}

.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(204, 0, 0, 0.3);
    background: linear-gradient(135deg, #CC0000 0%, #990000 100%);
    color: white !important;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-small::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-small:hover::before {
    left: 100%;
}

.btn-small:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(204, 0, 0, 0.5);
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
}

.btn-small:active {
    transform: translateY(-1px) scale(1.02);
}

.btn-full {
    width: 100%;
}

.cart-icon {
    color: var(--primary-white);
    text-decoration: none;
    font-size: 1.5rem;
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary-red);
    color: var(--primary-white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    line-height: 20px;
    padding: 0;
    text-align: center;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray) 100%);
    color: var(--primary-white);
    padding: 4rem 0;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-white);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* Featured Products */
.featured-products {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.featured-products h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-black);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: var(--primary-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    padding: 1.5rem;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.product-card h3 {
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

.product-card p {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background-color: var(--primary-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
}

.feature i {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.feature h3 {
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.feature p {
    color: var(--text-dark);
}

/* Customization Page */
.customize-section {
    padding: 2rem 0;
    background-color: var(--light-gray);
}

.customize-header {
    text-align: center;
    margin-bottom: 2rem;
}

.customize-header h1 {
    color: var(--primary-black);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

section.customize-section .container {
    max-width: 100% !important;
    padding: 0 40px;
    width: 100%;
}

.customize-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    min-height: calc(100vh - 200px);
}

.design-preview {
    width: 100%;
}

.product-selection h2,
.design-tools h2,
.design-preview h2 {
    color: var(--primary-black);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-red);
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.product-option {
    background-color: var(--primary-white);
    border: 2px solid var(--medium-gray);
    border-radius: 8px;
    padding: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.product-option.active {
    border-color: var(--primary-red);
    background-color: rgba(204, 0, 0, 0.1);
}

.product-option:hover {
    border-color: var(--primary-red);
}

.product-option img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.product-option h3 {
    color: var(--primary-black);
    margin-bottom: 0.25rem;
}

.product-option p {
    color: var(--primary-red);
    font-weight: bold;
}

.tools-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tool-option {
    background-color: var(--primary-white);
    border: 1px solid var(--medium-gray);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.tool-option:hover,
.tool-option.active {
    border-color: var(--primary-red);
    background-color: rgba(204, 0, 0, 0.05);
}

.tool-option i {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.tool-option h3 {
    color: var(--primary-black);
    margin-bottom: 0.25rem;
}

.upload-section {
    margin: 2rem 0;
}

.upload-area {
    border: 2px dashed var(--medium-gray);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background-color: var(--primary-white);
}

.upload-area:hover {
    border-color: var(--primary-red);
    background-color: rgba(204, 0, 0, 0.05);
}

.upload-area i {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.upload-area p {
    margin: 0.5rem 0;
}

.file-types {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.color-selection {
    margin-top: 2rem;
}

.color-options {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.color-option {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--medium-gray);
    cursor: pointer;
    transition: var(--transition);
}

.color-option.active {
    border-color: var(--primary-black);
    transform: scale(1.1);
}

.preview-container {
    background-color: var(--primary-white);
    border-radius: 8px;
    padding: 0;
    height: calc(100vh - 250px);
    min-height: 950px;
    overflow: hidden;
    border: 1px solid var(--medium-gray);
    width: 100%;
}

#product-customizer {
    width: 100%;
    height: 100%;
}

#customizer-frame {
    width: 100%;
    height: 100%;
    border: none;
}

.design-controls {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

/* Checkout Page */
.checkout-section {
    padding: 2rem 0;
    background-color: var(--light-gray);
}

.checkout-header {
    text-align: center;
    margin-bottom: 2rem;
}

.checkout-header h1 {
    color: var(--primary-black);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    min-height: 600px;
}

.order-summary {
    background-color: var(--primary-white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.order-summary h2 {
    color: var(--primary-black);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-red);
}

.cart-items {
    margin-bottom: 2rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--medium-gray);
}

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

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.item-details {
    flex: 1;
}

.item-details h3 {
    color: var(--primary-black);
    margin-bottom: 0.25rem;
}

.item-details p {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin-bottom: 0.125rem;
}

.item-price {
    text-align: right;
}

.item-price p {
    color: var(--primary-red);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.remove-item {
    background: none;
    border: none;
    color: var(--dark-gray);
    cursor: pointer;
    font-size: 1.2rem;
}

.remove-item:hover {
    color: var(--primary-red);
}

.order-totals {
    border-top: 2px solid var(--medium-gray);
    padding-top: 1rem;
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.total-row.total {
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--primary-black);
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid var(--medium-gray);
}

.checkout-form {
    background-color: var(--primary-white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.checkout-form h2 {
    color: var(--primary-black);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-red);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-black);
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--medium-gray);
    border-radius: 4px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-red);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    margin-bottom: 0;
}

.checkbox-group a {
    color: var(--primary-red);
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 100%;
}

.footer-section h3,
.footer-section h4 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--primary-white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-red);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--dark-gray);
    color: var(--primary-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-red);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-gray);
    color: var(--medium-gray);
}

/* Responsive Design */
@media (max-width: 992px) {
    .customize-container {
        grid-template-columns: 1fr;
    }
    
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Prevent horizontal overflow on mobile */
    * {
        max-width: 100vw;
    }

    .container {
        padding: 0 10px;
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Show mobile menu toggle button */
    .mobile-menu-toggle {
        display: block !important;
        order: 2;
    }

    /* Hide desktop nav by default */
    nav {
        display: none !important;
    }

    /* Header fixes for mobile */
    header .container {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        gap: 5px;
        padding: 5px 10px;
        max-width: 100%;
    }

    /* Logo smaller on mobile */
    .logo {
        flex-shrink: 0;
    }

    .logo img {
        height: 40px !important;
        max-width: 100px;
    }

    /* Header actions compact */
    .header-actions {
        display: flex;
        align-items: center;
        gap: 5px;
        flex-shrink: 1;
        max-width: 60%;
    }

    /* User actions (Wolf + Logout) compact */
    .header-actions .user-actions,
    .header-actions > div {
        display: flex;
        align-items: center;
        gap: 5px;
        flex-wrap: nowrap;
    }

    .header-actions .user-actions span,
    .header-actions span {
        font-size: 11px !important;
        padding: 5px 8px !important;
        white-space: nowrap;
    }

    .header-actions .user-actions button,
    .header-actions button {
        font-size: 11px !important;
        padding: 5px 10px !important;
        white-space: nowrap;
    }

    .header-actions .user-actions a,
    .header-actions a[href="admin.html"] {
        font-size: 11px !important;
        padding: 5px 8px !important;
        white-space: nowrap;
    }

    /* Hide Sign In text on small screens */
    .header-actions .btn-outline {
        font-size: 12px;
        padding: 6px 10px;
    }

    /* Cart icon compact */
    .cart-icon {
        padding: 8px 12px 8px 8px;
        font-size: 18px;
        position: relative;
        overflow: visible;
    }

    .cart-count {
        font-size: 10px;
        min-width: 16px;
        height: 16px;
        line-height: 16px;
        top: 0px;
        right: 2px;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .logo img {
        height: 45px;
    }

    .header-actions {
        gap: 0.5rem;
    }

    .header-actions .btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }

    .cart-icon {
        padding: 0.4rem;
    }

    footer .container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 0 15px;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .footer-section {
        width: 100%;
        max-width: 100%;
    }

    .social-links {
        justify-content: center;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    /* Checkout page mobile fixes */
    .checkout-section {
        padding: 1rem 0;
    }

    .checkout-section .container {
        padding: 0 10px;
    }

    .checkout-header h1 {
        font-size: 1.5rem;
    }

    .checkout-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    .order-summary,
    .checkout-form {
        padding: 15px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .cart-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .cart-item img {
        width: 60px;
        height: 60px;
    }

    .order-totals {
        font-size: 14px;
    }

    .form-group input,
    .form-group select {
        width: 100%;
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Extra small devices (phones, 480px and down) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    header .container {
        padding: 0 10px;
    }

    .logo img {
        height: 40px;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .hero-buttons {
        gap: 0.5rem;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-card {
        padding: 1rem;
    }

    .product-card img {
        height: 200px;
    }

    .product-card h3 {
        font-size: 1.1rem;
    }

    /* Nav hidden on mobile - menu handled by mobile-menu.js */
    nav {
        display: none !important;
    }

    .header-actions .btn-outline {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }

    .cart-icon .cart-count {
        font-size: 0.7rem;
        padding: 0.1rem 0.4rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* Form styles for mobile */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents iOS zoom on focus */
    }
}
/* ========================================
   MOBILE DROPDOWN MENU STYLES
   ======================================== */

/* The dropdown menu container */
#mobile-dropdown-nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: #1a1a1a;
    z-index: 99999;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

#mobile-dropdown-nav.open {
    max-height: 400px;
    overflow: visible;
}

#mobile-dropdown-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#mobile-dropdown-nav li {
    border-bottom: 1px solid #333;
}

#mobile-dropdown-nav li:last-child {
    border-bottom: none;
}

#mobile-dropdown-nav a {
    display: block;
    padding: 18px 25px;
    color: #fff !important;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: background 0.2s ease;
}

#mobile-dropdown-nav a:hover,
#mobile-dropdown-nav a:active,
#mobile-dropdown-nav a.active {
    background: #CC0000;
}

/* Show dropdown menu on mobile */
@media (max-width: 768px) {
    #mobile-dropdown-nav {
        display: block;
    }
    
    /* Completely hide original nav */
    header nav {
        display: none !important;
        visibility: hidden !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        position: absolute !important;
        left: -9999px !important;
    }
    
    /* Ensure hamburger shows */
    .mobile-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: none !important;
        border: none !important;
        color: #fff !important;
        font-size: 24px !important;
        padding: 10px !important;
        cursor: pointer;
        z-index: 100000;
    }
}

/* Hide mobile menu elements on desktop */
@media (min-width: 769px) {
    #mobile-dropdown-nav {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: none !important;
    }
}
