.haroone-holster-finder {
    --hf-bg: #fbfaf6;
    --hf-surface: #ffffff;
    --hf-ink: #131313;
    --hf-muted: #62645e;
    --hf-soft: #f4f1e9;
    --hf-line: #ded8ce;
    --hf-green: #47664d;
    --hf-green-dark: #1d4634;
    --hf-yellow: #f6bd06;
    --hf-yellow-dark: #d9a404;
    --hf-shadow: 0 18px 50px rgba(28, 24, 18, 0.12);
    --hf-shadow-sm: 0 8px 24px rgba(28, 24, 18, 0.08);
    --hf-radius: 8px;
    --hf-radius-lg: 8px;

    background: var(--hf-bg);
    color: var(--hf-ink);
    display: block;
    font-family: inherit;
    margin: 0 calc(50% - 50vw) 56px;
    max-width: 100vw;
    overflow: hidden;
    width: 100vw;
}

.haroone-holster-finder *,
.haroone-holster-finder *::before,
.haroone-holster-finder *::after {
    box-sizing: border-box;
}

.haroone-holster-finder ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hf-sr-only {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.haroone-holster-finder button {
    appearance: none;
    background-image: none !important;
    box-shadow: none;
    text-shadow: none;
    text-transform: none;
}

.haroone-holster-finder button::before,
.haroone-holster-finder button::after,
.haroone-holster-finder button:hover::before,
.haroone-holster-finder button:hover::after,
.haroone-holster-finder button:focus::before,
.haroone-holster-finder button:focus::after,
.haroone-holster-finder button:active::before,
.haroone-holster-finder button:active::after {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    content: none !important;
    display: none !important;
    opacity: 0 !important;
    transform: none !important;
}

.haroone-holster-finder--loading {
    cursor: progress;
}

.hf-ajax-loader {
    align-items: center;
    background: rgba(8, 8, 6, 0.34);
    display: flex;
    inset: 0;
    justify-content: center;
    opacity: 0;
    padding: 18px;
    pointer-events: none;
    position: fixed;
    transition: opacity 160ms ease, visibility 160ms ease;
    visibility: hidden;
    z-index: 9999;
}

.haroone-holster-finder--loading .hf-ajax-loader {
    opacity: 1;
    visibility: visible;
}

.hf-ajax-loader__panel {
    align-items: center;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
        rgba(17, 16, 12, 0.92);
    border: 1px solid rgba(246, 189, 6, 0.42);
    border-radius: var(--hf-radius);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.34);
    color: #ffffff;
    display: inline-flex;
    font-size: 14px;
    font-weight: 800;
    gap: 12px;
    line-height: 1.2;
    min-height: 54px;
    padding: 14px 18px;
}

.hf-ajax-loader__spinner {
    animation: hfLoaderSpin 760ms linear infinite;
    border: 3px solid rgba(255, 255, 255, 0.24);
    border-top-color: var(--hf-yellow);
    border-radius: 50%;
    flex: 0 0 24px;
    height: 24px;
    width: 24px;
}

.hf-ajax-loader__message {
    display: inline-block;
    min-width: 126px;
}

@keyframes hfLoaderSpin {
    to {
        transform: rotate(360deg);
    }
}

.haroone-holster-finder--loading .hf-applied-toolbar,
.haroone-holster-finder--loading .hf-finder-layout,
.haroone-holster-finder--loading .hf-results {
    opacity: 0.58;
    pointer-events: none;
    transition: opacity 160ms ease;
}

.haroone-holster-finder--loading .hf-submit-btn,
.haroone-holster-finder--loading .hf-sort-select,
.haroone-holster-finder--loading .hf-applied-chip,
.haroone-holster-finder--loading .hf-toolbar-clear,
.haroone-holster-finder--loading .hf-reset {
    cursor: progress !important;
}

.hf-container {
    margin: 0 auto;
    max-width: 1380px;
    padding: 44px 18px 58px;
    position: relative;
}

.hf-container::before {
    background:
        linear-gradient(120deg, rgba(71, 102, 77, 0.05) 0 1px, transparent 1px 24px),
        linear-gradient(25deg, rgba(246, 189, 6, 0.04) 0 1px, transparent 1px 30px);
    content: "";
    inset: 0 -80px auto;
    height: 310px;
    opacity: 0.45;
    pointer-events: none;
    position: absolute;
}

.hf-header {
    margin: 0 auto 32px;
    max-width: 720px;
    position: relative;
    text-align: center;
    z-index: 1;
}

