/* ============================================
   JEEP CAROUSEL - BASE & SHARED COMPONENTS
   ============================================ */

/* === RESET & BASE === */
.jeep-carousel-wrapper {
    position: relative;
    width: 100%;
    font-family: 'Montserrat', sans-serif !important;
}
.jeep-carousel-wrapper * {
    font-family: 'Montserrat', sans-serif !important;
    box-sizing: border-box;
}
.jeep-carousel-wrapper a {
    text-decoration: none;
    color: inherit;
}
.jeep-carousel-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   ARROWS — círculo violeta claro, SVG blanco
   ============================================ */
.jeep-arrow {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
    max-width: 36px !important;
    max-height: 36px !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: 50% !important;
    border: none !important;
    background: #8368ab !important;
    cursor: pointer;
    transition: background 0.25s ease;
    padding: 0 !important;
    margin: 0;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
    font-size: 0 !important;
    line-height: 1 !important;
    overflow: hidden;
}
.jeep-arrow:hover {
    background: #7b4298 !important;
}
.jeep-arrow-sm {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    min-height: 30px !important;
    max-width: 30px !important;
    max-height: 30px !important;
}

/* ============================================
   DOTS
   ============================================ */
.jeep-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}
.jeep-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s;
}
.jeep-dot.active {
    background: #7B2D8E;
}

/* ============================================
   STARS
   ============================================ */
.jeep-stars {
    display: flex;
    gap: 3px;
    justify-content: flex-start;
    margin: 5px 0 8px;
}
.jeep-star {
    font-size: 16px;
    line-height: 1;
    color: #e0e0e0;
}
.jeep-star.filled { color: #f5a623; }
.jeep-star.half   { color: #f5a623; opacity: 0.6; }

/* ============================================
   BADGE DE DESCUENTO
   ============================================ */
.jeep-discount-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #c2185b;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 25px;
    line-height: 1;
    z-index: 3;
    white-space: nowrap;
}

/* ============================================
   BRAND
   ============================================ */
.jeep-product-brand {
    font-size: 13px;
    font-weight: 700;
    color: #7B2D8E;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 6px;
    border-bottom: 2px solid #7B2D8E;
    padding-bottom: 8px;
    text-align: left;
}

/* ============================================
   CATEGORÍAS
   ============================================ */
.jeep-product-cats {
    font-size: 12px;
    color: #888;
    display: block;
    margin-bottom: 5px;
    line-height: 1.4;
    text-align: left;
}

/* ============================================
   PRECIOS (shared)
   ============================================ */
.jeep-discount-text {
    font-size: 12px;
    color: #1a9e75;
    font-weight: 700;
    display: inline;
}
.jeep-product-price-block {
    margin: 4px 0 10px;
    text-align: left;
}
.jeep-product-price-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 4px;
}
.jeep-product-price {
    margin: 6px 0 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: wrap;
}
.jeep-old-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}
.jeep-current-price {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
    display: block;
    text-align: left;
}

/* ============================================
   BOTÓN AGREGAR (shared pill)
   ============================================ */
.jeep-add-to-cart {
    display: block;
    width: 100%;
    padding: 12px 0;
    text-align: center;
    background: #7B2D8E !important;
    color: #fff !important;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
    border: 2px solid #7B2D8E;
    cursor: pointer;
    margin-top: auto;
    letter-spacing: 0.3px;
    box-sizing: border-box;
    text-decoration: none !important;
}
.jeep-add-to-cart:hover {
    background: #F5C518 !important;
    color: #7B2D8E !important;
    border-color: #F5C518;
}

/* ============================================
   TOUCH / DRAG SUPPORT
   ============================================ */
.jeep-carousel-track.is-dragging {
    transition: none !important;
    cursor: grabbing;
}
.jeep-carousel-track {
    cursor: grab;
}
.jeep-grid-track.is-dragging {
    transition: none !important;
}
