/* Special offers listing page */

.km-offers-hero {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    background: linear-gradient(180deg, #fffbeb 0%, #fedc19 45%, #fffbeb 100%);
    overflow: hidden;
    line-height: 0;
}

.km-offers-hero__link {
    display: block;
    width: 100%;
}

.km-offers-hero__img {
    display: block;
    width: 100%;
    height: clamp(180px, 32vw, 420px);
    object-fit: cover;
    object-position: center center;
}

.km-offers-page {
    padding-bottom: 0;
}

.km-offers-crumb {
    background: #f3f4f6;
    border-bottom: 1px solid #e5e7eb;
    padding: 12px 0;
    margin-bottom: 28px;
}

.km-offers-crumb__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
    color: #6b7280;
}

.km-offers-crumb__list a {
    color: #374151;
    text-decoration: none;
}

.km-offers-crumb__list a:hover {
    color: #111827;
    text-decoration: underline;
}

.km-offers-crumb__list li:not(:last-child)::after {
    content: '>';
    margin-left: 8px;
    color: #9ca3af;
}

.km-offers-title {
    text-align: center;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 700;
    color: #111827;
    margin: 0 0 28px;
}

.km-offers-title__count {
    font-weight: 600;
    color: #4b5563;
}

.km-offer-card {
    background: #fff;
    border-top: 4px solid #fedc19;
    border-bottom: 4px solid #fedc19;
    box-shadow: 0 4px 18px rgba(17, 24, 39, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.km-offer-card__media {
    position: relative;
    display: block;
    padding: 16px;
    background: #fff;
    text-align: center;
}

.km-offer-card__media img {
    width: 100%;
    max-height: 200px;
    object-fit: contain;
    margin: 0 auto;
}

.km-offer-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #fedc19;
    color: #111827;
    font-size: 13px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 4px;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.km-offer-card__body {
    padding: 12px 16px 18px;
    font-size: 13px;
    color: #374151;
    flex: 1;
}

.km-offer-card__name {
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 700;
}

.km-offer-card__name a {
    color: #111827;
    text-decoration: none;
}

.km-offer-card__name a:hover {
    color: #b45309;
}

.km-offer-card__brand,
.km-offer-card__spec {
    margin: 0 0 4px;
    line-height: 1.4;
}

.km-offer-card__price {
    margin: 12px 0 0;
    font-size: 14px;
}

.km-offer-card__price strong {
    color: #dc2626;
    font-size: 18px;
    margin-left: 4px;
}

.km-offers-empty {
    text-align: center;
    color: #6b7280;
    padding: 48px 16px;
}

.km-offers-inquiry {
    margin-top: 48px;
    padding: 36px 16px;
    background: #f3f4f6;
    border-top: 1px solid #e5e7eb;
}

.km-offers-inquiry__text {
    margin: 0 0 16px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
}

.km-offers-inquiry__btn {
    display: inline-block;
    padding: 12px 28px;
    background: #0d9488;
    color: #fff !important;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.km-offers-inquiry__btn:hover {
    background: #0f766e;
}

@media (max-width: 767px) {
    .km-offers-hero__img {
        object-fit: contain;
        height: auto;
        max-height: 220px;
        background: #fffbeb;
    }
}
