:root {
    --bizzr-primary: #0f3d62;
    --bizzr-accent: #f59e0b;
    --bizzr-bg: #f4f7fb;
}

body {
    background: radial-gradient(circle at top right, #e8f1fb 0%, #f4f7fb 40%, #f4f7fb 100%);
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: 0.2px;
}

.front-site-nav {
    position: relative;
    position: sticky;
    top: 0;
    z-index: 1030;
    width: 100%;
    margin: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 0;
    border-bottom: 1px solid rgba(207, 222, 240, 0.9);
    box-shadow: 0 0.6rem 1.6rem rgba(15, 61, 98, 0.12);
}

.front-site-nav::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 3px;
    background: linear-gradient(90deg, #2f7fd2 0%, #26b7c2 45%, #f59e0b 100%);
    opacity: 0.9;
}

.front-site-nav .navbar-brand {
    color: #0f3d62 !important;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.48rem;
}

.front-site-nav .container {
    position: relative;
}

.front-brand-logo {
    width: 36px;
    height: 36px;
    display: block;
}

.front-brand-text {
    background: linear-gradient(120deg, #0f3d62 0%, #1d6aa8 55%, #0f3d62 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.front-site-nav .navbar-toggler {
    border: 1px solid #d4e1ef;
    border-radius: 0.7rem;
    padding: 0.35rem 0.5rem;
}

.front-site-nav .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(31, 106, 165, 0.15);
}

.front-main-nav .nav-link {
    color: #254d74;
    border-radius: 0.65rem;
    padding: 0.45rem 0.7rem;
    font-weight: 500;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.front-main-nav .nav-link:hover {
    color: #0f3d62;
    background: #edf4fc;
}

.front-main-nav .nav-link.active {
    color: #0f3d62;
    background: #e6f0fb;
}

.front-nav-collapse {
    align-items: center;
}

.front-nav-search {
    margin: 0;
    align-items: center;
    gap: 0.4rem;
    width: 100%;
    max-width: 640px;
}

.front-nav-search-desktop {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(46vw, 640px);
    z-index: 1;
}

.front-nav-search-mobile {
    display: none !important;
}

.front-nav-search .form-control {
    border: 1px solid #d4e1ef;
    border-radius: 0.62rem;
    min-height: 2.2rem;
    font-size: 0.9rem;
    padding: 0.42rem 0.6rem;
}

.front-nav-search .form-control:focus {
    border-color: #7ea8d1;
    box-shadow: 0 0 0 0.18rem rgba(31, 106, 165, 0.14);
}

.front-nav-search .btn {
    border-radius: 0.62rem;
    min-height: 2.2rem;
    min-width: 2.45rem;
    padding-left: 0.6rem;
    padding-right: 0.6rem;
}

.auth-menu-toggle {
    min-width: 2.05rem;
    height: 2.05rem;
    border-radius: 0.55rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    justify-content: flex-start;
    color: #174b76;
    padding: 0.3rem 0.45rem;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.auth-menu-toggle.dropdown-toggle::after {
    display: none;
}

.auth-menu-toggle .auth-menu-chevron {
    font-size: 0.66rem;
    opacity: 0.72;
    margin-top: 0.05rem;
}

.auth-menu-dropdown.show .auth-menu-chevron {
    opacity: 0.95;
}

.auth-menu-toggle:hover,
.auth-menu-toggle:focus {
    background: #eef4fb;
    color: #0f3d62;
}

.front-main-nav .auth-menu-dropdown {
    margin-left: 0.15rem;
}

.front-main-nav {
    width: max-content;
    position: relative;
    z-index: 2;
}

.auth-menu-dropdown .dropdown-menu {
    border: 1px solid #dce7f3;
    border-radius: 0.7rem;
    box-shadow: 0 0.7rem 1.4rem rgba(15, 61, 98, 0.12);
}

.blog-single-hero-image {
    width: 100%;
    max-height: clamp(220px, 34vw, 420px);
    object-fit: cover;
    object-position: center;
}

@media (max-width: 991px) {
    .front-site-nav .navbar-collapse.show {
        margin-top: 0.7rem;
        border-top: 1px solid #e4ecf6;
        padding-top: 0.6rem;
    }

    .front-site-nav {
        top: 0;
    }

    .front-site-nav::after {
        display: none;
    }

    .front-nav-search {
        margin: 0.2rem 0 0.75rem !important;
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
        max-width: none;
    }

    .front-nav-search-desktop {
        display: none !important;
    }

    .front-nav-search-mobile {
        display: flex !important;
    }

    .front-main-nav {
        width: 100%;
    }

    .front-main-nav .nav-item {
        margin-bottom: 0.18rem;
    }

    .front-main-nav .nav-link {
        border-radius: 0.6rem;
        padding: 0.58rem 0.72rem;
    }

    .front-mobile-auth .nav-link {
        background: #e8f2fe;
        border: 1px solid #cddff3;
        color: #0f3d62;
        font-weight: 600;
    }

    .listing-gallery-preview {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .listing-gallery-preview {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .front-nav-search-desktop {
        display: flex !important;
    }

    .front-nav-search-mobile {
        display: none !important;
    }
}

.internal-nav-search-wrap {
    box-shadow: 0 2px 10px rgba(15, 61, 98, 0.04);
}

.internal-nav-search-form .form-control {
    border-color: #d8e2ef;
}

.internal-nav-search-form .form-control:focus {
    border-color: #88a8c9;
    box-shadow: 0 0 0 0.2rem rgba(31, 106, 165, 0.12);
}

.page-shell {
    min-height: calc(100vh - 72px);
}

.soft-card {
    border: 0;
    border-radius: 1rem;
    box-shadow: 0 0.4rem 1.2rem rgba(15, 61, 98, 0.08);
}

.listing-form-shell {
    border: 1px solid #dbe7f4;
}

.listing-form-section {
    border: 1px solid #dde9f6;
    border-radius: 0.9rem;
    padding: 1rem;
    background: linear-gradient(180deg, #fbfdff 0%, #f7fbff 100%);
}

.listing-form-section .h6 {
    color: #123f67;
    font-weight: 700;
}

.listing-form-section .form-floating > .form-control,
.listing-form-section .form-floating > .form-select {
    border-color: #d6e2ef;
}

.listing-form-section .form-floating > .form-control:focus,
.listing-form-section .form-floating > .form-select:focus {
    border-color: #7ca4cf;
    box-shadow: 0 0 0 0.18rem rgba(31, 106, 165, 0.14);
}

.listing-form-section .form-floating > .form-control.is-invalid,
.listing-form-section .form-floating > .form-select.is-invalid,
.needs-validation.was-validated .listing-form-section .form-floating > .form-control:invalid,
.needs-validation.was-validated .listing-form-section .form-floating > .form-select:invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.14rem rgba(220, 53, 69, 0.12);
}

.listing-form-section .form-floating > .form-control.is-valid,
.listing-form-section .form-floating > .form-select.is-valid,
.needs-validation.was-validated .listing-form-section .form-floating > .form-control:valid,
.needs-validation.was-validated .listing-form-section .form-floating > .form-select:valid {
    border-color: #198754;
    box-shadow: 0 0 0 0.14rem rgba(25, 135, 84, 0.1);
}

.listing-form-section .form-floating > .form-control.is-invalid ~ label,
.listing-form-section .form-floating > .form-select.is-invalid ~ label,
.needs-validation.was-validated .form-floating > .form-control:invalid ~ label,
.needs-validation.was-validated .form-floating > .form-select:invalid ~ label {
    color: #b42333;
}

.listing-form-section .form-floating > .form-control.is-valid ~ label,
.listing-form-section .form-floating > .form-select.is-valid ~ label,
.needs-validation.was-validated .form-floating > .form-control:valid ~ label,
.needs-validation.was-validated .form-floating > .form-select:valid ~ label {
    color: #157347;
}

.listing-floating-textarea {
    min-height: 130px !important;
}

.listing-floating-textarea-sm {
    min-height: 96px !important;
}

.listing-wysiwyg-toolbar {
    display: flex;
    gap: 0.4rem;
}

.listing-wysiwyg-editor {
    min-height: 160px;
    border: 1px solid #d6e2ef;
    border-radius: 0.74rem;
    background: #fff;
    padding: 0.75rem 0.85rem;
    line-height: 1.5;
}

.listing-wysiwyg-editor:focus {
    outline: 0;
    border-color: #7ca4cf;
    box-shadow: 0 0 0 0.18rem rgba(31, 106, 165, 0.14);
}

.listing-wysiwyg-editor.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.14rem rgba(220, 53, 69, 0.12);
}

.listing-form-section .input-group .form-floating > .form-control {
    border-left: 0;
}

.listing-form-section .input-group .input-group-text {
    border-color: #d6e2ef;
    background: #f4f8fd;
    color: #335d84;
    font-weight: 600;
}

.listing-form-section .select2-container--bootstrap-5 .select2-selection {
    border-color: #d6e2ef;
    border-radius: 0.74rem;
    min-height: 42px;
}

.listing-form-section .select2-container--bootstrap-5.select2-container--focus .select2-selection {
    border-color: #7ca4cf;
    box-shadow: 0 0 0 0.18rem rgba(31, 106, 165, 0.14);
}

.listing-form-section .select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
    line-height: 1.6;
    color: #223a52;
}

.listing-form-section .select2-container--bootstrap-5 .select2-selection.is-invalid,
.needs-validation.was-validated .listing-form-section select:invalid + .select2-container .select2-selection {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.14rem rgba(220, 53, 69, 0.12);
}

.listing-form-section .select2-container--bootstrap-5 .select2-selection.is-valid {
    border-color: #198754 !important;
}

.listing-form-section .select2-floating {
    position: relative;
}

.listing-form-section .select2-floating > label {
    z-index: 2;
    pointer-events: none;
    color: #5c7691;
    transition: transform 0.15s ease, opacity 0.15s ease, color 0.15s ease;
}

.listing-form-section .select2-floating .select2-container--bootstrap-5 .select2-selection--single {
    min-height: calc(3.5rem + 2px);
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}

.listing-form-section .select2-floating .select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
    padding-left: 0.15rem;
    padding-right: 1.8rem;
    line-height: 1.3;
}

.listing-form-section .select2-floating .select2-container--bootstrap-5 .select2-selection__placeholder {
    color: #839ab2;
}

.listing-form-section .select2-floating.has-value > label,
.listing-form-section .select2-floating.is-open > label {
    opacity: 0.78;
    color: #3f668b;
    transform: scale(0.85) translateY(-0.62rem) translateX(0.12rem);
}

.listing-logo-dropzone {
    width: 100%;
    border: 1px dashed #99b6d6;
    border-radius: 0.85rem;
    min-height: 172px;
    padding: 1rem 0.9rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.35rem;
    background: linear-gradient(180deg, #fbfdff 0%, #f1f7ff 100%);
    color: #234f78;
    text-align: center;
    transition: border-color 0.16s ease, background-color 0.16s ease, box-shadow 0.16s ease;
}

.listing-media-box {
    border: 1px solid #dce8f5;
    border-radius: 0.9rem;
    background: #fbfdff;
    padding: 0.9rem;
}

.listing-logo-dropzone i {
    font-size: 1.35rem;
    color: #2b73ad;
}

.listing-logo-dropzone span {
    font-weight: 600;
}

.listing-logo-dropzone small {
    color: #5c7b9d;
}

.listing-logo-dropzone:hover,
.listing-logo-dropzone.is-dragover {
    border-color: #4f8fc8;
    background: #eaf4ff;
    box-shadow: 0 0 0 0.2rem rgba(41, 114, 173, 0.14);
}

.listing-logo-dropzone:disabled,
.listing-logo-dropzone[disabled] {
    cursor: not-allowed;
    color: #7e8ea0;
    border-color: #cfd9e4;
    background: linear-gradient(180deg, #f5f7fa 0%, #edf1f6 100%);
    filter: grayscale(1);
    opacity: 0.9;
    box-shadow: none;
}

.listing-logo-dropzone:disabled i,
.listing-logo-dropzone[disabled] i,
.listing-logo-dropzone:disabled small,
.listing-logo-dropzone[disabled] small {
    color: #8ea0b4;
}

.listing-logo-dropzone:disabled:hover,
.listing-logo-dropzone[disabled]:hover,
.listing-logo-dropzone:disabled.is-dragover,
.listing-logo-dropzone[disabled].is-dragover {
    border-color: #cfd9e4;
    background: linear-gradient(180deg, #f5f7fa 0%, #edf1f6 100%);
    box-shadow: none;
}

.listing-gallery-dropzone {
    min-height: 172px;
}

.listing-hero-dropzone {
    min-height: 154px;
}

.listing-location-map {
    width: 100%;
    height: 320px;
    border: 1px solid #d8e6f5;
    border-radius: 0.8rem;
    overflow: hidden;
    background: #f5f9ff;
}

.logo-crop-stage {
    width: 100%;
    max-height: min(70vh, 620px);
    min-height: 320px;
    border-radius: 0.7rem;
    overflow: hidden;
    border: 1px solid #d8e6f5;
    background: #f7fbff;
}

.logo-crop-stage img {
    display: block;
    max-width: 100%;
}

.filepond--root {
    margin-bottom: 0;
}

.filepond--panel-root {
    border-radius: 0.85rem;
    border: 1px dashed #99b6d6;
    background: linear-gradient(180deg, #fbfdff 0%, #f1f7ff 100%);
}

.listing-similar-card .card-body {
    padding: 1rem;
}

.listing-similar-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    height: 2rem;
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 700;
    color: #1b4f7e;
    background: #e8f2ff;
    border: 1px solid #cfe1f7;
}

.listing-similar-list {
    display: grid;
    gap: 0.65rem;
}

.listing-similar-link {
    display: grid;
    grid-template-columns: 2.25rem minmax(0, 1fr) auto;
    gap: 0.7rem;
    align-items: center;
    border: 1px solid #dbe8f6;
    border-radius: 0.85rem;
    padding: 0.72rem;
    text-decoration: none;
    color: inherit;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.listing-similar-link:hover {
    border-color: #b9d3ef;
    box-shadow: 0 0.45rem 1.2rem rgba(15, 61, 98, 0.12);
    transform: translateY(-1px);
}

.listing-similar-logo {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.7rem;
    border: 1px solid #cfe0f3;
    background: #f0f6ff;
    color: #1a5b90;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.listing-similar-copy {
    min-width: 0;
    display: grid;
    gap: 0.14rem;
}

.listing-similar-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.42rem;
    align-items: center;
    min-width: 0;
}

.listing-similar-name {
    display: block;
    min-width: 0;
    font-weight: 700;
    color: #103f68;
    line-height: 1.25;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: clip;
}

.listing-similar-premium {
    flex: 0 0 auto;
    max-width: 8.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-radius: 999px;
    border: 1px solid #f2cb85;
    background: #fff7e9;
    color: #8b5b00;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.18rem 0.42rem;
    line-height: 1.2;
}

.listing-similar-category {
    display: block;
    font-size: 0.8rem;
    color: #355c7f;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.listing-similar-location {
    display: block;
    font-size: 0.76rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.listing-similar-cta {
    color: #5d7fa2;
    font-size: 0.78rem;
}

@media (max-width: 575px) {
    .listing-similar-link {
        grid-template-columns: 2rem minmax(0, 1fr);
        gap: 0.58rem;
    }

    .listing-similar-logo {
        width: 2rem;
        height: 2rem;
        border-radius: 0.6rem;
    }

    .listing-similar-head {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .listing-similar-premium {
        font-size: 0.65rem;
    }

    .listing-similar-cta {
        display: none;
    }
}

.filepond--drop-label {
    color: #29557f;
}

.filepond--drop-label label {
    color: #29557f;
    font-weight: 600;
}

.filepond--label-action {
    color: #1d6aa8;
}

.filepond--item-panel {
    border-radius: 0.72rem;
}

.listing-form-section .filepond--root .filepond--list-scroller {
    margin: 0 0.55rem 0.55rem;
}

.filepond--credits {
    display: none !important;
}

.listing-media-preview {
    width: 140px;
    height: 140px;
    border-radius: 0.8rem;
    overflow: hidden;
    border: 1px solid #dce8f5;
    background: #fff;
}

.listing-media-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.listing-hero-preview {
    width: 100%;
    border-radius: 0.8rem;
    overflow: hidden;
    border: 1px solid #dce8f5;
    background: #fff;
}

.listing-hero-preview img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.listing-gallery-preview {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.55rem;
}

.listing-gallery-item {
    display: block;
    border: 1px solid #dce8f5;
    border-radius: 0.7rem;
    overflow: hidden;
    background: #fff;
}

.listing-gallery-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.register-shell {
    padding-top: 0.5rem;
}

.register-card {
    overflow: hidden;
}

.register-card .form-control,
.register-card .form-select {
    border-color: #d6e2ef;
}

.register-card .form-control:focus,
.register-card .form-select:focus {
    border-color: #7ca4cf;
    box-shadow: 0 0 0 0.2rem rgba(31, 106, 165, 0.14);
}

.register-card-accent {
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.2), transparent 42%),
        linear-gradient(135deg, #0f3d62 0%, #1c639a 62%, #2a86cf 100%);
    color: #fff;
}

.register-card-accent .text-muted {
    color: rgba(239, 247, 255, 0.82) !important;
}

.register-kicker {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    padding: 0.24rem 0.68rem;
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.register-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.72rem;
}

.register-benefits li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.95rem;
}

.register-benefits i {
    color: #f8d273;
}

.register-journey-grid {
    display: grid;
    gap: 0.65rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.register-journey-card {
    border: 1px solid #d8e3ef;
    border-radius: 0.75rem;
    background: #f8fbff;
    padding: 0.72rem 0.78rem;
    color: #123f67;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 0.22rem;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.register-journey-card strong {
    font-size: 0.9rem;
}

.register-journey-card span {
    font-size: 0.78rem;
    color: #4b698a;
}

.register-journey-card:hover {
    color: #123f67;
    border-color: #9fb8d4;
    box-shadow: 0 0.4rem 1rem rgba(15, 61, 98, 0.08);
    transform: translateY(-1px);
}

.auth-confirm-shell {
    padding-top: 1rem;
}

.auth-confirm-card {
    border: 1px solid #d8e3ef;
}

.auth-confirm-steps {
    margin: 0;
    padding-left: 1.15rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    color: #274d72;
}

.auth-confirm-steps li {
    padding-left: 0.18rem;
}

.auth-confirm-actions .btn {
    border-radius: 0.72rem;
}

.auth-code-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.5rem;
}

.auth-code-digit {
    min-height: 3rem;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.02rem;
    border-radius: 0.7rem;
}

.auth-code-digit:focus {
    z-index: 1;
}

@media (max-width: 575px) {
    .auth-code-grid {
        gap: 0.35rem;
    }

    .auth-code-digit {
        min-height: 2.7rem;
        font-size: 1.15rem;
    }
}

@media (max-width: 767px) {
    .register-journey-grid {
        grid-template-columns: 1fr;
    }
}

.hero-banner {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    background: linear-gradient(135deg, #0f3d62 0%, #1f6aa5 55%, #2b85cd 100%);
    background-size: 180% 180%;
    animation: heroGradientShift 16s ease-in-out infinite alternate;
    color: #fff;
}

.hero-banner > * {
    position: relative;
    z-index: 1;
}

.hero-banner::after {
    content: "";
    position: absolute;
    top: -20%;
    bottom: -20%;
    left: -42%;
    width: 32%;
    pointer-events: none;
    z-index: 0;
    transform: rotate(13deg);
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.18) 48%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: heroSheen 7.5s ease-in-out infinite;
}

.reviewer-hub-hero {
    border: 1px solid #d9e5f3;
    background:
        radial-gradient(circle at 88% 10%, rgba(33, 150, 243, 0.16), transparent 34%),
        radial-gradient(circle at 12% 80%, rgba(245, 158, 11, 0.15), transparent 28%),
        linear-gradient(180deg, #fdfefe 0%, #f4f8fd 100%);
}

.reviewer-hub-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.72rem;
    color: #1c5b8f;
    font-weight: 700;
}

.reviewer-hub-highlight {
    border: 1px dashed #b6cce4;
    border-radius: 0.9rem;
    background: #fff;
    padding: 1rem;
}

.reviewer-hub-highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.7rem;
    border-radius: 0.8rem;
    border: 1px solid #d7e5f3;
    background: #f7fbff;
    color: #16486f;
}

.reviewer-hub-kpi {
    border: 1px solid #dbe7f3;
}

.reviewer-hub-kpi-label {
    color: #56708d;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.reviewer-hub-kpi-value {
    color: #113f65;
    font-size: 1.55rem;
    font-weight: 700;
}

.reviewer-hub-card {
    border: 1px solid #dbe7f3;
}

.reviewer-badge-grid {
    display: grid;
    gap: 0.6rem;
}

.reviewer-badge-card {
    border-radius: 0.8rem;
    border: 1px solid #d8e4f2;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.6rem 0.75rem;
    background: #fff;
}

.reviewer-badge-card.is-locked {
    filter: grayscale(1);
    opacity: 0.62;
}

.reviewer-badge-card.is-earned {
    border-color: #b7d1ea;
    background: linear-gradient(180deg, #fcfeff 0%, #f1f7fd 100%);
}

.reviewer-badge-card.is-earned.is-gold {
    border-color: #efd08f;
    background: linear-gradient(180deg, #fffdf6 0%, #fff7df 100%);
}

.reviewer-badge-card.is-earned.is-platinum {
    border-color: #cfdbed;
    background: linear-gradient(180deg, #fdfefe 0%, #edf3fa 100%);
}

.reviewer-badge-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.55rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eaf2fb;
    color: #174f7d;
}

.reviewer-badge-copy {
    display: flex;
    flex-direction: column;
}

.reviewer-badge-copy strong {
    font-size: 0.9rem;
    color: #153e63;
}

.reviewer-badge-copy small {
    font-size: 0.74rem;
    color: #5a748f;
}

.reviewer-goal-progress {
    height: 0.72rem;
}

.reviewer-goal-progress .progress-bar {
    background: linear-gradient(90deg, #1f75be 0%, #1f9fd8 55%, #f59e0b 100%);
}

.reviewer-hub-table thead th {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #53708f;
}

.reviewer-quest-card {
    border: 1px solid #d9e6f3;
    border-radius: 0.9rem;
    background:
        radial-gradient(circle at 90% 16%, rgba(45, 131, 203, 0.1), transparent 36%),
        linear-gradient(180deg, #f9fcff 0%, #f4f8fd 100%);
    padding: 0.9rem;
}

.reviewer-quest-card.is-complete {
    border-color: #9ad4b9;
    background:
        radial-gradient(circle at 92% 18%, rgba(25, 163, 111, 0.16), transparent 40%),
        linear-gradient(180deg, #f7fffb 0%, #effaf4 100%);
}

.reviewer-hub-kpi-value small {
    font-size: 0.85rem;
    color: #5e7791;
    margin-left: 0.1rem;
}


.hero-kicker {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.82);
}

.hero-search-panel {
    background: #ffffff;
    color: #212529;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
}

.benefit-icon {
    width: 2.1rem;
    height: 2.1rem;
    flex: 0 0 auto;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eaf2fb;
    color: #0f3d62;
    margin-top: 0.1rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.hero-stat-tile {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 0.75rem;
    padding: 0.75rem;
}

.hero-stat-tile strong {
    display: block;
    font-size: 1.2rem;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.hero-stat-tile span {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.86);
}

@keyframes heroGradientShift {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 55%;
    }
}

@keyframes heroSheen {
    0% {
        transform: translateX(0) rotate(13deg);
        opacity: 0;
    }
    16% {
        opacity: 0.42;
    }
    45% {
        opacity: 0.2;
    }
    100% {
        transform: translateX(430%) rotate(13deg);
        opacity: 0;
    }
}



.hero-popular-wrap {
    margin-top: 1rem;
}

.hero-popular-label {
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.84);
}

.account-dashboard-hero {
    border: 1px solid #d8e7f6;
    background:
        radial-gradient(circle at 82% 12%, rgba(51, 130, 203, 0.14), transparent 42%),
        linear-gradient(180deg, #fbfdff 0%, #f4f9ff 100%);
}

.account-dashboard-kicker {
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #3d6488;
    font-weight: 700;
}

.account-usage-card {
    border: 1px solid #dce8f5;
    border-radius: 0.85rem;
    background: #fff;
    padding: 0.9rem;
}

.account-usage-progress {
    height: 0.62rem;
    border-radius: 999px;
    background: #eaf2fb;
}

.account-usage-progress .progress-bar {
    background: linear-gradient(90deg, #2f7fd2 0%, #27a9c6 100%);
}

.account-metric-card {
    border: 1px solid #dbe7f4;
}

.account-metric-label {
    color: #486785;
    font-size: 0.88rem;
}

.account-metric-value {
    font-size: 1.75rem;
    line-height: 1;
    font-weight: 800;
    color: #133f67;
}

.account-quick-link {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    text-decoration: none;
    border: 1px solid #d8e6f4;
    border-radius: 0.8rem;
    background: #f8fbff;
    padding: 0.85rem 0.9rem;
    color: #173f66;
    transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.account-quick-link strong {
    font-size: 0.95rem;
}

.account-quick-link span {
    font-size: 0.82rem;
    color: #5a7897;
}

.account-quick-link:hover {
    color: #173f66;
    border-color: #9fbbd9;
    box-shadow: 0 0.45rem 1rem rgba(15, 61, 98, 0.08);
    transform: translateY(-1px);
}

.account-dashboard-table-wrap .table > :not(caption) > * > * {
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
}

.account-hub-hero {
    border: 1px solid #d6e5f4;
    background:
        radial-gradient(circle at 16% 0%, rgba(26, 117, 191, 0.16), transparent 34%),
        radial-gradient(circle at 100% 0%, rgba(245, 158, 11, 0.14), transparent 30%),
        linear-gradient(180deg, #fbfdff 0%, #f3f8ff 100%);
}

.account-hub-hero-kicker {
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #365b7d;
    font-weight: 700;
}

.account-hub-actions .btn {
    border-radius: 0.7rem;
}

.account-hub-type-pill {
    display: inline-flex;
    align-items: center;
    border: 1px solid #c8daec;
    border-radius: 999px;
    background: #edf4fc;
    color: #1b557f;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 0.3rem 0.64rem;
}

.account-hub-summary {
    border: 1px solid #d8e6f5;
    border-radius: 0.95rem;
    background: #fff;
    padding: 1rem;
}

.account-hub-stat {
    font-weight: 700;
    color: #113f67;
}

.account-hub-meter {
    height: 0.64rem;
    border-radius: 999px;
    background: #eaf2fc;
}

.account-hub-meter .progress-bar {
    background: linear-gradient(90deg, #2f7fd2 0%, #2db4ba 100%);
}

.account-hub-summary-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.87rem;
    color: #4d6b89;
}

.account-hub-summary-list li + li {
    margin-top: 0.48rem;
}

.account-hub-summary-list i {
    color: #1f6ca7;
    font-size: 0.82rem;
}

.account-hub-kpi-card {
    border: 1px solid #dbe7f4;
}

.account-hub-kpi-label {
    color: #4a6886;
    font-size: 0.84rem;
    margin-bottom: 0;
}

.account-hub-kpi-value {
    font-size: 1.7rem;
    line-height: 1;
    font-weight: 800;
    color: #133f67;
}

.account-hub-kpi-icon {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 0.72rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eaf2fc;
    border: 1px solid #d4e2f0;
    color: #1f6ca7;
}

.account-hub-quick-card {
    border: 1px solid #dce8f4;
}

.account-hub-quick-link {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid #dce8f4;
    border-radius: 0.84rem;
    background: #f8fbff;
    text-decoration: none;
    color: #173f66;
    padding: 0.72rem 0.78rem;
    transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.account-hub-quick-link:hover {
    color: #173f66;
    border-color: #a6c0da;
    box-shadow: 0 0.45rem 1rem rgba(15, 61, 98, 0.08);
    transform: translateY(-1px);
}

.account-hub-quick-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.62rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e9f2fc;
    color: #1d699f;
}

.account-hub-quick-copy {
    display: grid;
    gap: 0.1rem;
}

.account-hub-quick-copy strong {
    font-size: 0.92rem;
    line-height: 1.2;
}

.account-hub-quick-copy small {
    color: #5a7897;
}

.account-hub-quick-link > i:last-child {
    color: #7a95b0;
    font-size: 0.8rem;
}

.account-hub-table-card {
    border: 1px solid #dce8f4;
}

.account-hub-table-shell {
    padding: 0.85rem 0.95rem 1rem;
}

.account-hub-table-wrap .table > :not(caption) > * > * {
    padding-top: 0.88rem;
    padding-bottom: 0.88rem;
}

.account-hub-table {
    --bs-table-bg: transparent;
}

.account-hub-table thead th {
    background: #f3f8ff;
    color: #476685;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    border-bottom: 1px solid #dbe7f4;
    padding-top: 0.82rem;
    padding-bottom: 0.82rem;
}

.account-hub-table tbody tr {
    transition: background-color 0.14s ease;
}

.account-hub-table tbody tr:hover {
    background: #f8fbff;
}

.account-hub-id-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.24rem 0.52rem;
    border-radius: 999px;
    background: #edf4fc;
    color: #285983;
    font-size: 0.78rem;
    font-weight: 700;
}

.account-hub-company-cell {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.account-hub-company-mark {
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 0.55rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e8f2fd;
    color: #1f6ca7;
}

.account-hub-company-name {
    color: #143f67;
    font-weight: 700;
    text-decoration: none;
}

.account-hub-company-name:hover {
    text-decoration: underline;
}

.account-hub-company-live-link {
    color: #5a7998;
    font-size: 0.84rem;
    text-decoration: none;
}

.account-hub-company-live-link:hover {
    color: #1a4f7d;
}

.account-hub-town-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.22rem 0.54rem;
    border-radius: 999px;
    border: 1px solid #d6e4f2;
    background: #fff;
    color: #3f6285;
    font-size: 0.78rem;
    font-weight: 600;
}

.account-hub-updated {
    color: #5b7896;
}

.account-hub-edit-btn {
    border-radius: 0.62rem;
    padding-left: 0.72rem;
    padding-right: 0.72rem;
}

.account-hub-town-text {
    color: #3f6285;
    font-weight: 600;
}

.account-hub-table--recent th:nth-child(1),
.account-hub-table--recent td:nth-child(1),
.account-hub-table--recent th:nth-child(4),
.account-hub-table--recent td:nth-child(4),
.account-hub-table--recent th:nth-child(5),
.account-hub-table--recent td:nth-child(5),
.account-hub-table--recent th:nth-child(6),
.account-hub-table--recent td:nth-child(6) {
    white-space: nowrap;
    width: 1%;
}

.account-hub-empty {
    max-width: 22rem;
    margin: 0 auto;
}

.listings-manager-hero {
    border: 1px solid #d7e6f4;
    background:
        radial-gradient(circle at 88% 0%, rgba(43, 133, 205, 0.15), transparent 34%),
        radial-gradient(circle at 14% 0%, rgba(245, 158, 11, 0.1), transparent 28%),
        linear-gradient(180deg, #fbfdff 0%, #f3f8ff 100%);
}

.listings-manager-kicker {
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #3a6083;
    font-weight: 700;
}

.listings-manager-actions {
    display: grid;
    gap: 0.55rem;
}

.listings-manager-actions .btn {
    border-radius: 0.7rem;
}

.listings-manager-pill {
    display: inline-flex;
    align-items: center;
    border: 1px solid #cddff1;
    border-radius: 999px;
    padding: 0.26rem 0.64rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: #245883;
    background: #edf4fc;
}

.listings-manager-pill.is-paid {
    border-color: #b9dfcc;
    color: #1f6e4f;
    background: #eaf8f1;
}

.listings-manager-pill.is-free {
    border-color: #d6dfe9;
    color: #4d657d;
    background: #f3f6fa;
}

.listings-manager-shell {
    border: 1px solid #dae8f4;
}

.listings-manager-shell .form-control,
.listings-manager-shell .form-select {
    border-color: #d5e2ef;
}

.listings-manager-shell .form-control:focus,
.listings-manager-shell .form-select:focus {
    border-color: #7ea8d1;
    box-shadow: 0 0 0 0.16rem rgba(31, 106, 165, 0.13);
}

.listings-manager-table-wrap {
    padding: 0.7rem 0.85rem 0.95rem;
}

.listings-manager-table {
    --bs-table-bg: transparent;
}

.listings-manager-table thead th {
    background: #f3f8ff;
    color: #4a6784;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    border-bottom: 1px solid #dbe8f4;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
}

.listings-manager-table > :not(caption) > * > * {
    padding-top: 0.86rem;
    padding-bottom: 0.86rem;
}

.listings-manager-table tbody tr {
    transition: background-color 0.14s ease;
}

.listings-manager-table tbody tr:hover {
    background: #f8fbff;
}

.listings-manager-tag {
    display: inline-flex;
    align-items: center;
    border: 1px solid #d4e3f1;
    border-radius: 999px;
    background: #f5f9fd;
    color: #3f6183;
    font-size: 0.77rem;
    font-weight: 600;
    padding: 0.22rem 0.54rem;
}

.listings-manager-mobile-card {
    border: 1px solid #d9e6f4;
    border-radius: 0.92rem;
    background: #fff;
    padding: 0.85rem;
    box-shadow: 0 0.4rem 1rem rgba(15, 61, 98, 0.06);
}

.listing-business-dashboard-hero {
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 14%, rgba(49, 131, 201, 0.16) 0%, rgba(49, 131, 201, 0.02) 40%, transparent 62%),
        radial-gradient(circle at 86% 20%, rgba(15, 155, 107, 0.12) 0%, rgba(15, 155, 107, 0.02) 38%, transparent 62%),
        linear-gradient(135deg, #ffffff 0%, #f5faff 100%);
    border: 1px solid #d6e7f7;
}

.listing-dashboard-kicker {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.76rem;
    font-weight: 700;
    color: #4f6f90;
}

.listing-dashboard-health-list li:first-child {
    border-top: 0 !important;
}

.listing-dashboard-mini-stat {
    border: 1px solid #dbe7f4;
    border-radius: 0.75rem;
    background: #f9fcff;
    padding: 0.65rem 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
}

.listing-dashboard-mini-stat span {
    color: #5d7692;
    font-size: 0.86rem;
}

.listing-dashboard-mini-stat strong {
    color: #163a60;
    font-size: 1.1rem;
    line-height: 1;
}

.listing-dashboard-chart-card {
    border: 1px solid #dbe9f8;
}

.listing-dashboard-chart-wrap {
    position: relative;
    min-height: 280px;
}

.listing-dashboard-chart-wrap.is-donut {
    min-height: 260px;
}

/* ── Badge style picker cards (dashboard) ──────────────────────── */
.badge-style-card {
    display: grid;
    grid-template-columns: 160px 1fr 1fr;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1rem;
    border: 1px solid #dce8f4;
    border-radius: 0.75rem;
    background: #f8fbff;
}

.badge-style-meta {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.badge-style-meta strong {
    font-size: 0.78rem;
    color: #1a3a55;
}

.badge-style-preview {
    display: flex;
    align-items: center;
}

.badge-style-code {
    min-width: 0;
}

@media (max-width: 767px) {
    .badge-style-card {
        grid-template-columns: 1fr;
    }
}

/* ── Dashboard badges panel ────────────────────────────────────── */
.dashboard-badge-card {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border-radius: 0.75rem;
    padding: 0.65rem 0.75rem;
    border: 1px solid #dce8f4;
    background: #f8fbff;
    transition: box-shadow 0.15s ease;
}

.dashboard-badge-card.is-locked {
    opacity: 0.55;
    background: #f4f6f9;
    border-color: #e2e8ef;
}

.dashboard-badge-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    width: 26px;
    text-align: center;
}

.dashboard-badge-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.dashboard-badge-info strong {
    font-size: 0.78rem;
    color: #1a3a55;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dashboard-badge-info span {
    font-size: 0.68rem;
    color: #5c7896;
    line-height: 1.3;
}

.dashboard-badge-status {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
}

.dashboard-badge-status.earned {
    background: #d4edda;
    color: #1a6832;
}

.dashboard-badge-status.locked {
    background: #e9ecef;
    color: #9eaab5;
}

/* ── Visitor heat calendar ─────────────────────────────────────── */
.heat-calendar-wrap {
    overflow-x: auto;
    padding-bottom: 0.25rem;
}

.heat-calendar-months {
    display: grid;
    grid-template-columns: repeat(var(--hc-cols), 12px);
    gap: 2px;
    margin-left: 28px;
    margin-bottom: 3px;
}

.hc-month-label {
    font-size: 0.6rem;
    color: #7a9ab8;
    white-space: nowrap;
    overflow: visible;
    min-width: 0;
}

.heat-calendar-grid-wrap {
    display: flex;
    gap: 4px;
}

.heat-calendar-days {
    display: grid;
    grid-template-rows: repeat(7, 12px);
    gap: 2px;
    padding-top: 0;
}

.heat-calendar-days span {
    font-size: 0.58rem;
    color: #7a9ab8;
    display: flex;
    align-items: center;
    height: 12px;
    white-space: nowrap;
    width: 24px;
    justify-content: flex-end;
    padding-right: 2px;
}

.heat-calendar-grid {
    display: grid;
    grid-template-rows: repeat(7, 12px);
    grid-auto-columns: 12px;
    grid-auto-flow: column;
    gap: 2px;
}

.hc-cell {
    width: 12px;
    height: 12px;
    border-radius: 2px;
    cursor: default;
    display: block;
}

.hc-blank { background: transparent; cursor: default; }
.hc-l0 { background: #eaf1f9; }
.hc-l1 { background: #b6d3ee; }
.hc-l2 { background: #6aa8d9; }
.hc-l3 { background: #2a7ec0; }
.hc-l4 { background: #0d4f87; }

.hc-legend {
    display: flex;
    align-items: center;
    gap: 3px;
}

.hc-legend-label {
    font-size: 0.65rem;
    color: #7a9ab8;
}

.hc-legend .hc-cell {
    cursor: default;
}

.listing-dashboard-reply-item {
    border: 1px solid #dce8f5;
    border-radius: 0.75rem;
    background: #f8fcff;
    padding: 0.65rem 0.72rem;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.listing-dashboard-reply-item:hover {
    border-color: #95bbdf;
    box-shadow: 0 8px 18px rgba(30, 89, 143, 0.1);
    transform: translateY(-1px);
}

.listing-dashboard-empty-state {
    border: 1px dashed #c8daed;
    border-radius: 0.8rem;
    padding: 1rem;
    text-align: center;
    color: #5c7896;
    background: #f8fbff;
}

.listing-dashboard-contact-table-wrap {
    border: 1px solid #d8e6f4;
    border-radius: 0.85rem;
    overflow: hidden;
}

.listing-dashboard-contact-table thead th {
    background: #f4f8fd;
    color: #3d5f84;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-bottom: 1px solid #d8e6f4;
    white-space: nowrap;
}

.listing-dashboard-contact-table > :not(caption) > * > * {
    padding: 0.75rem 0.9rem;
}

.listing-dashboard-contact-table tbody tr + tr td {
    border-top: 1px solid #e8f0f8;
}

.listing-dashboard-contact-table tbody td {
    color: #1d3650;
    vertical-align: top;
}

.listings-manager-mobile-card + .listings-manager-mobile-card {
    margin-top: 0.7rem;
}

@media (max-width: 991px) {
    .listings-manager-actions {
        grid-template-columns: 1fr;
    }
}

.account-hub-empty-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #edf4fc;
    color: #1f6ca7;
    margin-bottom: 0.7rem;
    font-size: 1.25rem;
}

.account-profile-hero {
    border: 1px solid #d6e5f4;
    background:
        radial-gradient(circle at 8% 5%, rgba(47, 127, 210, 0.14), transparent 30%),
        radial-gradient(circle at 100% 0%, rgba(245, 158, 11, 0.12), transparent 28%),
        linear-gradient(180deg, #fbfdff 0%, #f4f9ff 100%);
}

.account-profile-kicker {
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #3d6488;
    font-weight: 700;
}

.account-profile-type-badge {
    border: 1px solid #d9e6f4;
    border-radius: 0.84rem;
    background: #fff;
    padding: 0.72rem 0.82rem;
    min-width: 170px;
    text-align: right;
}

.account-profile-type-badge strong {
    display: block;
    color: #133f67;
}

.account-profile-form-card,
.account-profile-plan-card {
    border: 1px solid #dce8f4;
}

.account-profile-form-card .form-control:focus {
    border-color: #7ca4cf;
    box-shadow: 0 0 0 0.18rem rgba(31, 106, 165, 0.14);
}

.account-upgrade-option {
    border: 1px solid #dbe7f4;
    border-radius: 0.88rem;
    background: #f8fbff;
    padding: 0.9rem;
}

.account-upgrade-option.is-current {
    border-color: #9ec7aa;
    background: #f4fbf6;
}

.hero-popular-link {
    color: #fff;
    font-size: 0.84rem;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.hero-popular-link:hover {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.78);
}

.hero-category-chip-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hero-category-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.38rem 0.68rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 600;
}

.hero-category-chip:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.24);
    border-color: rgba(255, 255, 255, 0.62);
}

.category-chip-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.category-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    border: 1px solid #d4deea;
    background: #ffffff;
    color: #17466f;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.92rem;
}

.category-chip:hover {
    border-color: #9cb4cc;
    color: #0f3d62;
}

.location-chip-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.location-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.52rem 0.82rem;
    border-radius: 999px;
    border: 1px solid #d4deea;
    background: #ffffff;
    color: #17466f;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.92rem;
}

.location-chip:hover {
    border-color: #9cb4cc;
    color: #0f3d62;
}

.location-chip-count {
    margin-left: 0.35rem;
    background: #eef4fb;
    color: #466789;
    border-radius: 999px;
    font-size: 0.78rem;
    padding: 0.1rem 0.45rem;
}

.proof-strip {
    border-top: 4px solid #cfe1f3;
}

.proof-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
}

.proof-metric {
    background: #f8fbff;
    border: 1px solid #dce8f4;
    border-radius: 0.8rem;
    padding: 0.75rem;
}

.proof-metric-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e7f0fb;
    color: #0f3d62;
    margin-bottom: 0.45rem;
}

.proof-metric strong {
    display: block;
    color: #0f3d62;
    font-size: 1.05rem;
    line-height: 1.1;
    margin-bottom: 0.2rem;
}

.proof-metric small {
    color: #567190;
    font-size: 0.78rem;
}

.hiw-card {
    border-top: 4px solid #dce8f4;
}

.hiw-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #eaf2fb;
    color: #0f3d62;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.02em;
    padding: 0.28rem 0.6rem;
}

.popular-search-grid {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.popular-search-card {
    border: 1px solid #dce8f4;
    border-radius: 0.85rem;
    background: #ffffff;
    text-decoration: none;
    color: #0f3d62;
    padding: 0.9rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.popular-search-card:hover {
    color: #0f3d62;
    border-color: #a8c1da;
    box-shadow: 0 0.35rem 1rem rgba(15, 61, 98, 0.1);
}

.popular-search-title {
    font-weight: 600;
}

.popular-search-cta {
    font-size: 0.82rem;
    color: #57759b;
}

.plan-compare-table th,
.plan-compare-table td {
    border-color: #e5edf6;
}

.plan-compare-table thead th {
    background: #f6faff;
}

.plan-compare-table .listing-free,
.plan-compare-table .listing-paid {
    border-left-width: 0;
}

.testimonial-card {
    border-top: 4px solid #dce8f4;
}

.testimonial-stars {
    letter-spacing: 0.03em;
}

.featured-listing-card {
    border-top: 4px solid var(--bizzr-accent);
}

.listing-inline-logo {
    width: 68px;
    height: 68px;
    border-radius: 0.85rem;
    object-fit: cover;
    border: 1px solid #dbe7f4;
    background: #f3f8fe;
    flex: 0 0 auto;
}

.listing-hero-card {
    border-top: 4px solid #cfe1f3;
}

.listing-rating-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    background: #f7fbff;
    border: 1px solid #d7e5f3;
    font-weight: 600;
    font-size: 0.88rem;
    color: #244d74;
}

.listing-rating-pill small {
    font-size: 0.78rem;
    color: #5e7ea0;
    font-weight: 500;
}

.listing-logo-image {
    width: 100%;
    max-width: 220px;
    aspect-ratio: 1 / 1;
    border-radius: 1rem;
    border: 1px solid #dce8f4;
    background: #ffffff;
    object-fit: contain;
    object-position: center;
    padding: 0.5rem;
    box-sizing: border-box;
}

.listing-hero-logo {
    width: 82px;
    height: 82px;
    border-radius: 0.95rem;
    border: 1px solid #dce8f4;
    background: #ffffff;
    object-fit: contain;
    object-position: center;
    padding: 0.35rem;
    box-sizing: border-box;
    flex: 0 0 auto;
}

.listing-map-frame {
    border: 1px solid #dce8f4;
    border-radius: 0.8rem;
    overflow: hidden;
    background: #f8fbff;
}

.listing-map-frame iframe {
    display: block;
    width: 100%;
    height: 240px;
    border: 0;
}

.listing-booking-frame {
    border: 1px solid #dce8f4;
    border-radius: 0.8rem;
    overflow: hidden;
    background: #f8fbff;
}

.listing-booking-frame iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
}

.listing-meta-list {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.listing-meta-list li {
    display: grid;
    grid-template-columns: 18px 1fr;
    align-items: start;
    gap: 0.55rem;
    color: #274a70;
    font-size: 0.92rem;
}

.listing-meta-list i {
    margin-top: 0.15rem;
    color: #3a6a97;
}

.listing-meta-list a {
    color: #0f3d62;
    text-decoration: none;
}

.listing-meta-list a:hover {
    text-decoration: underline;
}

.listing-social-btn {
    border-radius: 999px;
}

.listing-opening-list {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.listing-opening-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.6rem;
    font-size: 0.9rem;
    border-bottom: 1px dashed #e4edf7;
    padding-bottom: 0.35rem;
}

.listing-opening-list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.listing-opening-list span {
    color: #557292;
}

.listing-opening-list strong {
    color: #163a60;
    font-weight: 600;
    text-align: right;
}

/* ── Trust badges ──────────────────────────────────────────────── */
.trust-badge-list {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    cursor: default;
}

.trust-badge-icon {
    width: 22px;
    text-align: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.trust-badge-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1a3a55;
}

/* ── Open-now pill ─────────────────────────────────────────────── */
.open-now-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.open-now-pill.open-now {
    background: #d4edda;
    color: #1a6832;
    border: 1px solid #b7dfbf;
}

.open-now-pill.closed-now {
    background: #f8d7da;
    color: #842029;
    border: 1px solid #f1aeb5;
}

.open-now-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #1a8a3e;
    animation: open-now-pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes open-now-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}

.open-now-transition {
    font-weight: 400;
    opacity: 0.8;
}

.listing-review-item {
    border-color: #dce8f4 !important;
    background: #fcfeff;
}

.listing-review-card {
    padding: 1.05rem !important;
}

.listing-review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #0c6b55;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.15rem;
}

.listing-review-author {
    color: #1d466d;
}

.listing-review-date {
    color: #6b7f95;
    font-size: 0.9rem;
}

.listing-review-stars {
    display: inline-flex;
    align-items: center;
    gap: 0.1rem;
}

.listing-review-stars .fa-star {
    font-size: 0.78rem;
}

.listing-review-stars .fa-star.is-on {
    color: #f59e0b;
}

.listing-review-stars .fa-star.is-off {
    color: #cfdae6;
}

.listing-review-body {
    font-size: 1.02rem;
    line-height: 1.75;
}

.listing-review-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(112px, 1fr));
    gap: 0.55rem;
}

.listing-review-image-link {
    display: block;
    border-radius: 0.6rem;
    overflow: hidden;
    border: 1px solid #dbe7f3;
    background: #f6faff;
}

.listing-review-image {
    width: 100%;
    height: 92px;
    object-fit: cover;
    display: block;
    cursor: zoom-in;
}

.listing-review-reply {
    border-left: 4px solid #19a36f;
    background: #f3f0ee;
    border-radius: 0.75rem;
    padding: 0.95rem 1rem;
}

.listing-review-actions {
    border-top: 1px solid #e3ecf6;
    padding-top: 0.7rem;
}

.listing-review-helpful-wrap {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.listing-review-helpful-btn {
    border-radius: 999px;
}

.listing-review-helpful-count {
    font-size: 0.84rem;
    color: #637e98;
}

.account-listing-review-card .account-review-stars {
    display: inline-flex;
    gap: 0.12rem;
    font-size: 1rem;
}

.account-listing-review-card .account-review-stars .is-on {
    color: #f59e0b;
}

.account-listing-review-card .account-review-stars .is-off {
    color: #d0dae6;
}

.account-review-reply-wrap {
    border-top: 1px solid #e4edf6;
    padding-top: 0.85rem;
}

.account-review-reply {
    border-left: 4px solid #1c9f67;
    background: #f4f2f0;
    border-radius: 0.75rem;
    padding: 0.85rem 0.95rem;
}

.account-listing-reviews-hero {
    background:
        radial-gradient(circle at 10% 16%, rgba(33, 126, 197, 0.14) 0%, rgba(33, 126, 197, 0.02) 44%, transparent 64%),
        radial-gradient(circle at 88% 20%, rgba(15, 155, 107, 0.11) 0%, rgba(15, 155, 107, 0.02) 38%, transparent 60%),
        linear-gradient(135deg, #ffffff 0%, #f6fbff 100%);
    border: 1px solid #d8e8f8;
}

.account-listing-review-filter {
    background: #f8fbff;
    border: 1px solid #d7e6f6;
    color: #35597f;
    padding: 0.42rem 0.78rem;
    transition: all 0.16s ease;
}

.account-listing-review-filter:hover {
    border-color: #95bbdf;
    color: #123c61;
}

.account-listing-review-filter.is-active {
    background: linear-gradient(135deg, #1f7ec6 0%, #2f92dc 100%);
    border-color: #1f7ec6;
    color: #fff;
}

.account-listing-review-card {
    border: 1px solid #dce9f6;
    background: #fff;
}

.admin-review-modal-content {
    border: 1px solid #d8e6f4;
    border-radius: 0.95rem;
    box-shadow: 0 0.75rem 2.2rem rgba(12, 56, 92, 0.16);
}

.admin-review-meta-wrap {
    display: grid;
    gap: 0.65rem;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.admin-review-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
}

.admin-review-meta-item {
    border: 1px solid #dbe7f3;
    border-radius: 0.7rem;
    background: #f8fbff;
    padding: 0.55rem 0.65rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.admin-review-meta-item-wide {
    grid-column: 1 / -1;
}

.admin-review-meta-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6a8198;
    font-weight: 700;
}

.admin-review-meta-value {
    color: #163f64;
    font-weight: 600;
    line-height: 1.35;
    word-break: break-word;
}

.admin-review-body-card {
    border: 1px solid #dbe7f3;
    border-radius: 0.82rem;
    background: #ffffff;
    padding: 0.9rem;
}

.admin-review-body-text {
    white-space: pre-wrap;
    color: #1d3347;
    line-height: 1.65;
}

.admin-review-edit-form {
    border: 1px solid #dce9f5;
    border-radius: 0.8rem;
    padding: 0.75rem;
    background: #fbfdff;
}

.admin-review-edit-form .form-control,
.admin-review-edit-form .form-select {
    border-color: #ccdeef;
}

.account-listing-review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0c6b55;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
}

.account-listing-review-body {
    font-size: 1.03rem;
    line-height: 1.72;
    color: #1f3248;
}

.account-listing-reply-textarea {
    border-radius: 0.8rem;
    border-color: #ccdef0;
}

.account-listing-reply-textarea:focus {
    border-color: #2f8fd5;
    box-shadow: 0 0 0 0.17rem rgba(41, 131, 202, 0.16);
}

.listing-gallery-image {
    width: 100%;
    height: 124px;
    object-fit: cover;
    border-radius: 0.7rem;
    border: 1px solid #dce8f4;
    background: #f5f9fe;
    cursor: zoom-in;
}

.listing-gallery-lightbox-modal {
    background: #0d1621;
    color: #fff;
}

.listing-gallery-lightbox-modal .btn-close {
    filter: invert(1);
}

.listing-gallery-lightbox-image {
    width: 100%;
    max-height: 72vh;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    border-radius: 0.6rem;
    background: #0d1621;
}

.listing-premium-hero-image {
    width: 100%;
    height: 240px;
    display: block;
    object-fit: cover;
    background: #eef4fb;
}

.listing-review-form .form-control,
.listing-review-form .form-select {
    border-radius: 0.7rem;
    border-color: #d3e2f1;
}

.listing-review-form .form-control:focus,
.listing-review-form .form-select:focus {
    border-color: #2d83cb;
    box-shadow: 0 0 0 0.17rem rgba(45, 131, 203, 0.16);
}

.listing-review-panel {
    border: 1px solid #dce8f4;
    border-radius: 0.85rem;
    background: linear-gradient(180deg, #f9fcff 0%, #f3f8fe 100%);
    padding: 0.9rem;
    height: 100%;
}

.listing-review-textarea {
    min-height: 180px;
    resize: vertical;
}

.listing-review-captcha {
    flex: 1 1 auto;
}

.listing-review-submit {
    border-radius: 0.7rem;
    padding: 0.52rem 1rem;
    font-weight: 600;
}

.listing-review-rating-wrap {
    border: 1px solid #dce8f4;
    border-radius: 0.75rem;
    background: #f9fcff;
    padding: 0.65rem 0.75rem;
}

.listing-review-star-select {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-wrap: wrap;
}

.listing-review-star {
    border: 0;
    background: transparent;
    color: #c8d6e4;
    font-size: 1.12rem;
    line-height: 1;
    padding: 0.1rem;
    cursor: pointer;
}

.listing-review-star.is-active {
    color: #f59e0b;
}

.listing-review-star:hover,
.listing-review-star:focus {
    color: #f5b84f;
}

.listing-review-rating-label {
    margin-left: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #45698d;
}

@media (max-width: 991px) {
    .listing-review-panel {
        margin-bottom: 0.2rem;
    }

    .listing-review-textarea {
        min-height: 150px;
    }
}

.card-media-wrap {
    display: block;
    border-radius: 1rem 1rem 0 0;
    overflow: hidden;
    border-bottom: 1px solid #e5edf6;
}

.card-media-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: linear-gradient(135deg, #eff5fc, #f8fbff);
}

.cta-strip {
    border-top: 4px solid #d8e4f2;
}

.home-motion-block,
.home-motion-item {
    opacity: 0;
    transform: translateY(18px) scale(0.995);
    transition: opacity 0.55s ease, transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
    will-change: opacity, transform;
}

.home-motion-block.is-visible,
.home-motion-item.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.home-motion-stagger .home-motion-item {
    transition-delay: 0s;
}

.home-motion-stagger .home-motion-item:nth-child(1) { transition-delay: 0.04s; }
.home-motion-stagger .home-motion-item:nth-child(2) { transition-delay: 0.09s; }
.home-motion-stagger .home-motion-item:nth-child(3) { transition-delay: 0.14s; }
.home-motion-stagger .home-motion-item:nth-child(4) { transition-delay: 0.19s; }
.home-motion-stagger .home-motion-item:nth-child(5) { transition-delay: 0.24s; }
.home-motion-stagger .home-motion-item:nth-child(6) { transition-delay: 0.29s; }

.hero-stat-tile,
.popular-search-card,
.location-chip,
.featured-listing-card,
.testimonial-card,
.hiw-card {
    transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hero-stat-tile:hover,
.popular-search-card:hover,
.location-chip:hover,
.featured-listing-card:hover,
.testimonial-card:hover,
.hiw-card:hover {
    transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
    .hero-banner {
        animation: none !important;
    }
    .hero-banner::after {
        animation: none !important;
    }

    .home-motion-block,
    .home-motion-item {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .hero-stat-tile,
    .popular-search-card,
    .location-chip,
    .featured-listing-card,
    .testimonial-card,
    .hiw-card {
        transition: none !important;
    }
}

.content-guide-illustration {
    width: 100%;
    border-radius: 0.95rem;
    border: 1px solid #d9e6f3;
    background: #f7fbff;
}

.benefits-illustration {
    width: 100%;
    border-radius: 0.95rem;
    border: 1px solid #d9e6f3;
    background: #f7fbff;
}

.faq-accordion .accordion-item {
    border: 1px solid #e2eaf3;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: #f5f9fd;
    color: #0f3d62;
}

.faq-accordion .accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(31, 106, 165, 0.12);
}

.icon-pill {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 61, 98, 0.1);
    color: var(--bizzr-primary);
}

.listing-paid {
    border-left: 4px solid var(--bizzr-accent);
}

.listing-free {
    border-left: 4px solid #94a3b8;
}

.search-hero {
    border: 1px solid #c7dbef;
    border-top: 4px solid #2d83cb;
    background:
        radial-gradient(circle at 86% 12%, rgba(45, 131, 203, 0.22), transparent 42%),
        radial-gradient(circle at 12% 86%, rgba(97, 165, 223, 0.16), transparent 40%),
        linear-gradient(135deg, #f8fbff 0%, #eaf4ff 52%, #f6fbff 100%);
    box-shadow: 0 0.45rem 1.2rem rgba(29, 87, 141, 0.1);
}

.search-hero-kicker {
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1d5f94;
    font-weight: 700;
}

.search-hero-meta {
    display: grid;
    gap: 0.45rem;
}

.search-hero-pill {
    border: 1px solid #c4d9ec;
    border-radius: 0.78rem;
    background: rgba(255, 255, 255, 0.86);
    padding: 0.45rem 0.58rem;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem;
}

.search-hero-pill span {
    font-size: 0.73rem;
    color: #6a839e;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.search-hero-pill strong {
    color: #0f3f67;
    font-size: 0.88rem;
}

.search-result-card {
    position: relative;
    border: 1px solid #dae7f4;
}

.search-result-card.is-paid {
    border-left: 5px solid #f59e0b;
    border-color: #f2d39a;
    background: linear-gradient(180deg, #fffdf8 0%, #ffffff 100%);
    box-shadow: 0 0.5rem 1.15rem rgba(245, 158, 11, 0.14);
}

.search-result-card.is-free {
    border-left: 4px solid #a8b9cc;
    background: #fff;
    box-shadow: 0 0.25rem 0.8rem rgba(15, 61, 98, 0.045);
}

.search-result-card.is-paid .search-result-title-link {
    color: #7a4a00;
}

.search-result-card.is-paid .search-result-rank {
    background: #fff4d9;
    border-color: #f4d08a;
    color: #8a5500;
}

.search-result-card.is-free .search-result-rank {
    background: #f2f7fd;
}

.search-result-rank {
    width: 2rem;
    height: 2rem;
    border-radius: 0.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e9f2fc;
    border: 1px solid #d3e2f0;
    color: #1f6ca7;
    font-size: 0.82rem;
    font-weight: 700;
}

.search-result-logo-link {
    display: inline-block;
    text-decoration: none;
    margin-top: auto;
    margin-bottom: auto;
}

.search-result-logo,
.search-result-logo-fallback {
    width: 200px;
    height: 200px;
    border-radius: 0.78rem;
    border: 1px solid #d7e4f1;
    background: #fff;
    object-fit: cover;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #2a6ea4;
    font-size: 1.1rem;
    box-shadow: 0 0.3rem 0.75rem rgba(15, 61, 98, 0.08);
}

.search-result-title-link {
    text-decoration: none;
    color: #123f67;
    line-height: 1.25;
}

.search-result-title-link:hover {
    color: #0f3d62;
    text-decoration: underline;
}

.search-result-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.35rem;
}

.search-result-header {
    padding-bottom: 0.2rem;
    margin-bottom: 0.45rem;
}

.search-result-aside {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
    min-height: 100%;
    height: 100%;
}

.search-pill-premium {
    background: #7b4a00;
    color: #fff;
    border: 1px solid #7b4a00;
}

.search-result-chip {
    display: inline-flex;
    align-items: center;
    border: 1px solid #d6e3f1;
    border-radius: 999px;
    background: #f7fbff;
    color: #3f6284;
    font-size: 0.78rem;
    padding: 0.22rem 0.54rem;
    font-weight: 600;
}

.search-result-desc {
    color: #395a79;
    font-size: 0.92rem;
    line-height: 1.5;
}

.search-result-address {
    color: #5a7591;
    font-size: 0.84rem;
}

.search-result-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #6b7f95;
    font-size: 0.86rem;
}

.search-result-stars {
    display: inline-flex;
    align-items: center;
    gap: 0.1rem;
}

.search-result-stars .fa-star {
    font-size: 0.78rem;
}

.search-result-stars .fa-star.is-on {
    color: #f59e0b;
}

.search-result-stars .fa-star.is-off {
    color: #d0dae6;
}

.search-result-rating-value {
    color: #1d4e79;
    font-weight: 700;
}

.search-result-rating-count {
    color: #7890a6;
}

.search-result-cta {
    border: 1px solid #1d6bb0;
    background: linear-gradient(180deg, #2d83cb 0%, #1d6bb0 100%);
    color: #fff;
    border-radius: 0.55rem;
    padding: 0.42rem 0.86rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 0.25rem 0.65rem rgba(29, 107, 176, 0.24);
}

.search-result-cta:hover,
.search-result-cta:focus {
    color: #fff;
    border-color: #15598f;
    background: linear-gradient(180deg, #2276ba 0%, #15598f 100%);
}

@media (max-width: 991px) {
    .search-result-aside {
        width: 100%;
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: row;
        gap: 0.75rem;
        margin-top: 0.15rem;
    }

    .search-result-badges {
        justify-content: flex-start;
        align-items: center;
        flex: 1 1 auto;
    }

    .search-result-logo-link {
        margin-top: 0;
        margin-bottom: 0;
    }

    .search-result-logo,
    .search-result-logo-fallback {
        width: 72px;
        height: 72px;
        flex-shrink: 0;
        border-radius: 0.7rem;
    }
}

.search-empty-state {
    border: 1px solid #dbe8f5;
}

.search-empty-icon {
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #edf4fd;
    color: #2a6ea4;
    font-size: 1.2rem;
}

.search-pagination-page {
    font-size: 0.85rem;
    color: #546f89;
    padding: 0.34rem 0.62rem;
    border-radius: 999px;
    border: 1px solid #d9e6f2;
    background: #f8fbff;
}

.table thead th {
    white-space: nowrap;
}

.breadcrumb-shell {
    background: #ffffff;
    border: 1px solid #e8edf3;
    border-radius: 0.75rem;
    padding: 0.6rem 0.9rem;
    box-shadow: 0 0.2rem 0.75rem rgba(15, 61, 98, 0.05);
}

.breadcrumb {
    margin-bottom: 0;
}

.breadcrumb-item {
    font-size: 0.9rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #6c7b8a;
}

.breadcrumb-item a {
    color: var(--bizzr-primary);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #6c757d;
}

.site-footer {
    background: linear-gradient(160deg, #0f2f4a 0%, #123c5f 55%, #17507f 100%);
    color: #d8e8fb;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 700;
}

.footer-copy {
    color: #c0d8f2;
    max-width: 34rem;
    line-height: 1.55;
}

.footer-heading {
    color: #ffffff;
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 0.75rem;
}

.footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.footer-link-list a {
    color: #d8e8fb;
    text-decoration: none;
    font-size: 0.92rem;
}

.footer-link-list a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-legal {
    color: #c0d8f2;
    font-size: 0.86rem;
}

.footer-social-link {
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 0.55rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    text-decoration: none;
}

.footer-social-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.52);
}

@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-category-chip-wrap {
        gap: 0.4rem;
    }

    .proof-metrics {
        grid-template-columns: 1fr 1fr;
    }

    .popular-search-grid {
        grid-template-columns: 1fr;
    }

    .card-media-img {
        height: 160px;
    }

    .listing-inline-logo {
        width: 56px;
        height: 56px;
    }

    .listing-map-frame iframe {
        height: 220px;
    }

    .listing-booking-frame iframe {
        height: 360px;
    }

    .listing-gallery-image {
        height: 110px;
    }

    .listing-premium-hero-image {
        height: 180px;
    }

    .listing-hero-logo {
        width: 68px;
        height: 68px;
    }

    .account-hub-summary {
        padding: 0.9rem;
    }

    .account-hub-kpi-value {
        font-size: 1.45rem;
    }

    .account-hub-quick-link {
        grid-template-columns: auto 1fr;
    }

    .account-hub-quick-link > i:last-child {
        display: none;
    }

    .account-hub-table-shell {
        padding: 0.7rem 0.72rem 0.82rem;
    }

    .account-profile-type-badge {
        min-width: 0;
        width: 100%;
        text-align: left;
    }

    .site-footer {
        margin-top: 2.5rem;
    }

    .footer-copy {
        max-width: none;
    }

}
