/* ═══ HERO BANNER ═══ */
.page-hero {
    position: relative;
    height: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: 72px;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #050505 0%, #0D0D0D 40%, #141008 70%, #0A0A05 100%);
}

[data-theme="light"] .page-hero-bg {
    background: linear-gradient(135deg, #1A1410 0%, #2A2010 40%, #1E180A 70%, #151005 100%);
}

.page-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridShift 20s linear infinite;
}

@keyframes gridShift {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 60px 60px;
    }
}

.page-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(201, 168, 76, 0.07) 0%, transparent 70%);
}

.hero-ghost-text {
    position: absolute;
    font-family: 'Cinzel', serif;
    font-size: clamp(5rem, 14vw, 11rem);
    font-weight: 600;
    letter-spacing: 0.2em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(201, 168, 76, 0.07);
    white-space: nowrap;
    pointer-events: none;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    animation: fadeUp 0.9s ease both;
    margin-bottom: 2.5rem;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-hero-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.page-hero-eyebrow::before,
.page-hero-eyebrow::after {
    content: '';
    width: 30px;
    height: 1px;
    background: rgba(201, 168, 76, 0.5);
}

.page-hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.06em;
    margin-bottom: 0.6rem;
    line-height: 1.1;
}

.page-hero-title em {
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold-light);
    font-size: 1.1em;
}

.page-hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.05em;
    margin-bottom: 0;
}

/* Breadcrumb */
.breadcrumb {
    position: absolute;
    bottom: 1.5rem;
    left: 3rem;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb .sep {
    color: var(--gold);
}

.breadcrumb .current {
    color: var(--gold);
}

/* ═══ HERO FILTER BAR ═══ */
.hero-filter-bar {
    position: relative;
    z-index: 2;
    animation: fadeUp 1.1s 0.15s ease both;
    width: 100%;
    max-width: 900px;
    padding: 0 1rem;
}

.hero-filter-inner {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(8, 8, 8, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 168, 76, 0.3);
    overflow: hidden;
}

[data-theme="light"] .hero-filter-inner {
    background: rgba(247, 244, 237, 0.92);
    border-color: rgba(139, 105, 20, 0.35);
}

.hf-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0.9rem 1.4rem;
    border-right: 1px solid rgba(201, 168, 76, 0.15);
    cursor: pointer;
    transition: background 0.25s;
    position: relative;
}

.hf-group:last-child {
    border-right: none;
}

.hf-group:hover {
    background: rgba(201, 168, 76, 0.06);
}

.hf-label {
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.hf-select {
    background: none;
    border: none;
    outline: none;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    color: var(--text);
    cursor: pointer;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
}

.hf-select option {
    background: #0F0F0F;
    color: #F5F0E8;
}

[data-theme="light"] .hf-select option {
    background: #F7F4ED;
    color: #1A1410;
}

.hf-search-btn {
    padding: 0 2rem;
    background: var(--gold);
    border: none;
    cursor: pointer;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #000;
    white-space: nowrap;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: 100%;
    min-height: 64px;
    flex-shrink: 0;
}

.hf-search-btn:hover {
    background: var(--gold-light);
}

.hf-search-btn i.bi {
    flex-shrink: 0;
}

/* Active filter pills */
.active-filter-row {
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    padding: 0.8rem 3rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex-wrap: wrap;
    min-height: 46px;
}

.afl-label {
    font-size: 0.58rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
    flex-shrink: 0;
}

.af-pill {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--tag-bg);
    border: 1px solid var(--border);
    padding: 0.25rem 0.75rem;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    color: var(--gold);
    cursor: pointer;
    transition: all 0.2s;
}

.af-pill:hover {
    background: rgba(201, 168, 76, 0.2);
}

.af-pill .rm {
    color: var(--gold-dark);
    font-size: 0.65rem;
}

.af-clear-all {
    margin-left: auto;
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Josefin Sans', sans-serif;
    transition: color 0.3s;
}

.af-clear-all:hover {
    color: var(--gold);
}

.af-none-msg {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
}

/* ═══ RESULTS SORT BAR ═══ */
.sort-bar {
    background: var(--bg);
    border-bottom: 1px solid var(--border2);
    padding: 0.9rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 72px;
    z-index: 90;
}

.sort-bar-left {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    color: var(--text-muted);
}

.sort-bar-left strong {
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-weight: 400;
    font-size: 1rem;
}

.sort-select {
    background: var(--input-bg);
    border: 1px solid var(--border);
    color: var(--text);
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    padding: 0.5rem 0.9rem;
    outline: none;
    cursor: pointer;
    transition: border-color 0.3s;
}

