.abx-pfh {
    --abx-pfh-bg: #FAF6F0;
    --abx-pfh-surface: #ffffff;
    --abx-pfh-text: #21313c;
    --abx-pfh-muted: #5f6c75;
    --abx-pfh-primary: #1F513B;
    --abx-pfh-secondary: #0A192F;
    --abx-pfh-warm: #E07A5F;
    --abx-pfh-warm-hover: #C9664B;
    --abx-pfh-border: rgba(10, 25, 47, 0.08);
    --abx-pfh-shadow: 0 18px 50px rgba(10, 25, 47, 0.08);
    --abx-pfh-shadow-sm: 0 6px 20px rgba(10, 25, 47, 0.04);
    --abx-pfh-shadow-lg: 0 24px 64px rgba(10, 25, 47, 0.12);
    --abx-pfh-radius: 18px;
    --abx-pfh-radius-sm: 12px;
    --abx-pfh-radius-xs: 8px;
    --abx-pfh-radius-pill: 100px;

    font-family: "Outfit", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--abx-pfh-text);
    line-height: 1.6;
    box-sizing: border-box;
}

.abx-pfh *,
.abx-pfh *::before,
.abx-pfh *::after {
    box-sizing: border-box;
}

/* Shell wrapper */
.abx-pfh-shell {
    max-width: 1440px;
    width: min(1440px, calc(100% - 48px));
    margin-inline: auto;
    background: var(--abx-pfh-bg);
    border-radius: 28px;
    padding: clamp(28px, 4vw, 56px);
    border: 1px solid var(--abx-pfh-border);
    box-shadow: var(--abx-pfh-shadow-sm);
}

/* ─── HERO ─── */
.abx-pfh-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    gap: clamp(36px, 5vw, 72px);
    align-items: center;
    min-height: 420px;
    padding: clamp(36px, 5vw, 64px);
    background: var(--abx-pfh-surface);
    border: 1px solid var(--abx-pfh-border);
    border-radius: 24px;
    box-shadow: var(--abx-pfh-shadow);
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
}

