/* Mobile-Specific Styles */

/* Mobile Navigation Enhancements */
@media (max-width: 768px) {
    .header {
        height: 60px;
    }
    
    .main-container {
        margin-top: 60px;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    /* Mobile Dropdown Adjustments */
    .nav-dropdown .dropdown-menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        min-width: 100%;
        border-radius: 0;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .dropdown-item {
        padding: 15px 20px;
        font-size: 16px;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .dropdown-item:last-child {
        border-bottom: none;
    }
    
    
    /* Mobile Header Adjustments */
    .header-actions {
        gap: 10px;
    }
    
    .header-actions button {
        padding: 6px;
        font-size: 16px;
    }
    
    /* Mobile Hero Section */
    .hero-section {
        min-height: 500px;
    }
    
    .hero-content {
        gap: 20px;
    }
    
    .discount-badge {
        margin: 0 auto 20px;
    }
    
    /* Mobile Product Cards */
    .product-card {
        margin: 0 auto;
        max-width: 300px;
    }
    
    .product-image {
        height: 200px;
    }
    
    
    /* Touch-friendly buttons */
    .shop-now-btn {
        padding: 18px 35px;
        font-size: 18px;
    }
    
    .add-to-cart {
        padding: 15px;
        font-size: 16px;
    }
    
    .nav-arrow {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .dot {
        width: 15px;
        height: 15px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .header {
        height: 55px;
    }
    
    .main-container {
        margin-top: 55px;
    }
    
    
    .hero-section {
        min-height: 450px;
    }
    
    .hero-content {
        padding: 20px 15px;
    }
    
    .featured-products {
        padding: 30px 15px;
    }
    
    .featured-products h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    
    .product-info {
        padding: 15px;
    }
    
    .product-info h3 {
        font-size: 16px;
    }
    
    .product-price {
        font-size: 18px;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        min-height: 400px;
    }
    
    .hero-content {
        flex-direction: row;
        align-items: center;
        padding: 20px;
    }
    
    .hero-text {
        flex: 1;
        margin-bottom: 0;
        margin-right: 20px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .image-container {
        width: 200px;
        height: 200px;
    }
}


/* Mobile-specific hover states (for devices that support hover) */
@media (hover: hover) and (max-width: 768px) {
    .product-card:hover {
        transform: translateY(-3px);
    }
}

/* Remove hover effects on touch devices */
@media (hover: none) {
    .product-card:hover {
        transform: none;
    }
    
    .product-card:hover .product-image img {
        transform: none;
    }
    
    .nav-arrow:hover {
        background: rgba(255, 255, 255, 0.2);
    }
    
    .shop-now-btn:hover {
        background: #3498db;
        transform: none;
    }
    
    .add-to-cart:hover {
        background: #3498db;
    }
}

/* Mobile Accessibility Improvements */
@media (max-width: 768px) {
    /* Larger touch targets */
    .header-actions button {
        min-width: 44px;
        min-height: 44px;
    }
    
    .mobile-menu-btn {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Better text readability */
    .hero-subtitle {
        font-size: 16px;
        line-height: 1.5;
    }
}

/* Mobile Loading States */
@media (max-width: 768px) {
    .product-image {
        background: #f8f9fa;
        position: relative;
    }
    
    .product-image::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 40px;
        height: 40px;
        border: 3px solid #e9ecef;
        border-top: 3px solid #3498db;
        border-radius: 50%;
        animation: spin 1s linear infinite;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .product-image.loading::before {
        opacity: 1;
    }
    
    @keyframes spin {
        0% { transform: translate(-50%, -50%) rotate(0deg); }
        100% { transform: translate(-50%, -50%) rotate(360deg); }
    }
}

/* Mobile Performance Optimizations */
@media (max-width: 768px) {
    .decorative-elements {
        display: none; /* Hide decorative elements on mobile for better performance */
    }
    
    .hero-img {
        border-width: 4px; /* Reduce border width on mobile */
    }
    
    /* Reduce animations on mobile for better performance */
    .product-card,
    .category-item,
    .nav-arrow,
    .shop-now-btn,
    .add-to-cart {
        transition-duration: 0.2s;
    }
}
