/* ============================================
   JEEP CAROUSEL - RESPONSIVE
   ============================================ */

/* ============================================
   TABLET (max-width: 1024px)
   ============================================ */
@media (max-width: 1024px) {
    /* Banner layout */
    .jeep-layout-banner_simple .jeep-banner-side {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .jeep-card-simple {
        flex: 0 0 calc(50% - 8px);
        min-width: calc(50% - 8px);
    }

    /* Grid compact */
    .jeep-layout-grid_compact .jeep-grid-categories {
        flex-wrap: wrap;
    }
    .jeep-layout-grid_compact .jeep-grid-category-col {
        flex: 0 0 calc(50% - 12px);
    }
}

/* ============================================
   MOBILE (max-width: 767px)
   ============================================ */
@media (max-width: 767px) {
    /* Banner layout - stack vertically */
    .jeep-layout-banner_simple .jeep-banner-body {
        flex-direction: column;
    }
    .jeep-layout-banner_simple .jeep-banner-side {
        flex: 0 0 auto;
        max-width: 100%;
    }
    .jeep-layout-banner_simple .jeep-banner-inner {
        min-height: 160px;
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
    .jeep-card-simple {
        flex: 0 0 100%;
        min-width: 100%;
    }

    /* Grid compact - single column */
    .jeep-layout-grid_compact .jeep-grid-categories {
        flex-direction: column;
        gap: 20px;
    }
    .jeep-layout-grid_compact .jeep-grid-category-col {
        flex: 0 0 100%;
    }

    /* Tabs header scroll */
    .jeep-layout-category_tabs .jeep-tabs-header {
        gap: 20px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        padding-bottom: 8px;
        flex-wrap: wrap;
    }
    .jeep-tab-link {
        font-size: 13px;
        flex-shrink: 0;
    }

    /* Price adjustments */
    .jeep-current-price {
        font-size: 20px;
    }

    /* Compact images */
    .jeep-compact-img {
        flex: 0 0 50px;
        width: 50px;
        height: 50px;
    }
    .jeep-compact-img img {
        width: 50px;
        height: 50px;
    }
}

/* ============================================
   SMALL MOBILE (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
    .jeep-layout-banner_simple .jeep-banner-title {
        font-size: 15px;
    }
}
