.cz-hero-band {
    background: linear-gradient(135deg, #f7f9fc 0%, #eef7f3 55%, #fff7ed 100%);
}

.cz-hero-panel,
.cz-cta-band {
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(33, 37, 41, .08);
    box-shadow: 0 .75rem 2rem rgba(33, 37, 41, .08);
}

.cz-offer-card,
.cz-category-card {
    transition: transform .18s ease, box-shadow .18s ease;
}

.cz-offer-card:hover,
.cz-category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 1rem 2.5rem rgba(33, 37, 41, .12) !important;
}

.cz-filter-sidebar {
    position: sticky;
    top: 5.5rem;
}

@media (max-width: 991.98px) {
    .cz-filter-sidebar {
        position: static;
    }
}

.cookie-consent {
    position: fixed;
    left: 1rem;
    bottom: 1rem;
    z-index: 1080;
    width: min(22rem, calc(100vw - 2rem));
    padding: 1rem;
    background: #fff;
    border: 1px solid rgba(33, 37, 41, .08);
    border-radius: .75rem;
    box-shadow: 0 .75rem 2rem rgba(33, 37, 41, .14);
    opacity: 0;
    transform: translateY(.5rem);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
}

.cookie-consent--visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-consent--hidden {
    display: none;
}

.cookie-consent__text {
    color: #4b5563;
    font-size: .875rem;
    line-height: 1.45;
}

@media (max-width: 575.98px) {
    .cookie-consent {
        right: 1rem;
        width: auto;
        padding: .875rem;
    }
}

.admin-ajax-status {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 1090;
    max-width: min(22rem, calc(100vw - 2rem));
    padding: .75rem 1rem;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: .75rem;
    background: #fff;
    box-shadow: 0 1rem 2rem rgba(15, 23, 42, .16);
    color: #111827;
    font-weight: 600;
    opacity: 0;
    transform: translateY(.5rem);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
}

.admin-ajax-status.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.admin-ajax-status[data-type="success"] {
    border-color: rgba(25, 135, 84, .25);
}

.admin-ajax-status[data-type="error"] {
    border-color: rgba(220, 53, 69, .25);
}

.is-admin-loading main {
    cursor: progress;
}
