.offers,
.offer-page {
    position: relative;
    isolation: isolate;
    background:
        radial-gradient(ellipse 55% 50% at 8% 0%, rgba(143, 232, 60, 0.12), transparent 58%),
        radial-gradient(ellipse 45% 40% at 92% 12%, rgba(22, 133, 45, 0.07), transparent 52%),
        #f7fbf3;
    padding: 28px 0 88px !important;
}

.offers__inner {
    width: min(1180px, calc(100% - 8vw));
    margin: 0 auto;
}

.offers__head {
    margin-bottom: 24px;
}

.offers__kicker,
.offer-page__kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    padding: 6px 12px 6px 8px;
    border-radius: 999px;
    background: rgba(22, 133, 45, 0.08);
    color: #16852d;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.offers__kicker::before,
.offer-page__kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #45c72f;
    box-shadow: 0 0 10px rgba(143, 232, 60, 0.8);
}

.offers__title-row {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
}

.offers__heading,
.offer-page__heading {
    margin: 0 !important;
    padding: 0 !important;
    background: none !important;
    color: #121b16 !important;
    font-size: clamp(1.9rem, 3.4vw, 2.6rem) !important;
    font-weight: 800 !important;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.offers__heading span {
    background: linear-gradient(100deg, #16852d 10%, #45c72f 55%, #8fe83c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
}

.offers__count {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: #121b16;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.offers__hint {
    margin: 10px 0 0;
    color: #5f6a61;
    font-size: 0.95rem;
}

.offers__tools {
    display: grid;
    gap: 14px;
    margin: 0 0 24px;
}

.offers__search {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 16px;
    border-radius: 14px;
    background: #fff;
    border: 1.6px solid rgba(22, 133, 45, 0.16);
    box-shadow: 0 10px 24px rgba(18, 27, 22, 0.05);
}

.offers__search:focus-within {
    border-color: #16852d;
    box-shadow: 0 0 0 4px rgba(143, 232, 60, 0.22);
}

.offers__search svg {
    width: 18px;
    height: 18px;
    color: #16852d;
    flex-shrink: 0;
}

.offers__search input {
    width: 100%;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    outline: none !important;
    height: 52px !important;
    padding: 0 !important;
    margin: 0 !important;
    color: #121b16 !important;
    font-size: 0.95rem !important;
}

.offers__cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.offers__cat {
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(22, 133, 45, 0.16);
    background: #fff;
    color: #16852d;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
}

.offers__cat.is-active {
    background: #16852d;
    border-color: #16852d;
    color: #fff;
}

.offers__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.offer-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(22, 133, 45, 0.12);
    box-shadow: 0 16px 36px rgba(18, 27, 22, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-8px);
    border-color: rgba(22, 133, 45, 0.3);
    box-shadow: 0 24px 48px rgba(22, 133, 45, 0.16);
}

.offer-card.is-hidden {
    display: none !important;
}

.offer-card__media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e8f4df;
}

.offer-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.offer-card:hover .offer-card__media img {
    transform: scale(1.06);
}

.offer-card__badge,
.offer-card__live,
.offer-page__badge,
.offer-page__live,
.offer-page__tag,
.offer-card__tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.offer-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #121b16;
    color: #fff;
}

.offer-card__live {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #16852d;
    color: #fff;
}

.offer-card__live--ended,
.offer-page__live.is-ended {
    background: #5f6a61;
}

.offer-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 18px 20px 20px;
}

.offer-card__tag,
.offer-page__tag {
    width: fit-content;
    margin-bottom: 10px;
    background: rgba(22, 133, 45, 0.08);
    color: #16852d;
}

.offer-card__title {
    margin: 0 0 8px !important;
    color: #121b16 !important;
    font-size: 1.12rem !important;
    font-weight: 800 !important;
    line-height: 1.3;
    text-decoration: none !important;
}

.offer-card__title:hover,
.offer-card__title:focus-visible {
    color: #16852d !important;
}

.offer-card__lead {
    flex: 1;
    margin: 0 0 14px;
    color: #5f6a61;
    font-size: 0.92rem;
    line-height: 1.55;
}

.offer-card__deal,
.offer-page__deal {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px 12px;
    margin-bottom: 8px;
}

.offer-card__deal strong,
.offer-page__deal strong {
    color: #16852d;
    font-size: 1.05rem;
    font-weight: 800;
}

.offer-card__deal span,
.offer-page__deal span {
    color: #121b16;
    font-weight: 800;
}

.offer-card__deal s,
.offer-page__deal s {
    margin-left: 6px;
    color: #8a948c;
    font-weight: 600;
}

.offer-card__dates {
    margin: 0 0 16px;
    color: #5f6a61;
    font-size: 0.8rem;
    font-weight: 700;
}

.offer-card__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px 14px;
    margin-top: auto;
}

.offer-card__more {
    color: #121b16;
    border-bottom: 1.6px solid #8fe83c;
    padding-bottom: 1px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none !important;
}

.offer-card__more:hover,
.offer-card__more:focus-visible {
    color: #16852d;
}

.offer-card__cta,
.offer-page__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: #16852d;
    color: #fff !important;
    font-size: 0.86rem;
    font-weight: 700;
    text-decoration: none !important;
}

.offer-card__cta:hover,
.offer-card__cta:focus-visible,
.offer-page__cta:hover,
.offer-page__cta:focus-visible {
    background: #127028;
    color: #fff !important;
}

.offers__empty {
    margin: 12px 0 0;
    color: #5f6a61;
    font-size: 0.95rem;
}

.offer-page__inner {
    width: min(860px, calc(100% - 8vw));
    margin: 0 auto;
}

.offer-page__card {
    overflow: hidden;
    padding: 0 0 30px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid rgba(22, 133, 45, 0.12);
    box-shadow: 0 18px 40px rgba(18, 27, 22, 0.07);
}

.offer-page__shot {
    margin: 0 0 24px;
    aspect-ratio: 16 / 8;
    overflow: hidden;
    background: #e8f4df;
}

.offer-page__shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-page__card > *:not(.offer-page__shot) {
    padding-left: 34px;
    padding-right: 34px;
}

.offer-page__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.offer-page__badge {
    background: #121b16;
    color: #fff;
}

.offer-page__live {
    background: #16852d;
    color: #fff;
}

.offer-page__heading {
    margin: 0 0 16px !important;
    font-size: clamp(1.5rem, 3vw, 2.1rem) !important;
}

.offer-page__deal {
    margin-bottom: 22px;
    padding: 14px 16px;
    border-radius: 16px;
    background: #f4faf0;
}

.offer-page__deal em {
    width: 100%;
    font-style: normal;
    color: #5f6a61;
    font-size: 0.85rem;
    font-weight: 700;
}

.offer-page__body p {
    margin: 0 0 16px;
    color: #3d4840;
    font-size: 1.05rem;
    line-height: 1.75;
}

.offer-page__body p:last-child {
    margin-bottom: 0;
}

.offer-page__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 22px;
    margin-top: 28px;
}

.offer-page__cta {
    min-height: 48px;
    padding: 0 20px;
    font-size: 0.95rem;
    box-shadow: 0 10px 22px rgba(22, 133, 45, 0.22);
}

.offer-page__back {
    color: #16852d;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none !important;
}

.offer-page__back:hover,
.offer-page__back:focus-visible {
    color: #121b16;
}

@media (max-width: 991px) {
    .offers__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .offers__grid {
        grid-template-columns: 1fr;
    }

    .offer-page__card > *:not(.offer-page__shot) {
        padding-left: 20px;
        padding-right: 20px;
    }
}
