/* Extra responsive styles */

/* Large screens */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .header-search {
        max-width: 300px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile devices */
@media (max-width: 576px) {
    .header-actions a {
        font-size: 11px;
        margin-left: 8px;
    }
    
    .header-actions a span {
        display: none;
    }
    
    .logo h1 {
        font-size: 20px;
    }
    
    .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .product-image {
        height: 140px;
    }
    
    .product-info {
        padding: 10px;
    }
    
    .product-info h3 {
        font-size: 12px;
        height: 28px;
    }
    
    .current-price {
        font-size: 13px;
    }
    
    .original-price {
        font-size: 11px;
    }
    
    .discount-badge {
        font-size: 10px;
        padding: 2px 8px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .item-image {
        width: 100%;
        height: 150px;
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .item-quantity {
        margin: 10px 0;
    }
    
    .checkout-summary {
        position: static;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .auth-box {
        padding: 20px;
    }
}

/* Very small devices */
@media (max-width: 360px) {
    .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .product-image {
        height: 120px;
    }
    
    .product-info h3 {
        font-size: 11px;
        height: 24px;
    }
    
    .current-price {
        font-size: 12px;
    }
    
    .btn {
        padding: 6px 10px;
        font-size: 11px;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .slider-section,
    .flash-deals,
    .related-products {
        display: none !important;
    }
    
    .product-detail {
        grid-template-columns: 1fr !important;
    }
    
    .product-actions .btn {
        display: none !important;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    body {
        background: #1a1a2e;
        color: #eee;
    }
    
    .header,
    .product-card,
    .cart-summary,
    .form-section,
    .account-sidebar,
    .account-content,
    .auth-box {
        background: #16213e;
        color: #eee;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        background: #0f3460;
        color: #eee;
        border-color: #1a1a2e;
    }
    
    .main-nav {
        background: #0f3460;
    }
    
    .footer {
        background: #0f3460;
    }
    
    .cart-item {
        background: #16213e;
    }
    
    .payment-option {
        border-color: #0f3460;
    }
}