.hf-eyebrow {
    align-items: center;
    color: var(--hf-green-dark);
    display: inline-flex;
    font-size: 13px;
    font-weight: 800;
    gap: 8px;
    letter-spacing: 0.02em;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.hf-eyebrow .fa {
    color: var(--hf-green);
    font-size: 16px;
}

.hf-title {
    color: var(--hf-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 52px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.05;
    margin: 0;
    text-transform: none;
}

.hf-subtitle,
.hf-trust {
    color: var(--hf-muted);
    font-size: 17px;
    line-height: 1.55;
    margin: 14px auto 0;
}

.hf-trust {
    align-items: center;
    color: var(--hf-green-dark);
    display: inline-flex;
    font-size: 14px;
    font-weight: 700;
    gap: 8px;
    justify-content: center;
}

.hf-trust-icon {
    align-items: center;
    color: currentColor;
    display: inline-flex;
    flex: 0 0 auto;
    height: 16px;
    justify-content: center;
    margin-top: -1px;
    width: 16px;
}

.hf-trust-icon svg {
    display: block;
    fill: none;
    height: 16px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
    width: 16px;
}

.hf-progress {
    --hf-progress-fill: 0%;

    align-items: start;
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 auto 28px;
    max-width: 840px;
    position: relative;
    z-index: 1;
}

.hf-progress[data-hf-progress-step="2"] {
    --hf-progress-fill: 50%;
}

.hf-progress[data-hf-progress-step="3"] {
    --hf-progress-fill: 100%;
}

.hf-progress-line {
    background: rgba(255, 255, 255, 0.28);
    height: 2px;
    left: 15%;
    position: absolute;
    right: 15%;
    top: 22px;
}

.hf-progress-line::before {
    background: var(--hf-yellow);
    content: "";
    display: block;
    height: 100%;
    transition: width 180ms ease;
    width: var(--hf-progress-fill);
}

.hf-progress-step {
    color: var(--hf-muted);
    display: grid;
    gap: 6px;
    justify-items: center;
    min-width: 0;
    position: relative;
    text-align: center;
}

.hf-progress-step span {
    align-items: center;
    background: #ffffff;
    border: 2px solid var(--hf-line);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(28, 24, 18, 0.08);
    color: var(--hf-ink);
    display: inline-flex;
    font-size: 16px;
    font-weight: 800;
    height: 44px;
    justify-content: center;
    position: relative;
    width: 44px;
    z-index: 1;
}

.hf-progress-step--active span {
    background: var(--hf-yellow);
    border-color: #ffd957;
    box-shadow: 0 0 0 5px rgba(246, 189, 6, 0.22), 0 8px 18px rgba(246, 189, 6, 0.35);
}

.hf-progress-step--complete span {
    background: var(--hf-yellow);
    border-color: var(--hf-yellow);
    box-shadow: 0 2px 8px rgba(28, 24, 18, 0.08);
    color: #111111;
}

.hf-progress-step strong {
    color: var(--hf-ink);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
}

.hf-progress-step small {
    color: var(--hf-muted);
    font-size: 12px;
    line-height: 1.25;
}

.hf-finder-layout {
    align-items: start;
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
    margin: 0 auto;
    max-width: 100%;
    position: relative;
    z-index: 1;
}

.hf-main-column {
    display: grid;
    gap: 16px;
    min-width: 0;
}

.hf-form {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(222, 216, 206, 0.9);
    border-radius: var(--hf-radius-lg);
    box-shadow: var(--hf-shadow);
    margin: 0;
    padding: 32px;
}

.hf-form-header {
    align-items: center;
    display: grid;
    gap: 16px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    margin: 0 0 28px;
}

.hf-form-icon {
    align-items: center;
    background: var(--hf-green);
    border-radius: 50%;
    color: #ffffff;
    display: inline-flex;
    font-size: 23px;
    height: 52px;
    justify-content: center;
    width: 52px;
}

.hf-form-header h2 {
    color: var(--hf-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    margin-bottom: 0px !important;
    text-transform: none;
}

.hf-form-header p {
    color: var(--hf-muted);
    font-size: 14px;
    line-height: 1.45;
    margin: 5px 0 0;
}

.hf-form-header .hf-privacy {
    align-items: center;
    color: var(--hf-muted);
    display: inline-flex;
    font-size: 12px;
    gap: 8px;
    margin: 0;
    white-space: nowrap;
}

.hf-field-grid {
    display: grid;
    gap: 26px 28px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hf-step-panel {
    display: grid;
    gap: 26px;
}

.hf-step-panel[hidden] {
    display: none !important;
}

.hf-field {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin: 0;
    min-width: 0;
}

.hf-field--hidden {
    display: none !important;
}

.hf-field label,
.hf-field > label:first-child {
    align-items: center;
    color: var(--hf-ink);
    display: inline-flex;
    font-size: 13px;
    font-weight: 800;
    gap: 8px;
    line-height: 1.2;
    margin: 0;
}

.hf-field label .fa {
    color: #849075;
    font-size: 13px;
    font-weight: 400;
}

.hf-input,
.hf-select {
    background-color: #ffffff;
    border: 1px solid #d9d4c9;
    border-radius: var(--hf-radius);
    box-shadow: 0 1px 0 rgba(28, 24, 18, 0.03);
    color: var(--hf-ink);
    font-family: inherit;
    font-size: 14px;
    height: 48px;
    min-width: 0;
    padding: 0 14px;
    transition: border-color 160ms ease, box-shadow 160ms ease;
    width: 100%;
}

.haroone-holster-finder .hf-input,
.haroone-holster-finder .hf-select {
    background-color: #ffffff !important;
    border: 1px solid #d9d4c9 !important;
    border-radius: var(--hf-radius) !important;
    box-shadow: 0 1px 0 rgba(28, 24, 18, 0.03) !important;
    color: var(--hf-ink) !important;
    height: 48px !important;
    line-height: normal;
    min-height: 48px !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
}

.haroone-holster-finder .hf-select {
    padding-right: 42px !important;
}

.hf-input::placeholder {
    color: #8d95a4;
}

.hf-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='8' viewBox='0 0 13 8'%3E%3Cpath d='M1 1.25L6.5 6.75L12 1.25' stroke='%23222623' stroke-width='1.7' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-position: right 14px center;
    background-repeat: no-repeat;
    cursor: pointer;
    padding-right: 42px;
}

.hf-input:hover,
.hf-select:hover,
.hf-choice:hover {
    border-color: #bfb6a6;
}

.hf-input:focus,
.hf-select:focus {
    border-color: var(--hf-yellow) !important;
    box-shadow: 0 0 0 3px rgba(246, 189, 6, 0.22) !important;
    outline: 0;
}

.hf-input-wrap {
    background-color: #ffffff;
    border: 1px solid #d9d4c9;
    border-radius: var(--hf-radius);
    box-shadow: 0 1px 0 rgba(28, 24, 18, 0.03);
    height: 48px;
    position: relative;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.hf-input-wrap .hf-input {
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    height: 100% !important;
    min-height: 0 !important;
    padding-left: 14px !important;
    padding-right: 42px !important;
}

.hf-input-wrap:hover {
    border-color: #bfb6a6;
}

.hf-input-wrap:focus-within {
    border-color: var(--hf-yellow);
    box-shadow: 0 0 0 3px rgba(246, 189, 6, 0.22);
}

.hf-input-wrap .hf-input:focus {
    border-color: transparent !important;
    box-shadow: none !important;
}

.hf-input-wrap > .fa {
    color: var(--hf-ink);
    font-size: 16px;
    pointer-events: none;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.hf-help-link {
    color: var(--hf-green-dark);
    font-size: 12px;
    font-weight: 700;
    text-decoration: underline;
    width: max-content;
}

.hf-chip-row {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: start;
}

.hf-chip-row span {
    color: var(--hf-muted);
    font-size: 12px;
    font-weight: 800;
    grid-column: 1 / -1;
    line-height: 1.1;
}

.hf-chip {
    appearance: none;
    animation: none !important;
    background: #f4f4f3 !important;
    background-image: none !important;
    border: 1px solid #d8d5cf !important;
    border-radius: 999px !important;
    box-shadow: none !important;
    color: #636b75 !important;
    cursor: pointer;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 12px;
    font-weight: 700;
    justify-content: center;
    line-height: 1 !important;
    min-width: max-content;
    overflow: hidden;
    padding: 5px 13px !important;
    position: relative;
    text-shadow: none !important;
    text-transform: none !important;
    transform: none !important;
    transition: none !important;
    vertical-align: middle;
    white-space: nowrap;
}

.haroone-holster-finder .hf-chip::before,
.haroone-holster-finder .hf-chip::after,
.haroone-holster-finder .hf-chip:hover::before,
.haroone-holster-finder .hf-chip:hover::after,
.haroone-holster-finder .hf-chip:focus::before,
.haroone-holster-finder .hf-chip:focus::after,
.haroone-holster-finder .hf-chip:active::before,
.haroone-holster-finder .hf-chip:active::after {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    content: none !important;
    display: none !important;
    opacity: 0 !important;
    transform: none !important;
    transition: none !important;
}

.hf-chip:hover,
.hf-chip:focus,
.hf-chip:active,
.hf-chip--active {
    background: #fff6d9 !important;
    background-image: none !important;
    border-color: var(--hf-yellow) !important;
    box-shadow: none !important;
    color: var(--hf-ink) !important;
    transform: none !important;
    transition: none !important;
}

.hf-choice-group {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hf-choice {
    align-items: center;
    background: #ffffff;
    border: 1px solid #d9d4c9;
    border-radius: var(--hf-radius);
    cursor: pointer;
    display: flex;
    font-size: 13px;
    font-weight: 700;
    gap: 6px;
    justify-content: center;
    line-height: 1.15;
    min-height: 48px;
    overflow: visible;
    padding: 0 8px;
    position: relative;
    text-align: center;
    text-transform: none !important;
}

.hf-choice > span {
    display: block;
    min-width: 0;
    overflow: visible;
    overflow-wrap: normal;
    text-overflow: clip;
    white-space: normal;
}

.hf-choice-input {
    height: 1px;
    opacity: 0;
    position: absolute;
    width: 1px;
}

.hf-choice--selected {
    border-color: var(--hf-yellow);
    box-shadow: 0 0 0 1px var(--hf-yellow) inset;
}

.hf-choice--selected::after {
    align-items: center;
    background: var(--hf-yellow);
    border-radius: 50%;
    color: #ffffff;
    content: "\f00c";
    display: inline-flex;
    flex: 0 0 16px;
    font-family: FontAwesome;
    font-size: 9px;
    height: 16px;
    justify-content: center;
    position: static;
    width: 16px;
}

.hf-helper {
    align-self: end;
    color: var(--hf-muted);
    display: grid;
    gap: 6px;
    min-height: 48px;
}

.hf-helper strong {
    color: var(--hf-ink);
    font-size: 13px;
}

.hf-helper span {
    font-size: 13px;
    line-height: 1.35;
}

.hf-action-panel {
    align-self: end;
    display: grid;
    gap: 10px;
    grid-column: 3 / 4;
}

.hf-submit-btn {
    align-items: center;
    background: var(--hf-yellow);
    border: 1px solid var(--hf-yellow);
    border-radius: var(--hf-radius);
    color: #111111;
    cursor: pointer;
    display: inline-flex;
    font-size: 14px;
    font-weight: 800;
    gap: 10px;
    height: 52px;
    justify-content: center;
    letter-spacing: 0;
    padding: 0 18px;
    text-decoration: none;
    text-transform: none;
    transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
    width: 100%;
}

.hf-submit-btn span {
    min-width: 0;
    overflow-wrap: normal;
    text-align: center;
}

.haroone-holster-finder .hf-submit-btn::before,
.haroone-holster-finder .hf-submit-btn::after,
.haroone-holster-finder .hf-submit-btn:hover::before,
.haroone-holster-finder .hf-submit-btn:hover::after,
.haroone-holster-finder .hf-submit-btn:focus::before,
.haroone-holster-finder .hf-submit-btn:focus::after,
.haroone-holster-finder .hf-submit-btn:active::before,
.haroone-holster-finder .hf-submit-btn:active::after {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    content: none !important;
    display: none !important;
    opacity: 0 !important;
    transform: none !important;
}

.hf-submit-btn:hover,
.hf-submit-btn:focus {
    background: var(--hf-yellow) !important;
    border-color: var(--hf-yellow) !important;
    box-shadow: none !important;
    color: #111111 !important;
    transform: none !important;
}

.hf-submit-btn:active {
    background: var(--hf-yellow) !important;
    border-color: var(--hf-yellow) !important;
    color: #111111 !important;
    transform: none !important;
}

.hf-secondary-btn {
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--hf-line);
    border-radius: var(--hf-radius);
    color: var(--hf-ink);
    cursor: pointer;
    display: inline-flex;
    font-size: 13px;
    font-weight: 800;
    gap: 8px;
    height: 42px;
    justify-content: center;
    padding: 0 14px;
    text-decoration: none;
    transition: background-color 160ms ease, border-color 160ms ease;
    width: 100%;
}

.hf-secondary-btn:hover,
.hf-secondary-btn:focus {
    background: #f7f5ef !important;
    border-color: var(--hf-yellow) !important;
    color: var(--hf-ink) !important;
}

.hf-action-panel p {
    align-items: center;
    color: var(--hf-muted);
    display: flex;
    font-size: 12px;
    gap: 7px;
    justify-content: center;
    margin: 0;
}

.hf-action-panel p .fa {
    color: var(--hf-green);
}

.hf-reset {
    color: var(--hf-muted);
    display: inline-flex;
    font-size: 13px;
    font-weight: 800;
    justify-self: center;
    text-decoration: underline;
}

.hf-submit-btn:focus-visible,
.hf-reset:focus-visible,
.hf-card-media:focus-visible,
.hf-card-title a:focus-visible,
.hf-card-cta:focus-visible,
.hf-help-link:focus-visible,
.hf-help-card a:focus-visible,
.hf-chip:focus-visible,
.hf-applied-chip:focus-visible,
.hf-toolbar-edit:focus-visible,
.hf-toolbar-clear:focus-visible,
.hf-sort-select:focus-visible,
.hf-secondary-btn:focus-visible,
.hf-choice:focus-within {
    outline: 2px solid var(--hf-green);
    outline-offset: 2px;
}

.hf-assurance {
    display: grid;
    gap: 12px;
}

.hf-assurance-card,
.hf-help-card {
    background: rgba(241, 239, 231, 0.82);
    border: 1px solid rgba(222, 216, 206, 0.72);
    border-radius: var(--hf-radius-lg);
    box-shadow: var(--hf-shadow-sm);
    padding: 24px;
}

.hf-assurance-card {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hf-assurance-item,
.hf-help-card {
    display: grid;
    gap: 14px;
    grid-template-columns: auto minmax(0, 1fr);
}

.hf-assurance-item {
    align-items: start;
    column-gap: 14px;
    grid-template-columns: 46px minmax(0, 1fr);
}

.hf-assurance-item > div {
    min-width: 0;
}

.hf-help-text {
    align-items: center;
    color: var(--hf-muted);
    display: flex;
    flex-wrap: wrap;
    font-size: 13px;
    gap: 6px;
    justify-content: center;
    line-height: 1.45;
    margin: 0;
    margin-top: 30px;
    text-align: center;
}

.hf-help-text strong {
    color: var(--hf-ink);
    font-weight: 900;
}

.hf-help-text a {
    color: var(--hf-green-dark);
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hf-assurance-item > .fa,
.hf-help-card > .fa {
    align-items: center;
    border: 1px solid #c8d0c2;
    border-radius: 50%;
    color: var(--hf-green-dark);
    display: inline-flex;
    font-size: 25px;
    height: 44px;
    justify-content: center;
    width: 44px;
}

.hf-assurance-item > .fa {
    align-self: start;
    margin-top: 1px;
}

.hf-assurance-item strong,
.hf-help-card strong {
    color: var(--hf-ink);
    display: block;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.3;
    margin: 0 0 7px;
}

.hf-assurance-item strong {
    line-height: 1.25;
    margin-bottom: 4px;
}

.hf-assurance-item p,
.hf-help-card p {
    color: var(--hf-muted);
    font-size: 13px;
    line-height: 1.45;
    margin: 0;
}

.hf-help-card a {
    color: var(--hf-green-dark);
    display: inline-flex;
    font-size: 13px;
    font-weight: 900;
    margin-top: 6px;
    text-decoration: underline;
}

.hf-benefits {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(222, 216, 206, 0.88);
    border-radius: var(--hf-radius);
    box-shadow: 0 8px 26px rgba(28, 24, 18, 0.06);
    display: grid;
    gap: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0;
    max-width: none;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.hf-benefits div {
    align-content: center;
    align-items: start;
    column-gap: 14px;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    grid-template-rows: auto auto;
    min-height: 92px;
    padding: 14px 18px;
    row-gap: 2px;
}

.hf-benefits div + div {
    border-left: 1px solid rgba(222, 216, 206, 0.88);
}

.hf-benefits .fa {
    align-items: center;
    background: #f6f1df;
    border: 1px solid #e2d7b3;
    border-radius: 50%;
    color: var(--hf-green-dark);
    display: inline-flex;
    font-size: 15px;
    grid-column: 1;
    grid-row: 1 / 3;
    height: 34px;
    justify-content: center;
    margin-top: 1px;
    width: 34px;
}

.hf-benefits strong {
    color: var(--hf-ink);
    display: block;
    font-size: 13px;
    font-weight: 900;
    grid-column: 2;
    grid-row: 1;
    line-height: 1.25;
    margin: 0;
}

.hf-benefits span {
    color: var(--hf-muted);
    display: block;
    font-size: 12px;
    grid-column: 2;
    grid-row: 2;
    line-height: 1.3;
    margin: 0;
}

.hf-finder-layout--submitted {
    display: none;
}

.hf-finder-layout--submitted.hf-finder-layout--editing {
    display: grid;
    margin-top: 18px;
}

.hf-applied-toolbar {
    align-items: center;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(222, 216, 206, 0.9);
    border-radius: var(--hf-radius);
    box-shadow: var(--hf-shadow-sm);
    display: grid;
    gap: 22px;
    grid-template-columns: 230px minmax(0, 1fr) auto 136px;
    margin: 0 auto 30px;
    max-width: 1440px;
    padding: 22px 24px;
    position: relative;
    z-index: 1;
}

.hf-applied-summary {
    align-items: center;
    border-right: 1px solid var(--hf-line);
    display: grid;
    gap: 14px;
    grid-template-columns: auto minmax(0, 1fr);
    min-width: 0;
    padding-right: 22px;
}

.hf-applied-summary-icon {
    align-items: center;
    background: var(--hf-green);
    border-radius: 50%;
    color: #ffffff;
    display: inline-flex;
    font-size: 25px;
    height: 56px;
    justify-content: center;
    width: 56px;
}

.hf-applied-summary strong {
    color: var(--hf-ink);
    display: block;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.25;
    margin: 0 0 4px;
}

.hf-applied-summary span:not(.hf-applied-summary-icon) {
    color: var(--hf-muted);
    display: block;
    font-size: 12px;
    line-height: 1.35;
}

.hf-applied-list {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    min-width: 0;
}

.hf-applied-filter {
    display: grid;
    flex: 0 1 auto;
    gap: 7px;
    max-width: 160px;
    min-width: 94px;
}

.hf-applied-label,
.hf-sort-form label {
    color: var(--hf-muted);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.1;
}

.hf-applied-chip {
    align-items: center;
    background: var(--hf-soft);
    border: 1px solid var(--hf-line);
    border-radius: var(--hf-radius);
    color: var(--hf-ink);
    display: inline-flex;
    font-size: 12px;
    font-weight: 800;
    gap: 10px;
    height: 32px;
    justify-content: space-between;
    max-width: 100%;
    min-width: 0;
    padding: 0 12px;
    text-decoration: none;
}

.hf-applied-chip span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hf-applied-chip .fa {
    color: var(--hf-muted);
    flex: 0 0 auto;
    font-size: 11px;
}

.hf-applied-chip:hover,
.hf-applied-chip:focus {
    background: #fff6d9;
    border-color: var(--hf-yellow);
    color: var(--hf-ink);
    text-decoration: none;
}

.hf-applied-actions {
    align-items: center;
    border-left: 1px solid var(--hf-line);
    border-right: 1px solid var(--hf-line);
    display: flex;
    gap: 18px;
    justify-content: center;
    padding: 0 22px;
}

.hf-toolbar-edit {
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--hf-ink);
    border-radius: var(--hf-radius);
    color: var(--hf-ink);
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    gap: 8px;
    height: 36px;
    justify-content: center;
    min-width: 112px;
    padding: 0 13px;
    text-decoration: none;
}

.hf-toolbar-edit:hover,
.hf-toolbar-edit:focus {
    background: var(--hf-yellow);
    border-color: var(--hf-yellow);
    color: #111111;
    text-decoration: none;
}

.hf-toolbar-clear {
    color: var(--hf-ink);
    font-size: 12px;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
    white-space: nowrap;
}

.hf-sort-form {
    display: grid;
    gap: 7px;
    min-width: 0;
}

.hf-sort-select {
    appearance: none;
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='8' viewBox='0 0 13 8'%3E%3Cpath d='M1 1.25L6.5 6.75L12 1.25' stroke='%23222623' stroke-width='1.7' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-position: right 12px center;
    background-repeat: no-repeat;
    border: 1px solid #d9d4c9;
    border-radius: var(--hf-radius);
    color: var(--hf-ink);
    cursor: pointer;
    font-family: inherit;
    font-size: 12px;
    font-weight: 800;
    height: 38px;
    padding: 0 34px 0 12px;
    width: 100%;
}

.hf-sort-select:focus {
    border-color: var(--hf-yellow);
    box-shadow: 0 0 0 3px rgba(246, 189, 6, 0.22);
    outline: 0;
}

.hf-results {
    border-top: 1px solid var(--hf-line);
    margin: 42px auto 0;
    padding-top: 30px;
    position: relative;
    z-index: 1;
}

.hf-results-header {
    align-items: end;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    margin: 0 0 24px;
}

.hf-results-kicker {
    color: var(--hf-muted);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    margin: 0 0 5px;
    text-transform: uppercase;
}

.hf-results-title {
    color: var(--hf-ink);
    font-size: 26px;
    line-height: 1.2;
    margin: 0;
    text-transform: none;
}

.hf-results-count {
    color: var(--hf-ink);
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
}

.hf-results-perks {
    align-items: center;
    color: var(--hf-muted);
    display: flex;
    flex-wrap: wrap;
    gap: 12px 26px;
    margin: -8px 0 28px;
}

.hf-results-perks span {
    align-items: center;
    display: inline-flex;
    font-size: 12px;
    gap: 8px;
    line-height: 1.35;
}

.hf-results-perks span + span {
    border-left: 1px solid var(--hf-line);
    padding-left: 26px;
}

.hf-results-perks .fa {
    color: var(--hf-green-dark);
    font-size: 14px;
}

.hf-results-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hf-card {
    background: var(--hf-surface);
    border: 1px solid var(--hf-line);
    border-radius: var(--hf-radius);
    box-shadow: 0 8px 22px rgba(28, 24, 18, 0.07);
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    transition: box-shadow 180ms ease, transform 180ms ease;
}

.hf-card:hover {
    box-shadow: 0 16px 34px rgba(28, 24, 18, 0.12);
    transform: translateY(-2px);
}

.hf-card-media {
    aspect-ratio: 4 / 3;
    background: #f7f5ef;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    border-bottom: 1px solid var(--hf-line);
    display: block;
    position: relative;
}

.hf-card-img {
    display: block;
    height: 100%;
    object-fit: contain;
    padding: 14px;
    width: 100%;
}

.hf-badge {
    align-items: center;
    background: var(--hf-yellow);
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 999px;
    color: #111111;
    display: inline-flex;
    font-size: 11px;
    font-weight: 800;
    gap: 5px;
    left: 12px;
    letter-spacing: 0;
    line-height: 1;
    padding: 7px 11px;
    position: absolute;
    text-transform: none;
    top: 12px;
    z-index: 1;
    white-space: nowrap;
}

.hf-badge .fa {
    color: currentColor;
    font-size: 10px;
    line-height: 1;
}

.hf-badge--good {
    background: #7a3f16;
    border-color: rgba(246, 189, 6, 0.5);
    color: #fff7df;
}

.hf-badge--alt {
    background: #2b3034;
    border-color: rgba(255, 255, 255, 0.22);
    color: #ffffff;
}

.hf-card-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 9px;
    padding: 16px;
}

.hf-card-title {
    color: var(--hf-ink);
    font-size: 15px;
    font-weight: 900;
    line-height: 1.35;
    margin: 0;
}

.hf-card-title a,
.hf-card-title a:visited {
    border-bottom: 0 !important;
    color: var(--hf-ink) !important;
    text-decoration: none !important;
}

.hf-card-title a:hover,
.hf-card-title a:focus,
.hf-card-title a:active {
    color: var(--hf-ink) !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
    text-decoration: none !important;
}

.hf-results .hf-card-title a,
.hf-results .hf-card-title a:visited,
.hf-results .hf-card-title a:hover,
.hf-results .hf-card-title a:focus,
.hf-results .hf-card-title a:active,
.hf-results .hf-card-media,
.hf-results .hf-card-media:visited,
.hf-results .hf-card-media:hover,
.hf-results .hf-card-media:focus,
.hf-results .hf-card-media:active {
    color: var(--hf-ink) !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
    text-decoration: none !important;
}

.hf-card-price {
    color: var(--hf-ink);
    display: grid;
    gap: 5px;
    font-size: 16px;
    font-weight: 900;
    margin: 0;
}

.hf-card-price-current {
    color: var(--hf-ink);
    font-size: 18px;
    line-height: 1.1;
}

.hf-card-price--sale .hf-card-price-current {
    color: #111111;
    font-size: 20px;
}

.hf-card-price-row {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hf-card-price-original {
    color: #77736b;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    position: relative;
    text-decoration: line-through;
    text-decoration-color: #111111;
    text-decoration-thickness: 1.5px;
}

.hf-card-save-badge {
    background: var(--hf-yellow);
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 999px;
    color: #111111;
    display: inline-flex;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.02em;
    line-height: 1;
    padding: 5px 8px;
    text-transform: uppercase;
}

.hf-card-reasons {
    display: grid;
    gap: 4px;
    margin: 2px 0 0;
}

.hf-card-reasons li {
    align-items: flex-start;
    color: var(--hf-muted);
    display: flex;
    font-size: 12px;
    gap: 7px;
    line-height: 1.4;
}

.hf-card-reasons .fa {
    color: var(--hf-yellow-dark);
    flex: 0 0 auto;
    margin-top: 2px;
}

.hf-card-cta {
    align-items: center;
    border: 1px solid var(--hf-ink);
    border-radius: var(--hf-radius);
    color: var(--hf-ink);
    display: inline-flex;
    font-size: 13px;
    font-weight: 900;
    justify-content: center;
    margin-top: auto;
    min-height: 42px;
    padding: 0 14px;
    text-decoration: none;
    transition: background-color 160ms ease, color 160ms ease;
}

.hf-card-cta:hover {
    background: var(--hf-yellow);
    border-color: var(--hf-yellow);
    color: #111111;
    text-decoration: none;
}

.hf-results .hf-card-media:focus-visible,
.hf-results .hf-card-title a:focus-visible,
.hf-results .hf-card-cta:focus-visible {
    outline-color: var(--hf-yellow);
}

.hf-empty {
    background: var(--hf-surface);
    border: 1px dashed var(--hf-line);
    border-radius: var(--hf-radius-lg);
    padding: 48px 18px;
    text-align: center;
}

.hf-empty-title {
    color: var(--hf-ink);
    font-size: 22px;
    font-weight: 900;
    margin: 0 0 8px;
}

.hf-empty-text {
    color: var(--hf-muted);
    font-size: 14px;
    line-height: 1.55;
    margin: 0 auto;
    max-width: 520px;
}

.hf-empty-form {
    background: rgba(10, 10, 8, 0.52);
    border: 1px solid rgba(246, 189, 6, 0.34);
    border-radius: var(--hf-radius);
    display: grid;
    gap: 16px;
    margin: 26px auto 0;
    max-width: 720px;
    padding: 18px;
    text-align: left;
}

.hf-empty-form-intro {
    align-items: center;
    display: grid;
    gap: 12px;
    grid-template-columns: auto minmax(0, 1fr);
}

.hf-empty-form-intro .fa {
    align-items: center;
    background: rgba(246, 189, 6, 0.1);
    border: 1px solid rgba(246, 189, 6, 0.54);
    border-radius: 50%;
    color: var(--hf-yellow);
    display: inline-flex;
    height: 40px;
    justify-content: center;
    width: 40px;
}

.hf-empty-form-intro strong {
    color: var(--hf-ink);
    display: block;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.25;
}

.hf-empty-form-intro span {
    color: var(--hf-muted);
    display: block;
    font-size: 13px;
    line-height: 1.45;
    margin-top: 3px;
}

.hf-empty-form-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr;
}

.hf-empty-field {
    display: grid;
    gap: 7px;
    margin: 0;
}

.hf-empty-field span {
    color: var(--hf-ink);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.02em;
    line-height: 1;
    text-transform: uppercase;
}

.hf-empty-input,
.hf-empty-textarea {
    appearance: none;
    background: rgba(255, 255, 255, 0.055) !important;
    border: 1px solid rgba(255, 255, 255, 0.28) !important;
    border-radius: var(--hf-radius);
    box-shadow: none !important;
    color: var(--hf-ink) !important;
    font-size: 14px;
    line-height: 1.45;
    outline: none;
    padding: 12px 13px;
    transition: none !important;
    width: 100%;
}

.hf-empty-textarea {
    min-height: 104px;
    resize: vertical;
}

.hf-empty-input::placeholder,
.hf-empty-textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.hf-empty-input:hover,
.hf-empty-textarea:hover,
.hf-empty-input:focus,
.hf-empty-textarea:focus {
    background: rgba(255, 255, 255, 0.055) !important;
    border-color: var(--hf-yellow) !important;
    box-shadow: 0 0 0 3px rgba(246, 189, 6, 0.18) !important;
    color: var(--hf-ink) !important;
}

.hf-empty-input:-webkit-autofill,
.hf-empty-input:-webkit-autofill:hover,
.hf-empty-input:-webkit-autofill:focus,
.hf-empty-textarea:-webkit-autofill,
.hf-empty-textarea:-webkit-autofill:hover,
.hf-empty-textarea:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #1c1b17 inset !important;
    -webkit-text-fill-color: var(--hf-ink) !important;
    border-color: rgba(255, 255, 255, 0.28) !important;
    caret-color: var(--hf-ink) !important;
    transition: background-color 9999s ease-out 0s !important;
}

.hf-empty-input:-webkit-autofill:focus,
.hf-empty-textarea:-webkit-autofill:focus {
    border-color: var(--hf-yellow) !important;
    box-shadow:
        0 0 0 1000px #1c1b17 inset,
        0 0 0 3px rgba(246, 189, 6, 0.18) !important;
}

.hf-empty-selection {
    color: var(--hf-muted);
    font-size: 12px;
    line-height: 1.45;
    margin: -2px 0 0;
}

.hf-empty-submit {
    align-items: center;
    appearance: none;
    background: var(--hf-yellow) !important;
    border: 1px solid var(--hf-yellow) !important;
    border-radius: var(--hf-radius) !important;
    box-shadow: none !important;
    color: #111111 !important;
    cursor: pointer;
    display: inline-flex;
    font-size: 14px;
    font-weight: 900;
    gap: 10px;
    justify-content: center;
    justify-self: start;
    line-height: 1 !important;
    min-height: 44px;
    min-width: 170px;
    padding: 0 20px !important;
    text-decoration: none !important;
    text-transform: none !important;
    transform: none !important;
    transition: none !important;
}

.hf-empty-submit:hover,
.hf-empty-submit:focus,
.hf-empty-submit:active {
    background: var(--hf-yellow) !important;
    border-color: var(--hf-yellow) !important;
    box-shadow: none !important;
    color: #111111 !important;
    text-decoration: none !important;
    transform: none !important;
}

.hf-empty-honeypot {
    height: 1px !important;
    left: -9999px !important;
    opacity: 0 !important;
    position: absolute !important;
    width: 1px !important;
}

/* Dark gold mockup theme */
.haroone-holster-finder {
    --hf-bg: #0b0b09;
    --hf-surface: rgba(19, 18, 14, 0.82);
    --hf-ink: #ffffff;
    --hf-muted: #c8c2b7;
    --hf-soft: rgba(255, 255, 255, 0.06);
    --hf-line: rgba(246, 189, 6, 0.28);
    --hf-green: #f6bd06;
    --hf-green-dark: #f6bd06;
    --hf-yellow: #f6bd06;
    --hf-yellow-dark: #d9a404;
    --hf-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
    --hf-shadow-sm: 0 18px 44px rgba(0, 0, 0, 0.28);

    background:
        linear-gradient(90deg, rgba(246, 189, 6, 0.38) 0%, rgba(103, 79, 7, 0.18) 18%, rgba(12, 13, 11, 0) 36%, rgba(12, 13, 11, 0) 64%, rgba(103, 79, 7, 0.2) 82%, rgba(246, 189, 6, 0.42) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 26%),
        linear-gradient(180deg, #0c0d0b 0%, #11100c 54%, #191606 100%);
    color: var(--hf-ink);
    isolation: isolate;
    margin: 0 calc(50% - 50vw);
    max-width: 100vw;
    min-height: 840px;
    position: relative;
    width: 100vw;
}

body.holsterfinder-index-index .page-main,
body.holsterfinder-index-index .columns,
body.holsterfinder-index-index .column.main {
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
}

body.holsterfinder-index-index .page-main {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    padding-top: 0 !important;
}

.hf-container {
    max-width: 1420px;
    padding: 52px 24px 82px;
}

.hf-container::before,
.hf-container::after {
    border: 0;
    border-radius: 0;
    content: "";
    inset: 0 auto auto 50%;
    pointer-events: none;
    position: absolute;
    width: 100vw;
    z-index: 0;
}

.hf-container::before {
    background:
        linear-gradient(90deg, transparent 0%, rgba(246, 189, 6, 0.1) 18%, rgba(255, 255, 255, 0.06) 50%, rgba(246, 189, 6, 0.1) 82%, transparent 100%);
    box-shadow: none;
    height: 640px;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 64%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 64%, transparent 100%);
    opacity: 0.72;
    transform: translateX(-50%);
}

.hf-container::after {
    content: none;
    display: none;
}

.hf-header,
.hf-progress,
.hf-finder-layout,
.hf-results {
    position: relative;
    z-index: 1;
}

.hf-header {
    margin-bottom: 32px;
    max-width: 760px;
}

.hf-eyebrow {
    color: var(--hf-yellow);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.03em;
    margin-bottom: 12px;
}

.hf-eyebrow .fa {
    color: var(--hf-yellow);
}

.hf-title {
    color: #ffffff;
    font-size: 66px;
    letter-spacing: 0;
    line-height: 0.98;
    text-shadow: 0 18px 38px rgba(0, 0, 0, 0.42);
}

.hf-subtitle {
    color: #e2ded6;
    font-size: 17px;
    line-height: 1.45;
    margin-top: 14px;
}

.hf-trust {
    color: #f8d164;
    font-size: 14px;
    font-weight: 800;
    margin-top: 18px;
}

.hf-progress {
    margin-bottom: 28px;
    max-width: 760px;
}

.hf-progress-line {
    background: rgba(255, 255, 255, 0.28);
    left: 15%;
    right: 15%;
}

.hf-progress-line::before {
    background: var(--hf-yellow);
    box-shadow: 0 0 20px rgba(246, 189, 6, 0.6);
}

.hf-progress-step {
    color: #d6d0c8;
}

.hf-progress-step span {
    background: rgba(18, 18, 15, 0.82);
    border-color: rgba(255, 255, 255, 0.34);
    color: #ffffff;
    height: 42px;
    width: 42px;
}

.hf-progress-step--active span,
.hf-progress-step--complete span {
    background: var(--hf-yellow);
    border-color: #ffe073;
    color: #111111;
}

.hf-progress-step strong {
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
}

.hf-progress-step small {
    color: #c8c2b7;
}

.hf-finder-layout {
    gap: 24px;
    grid-template-columns: 1fr;
    max-width: 100%;
}

.hf-form,
.hf-assurance-card,
.hf-help-card,
.hf-benefits,
.hf-card,
.hf-empty {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02)),
        rgba(17, 16, 12, 0.76);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(246, 189, 6, 0.3);
    box-shadow: var(--hf-shadow);
    color: #ffffff;
}

.hf-form {
    padding: 30px 30px 28px;
}

.hf-form-icon,
.hf-assurance-item > .fa,
.hf-help-card > .fa,
.hf-benefits .fa {
    background: rgba(246, 189, 6, 0.07);
    border: 1px solid rgba(246, 189, 6, 0.56);
    color: var(--hf-yellow);
}

.hf-form-header h2,
.hf-benefits strong,
.hf-assurance-item strong,
.hf-help-card strong,
.hf-help-text strong,
.hf-results-title,
.hf-empty-title,
.hf-card-title,
.hf-card-title a {
    color: #ffffff;
}

.hf-form-header p,
.hf-form-header .hf-privacy,
.hf-assurance-item p,
.hf-help-card p,
.hf-help-text,
.hf-benefits span,
.hf-empty-text,
.hf-card-reasons li {
    color: #d5cec2;
}

.hf-field label,
.hf-field > label:first-child {
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.hf-field label .fa {
    color: #d4c9a8;
}

.haroone-holster-finder .hf-input,
.haroone-holster-finder .hf-select,
.hf-input-wrap {
    background-color: rgba(255, 255, 255, 0.052) !important;
    border-color: rgba(255, 255, 255, 0.28) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
    color: #ffffff !important;
}

.haroone-holster-finder .hf-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='8' viewBox='0 0 13 8'%3E%3Cpath d='M1 1.25L6.5 6.75L12 1.25' stroke='%23f6bd06' stroke-width='1.7' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
}

.haroone-holster-finder .hf-select option {
    background: #15130e;
    color: #ffffff;
}

.hf-input::placeholder {
    color: rgba(255, 255, 255, 0.48);
}

.hf-input-wrap:hover,
.hf-input:hover,
.hf-select:hover,
.hf-choice:hover {
    border-color: rgba(246, 189, 6, 0.55) !important;
}

.hf-input:focus,
.hf-select:focus,
.hf-input-wrap:focus-within {
    border-color: var(--hf-yellow) !important;
    box-shadow: 0 0 0 3px rgba(246, 189, 6, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

.hf-input-wrap > .fa {
    color: #ffffff;
}

.haroone-holster-finder .hf-input,
.haroone-holster-finder .hf-input:focus,
.haroone-holster-finder .hf-input:active,
.haroone-holster-finder .hf-input:target,
.haroone-holster-finder .hf-input:not(:placeholder-shown),
.haroone-holster-finder .hf-select,
.haroone-holster-finder .hf-select:focus,
.haroone-holster-finder .hf-select:active,
.haroone-holster-finder .hf-select:target {
    background-color: rgba(255, 255, 255, 0.052) !important;
    color: #ffffff !important;
    caret-color: #ffffff;
}

.haroone-holster-finder .hf-input-wrap .hf-input,
.haroone-holster-finder .hf-input-wrap .hf-input:focus,
.haroone-holster-finder .hf-input-wrap .hf-input:active,
.haroone-holster-finder .hf-input-wrap .hf-input:target,
.haroone-holster-finder .hf-input-wrap .hf-input:not(:placeholder-shown) {
    background-color: transparent !important;
    color: #ffffff !important;
}

.haroone-holster-finder input.hf-input:-webkit-autofill,
.haroone-holster-finder input.hf-input:-webkit-autofill:hover,
.haroone-holster-finder input.hf-input:-webkit-autofill:focus,
.haroone-holster-finder input.hf-input:-webkit-autofill:active,
.haroone-holster-finder .hf-input-wrap input.hf-input:-webkit-autofill,
.haroone-holster-finder .hf-input-wrap input.hf-input:-webkit-autofill:hover,
.haroone-holster-finder .hf-input-wrap input.hf-input:-webkit-autofill:focus,
.haroone-holster-finder .hf-input-wrap input.hf-input:-webkit-autofill:active {
    -webkit-background-clip: border-box !important;
    -webkit-box-shadow: 0 0 0 1000px #25231e inset !important;
    -webkit-text-fill-color: #ffffff !important;
    background-clip: border-box !important;
    background-color: #25231e !important;
    background-image: none !important;
    box-shadow: 0 0 0 1000px #25231e inset !important;
    caret-color: #ffffff !important;
    color: #ffffff !important;
    transition: background-color 999999s ease-in-out 0s, color 999999s ease-in-out 0s !important;
}

.haroone-holster-finder .hf-input-wrap:has(input.hf-input:-webkit-autofill) {
    background-color: #25231e !important;
    border-color: var(--hf-yellow) !important;
    box-shadow: 0 0 0 3px rgba(246, 189, 6, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

.hf-help-link,
.hf-help-card a,
.hf-help-text a,
.hf-reset {
    color: var(--hf-yellow);
}

.haroone-holster-finder .hf-help-link,
.haroone-holster-finder .hf-help-link:visited,
.haroone-holster-finder .hf-help-link:hover,
.haroone-holster-finder .hf-help-link:focus,
.haroone-holster-finder .hf-help-link:active,
.haroone-holster-finder .hf-help-card a,
.haroone-holster-finder .hf-help-card a:visited,
.haroone-holster-finder .hf-help-card a:hover,
.haroone-holster-finder .hf-help-card a:focus,
.haroone-holster-finder .hf-help-card a:active,
.haroone-holster-finder .hf-help-text a,
.haroone-holster-finder .hf-help-text a:visited,
.haroone-holster-finder .hf-help-text a:hover,
.haroone-holster-finder .hf-help-text a:focus,
.haroone-holster-finder .hf-help-text a:active,
.haroone-holster-finder .hf-reset,
.haroone-holster-finder .hf-reset:visited,
.haroone-holster-finder .hf-reset:hover,
.haroone-holster-finder .hf-reset:focus,
.haroone-holster-finder .hf-reset:active {
    color: var(--hf-yellow) !important;
    text-decoration-color: var(--hf-yellow) !important;
}

.hf-chip {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    color: #d7d1c7 !important;
}

.haroone-holster-finder .hf-chip-row {
    grid-template-columns: none;
}

.haroone-holster-finder .hf-chip-row span {
    color: #d5cec2;
}

.hf-chip:hover,
.hf-chip:focus,
.hf-chip:active,
.hf-chip--active {
    background: rgba(246, 189, 6, 0.16) !important;
    border-color: var(--hf-yellow) !important;
    box-shadow: inset 0 0 0 1px rgba(246, 189, 6, 0.42) !important;
    color: #ffffff !important;
}

.hf-choice {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.22);
    color: #ffffff;
}

.hf-choice--selected {
    border-color: var(--hf-yellow);
    box-shadow: 0 0 0 1px rgba(246, 189, 6, 0.72) inset;
}

.hf-helper strong,
.hf-helper span,
.hf-action-panel p,
.hf-card-price,
.hf-card-price-current {
    color: #ffffff;
}

.haroone-holster-finder .hf-card-price,
.haroone-holster-finder .hf-card-price-current {
    color: #ffffff !important;
}

.haroone-holster-finder .hf-card-price--sale .hf-card-price-current {
    color: var(--hf-yellow) !important;
}

.haroone-holster-finder .hf-card-price-original {
    color: #d3c9ba !important;
    text-decoration-color: var(--hf-yellow) !important;
}

.hf-secondary-btn {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.hf-secondary-btn:hover,
.hf-secondary-btn:focus {
    background: rgba(246, 189, 6, 0.12) !important;
    border-color: var(--hf-yellow) !important;
    color: #ffffff !important;
}

.haroone-holster-finder .hf-submit-btn {
    background-color: var(--hf-yellow) !important;
    background-image: linear-gradient(180deg, #ffd858 0%, var(--hf-yellow) 58%, #e7a900 100%) !important;
    border-color: rgba(255, 221, 97, 0.95);
    box-shadow: 0 12px 28px rgba(246, 189, 6, 0.2);
    color: #111111 !important;
}

.haroone-holster-finder .hf-submit-btn:hover,
.haroone-holster-finder .hf-submit-btn:focus,
.haroone-holster-finder .hf-submit-btn:active {
    background-color: var(--hf-yellow) !important;
    background-image: linear-gradient(180deg, #ffdf70 0%, var(--hf-yellow) 58%, #e7a900 100%) !important;
    border-color: rgba(255, 230, 132, 1) !important;
    color: #111111 !important;
}

.hf-assurance-card,
.hf-help-card {
    padding: 24px;
}

.hf-assurance-card {
    gap: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
}

.hf-assurance-item {
    border-color: rgba(246, 189, 6, 0.16);
    align-content: center;
    min-height: 96px;
    padding: 17px 24px;
}

.hf-assurance-item + .hf-assurance-item {
    border-left: 1px solid rgba(246, 189, 6, 0.14);
    border-top: 0;
    padding-top: 17px;
}

.hf-assurance-item:not(:last-child) {
    padding-bottom: 17px;
}

.hf-help-text {
    color: #d5cec2;
}

.hf-help-card {
    border-color: rgba(246, 189, 6, 0.16);
}

.hf-benefits {
    box-shadow: var(--hf-shadow-sm);
}

.hf-benefits div {
    min-height: 94px;
    padding: 17px 24px;
}

.hf-benefits div + div {
    border-left-color: rgba(246, 189, 6, 0.18);
}

.hf-results {
    border-top-color: rgba(246, 189, 6, 0.24);
}

.haroone-holster-finder .hf-applied-toolbar {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02)),
        rgba(17, 16, 12, 0.78) !important;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-color: rgba(246, 189, 6, 0.3) !important;
    box-shadow: var(--hf-shadow-sm);
    color: #ffffff;
}

.haroone-holster-finder .hf-applied-summary,
.haroone-holster-finder .hf-applied-actions {
    border-color: rgba(246, 189, 6, 0.18);
}

.haroone-holster-finder .hf-applied-summary-icon {
    background: rgba(246, 189, 6, 0.08);
    border: 1px solid rgba(246, 189, 6, 0.56);
    color: var(--hf-yellow);
}

.haroone-holster-finder .hf-applied-summary strong,
.haroone-holster-finder .hf-applied-chip,
.haroone-holster-finder .hf-toolbar-clear,
.haroone-holster-finder .hf-sort-select,
.haroone-holster-finder .hf-toolbar-edit {
    color: #ffffff;
}

.haroone-holster-finder .hf-applied-summary span:not(.hf-applied-summary-icon),
.haroone-holster-finder .hf-applied-label,
.haroone-holster-finder .hf-sort-form label,
.haroone-holster-finder .hf-applied-chip .fa {
    color: #d5cec2;
}

.haroone-holster-finder .hf-applied-chip {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(246, 189, 6, 0.22);
}

.haroone-holster-finder .hf-applied-chip:hover,
.haroone-holster-finder .hf-applied-chip:focus {
    background: rgba(246, 189, 6, 0.18);
    border-color: var(--hf-yellow);
    color: #ffffff;
}

.haroone-holster-finder .hf-toolbar-edit,
.haroone-holster-finder .hf-sort-select {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(246, 189, 6, 0.55);
}

.haroone-holster-finder .hf-toolbar-edit:hover,
.haroone-holster-finder .hf-toolbar-edit:focus {
    background: var(--hf-yellow);
    border-color: var(--hf-yellow);
    color: #111111;
}

.haroone-holster-finder .hf-sort-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='8' viewBox='0 0 13 8'%3E%3Cpath d='M1 1.25L6.5 6.75L12 1.25' stroke='%23f6bd06' stroke-width='1.7' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.haroone-holster-finder .hf-sort-select option {
    background: #15130e;
    color: #ffffff;
}

.hf-results-kicker,
.hf-card-reasons .fa {
    color: var(--hf-yellow);
}

.hf-card-media {
    background-color: rgba(255, 255, 255, 0.92);
    border-bottom-color: rgba(246, 189, 6, 0.18);
}

.hf-badge {
    background: var(--hf-yellow);
    border-color: rgba(255, 221, 97, 0.8);
    color: #111111;
}

.hf-badge--good {
    background: #7a3f16;
    border-color: rgba(246, 189, 6, 0.52);
    color: #fff7df;
}

.hf-badge--alt {
    background: #2b3034;
    border-color: rgba(255, 255, 255, 0.22);
    color: #ffffff;
}

.hf-card-price-original {
    color: #bdb5a7;
    text-decoration-color: var(--hf-yellow);
}

.hf-card-cta,
.hf-card-cta:visited,
.haroone-holster-finder .hf-card-cta:visited {
    border-color: rgba(246, 189, 6, 0.72);
    color: #ffffff !important;
}

.hf-card-cta:hover,
.hf-card-cta:focus,
.hf-card-cta:active {
    color: #111111 !important;
}

@media (prefers-reduced-motion: reduce) {
    .haroone-holster-finder * {
        animation-duration: 0.001ms !important;
        transition-duration: 0.001ms !important;
    }
}

@media (max-width: 1180px) {
    .hf-finder-layout {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .hf-applied-toolbar {
        grid-template-columns: minmax(0, 1fr) 180px;
        max-width: 980px;
    }

    .hf-applied-summary,
    .hf-applied-list {
        grid-column: 1 / -1;
    }

    .hf-applied-summary {
        border-bottom: 1px solid var(--hf-line);
        border-right: 0;
        padding: 0 0 18px;
    }

    .hf-applied-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hf-applied-actions {
        border-left: 0;
        border-right: 0;
        justify-content: flex-start;
        padding: 0;
    }

    .hf-results-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hf-assurance {
        grid-template-columns: 1fr;
    }

    .hf-assurance-card {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hf-assurance-item {
        grid-template-columns: auto minmax(0, 1fr);
    }
}

@media (max-width: 900px) {
    .hf-title {
        font-size: 42px;
    }

    .hf-progress {
        display: none;
    }

    .hf-form {
        padding: 24px;
    }

    .hf-form-header {
        align-items: start;
        grid-template-columns: auto minmax(0, 1fr);
    }

    .hf-form-header .hf-privacy {
        grid-column: 1 / -1;
        white-space: normal;
    }

    .hf-field-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hf-action-panel {
        grid-column: 1 / -1;
    }

    .hf-assurance,
    .hf-assurance-card,
    .hf-benefits,
    .hf-results-grid {
        grid-template-columns: 1fr;
    }

    .hf-applied-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hf-results-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hf-empty-form-grid {
        grid-template-columns: 1fr;
    }

    .hf-assurance-item {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .hf-benefits div + div {
        border-left: 0;
        border-top: 1px solid rgba(222, 216, 206, 0.88);
    }

    .hf-results-perks span + span {
        border-left: 0;
        padding-left: 0;
    }
}

@media (max-width: 640px) {
    .hf-container {
        padding: 30px 12px 42px;
    }

    .hf-title {
        font-size: 34px;
    }

    .hf-subtitle {
        font-size: 14px;
    }

    .hf-form {
        padding: 18px;
    }

    .hf-applied-toolbar {
        gap: 18px;
        grid-template-columns: 1fr;
        margin-bottom: 24px;
        padding: 18px;
    }

    .hf-applied-list {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hf-applied-filter {
        max-width: none;
        min-width: 0;
    }

    .hf-applied-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
    }

    .hf-toolbar-edit {
        width: 100%;
    }

    .hf-results-perks {
        align-items: flex-start;
        flex-direction: column;
    }

    .hf-form-header {
        gap: 12px;
    }

    .hf-form-icon {
        font-size: 19px;
        height: 44px;
        width: 44px;
    }

    .hf-form-header h2 {
        font-size: 19px;
    }

    .hf-field-grid,
    .hf-choice-group {
        grid-template-columns: 1fr;
    }

    .hf-action-panel {
        gap: 9px;
    }

    .hf-submit-btn {
        font-size: 14px;
        min-width: 0;
        width: 100%;
    }

    .hf-assurance-card {
        grid-template-columns: 1fr;
    }

    .hf-assurance-item + .hf-assurance-item {
        border-left: 0;
        border-top: 1px solid rgba(246, 189, 6, 0.14);
    }

    .hf-benefits {
        gap: 16px;
        margin-top: 22px;
    }

    .hf-results-header {
        align-items: start;
        flex-direction: column;
    }

    .hf-results-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .haroone-holster-finder .hf-benefits div + div {
        border-left: 0;
        border-top-color: rgba(246, 189, 6, 0.18);
    }
}

@media (max-width: 640px) {
    .haroone-holster-finder {
        min-height: 0;
    }

    .haroone-holster-finder .hf-container::before,
    .haroone-holster-finder .hf-container::after {
        height: 360px;
        opacity: 0.6;
        width: 100vw;
    }

    .haroone-holster-finder .hf-container::before {
        left: 50%;
        top: 0;
        transform: translateX(-50%);
    }
}
