/* Responsive */
@media (max-width: 992px) {
    .header-container {
        flex-wrap: wrap;
        gap: 15px;
    }

    nav ul {
        gap: 15px;
    }

    nav a {
        font-size: 12px;
    }

    .footer-content:not(.row) {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 767px) {
    /* Header */
    header {
        padding: 10px 0;
    }

    .header-container {
        padding: 0 15px;
    }

    /* Show mobile menu button on tablet and below */
    .mobile-menu-btn {
        display: block !important;
    }

    /* Hide desktop nav on tablet and below */
    header nav {
        display: none !important;
    }

    .logo-img {
        height: 90px !important;
    }

    .header-icons a {
        font-size: 16px;
    }

    nav ul {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    nav a {
        font-size: 11px;
    }

    /* Slider */
    .slider {
        height: 300px;
    }

    .slider-nav {
        width: 45px;
        height: 45px;
        font-size: 28px;
    }

    .slider-nav.prev {
        left: 10px;
    }

    .slider-nav.next {
        right: 10px;
    }

    /* Container */
    .container {
        padding: 40px 15px;
    }

    /* Section Title */
    .section-title {
        font-size: 24px;
    }

    /* Tabs */
    .tabs {
        flex-wrap: wrap;
        gap: 15px;
    }

    .tab {
        padding: 8px 12px;
        font-size: 11px;
    }

    /* Product Card adjustments for mobile */
    .product-grid.row > [class*="col-"] {
        padding-left: 8px;
        padding-right: 8px;
    }

    .product-card {
        padding: 12px;
    }

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

    .product-title {
        font-size: 11px;
        min-height: auto;
        margin-top: 10px;
    }

    .product-price {
        font-size: 14px;
        margin-top: auto;
    }

    /* Footer */
    .footer-newsletter {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
        padding: 0 15px;
    }

    .newsletter-form {
        width: 100%;
    }

    .newsletter-form input {
        width: 100%;
    }

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

    .footer-content:not(.row) {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .footer-content.row {
        padding: 40px 15px 20px;
    }

    .footer-column h3 {
        font-size: 14px;
    }

    .footer-column ul li a {
        font-size: 13px;
    }

    .footer-copyright {
        font-size: 12px;
        padding: 15px;
    }

    /* Search Overlay */
    .search-overlay-content {
        padding: 0 20px;
    }

    .search-input {
        font-size: 18px;
        padding: 15px 50px 15px 0;
    }

    .search-submit {
        font-size: 24px;
    }

    .search-close {
        width: 40px;
        height: 40px;
        font-size: 20px;
        top: 20px;
        right: 20px;
    }

    /* Product Detail */
    .product-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .main-image-container {
        height: 300px;
    }

    .thumbnail {
        min-width: calc(33.333% - 8px);
        height: 70px;
    }

    .thumbnail-nav {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    .product-info .product-title {
        font-size: 24px;
    }

    .product-info .product-price {
        font-size: 20px;
    }

    .product-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .quantity-selector {
        justify-content: center;
    }

    .tab-buttons {
        gap: 15px;
        overflow-x: auto;
    }

    .tab-btn {
        font-size: 14px;
        white-space: nowrap;
    }

    .breadcrumb {
        font-size: 12px;
        overflow-x: auto;
    }
}

@media (max-width: 480px) {
    /* Header */
    .header-container {
        flex-wrap: nowrap;
        align-items: center;
        padding: 0 10px;
    }

    /* Hide desktop nav */
    nav {
        display: none;
    }

    /* Show mobile menu button */
    .mobile-menu-btn {
        display: block;
    }

    .logo {
        flex-shrink: 0;
    }

    .logo-img {
        height: 90px !important;
    }

    .header-icons {
        gap: 6px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
    }

    .header-icons a {
        font-size: 16px;
    }

    /* Mobile menu overlay adjustments */
    .mobile-menu-content {
        width: 250px;
    }

    /* Slider */
    .slider {
        height: 200px;
    }

    .slider-nav {
        width: 35px;
        height: 35px;
        font-size: 24px;
    }

    /* Product Grid for mobile */
    .product-grid.row > [class*="col-"] {
        padding-left: 5px;
        padding-right: 5px;
    }

    .product-card {
        padding: 8px;
    }

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

    .product-title {
        font-size: 10px;
        margin-top: 8px;
    }

    .product-price {
        font-size: 13px;
        margin-top: 5px;
    }

    .discount-badge {
        font-size: 10px;
        padding: 3px 8px;
    }

    /* Section Title */
    .section-title {
        font-size: 20px;
    }

    /* Tabs */
    .tabs {
        gap: 10px;
    }

    .tab {
        padding: 6px 10px;
        font-size: 10px;
    }

    /* Container */
    .container {
        padding: 30px 10px;
    }

    /* Footer */
    .footer-newsletter {
        padding: 0 10px;
    }

    .newsletter-form input {
        font-size: 12px;
        padding: 10px 15px;
    }

    .newsletter-form button {
        padding: 10px 15px;
    }

    .social-links a {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .footer-content.row {
        padding: 40px 10px 20px;
    }

    .footer-content.row > [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .footer-column h3 {
        font-size: 13px;
    }

    .footer-column ul li a {
        font-size: 12px;
    }

    .footer-column p {
        font-size: 11px !important;
    }

    /* Chat Widget */
    .chat-widget {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 15px;
        right: 15px;
    }

    /* Product Detail */
    .thumbnail {
        min-width: calc(50% - 8px);
    }

    .main-image-container {
        height: 250px;
    }

    .product-info .product-title {
        font-size: 20px;
    }

    .product-info .product-price {
        font-size: 18px;
    }

    .btn-add-to-cart,
    .btn-wishlist {
        font-size: 12px;
        padding: 10px 20px;
    }

    /* Search */
    .search-input {
        font-size: 16px;
    }

    .search-submit {
        font-size: 20px;
    }
}