.abx-pfh-hero::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(224, 122, 95, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.abx-pfh-hero::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(31, 81, 59, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.abx-pfh-hero-left {
    z-index: 1;
}

.abx-pfh-hero-right {
    z-index: 1;
    max-width: 480px;
    justify-self: end;
}

.abx-pfh-kicker {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--abx-pfh-primary);
    display: inline-block;
    margin-bottom: 0.5rem;
}

.abx-pfh-headline {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    color: var(--abx-pfh-secondary);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0.5rem 0 1.25rem 0;
    letter-spacing: -0.02em;
}

.abx-pfh-body {
    color: var(--abx-pfh-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 680px;
}

/* Benefit Chips */
.abx-pfh-hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.abx-pfh-hero-chip {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--abx-pfh-secondary);
    background: var(--abx-pfh-bg);
    border: 1px solid var(--abx-pfh-border);
    padding: 0.4rem 0.88rem;
    border-radius: var(--abx-pfh-radius-pill);
}

/* Hero CTA Row */
.abx-pfh-hero-action {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* ─── CHECKLIST CARD ─── */
.abx-pfh-checklist-card {
    background: var(--abx-pfh-surface);
    border: 1px solid var(--abx-pfh-border);
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: var(--abx-pfh-shadow);
    border-top: 4px solid var(--abx-pfh-primary);
}

.abx-pfh-checklist-title {
    font-family: var(--abx-pfh-font-sans);
    color: var(--abx-pfh-primary);
    margin: 0 0 0.25rem 0;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.abx-pfh-checklist-sub {
    font-size: 0.85rem;
    color: var(--abx-pfh-secondary);
    font-weight: 700;
    margin: 0 0 1.25rem 0;
}

.abx-pfh-checklist-sub span {
    font-weight: 400;
    color: var(--abx-pfh-muted);
}

.abx-pfh-checklist-items {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.abx-pfh-checklist-items li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.abx-pfh-check-icon {
    width: 20px;
    height: 20px;
    background: #EBFDF5;
    color: #1F513B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.abx-pfh-check-info {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.abx-pfh-check-info strong {
    font-size: 0.9rem;
    color: var(--abx-pfh-secondary);
}

.abx-pfh-check-info span {
    font-size: 0.8rem;
    color: var(--abx-pfh-muted);
}

.abx-pfh-checklist-divider {
    border: 0;
    border-top: 1px dashed var(--abx-pfh-border);
    margin: 1.25rem 0;
}

.abx-pfh-checklist-score-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.abx-pfh-checklist-score-col {
    display: flex;
    align-items: baseline;
}

.abx-pfh-score-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--abx-pfh-secondary);
    line-height: 1;
}

.abx-pfh-score-denom {
    font-size: 1rem;
    color: var(--abx-pfh-muted);
    font-weight: 600;
    margin-left: 2px;
}

/* ─── SEARCH SECTION ─── */
.abx-pfh-search-section {
    margin-bottom: 3.5rem;
    scroll-margin-top: 110px;
}

.abx-pfh-search-card {
    background: var(--abx-pfh-surface);
    border: 1px solid var(--abx-pfh-border);
    border-radius: 22px;
    padding: clamp(24px, 3vw, 40px);
    box-shadow: var(--abx-pfh-shadow);
}

.abx-pfh-search-heading {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    color: var(--abx-pfh-secondary);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.abx-pfh-search-helper {
    margin: 0 0 2rem 0;
    font-size: 0.95rem;
    color: var(--abx-pfh-muted);
}

/* Form Grid */
.abx-pfh-form-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 1200px) {
    .abx-pfh-form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .abx-pfh-field-city {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .abx-pfh-form-grid {
        grid-template-columns: 1fr;
    }
    .abx-pfh-field-city,
    .abx-pfh-field-state {
        grid-column: span 1;
    }
}

.abx-pfh-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.abx-pfh-field label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--abx-pfh-secondary);
}

.abx-pfh-field label .required {
    color: #c0392b;
}

.abx-pfh-field input[type="text"],
.abx-pfh-field select {
    font-family: "Outfit", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.95rem;
    padding: 0.8rem 1rem;
    border: 1px solid var(--abx-pfh-border);
    border-radius: var(--abx-pfh-radius-xs);
    background-color: var(--abx-pfh-bg);
    color: var(--abx-pfh-text);
    outline: none;
    transition: all 0.25s ease;
    width: 100%;
}

.abx-pfh-field input[type="text"]:focus,
.abx-pfh-field select:focus {
    border-color: var(--abx-pfh-primary);
    background-color: var(--abx-pfh-surface);
    box-shadow: 0 0 0 3px rgba(31, 81, 59, 0.1);
}

/* Amenities */
.abx-pfh-amenities-section {
    border-top: 1px dashed var(--abx-pfh-border);
    padding-top: 1.5rem;
    margin-bottom: 2rem;
}

.abx-pfh-section-title {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--abx-pfh-secondary);
    margin-bottom: 1rem;
}

.abx-pfh-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

.abx-pfh-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--abx-pfh-text);
    cursor: pointer;
    user-select: none;
}

.abx-pfh-checkbox-label input[type="checkbox"] {
    appearance: none;
    background-color: var(--abx-pfh-bg);
    margin: 0;
    font: inherit;
    color: var(--abx-pfh-primary);
    width: 18px;
    height: 18px;
    border: 1px solid var(--abx-pfh-border);
    border-radius: 4px;
    display: grid;
    place-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.abx-pfh-checkbox-label input[type="checkbox"]::before {
    content: "";
    width: 10px;
    height: 10px;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    background-color: currentColor;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.abx-pfh-checkbox-label input[type="checkbox"]:checked {
    background-color: var(--abx-pfh-primary);
    border-color: var(--abx-pfh-primary);
    color: var(--abx-pfh-surface);
}

.abx-pfh-checkbox-label input[type="checkbox"]:checked::before {
    transform: scale(1);
}

.abx-pfh-checkbox-label input[type="checkbox"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(31, 81, 59, 0.15);
}

/* Form Actions */
.abx-pfh-form-actions-wrapper {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--abx-pfh-border);
    padding-top: 1.5rem;
}

.abx-pfh-form-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.abx-pfh-reset-link {
    font-size: 0.9rem;
    color: var(--abx-pfh-muted);
    text-decoration: none;
    font-weight: 500;
}

.abx-pfh-reset-link:hover {
    color: var(--abx-pfh-secondary);
    text-decoration: underline;
}

/* Info Strip */
.abx-pfh-info-strip {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #EBFDF5;
    border-radius: 8px;
    padding: 12px 16px;
    margin-top: 20px;
    font-size: 13px;
    color: #1F4E3D;
    font-weight: 500;
}

/* Loading Strip */
.abx-pfh-loading-strip {
    display: none;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding: 0.88rem 1.25rem;
    background-color: var(--abx-pfh-bg);
    border: 1px dashed rgba(31, 81, 59, 0.25);
    border-radius: var(--abx-pfh-radius-xs);
    position: relative;
    overflow: hidden;
}

.abx-pfh-is-submitting .abx-pfh-loading-strip {
    display: flex;
}

.abx-pfh-is-submitting .abx-pfh-info-strip {
    display: none;
}

.abx-pfh-loading-text {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--abx-pfh-primary);
}

