/* SPAR Offers – Frontend Slider */

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

/* ── Card ──────────────────────────────────────────────────────── */
.spar-offer-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    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%; /* taller aspect ratio */
    overflow: hidden;
    background: #f3f4f6;
}

.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: 12px 14px 16px;
    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: 6px;
    margin-top: auto;
}

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

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

/* ── Swiper navigation ─────────────────────────────────────────── */
.spar-offers-swiper {
    padding-bottom: 40px !important;
    /* allow overflow on sides for peek effect */
    overflow: hidden;
}

.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;
}

.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;
}

.spar-offers-pagination .swiper-pagination-bullet-active {
    background: #E4002B !important;
}

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