/* SPAR Offers – Frontend Slider */

.spar-offers-outer {
    overflow: hidden;
    width: 100%;
}

.spar-offers-wrapper {
    position: relative;
    width: 100%;
    padding: 0 0 48px;
    box-sizing: border-box;
}

/* ── Swiper ────────────────────────────────────────────────────── */
/* overflow:visible so peek slides show, outer div clips horizontally */
.spar-offers-swiper {
    overflow: visible !important;
    /* Left padding = breathing room from edge, right = peek hint */
    padding: 8px 32px 40px 16px !important;
    box-sizing: border-box;
}

@media (min-width: 640px) {
    .spar-offers-swiper {
        padding: 8px 48px 40px 24px !important;
    }
}

/* ── Card ──────────────────────────────────────────────────────── */
.spar-offer-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.spar-offer-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,.10);
    transform: translateY(-2px);
}

/* ── Image ─────────────────────────────────────────────────────── */
.spar-offer-image {
    position: relative;
    width: 100%;
    padding-top: 90%;
    overflow: hidden;
    background: #f8f8f8;
    border-radius: 10px 10px 0 0;
}

.spar-offer-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    box-sizing: border-box;
}

.spar-offer-no-image {
    position: absolute;
    inset: 0;
    background: #f3f4f6;
}

/* ── Body ──────────────────────────────────────────────────────── */
.spar-offer-body {
    padding: 14px 16px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.spar-offer-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    color: #111827;
}

/* ── Prices ────────────────────────────────────────────────────── */
.spar-offer-prices {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
    margin-top: auto;
}

.spar-offer-price {
    font-size: 1.35rem;
    font-weight: 700;
    color: #E4002B;
}

.spar-offer-old-price {
    font-size: 0.88rem;
    color: #9ca3af;
    text-decoration: line-through;
}

/* ── Navigation arrows ─────────────────────────────────────────── */
.spar-offers-prev,
.spar-offers-next {
    color: #E4002B !important;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    width: 40px !important;
    height: 40px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,.10);
    transition: background 0.15s;
    top: 38% !important;
}

.spar-offers-prev::after,
.spar-offers-next::after {
    font-size: 14px !important;
    font-weight: 700;
}

.spar-offers-prev:hover,
.spar-offers-next:hover {
    background: #E4002B !important;
    color: #fff !important;
    border-color: #E4002B;
}

.spar-offers-prev.swiper-button-disabled,
.spar-offers-next.swiper-button-disabled {
    opacity: 0.3;
}

/* ── Pagination dots ───────────────────────────────────────────── */
.spar-offers-pagination .swiper-pagination-bullet-active {
    background: #E4002B !important;
}

/* ── Empty state ───────────────────────────────────────────────── */
.spar-offers-empty {
    color: #6b7280;
    font-style: italic;
}