.abx-pfh-loading-dots span {
    animation: abxDotPulse 1.5s infinite both;
    font-weight: 700;
    color: var(--abx-pfh-primary);
    display: inline-block;
}

.abx-pfh-loading-dots span:nth-child(2) { animation-delay: .2s; }
.abx-pfh-loading-dots span:nth-child(3) { animation-delay: .4s; }

@keyframes abxDotPulse {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

.abx-pfh-shimmer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--abx-pfh-primary), transparent);
    background-size: 200% 100%;
    animation: abxShimmer 1.5s infinite linear;
}

@keyframes abxShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ─── BUTTONS ─── */
.abx-pfh .abx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Outfit", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    border-radius: var(--abx-pfh-radius-pill);
    padding: 0.8rem 2.2rem;
    transition: all 0.25s ease;
    line-height: 1.3;
}

.abx-pfh-hero-cta {
    font-size: 15px;
    height: 48px;
}

.abx-pfh .abx-btn-primary {
    background: var(--abx-pfh-warm);
    color: var(--abx-pfh-surface);
    box-shadow: 0 2px 5px rgba(224, 122, 95, 0.15);
}

.abx-pfh .abx-btn-primary:hover {
    background: var(--abx-pfh-warm-hover);
    transform: translateY(-2px);
    box-shadow: var(--abx-pfh-shadow-sm);
}

.abx-pfh .abx-btn-primary:disabled {
    background: #e2dcd5;
    color: #7f8c8d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.abx-pfh .abx-btn-secondary {
    background: var(--abx-pfh-secondary);
    color: var(--abx-pfh-surface);
}

.abx-pfh .abx-btn-secondary:hover {
    background: #10233e;
    transform: translateY(-2px);
    box-shadow: var(--abx-pfh-shadow-sm);
}

.abx-pfh .abx-btn-outline {
    background: transparent;
    color: var(--abx-pfh-secondary);
    border: 1px solid var(--abx-pfh-border);
}

.abx-pfh .abx-btn-outline:hover {
    background: var(--abx-pfh-bg);
    border-color: var(--abx-pfh-secondary);
}

/* ─── NOTICES ─── */
.abx-pfh-notice {
    padding: 2.5rem;
    border-radius: var(--abx-pfh-radius);
    margin-bottom: 3.5rem;
    background: var(--abx-pfh-surface);
    border: 1px solid var(--abx-pfh-border);
    box-shadow: var(--abx-pfh-shadow-sm);
}

.abx-pfh-notice-error {
    border-left: 4px solid #c0392b;
    color: #c0392b;
    font-weight: 500;
}

.abx-pfh-notice-empty {
    text-align: center;
}

.abx-pfh-notice-heading {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    color: var(--abx-pfh-secondary);
    font-size: 1.6rem;
    margin: 0 0 1rem 0;
}

.abx-pfh-notice-body {
    color: var(--abx-pfh-muted);
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

.abx-pfh-notice-suggestions {
    max-width: 500px;
    margin: 0 auto 2rem auto;
    text-align: left;
    background: var(--abx-pfh-bg);
    padding: 1.5rem;
    border-radius: var(--abx-pfh-radius-sm);
    border: 1px solid var(--abx-pfh-border);
}

.abx-pfh-notice-suggestions ul {
    margin: 0.5rem 0 0 0;
    padding-left: 1.25rem;
}

.abx-pfh-notice-suggestions li {
    font-size: 0.9rem;
    color: var(--abx-pfh-text);
    margin-bottom: 0.5rem;
}

.abx-pfh-notice-suggestions li a {
    color: var(--abx-pfh-primary);
    font-weight: 600;
    text-decoration: underline;
}

.abx-pfh-notice-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ─── RESULTS SUMMARY ─── */
.abx-pfh-result-summary-card {
    background-color: var(--abx-pfh-surface);
    border: 1px solid var(--abx-pfh-border);
    border-radius: var(--abx-pfh-radius);
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    box-shadow: var(--abx-pfh-shadow-sm);
}

.abx-pfh-summary-kicker {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--abx-pfh-primary);
    margin-bottom: 0.5rem;
}

