/* Mobile Navigation Styles - Extracted from flexnav.css */

/* Mobile Toggle Button */
.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: #333333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle:hover span {
    background: #333333;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 350px;
    height: 100vh;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    transition: right 0.4s ease;
    z-index: 1002;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    background: #f5f5f5;
    border-bottom: 1px solid #e0e0e0;
}

.mobile-logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.mobile-logo-img {
    height: 60px;
    width: 60px;
    object-fit: cover;
    border-radius: 50%;
}

.mobile-logo-text .logo-main {
    font-family: 'Montserrat', sans-serif;
    color: #5a2d14;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 1.4rem;
}

.mobile-logo-text .logo-tagline {
    font-size: 0.75rem;
    color: #666666;
    letter-spacing: 1px;
    margin-top: 5px;
    font-weight: 500;
    text-transform: uppercase;
}

.mobile-nav-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    color: #333333;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-nav-link i {
    width: 24px;
    color: #1a5d4d;
    font-size: 1.2rem;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: rgba(26, 93, 77, 0.05);
    color: #1a5d4d;
}

.mobile-contact {
    margin-top: 30px;
    padding: 25px;
    background: #f5f5f5;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

.mobile-contact h4 {
    color: #1a5d4d;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #333333;
    font-size: 0.95rem;
}

.contact-item i {
    color: #1a5d4d;
    width: 20px;
}

.mobile-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e0e0e0;
}

.mobile-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f5f5f5;
    color: #333333;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid #e0e0e0;
}

.mobile-social-icon:hover {
    background: #1a5d4d;
    color: #ffffff;
    border-color: #1a5d4d;
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    backdrop-filter: blur(3px);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hide selection summaries on mobile */
@media (max-width: 768px) {
    .cart-summary,
    .selection-summary {
        display: none !important;
    }
    
    .mobile-toggle {
        display: flex !important;
    }
    
    .desktop-nav {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .mobile-toggle {
        display: none !important;
    }
    
    .mobile-nav {
        display: none !important;
    }
    
    .nav-overlay {
        display: none !important;
    }
}