/* ========================================
   LTS - Responsive Styles
   ======================================== */

/* Large Tablets and Small Laptops */
@media (max-width: 1200px) {
    .products-grid-new {
        grid-template-columns: repeat(3, 1fr);
    }

    .categories-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Medium Tablets */
@media (max-width: 992px) {
    :root {
        --section-padding: 60px;
    }

    h1 { font-size: 40px; }
    h2 { font-size: 32px; }
    h3 { font-size: 22px; }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid .feature-item:nth-child(2) {
        border-right: none;
    }

    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-filters {
        order: 2;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .main-image {
        height: 400px;
    }

    .product-info-detail {
        padding: 30px;
    }
}

/* Small Tablets and Large Phones */
@media (max-width: 768px) {
    :root {
        --section-padding: 40px;
    }

    h1 { font-size: 32px; }
    h2 { font-size: 26px; }
    h3 { font-size: 20px; }

    .header-top-bar {
        font-size: 10px;
        height: 40px;
    }

    .header-navbar {
        top: 40px;
    }

    .header-navbar.scrolled {
        top: 0;
    }

    body {
        padding-top: 94px;
    }

    .logo-image {
        height: 40px;
    }

    .header-nav-menu {
        display: none;
    }

    .hero-carousel {
        height: 400px;
    }

    .carousel-caption {
        bottom: 60px;
        padding: 20px 30px;
    }

    .carousel-caption h2 {
        font-size: 28px;
    }

    .carousel-caption p {
        font-size: 14px;
    }

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

    .features-grid {
        grid-template-columns: 1fr;
    }

    .features-grid .feature-item {
        border-right: none;
    }

    .categories-grid-new {
        grid-template-columns: 1fr;
    }

    .category-card-new {
        height: 300px;
    }

    .products-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .product-image-new {
        height: 250px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 28px;
    }

    .page-header {
        padding: 100px 0 40px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .intro-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intro-image {
        order: -1;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

/* Small Phones */
@media (max-width: 480px) {
    :root {
        --section-padding: 30px;
    }

    h1 { font-size: 28px; }
    h2 { font-size: 22px; }
    h3 { font-size: 18px; }

    .container {
        padding: 0 15px;
    }

    .hero-carousel {
        height: 300px;
    }

    .carousel-nav {
        display: none;
    }

    .carousel-caption {
        bottom: 40px;
        padding: 15px 20px;
        width: 90%;
    }

    .carousel-caption h2 {
        font-size: 22px;
    }

    .carousel-caption p {
        font-size: 12px;
    }

    .features-new {
        padding: 40px 0;
    }

    .feature-item {
        padding: 20px 15px;
    }

    .feature-item h3 {
        font-size: 16px;
    }

    .feature-item p {
        font-size: 13px;
    }

    .categories-new,
    .products-new {
        padding: 40px 0;
    }

    .products-grid-new {
        grid-template-columns: 1fr;
    }

    .product-image-new {
        height: 280px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 12px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 13px;
    }

    .btn-large {
        padding: 14px 28px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        max-width: 100%;
    }

    .main-image {
        height: 300px;
    }

    .product-info-detail {
        padding: 20px;
    }

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

    .product-price-detail {
        font-size: 22px;
    }

    .size-options-detail {
        flex-wrap: wrap;
    }

    .size-btn-detail {
        width: 45px;
        height: 45px;
    }

    .footer-info-grid {
        grid-template-columns: 1fr;
    }

    .payments-content {
        flex-direction: column;
        text-align: center;
    }

    .payments-left,
    .payments-right {
        justify-content: center;
    }

    .stat-number {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Extra Small Phones */
@media (max-width: 360px) {
    .hero-carousel {
        height: 250px;
    }

    .carousel-caption h2 {
        font-size: 18px;
    }

    .carousel-caption p {
        font-size: 11px;
    }

    .category-card-new {
        height: 250px;
    }

    .category-overlay-new h3 {
        font-size: 20px;
    }

    .product-image-new {
        height: 250px;
    }
}

/* Print Styles */
@media print {
    .header-top-bar,
    .header-navbar,
    .cart-sidebar,
    .mobile-menu,
    .carousel-nav,
    .carousel-indicators,
    .btn,
    footer {
        display: none !important;
    }

    body {
        padding-top: 0;
    }

    .hero-carousel {
        height: 300px;
    }

    .product-card,
    .category-card-new {
        break-inside: avoid;
    }
}