.sort-select:focus {
    border-color: var(--gold);
}

/* ═══ PACKAGES MAIN ═══ */
.packages-main {
    padding: 0 3rem 4rem;
    background: var(--bg);
}

/* ═══ CATEGORY SECTION ═══ */
.cat-section {
    padding-top: 3.5rem;
}

.cat-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 1.8rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.cat-section-title-wrap {}

.cat-section-eyebrow {
    font-size: 0.55rem;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.cat-section-eyebrow::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--gold);
}

.cat-section-title {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--text);
    line-height: 1.2;
}

.cat-section-title em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--gold-light);
    font-size: 1.1em;
}

.cat-section-count {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-top: 0.3rem;
}

.cat-nav {
    display: flex;
    gap: 0.6rem;
    flex-shrink: 0;
    margin-bottom: 0.5rem;
}

.cat-arrow {
    width: 46px;
    height: 46px;
    border: 1px solid var(--border);
    background: var(--gold);
    color: var(--black);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: all 0.3s;
}

.cat-arrow:hover {
    background: var(--dark);
    color: var(--gold);
    border-color: var(--gold);
    cursor: pointer;
}

.cat-arrow:disabled {
    opacity: 0.3;
    cursor: pointer;
}


/* Slider */
.cat-slider-wrap {
    position: relative;
    overflow: hidden;
}

.cat-slider {
    display: flex;
    gap: 1.25rem;
    transition: transform 0.55s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}

/* Show 3 full cards + peek of 4th */
.cat-slider .pkg-card {
    flex: 0 0 calc(25% - 0.95rem);
    min-width: 260px;
}

/* ═══ PACKAGE CARD ═══ */
.pkg-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    overflow: hidden;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s;
    cursor: pointer;
}

.pkg-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: rgba(201, 168, 76, 0.4);
}

/* Card image */
.pkg-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.pkg-img-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    transition: transform 0.6s ease;
}

.pkg-card:hover .pkg-img-bg {
    transform: scale(1.06);
}

/* Badge */
.pkg-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    font-size: 0.52rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.25rem 0.65rem;
    background: var(--gold);
    color: #000;
}

.pkg-badge.new {
    background: #2B6E44;
    color: #fff;
}

.pkg-badge.trending {
    background: #C0392B;
    color: #fff;
}

.pkg-badge.limited {
    background: #8B1A8B;
    color: #fff;
}

/* Duration chip */