.abx-pfh-summary-heading {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    color: var(--abx-pfh-secondary);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin: 0 0 2rem 0;
}

.abx-pfh-summary-metrics-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.abx-pfh-summary-score-card,
.abx-pfh-summary-count-card {
    flex: 1;
    min-width: 250px;
    background: var(--abx-pfh-bg);
    padding: 1.5rem;
    border-radius: var(--abx-pfh-radius-sm);
    border: 1px solid var(--abx-pfh-border);
}

.abx-pfh-summary-score-label,
.abx-pfh-summary-count-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--abx-pfh-muted);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.abx-pfh-summary-score-value {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.abx-pfh-summary-score-value .abx-score-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--abx-pfh-secondary);
    line-height: 1;
}

.abx-pfh-summary-score-value .abx-score-denom {
    font-size: 1rem;
    color: var(--abx-pfh-muted);
    font-weight: 600;
    margin-right: 0.5rem;
}

.abx-pfh-summary-count-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--abx-pfh-secondary);
    line-height: 1;
}

/* Active Filters */
.abx-pfh-active-filters-chips {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    border-top: 1px dashed var(--abx-pfh-border);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.abx-pfh-filters-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--abx-pfh-secondary);
}

.abx-pfh-chips-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.abx-pfh-chip {
    background: rgba(31, 81, 59, 0.05);
    color: var(--abx-pfh-primary);
    padding: 0.25rem 0.75rem;
    border-radius: var(--abx-pfh-radius-pill);
    font-size: 0.8rem;
    font-weight: 500;
}

/* ─── HOTEL GRID / CARDS ─── */
.abx-pfh-results-section {
    scroll-margin-top: 110px;
}

.abx-pfh-hotels-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

@media (max-width: 991px) {
    .abx-pfh-hotels-grid {
        grid-template-columns: 1fr;
    }
}

.abx-pfh-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #fff 0%, #fff 72%, #fcfaf7 100%);
    border: 1px solid rgba(10, 25, 47, 0.08);
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(10, 25, 47, 0.06);
    padding: clamp(24px, 2.5vw, 34px);
    display: flex;
    flex-direction: column;
    min-height: 560px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.abx-pfh-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 24px 24px 0 0;
    transition: background 0.25s ease;
}

.abx-pfh-card--excellent::before { background: #137333; }
.abx-pfh-card--strong::before    { background: #137333; } /* Unified Green */
.abx-pfh-card--good::before      { background: #1A73E8; } /* Unified Blue/Navy */
.abx-pfh-card--decent::before    { background: #B06000; }
.abx-pfh-card--limited::before   { background: #C5221F; }
 
.abx-pfh-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 55px rgba(10, 25, 47, 0.10);
}
 
.abx-pfh-card-header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}
 
.abx-pfh-card-title-section {
    flex: 1;
}
 
.abx-pfh-hotel-name {
    margin: 0 0 0.35rem 0;
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--abx-pfh-secondary);
    line-height: 1.3;
}
 
.abx-pfh-hotel-address {
    margin: 0;
    font-size: 0.85rem;
    color: var(--abx-pfh-muted);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
 
.abx-pfh-address-icon {
    font-size: 0.85rem;
    line-height: 1;
    flex-shrink: 0;
}
 
.abx-pfh-card-score-section {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}
 
.abx-pfh-score-tile {
    display: flex;
    align-items: baseline;
    line-height: 1;
}
 
.abx-pfh-card-score-section .abx-pfh-score-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--abx-pfh-secondary);
}
 
.abx-pfh-card-score-section .abx-pfh-score-denom {
    font-size: 0.85rem;
    color: var(--abx-pfh-muted);
    font-weight: 600;
}
 
.abx-pfh-fit-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.7rem;
    border-radius: var(--abx-pfh-radius-pill);
    white-space: nowrap;
    border: 1px solid transparent;
}
 
.abx-pfh-fit-excellent {
    background-color: #E6F4EA;
    color: #137333;
    border-color: rgba(19, 115, 51, 0.15);
}
 
.abx-pfh-fit-strong {
    background-color: #E6F4EA;
    color: #137333;
    border-color: rgba(19, 115, 51, 0.15);
}
 
