/* Mobile Navigation Styles - Enhanced Standalone File */

/* Mobile Responsive Design */
@media (max-width: 768px) {
    /* Hide top bar on mobile */
    .westcotts-top-bar {
        display: none;
    }
    
    .westcotts-container {
        padding: 0 16px;
    }
    
    .westcotts-nav {
        padding: 15px 0;
        position: relative;
        z-index: 1000;
    }
    
    .westcotts-logo img {
        height: 55px;
    }
    
    /* Hide desktop navigation items */
    .westcotts-nav-items {
        display: none;
    }
    
    /* Show mobile toggle button */
    .westcotts-mobile-toggle {
        display: block;
        font-size: 26px;
        padding: 8px;
        transition: all 0.3s ease;
        background: none;
        border: none;
        color: #4d5153;
        cursor: pointer;
        position: relative;
        z-index: 1001;
    }
    
    .westcotts-mobile-toggle:hover,
    .westcotts-mobile-toggle.active {
        color: #af8c59;
    }
    
    .westcotts-mobile-toggle.active {
        transform: rotate(90deg);
    }
    
    /* Mobile Navigation Menu */
    .westcotts-mobile-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 999;
        overflow: hidden;
    }
    
    .westcotts-mobile-nav.active {
        display: flex;
        animation: fadeIn 0.3s ease-out;
    }
    
    /* Hide main nav when mobile menu is active */
    .westcotts-mobile-nav.active ~ .westcotts-nav,
    .westcotts-nav:has(+ .westcotts-mobile-nav.active) {
        opacity: 0;
        pointer-events: none;
    }
    
    .westcotts-mobile-nav-overlay {
        background: #ecebe9;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 40px 0;
    }
    
    .westcotts-mobile-nav-content {
        text-align: center;
        max-width: 400px;
        width: 100%;
    }
    
    /* Mobile Logo */
    .westcotts-mobile-logo {
        margin-bottom: 40px;
    }
    
    .westcotts-mobile-logo img {
        height: 80px;
    }
    
    /* Mobile Navigation Items */
    .westcotts-mobile-nav-items {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 50px;
    }
    
    .westcotts-mobile-nav-link {
        text-decoration: none;
        color: #4d5153;
        font-weight: 500;
        font-size: 24px;
        height: 60px;
        border-radius: 12px;
        transition: all 0.3s ease;
        background: #d5d3d0;
        border: 1px solid rgba(77, 81, 83, 0.1);
        margin: 0 15px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .westcotts-mobile-nav-link:hover {
        color: #af8c59;
        background: #d5d3d0;
        border-color: #af8c59;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(175, 140, 89, 0.2);
    }
    
    .westcotts-mobile-contact-btn {
        background: linear-gradient(135deg, #af8c59, #c4a470);
        color: #ecebe9;
        border: none;
        height: 60px;
        border-radius: 12px;
        font-weight: 600;
        font-size: 20px;
        cursor: pointer;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 25px rgba(175, 140, 89, 0.4);
        transition: all 0.3s ease;
        margin: 20px 15px 0 15px;
        letter-spacing: 1px;
    }
    
    .westcotts-mobile-contact-btn:hover {
        background: linear-gradient(135deg, #c4a470, #d4b480);
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(175, 140, 89, 0.6);
    }
    
    .westcotts-mobile-contact-btn:active {
        transform: translateY(-1px);
    }
    
    /* Mobile Contact Info */
    .westcotts-mobile-contact-info {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px 0 20px;
        border-top: 1px solid rgba(77, 81, 83, 0.15);
    }
    
    .westcotts-mobile-contact-link {
        text-decoration: none;
        color: #4d5153;
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 16px 20px;
        border-radius: 8px;
        background: #d5d3d0;
        border: 1px solid rgba(77, 81, 83, 0.1);
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
    
    .westcotts-mobile-contact-link:hover {
        color: #af8c59;
        background: #d5d3d0;
        border-color: #af8c59;
        box-shadow: 0 3px 12px rgba(175, 140, 89, 0.15);
    }
    
    .westcotts-mobile-contact-link i {
        font-size: 18px;
        width: 20px;
        text-align: center;
        flex-shrink: 0;
    }
    
    .westcotts-mobile-contact-link span {
        font-weight: 500;
    }
    
    /* Animations */
    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
    
    @keyframes slideInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .westcotts-mobile-nav.active .westcotts-mobile-nav-content {
        animation: slideInUp 0.4s ease-out 0.1s both;
    }
}

/* Small Mobile Responsive Design */
@media (max-width: 480px) {
    .westcotts-container {
        padding: 0 12px;
    }
    
    .westcotts-nav {
        padding: 12px 0;
    }
    
    .westcotts-logo img {
        height: 50px;
    }
    
    .westcotts-mobile-toggle {
        font-size: 24px;
        padding: 6px;
    }
    
    .westcotts-mobile-nav-content {
        max-width: 90%;
    }
    
    .westcotts-mobile-logo {
        margin-bottom: 30px;
    }
    
    .westcotts-mobile-logo img {
        height: 70px;
    }
    
    .westcotts-mobile-nav-items {
        margin-bottom: 40px;
        gap: 10px;
    }
    
    .westcotts-mobile-nav-link {
        font-size: 20px;
        margin: 0 10px;
        height: 60px;
    }
    
    .westcotts-mobile-contact-btn {
        font-size: 18px;
        margin: 20px 10px 0 10px;
        height: 60px;
    }
    
    .westcotts-mobile-contact-info {
        gap: 15px;
        padding: 25px 10px 0 10px;
    }
    
    .westcotts-mobile-contact-link {
        font-size: 15px;
        padding: 14px 18px;
        gap: 10px;
    }
    
    .westcotts-mobile-contact-link i {
        font-size: 16px;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .westcotts-container {
        padding: 0 10px;
    }
    
    .westcotts-logo img {
        height: 45px;
    }
    
    .westcotts-mobile-toggle {
        font-size: 22px;
    }
    
    .westcotts-mobile-nav-overlay {
        padding: 30px 0;
    }
    
    .westcotts-mobile-logo img {
        height: 60px;
    }
    
    .westcotts-mobile-nav-link {
        font-size: 18px;
        margin: 0 5px;
        height: 60px;
    }
    
    .westcotts-mobile-contact-btn {
        font-size: 16px;
        margin: 20px 5px 0 5px;
        height: 60px;
    }
    
    .westcotts-mobile-contact-info {
        padding: 20px 5px 0 5px;
    }
    
    .westcotts-mobile-contact-link {
        font-size: 14px;
        padding: 12px 15px;
    }
}

/* Landscape Mobile Adjustments */
@media (max-width: 768px) and (orientation: landscape) {
    .westcotts-nav {
        padding: 10px 0;
    }
    
    .westcotts-logo img {
        height: 45px;
    }
    
    .westcotts-mobile-nav-overlay {
        padding: 20px 0;
    }
    
    .westcotts-mobile-logo {
        margin-bottom: 25px;
    }
    
    .westcotts-mobile-logo img {
        height: 60px;
    }
    
    .westcotts-mobile-nav-items {
        margin-bottom: 30px;
        gap: 4px;
    }
    
    .westcotts-mobile-nav-link {
        font-size: 18px;
        height: 60px;
    }
    
    .westcotts-mobile-contact-btn {
        font-size: 16px;
        margin: 20px 20px 0 20px;
        height: 60px;
    }
    
    .westcotts-mobile-contact-info {
        gap: 12px;
        padding: 20px 20px 0 20px;
    }
    
    .westcotts-mobile-contact-link {
        padding: 10px 15px;
        font-size: 14px;
    }
}