/* ============================================
   JEEP CAROUSEL - LAYOUT STYLES
   ============================================ */

/* ============================================
   LAYOUT: BANNER SIMPLE (banner_simple)
   ============================================ */
.jeep-layout-banner_simple .jeep-banner-top-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
    border-bottom: 2px solid #eee;
    padding-bottom: 12px;
}
.jeep-layout-banner_simple .jeep-banner-top-title {
    display: flex;
    flex-direction: column;
}
.jeep-layout-banner_simple .jeep-banner-title {
    font-size: 18px;
    font-weight: 700;
    color: #7B2D8E;
    text-transform: uppercase;
}
.jeep-layout-banner_simple .jeep-banner-subtitle {
    font-size: 13px;
    color: #666;
}
.jeep-layout-banner_simple .jeep-banner-arrows {
    display: flex;
    gap: 6px;
}
.jeep-layout-banner_simple .jeep-banner-body {
    display: flex;
    gap: 16px;
    align-items: stretch;
}
.jeep-layout-banner_simple .jeep-banner-side {
    flex: 0 0 18%;
    max-width: 18%;
}
.jeep-layout-banner_simple .jeep-banner-inner {
    border-radius: 12px;
    height: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px 20px;
}
.jeep-layout-banner_simple .jeep-banner-content {
    position: relative;
    z-index: 2;
}
.jeep-layout-banner_simple .jeep-banner-btn {
    display: inline-block;
    padding: 10px 28px;
    background: #F5C518;
    color: #333;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    transition: opacity 0.3s;
}
.jeep-layout-banner_simple .jeep-banner-btn:hover {
    opacity: 0.85;
}
.jeep-layout-banner_simple .jeep-banner-products {
    flex: 1;
    overflow: hidden;
    position: relative;
}
.jeep-layout-banner_simple .jeep-carousel-track {
    display: flex;
    gap: 16px;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================
   LAYOUT: GRID COMPACT (grid_compact)
   ============================================ */
.jeep-layout-grid_compact .jeep-grid-categories {
    display: flex;
    gap: 24px;
}
.jeep-layout-grid_compact .jeep-grid-category-col {
    flex: 1;
    min-width: 0;
}
.jeep-layout-grid_compact .jeep-grid-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}
.jeep-layout-grid_compact .jeep-grid-cat-name {
    font-size: 15px;
    font-weight: 600;
    color: #8368ab;
    transition: color 0.3s;
}
.jeep-layout-grid_compact .jeep-grid-cat-name:hover {
    color: #7b4298;
}
.jeep-layout-grid_compact .jeep-grid-arrows {
    display: flex;
    gap: 4px;
}
.jeep-layout-grid_compact .jeep-grid-carousel {
    overflow: hidden;
}
.jeep-layout-grid_compact .jeep-grid-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}
.jeep-layout-grid_compact .jeep-grid-page {
    flex: 0 0 100%;
    min-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ============================================
   LAYOUT: CATEGORY TABS (category_tabs)
   ============================================ */
.jeep-layout-category_tabs .jeep-tabs-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 0;
}

/* Título izquierda */
.jeep-tabs-title-group {
    padding-bottom: 0;
}
.jeep-tabs-section-title {
    font-size: 22px;
    font-weight: 800;
    color: #222;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Tabs + flechas derecha */
.jeep-tabs-right {
    display: flex;
    align-items: center;
    gap: 32px;
}
.jeep-tabs-arrows {
    display: flex;
    gap: 6px;
}

.jeep-tab-link {
    font-size: 14px;
    font-weight: 600;
    color: #999;
    letter-spacing: 0.5px;
    padding-bottom: 4px;
    border-bottom: 3px solid transparent;
    transition: color 0.3s, border-color 0.3s;
    cursor: pointer;
    white-space: nowrap;
}
.jeep-tab-link:hover,
.jeep-tab-link.active {
    color: #7B2D8E;
    border-bottom-color: #7B2D8E;
}
.jeep-layout-category_tabs .jeep-tab-content {
    overflow: hidden;
}
.jeep-layout-category_tabs .jeep-carousel-track {
    display: flex;
    gap: 16px;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}