.abx-pfh-fit-good {
    background-color: #E8F0FE;
    color: #1A73E8;
    border-color: rgba(26, 115, 232, 0.15);
}
 
.abx-pfh-fit-decent {
    background-color: #FEF7E0;
    color: #B06000;
    border-color: rgba(176, 96, 0, 0.15);
}
 
.abx-pfh-fit-limited {
    background-color: #FCE8E6;
    color: #C5221F;
    border-color: rgba(197, 34, 31, 0.15);
}

/* Card Body */
.abx-pfh-card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Metrics Row */
.abx-pfh-metrics-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    background: #f8f5ef;
    border: 1px solid rgba(10, 25, 47, 0.06);
    border-radius: 14px;
    padding: 0.85rem 1rem;
}

.abx-pfh-metric-item {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.abx-pfh-metric-val {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--abx-pfh-secondary);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.abx-pfh-metric-icon {
    font-size: 0.85rem;
    line-height: 1;
    flex-shrink: 0;
}

.abx-pfh-metric-lbl {
    font-size: 0.72rem;
    color: var(--abx-pfh-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-top: 0.15rem;
}

/* Pet Policy Badges */
.abx-pfh-policy-tag-row {
    margin-bottom: 0;
}

.abx-pfh-policy-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.35rem 0.8rem;
    border-radius: 100px;
    border: 1px solid transparent;
}

.abx-pfh-policy-icon {
    font-size: 0.85rem;
    line-height: 1;
    flex-shrink: 0;
}

.abx-pfh-policy-badge-allowed {
    background-color: #EBFDF5;
    color: #1F513B;
    border-color: rgba(31, 81, 59, 0.15);
}

.abx-pfh-policy-badge-unclear {
    background-color: #FEF7E0;
    color: #B06000;
    border-color: rgba(176, 96, 0, 0.15);
}

.abx-pfh-policy-badge-denied {
    background-color: #FCE8E6;
    color: #C5221F;
    border-color: rgba(197, 34, 31, 0.15);
}

/* DB Clue */
.abx-pfh-policy-detail {
    background: #fbfaf7;
    border-left: 3px solid #E07A5F;
    padding: 12px 16px;
    border-radius: 12px;
}

.abx-pfh-db-clue-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--abx-pfh-muted);
    margin-bottom: 0.3rem;
}

.abx-pfh-db-clue-quote {
    margin: 0;
    font-size: 0.85rem;
    font-style: italic;
    color: var(--abx-pfh-text);
    line-height: 1.5;
}

/* Feature Chips */
.abx-pfh-feature-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.abx-pfh-feature-chips .abx-pfh-chip {
    font-size: 0.78rem;
    padding: 0.3rem 0.75rem;
    background: #f5f3ef;
    color: var(--abx-pfh-text);
    border: 1px solid rgba(10, 25, 47, 0.07);
    border-radius: 100px;
}

.abx-pfh-feature-chips .abx-pfh-chip-matched {
    background: #EBFDF5;
    color: #1F513B;
    border-color: rgba(31, 81, 59, 0.2);
    font-weight: 600;
}

.abx-pfh-chip-extra {
    background: transparent !important;
    color: var(--abx-pfh-muted) !important;
    border-color: var(--abx-pfh-border) !important;
    font-weight: 600;
    font-size: 0.75rem;
}