.pkg-duration {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    padding: 0.35rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Quick view */
.pkg-card .quick-view {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    padding-bottom: 1.5rem;
}

.pkg-card:hover .quick-view {
    opacity: 1;
    pointer-events: all;
    background: rgba(0, 0, 0, 0.1);
}

.quick-view-btn {
    font-size: 0.58rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    background: rgba(8, 8, 8, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: var(--gold);
    padding: 0.6rem 1.5rem;
    cursor: pointer;
    font-family: 'Josefin Sans', sans-serif;
    transform: translateY(10px);
    transition: transform 0.3s, background 0.3s;
}

.pkg-card:hover .quick-view-btn {
    transform: translateY(0);
}

.quick-view-btn:hover {
    background: var(--gold);
    color: #000;
}

/* Card body */
.pkg-body {
    padding: 1.4rem 1.5rem;
}

.pkg-meta-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.pkg-location {
    font-size: 0.58rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}

.pkg-rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.6rem;
    color: var(--text-muted);
}

.pkg-rating .stars {
    color: var(--gold);
    font-size: 0.58rem;
}

.pkg-name {
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.pkg-card:hover .pkg-name {
    color: var(--gold);
}

.pkg-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pkg-features {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-bottom: 1.1rem;
}

.pkg-feat {
    font-size: 0.55rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    background: var(--tag-bg);
    border: 1px solid var(--border);
    padding: 0.2rem 0.55rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.pkg-feat::before {
    content: '✦';
    color: var(--gold);
    font-size: 0.42rem;
}

.pkg-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.pkg-price {
    display: flex;
    flex-direction: column;
}

.pkg-price-from {
    font-size: 0.52rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pkg-price-val {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    color: var(--gold);
    line-height: 1;
}

.pkg-price-old {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.pkg-price-off {
    font-size: 0.55rem;
    color: #2B6E44;
    background: rgba(43, 110, 68, 0.15);
    padding: 0.15rem 0.45rem;
    letter-spacing: 0.1em;
}

.pkg-price-per {
    font-size: 0.58rem;
    color: var(--text-muted);
}

.btn-sm {
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.55rem 1rem;
    cursor: pointer;
    font-family: 'Josefin Sans', sans-serif;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-sm:hover {
    background: var(--gold);
    color: #000;
}

/* ─── IMAGE GRADIENTS ─── */
.gi-1 {
    background: linear-gradient(145deg, #0d2137, #1a4a6e);
}

.gi-2 {
    background: linear-gradient(145deg, #1a1a0d, #4a4010);
}

.gi-3 {
    background: linear-gradient(145deg, #2a0d1a, #6e1a3a);
}

.gi-4 {
    background: linear-gradient(145deg, #0d1a2a, #1a4030);
}

.gi-5 {
    background: linear-gradient(145deg, #2a1a0d, #6e3a1a);
}

.gi-6 {
    background: linear-gradient(145deg, #0d2a2a, #1a5050);
}

.gi-7 {
    background: linear-gradient(145deg, #1a0d2a, #3a1a6e);
}

.gi-8 {
    background: linear-gradient(145deg, #2a2a0d, #5a5a20);
}

.gi-9 {
    background: linear-gradient(145deg, #0d1a0d, #1a4a1a);
}

.gi-10 {
    background: linear-gradient(145deg, #1a100d, #4a2a1a);
}

.gi-11 {
    background: linear-gradient(145deg, #0a1628, #1e3a6e);
}

.gi-12 {
    background: linear-gradient(145deg, #280a0a, #6e1a1a);
}

/* ─── NO RESULTS ─── */
.no-results-row {
    padding: 4rem 2rem;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--text-muted);
}

/* ─── QUICK VIEW MODAL ─── */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9500;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.modal-box {
    background: var(--bg2);
    border: 1px solid var(--border);
    width: 100%;
    max-width: 900px;
    max-height: 88vh;
    overflow-y: auto;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.modal-overlay.open .modal-box {
    transform: scale(1) translateY(0);
}

.modal-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.modal-img {
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    position: relative;
}

.modal-content {
    padding: 3rem;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    z-index: 2;
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    background: var(--bg);
    cursor: pointer;
    color: var(--text-muted);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.modal-close:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.modal-eyebrow {
    font-size: 0.58rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.6rem;
}

.modal-title {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    line-height: 1.25;
    margin-bottom: 0.6rem;
}

.modal-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}

.modal-rating .stars {
    color: var(--gold);
}

.modal-rating span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.modal-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-style: italic;
    color: var(--text-soft);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.modal-includes {
    margin-bottom: 1.5rem;
}

.modal-includes h4 {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.modal-includes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.mi-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    color: var(--text-soft);
}

.mi-item::before {
    content: '✦';
    color: var(--gold);
    font-size: 0.45rem;
}

.modal-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.2rem;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.modal-price {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    color: var(--gold);
}

.modal-price small {
    font-family: 'Josefin Sans';
    font-size: 0.6rem;
    color: var(--text-muted);
    display: block;
}

.btn-book {
    background: var(--gold);
    color: #000;
    border: none;
    cursor: pointer;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 0.85rem 2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-book::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-light);
    transform: translateX(-101%);
    transition: transform 0.4s;
}

.btn-book:hover::before {
    transform: translateX(0);
}

.btn-book span {
    position: relative;
    z-index: 1;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1200px) {
    .cat-slider .pkg-card {
        flex: 0 0 calc(33.333% - 0.84rem);
    }
}

@media (max-width: 900px) {
    .hero-filter-inner {
        flex-wrap: wrap;
    }

    .hf-group {
        flex: 1 1 45%;
    }

    .hf-search-btn {
        flex: 1 1 100%;
        justify-content: center;
    }

    .cat-slider .pkg-card {
        flex: 0 0 calc(50% - 0.63rem);
    }

    .modal-inner {
        grid-template-columns: 1fr;
    }

    .modal-img {
        min-height: 220px;
    }

    .packages-main {
        padding: 0 1.5rem 3rem;
    }

    .sort-bar {
        padding: 0.8rem 1.5rem;
    }

    .active-filter-row {
        padding: 0.7rem 1.5rem;
    }
}

@media (max-width: 640px) {
    nav {
        padding: 0 1.2rem;
    }

    .nav-links {
        display: none;
    }

    .page-hero {
        height: 420px;
    }

    .cat-slider .pkg-card {
        flex: 0 0 calc(100% - 0.63rem);
    }

    .packages-main {
        padding: 0 1rem 2rem;
    }

    .hero-filter-inner {
        flex-direction: column;
    }

    .hf-group {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    }

    .sort-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 0.8rem 1rem;
    }

    .active-filter-row {
        padding: 0.7rem 1rem;
    }
}