/* Card Caution */
.abx-pfh-card-caution {
    font-size: 0.75rem;
    color: #8A5C00;
    background: #FFF9ED;
    padding: 0.55rem 0.85rem;
    border-radius: 8px;
    border: 1px solid rgba(176, 96, 0, 0.12);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.abx-pfh-caution-icon {
    font-size: 0.85rem;
    line-height: 1;
    flex-shrink: 0;
}

/* Card Footer / CTA */
.abx-pfh-card-footer {
    margin-top: auto;
    padding-top: 1rem;
}

.abx-pfh-card-footer .abx-pfh-card-cta {
    width: 100%;
    height: 54px;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.015em;
    background: var(--abx-pfh-secondary);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    line-height: 1.3;
}

.abx-pfh-card-footer .abx-pfh-card-cta:hover {
    background: #1a2e4a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10, 25, 47, 0.15);
}

.abx-pfh-caution-box {
    background-color: #FFF9E6;
    border: 1px solid rgba(217, 119, 6, 0.15);
    border-radius: var(--abx-pfh-radius-sm);
    padding: 1.25rem 1.5rem;
}

.abx-pfh-summary-caution {
    margin-top: 1.5rem;
}

.abx-pfh-summary-caution strong {
    color: #D97706;
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.abx-pfh-summary-caution p {
    margin: 0;
    font-size: 0.88rem;
    color: #6A4E00;
}

.abx-pfh-bottom-caution {
    text-align: center;
    background-color: #FFF9E6;
    border: 1px solid rgba(217, 119, 6, 0.15);
    font-size: 0.9rem;
    color: #6A4E00;
    margin-bottom: 3.5rem;
}

.abx-pfh-bottom-caution p {
    margin: 0;
}

/* ─── BOTTOM CTA ─── */
.abx-pfh-bottom-cta {
    margin-top: clamp(48px, 6vw, 80px);
}

.abx-pfh-bottom-cta-inner {
    background: linear-gradient(135deg, #163760, #102a4d);
    color: #ffffff;
    border-radius: 28px;
    padding: clamp(36px, 5vw, 64px);
    box-shadow: var(--abx-pfh-shadow-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.abx-pfh-bottom-cta-inner::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -20%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(224, 122, 95, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.abx-pfh-bottom-kicker {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 0.75rem 0;
}

.abx-pfh-bottom-heading {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.75rem 0;
    line-height: 1.2;
}

.abx-pfh-bottom-body {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
}

.abx-pfh-bottom-buttons {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.abx-pfh-bottom-btn-primary {
    background: var(--abx-pfh-warm) !important;
    color: #ffffff !important;
    border: none !important;
}

.abx-pfh-bottom-btn-primary:hover {
    background: var(--abx-pfh-warm-hover) !important;
    transform: translateY(-2px);
    box-shadow: var(--abx-pfh-shadow-sm);
}

.abx-pfh-bottom-btn-outline {
    background: transparent !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.abx-pfh-bottom-btn-outline:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
}

.abx-pfh-bottom-chips {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.abx-pfh-bottom-chip {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.35rem 0.9rem;
    border-radius: var(--abx-pfh-radius-pill);
}

/* ─── CARD MOBILE ─── */
@media (max-width: 768px) {
    .abx-pfh-card {
        padding: 22px;
        min-height: auto;
    }
    .abx-pfh-card-header {
        flex-direction: column;
        gap: 0.75rem;
    }
    .abx-pfh-card-score-section {
        align-items: flex-start;
        flex-direction: row;
        gap: 0.5rem;
        width: 100%;
    }
    .abx-pfh-hotel-name {
        font-size: 1.2rem;
    }
    .abx-pfh-metrics-row {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .abx-pfh-metric-item {
        min-width: 0;
    }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
    .abx-pfh-hero {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 2.5rem;
        padding: clamp(28px, 4vw, 48px);
    }
    .abx-pfh-hero-right {
        max-width: 100%;
        justify-self: center;
    }
    .abx-pfh-checklist-card {
        max-width: 100%;
    }
}

@media (max-width: 900px) {
    .abx-pfh-shell {
        width: calc(100% - 32px);
        padding: clamp(20px, 3vw, 32px);
    }
    .abx-pfh-hero {
        padding: 1.75rem;
    }
    .abx-pfh-hero-action {
        flex-direction: column;
        align-items: stretch;
    }
    .abx-pfh-hero-action .abx-btn {
        width: 100%;
    }
    .abx-pfh-bottom-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .abx-pfh-bottom-buttons .abx-btn {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .abx-pfh-shell {
        width: calc(100% - 24px);
        padding: 1.25rem;
        border-radius: 20px;
    }
    .abx-pfh-hero {
        padding: 1.25rem;
        border-radius: 16px;
        gap: 1.5rem;
    }
    .abx-pfh-headline {
        font-size: 1.6rem;
    }
    .abx-pfh-body {
        font-size: 1rem;
    }
    .abx-pfh-search-card {
        padding: 1.25rem;
        border-radius: 16px;
    }
    .abx-pfh-bottom-cta-inner {
        padding: 2rem 1.25rem;
        border-radius: 20px;
    }
    .abx-pfh-bottom-chips {
        gap: 0.6rem;
    }
    .abx-pfh-form-grid {
        gap: 1rem;
    }
    .abx-pfh-form-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .abx-pfh-submit-btn {
        width: 100%;
    }
    .abx-pfh-reset-link {
        text-align: center;
        margin-top: 0.5rem;
    }
}
