/* SH Forms & Quotations frontend v2.7.0 */
.shfq-inline-wrap,
.shfq-trigger-wrap,
.shfq-quote-shell {
    width: 100%;
    box-sizing: border-box;
}

.shfq-panel,
.shfq-panel *,
.shfq-quote-card,
.shfq-quote-card * {
    box-sizing: border-box;
}

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

.shfq-panel {
    --shfq-accent: #1769e0;
    --shfq-bg: #fff;
    --shfq-text: #172033;
    --shfq-border: #cfd6e2;
    --shfq-max: 620px;
    --shfq-radius: 14px;
    --shfq-button-radius: 8px;
    position: relative;
    width: min(100%, var(--shfq-max));
    max-width: 100%;
    overflow: hidden;
    border: 1px solid #d9dee6;
    border: 1px solid color-mix(in srgb, var(--shfq-border) 78%, transparent);
    border-radius: var(--shfq-radius);
    background: var(--shfq-bg);
    color: var(--shfq-text);
    box-shadow: 0 20px 55px rgba(27, 42, 66, .14);
    font-family: inherit;
}

.shfq-panel--inline {
    margin: 24px auto;
}

.shfq-panel--modal {
    z-index: 2;
    max-height: calc(100dvh - 40px);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.shfq-panel__header {
    padding: clamp(22px, 4vw, 34px) clamp(20px, 5vw, 38px) 12px;
}

.shfq-panel__title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    min-width: 0;
    margin: 0 0 8px;
}

.shfq-panel__header h2 {
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
    color: var(--shfq-text);
    font-size: clamp(24px, 4vw, 34px);
    line-height: 1.12;
    letter-spacing: -.025em;
}

.shfq-panel__header > p {
    margin: 0;
    color: #5d687a;
    color: color-mix(in srgb, var(--shfq-text) 72%, transparent);
    font-size: 15px;
    line-height: 1.55;
}

.shfq-panel__header .shfq-product {
    display: block;
    width: fit-content;
    max-width: 100%;
    margin: 0 0 12px;
    padding: 6px 10px;
    overflow: hidden;
    border-radius: 999px;
    background: #eef4fc;
    background: color-mix(in srgb, var(--shfq-accent) 9%, var(--shfq-bg));
    color: var(--shfq-text);
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.shfq-panel__close {
    all: unset !important;
    position: relative !important;
    z-index: 3 !important;
    flex: 0 0 32px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    width: 32px !important;
    min-width: 32px !important;
    max-width: 32px !important;
    height: 32px !important;
    min-height: 32px !important;
    max-height: 32px !important;
    margin: -5px -5px 0 auto !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 50% !important;
    background: #f1f3f6 !important;
    background: color-mix(in srgb, var(--shfq-text) 7%, var(--shfq-bg)) !important;
    color: var(--shfq-text) !important;
    box-shadow: none !important;
    cursor: pointer !important;
}

.shfq-panel__close:hover,
.shfq-panel__close:focus-visible {
    background: #e5e9ef !important;
    background: color-mix(in srgb, var(--shfq-text) 12%, var(--shfq-bg)) !important;
    color: var(--shfq-text) !important;
}

.shfq-panel__close:focus-visible {
    outline: 2px solid var(--shfq-accent) !important;
    outline-offset: 2px !important;
}

.shfq-panel__close::before,
.shfq-panel__close::after {
    content: none !important;
    display: none !important;
}

.shfq-panel__close svg {
    display: block !important;
    flex: 0 0 18px !important;
    width: 18px !important;
    height: 18px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.shfq-form {
    padding: 14px clamp(20px, 5vw, 38px) clamp(24px, 5vw, 38px);
}

.shfq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.shfq-field {
    grid-column: 1 / -1;
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.shfq-field--half {
    grid-column: auto;
}

.shfq-field > label,
.shfq-field > legend {
    display: block;
    margin: 0 0 6px;
    padding: 0;
    color: var(--shfq-text);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
}

.shfq-field em {
    color: #d13535;
    font-style: normal;
}

.shfq-field input:not([type="checkbox"]):not([type="radio"]),
.shfq-field textarea,
.shfq-field select {
    display: block;
    width: 100%;
    min-height: 46px;
    margin: 0;
    padding: 10px 12px;
    border: 1px solid var(--shfq-border);
    border-radius: 7px;
    outline: none;
    background: var(--shfq-bg);
    color: var(--shfq-text);
    font: inherit;
    font-size: 15px;
    line-height: 1.35;
    box-shadow: none;
    transition: border-color 150ms ease, box-shadow 150ms ease;
}

.shfq-field textarea {
    min-height: 112px;
    resize: vertical;
}

.shfq-field input:focus,
.shfq-field textarea:focus,
.shfq-field select:focus {
    border-color: var(--shfq-accent);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--shfq-accent) 15%, transparent);
}

.shfq-field input[aria-invalid="true"],
.shfq-field textarea[aria-invalid="true"],
.shfq-field select[aria-invalid="true"] {
    border-color: #d13535;
}

.shfq-country {
    position: relative;
}

.shfq-country__control {
    position: relative;
}

.shfq-field .shfq-country__value {
    padding-right: 42px;
    cursor: text;
}

.shfq-country__toggle {
    all: unset !important;
    position: absolute !important;
    top: 1px !important;
    right: 1px !important;
    z-index: 2 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    width: 40px !important;
    min-width: 40px !important;
    max-width: 40px !important;
    height: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 6px 6px 0 !important;
    background: transparent !important;
    color: color-mix(in srgb, var(--shfq-text) 68%, transparent) !important;
    box-shadow: none !important;
    cursor: pointer !important;
}

.shfq-country__toggle:hover,
.shfq-country__toggle:focus-visible {
    background: color-mix(in srgb, var(--shfq-text) 6%, transparent) !important;
    color: var(--shfq-text) !important;
}

.shfq-country__toggle:focus-visible {
    outline: 2px solid var(--shfq-accent) !important;
    outline-offset: -3px !important;
}

.shfq-country.is-open .shfq-country__toggle svg {
    transform: rotate(180deg);
}

.shfq-country__panel {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    left: 0;
    z-index: 20;
    padding: 9px;
    border: 1px solid var(--shfq-border);
    border-radius: 10px;
    background: var(--shfq-bg);
    color: var(--shfq-text);
    box-shadow: 0 14px 35px rgba(27, 42, 66, .18);
}

.shfq-country__panel[hidden],
.shfq-country__option[hidden],
.shfq-country__empty[hidden] {
    display: none !important;
}

.shfq-country__search-wrap {
    position: relative;
    display: block;
    margin: 0 0 7px;
}

.shfq-country__search-wrap > svg {
    position: absolute;
    top: 50%;
    left: 12px;
    z-index: 1;
    color: color-mix(in srgb, var(--shfq-text) 55%, transparent);
    pointer-events: none;
    transform: translateY(-50%);
}

.shfq-field .shfq-country__search {
    min-height: 42px;
    padding: 8px 12px 8px 38px;
    border-radius: 8px;
    background: var(--shfq-bg);
}

.shfq-country__list {
    max-height: min(260px, 40vh);
    overflow-y: auto;
    margin: 0 -4px -4px;
    padding: 1px 4px 4px;
    overscroll-behavior: contain;
}

.shfq-country__option,
.shfq-country__empty {
    padding: 9px 10px;
    border-radius: 5px;
    font-size: 14px;
    line-height: 1.3;
}

.shfq-country__option {
    display: flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
}

.shfq-country__option::before {
    content: "";
    flex: 0 0 15px;
    width: 15px;
    height: 15px;
    border: 1.5px solid color-mix(in srgb, var(--shfq-accent) 72%, var(--shfq-border));
    border-radius: 4px;
    background: var(--shfq-bg);
    box-sizing: border-box;
}

.shfq-country__option:hover,
.shfq-country__option.is-active {
    background: color-mix(in srgb, var(--shfq-accent) 10%, var(--shfq-bg));
    color: var(--shfq-text);
}

.shfq-country__option[aria-selected="true"]::before {
    border-color: var(--shfq-accent);
    background: var(--shfq-accent);
    box-shadow: inset 0 0 0 3px var(--shfq-bg);
}

.shfq-country__empty {
    color: color-mix(in srgb, var(--shfq-text) 62%, transparent);
}

.shfq-field small {
    display: block;
    margin-top: 5px;
    color: #6a7484;
    color: color-mix(in srgb, var(--shfq-text) 62%, transparent);
    font-size: 12px;
    line-height: 1.4;
}

.shfq-field__error {
    display: block;
    min-height: 0;
    margin-top: 4px;
    color: #b42318;
    font-size: 12px;
    line-height: 1.35;
}

.shfq-field__error:empty {
    display: none;
}

.shfq-field--check > label,
.shfq-choice-list label {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-weight: 500;
    line-height: 1.45;
}

.shfq-field--check input,
.shfq-choice-list input {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin: 1px 0 0;
    accent-color: var(--shfq-accent);
}

.shfq-choice-list {
    display: grid;
    gap: 8px;
}

.shfq-actions {
    margin-top: 20px;
}

.shfq-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 20px;
    border: 0;
    border-radius: var(--shfq-button-radius, 8px);
    background: var(--shfq-accent, #1769e0);
    color: #fff;
    font: inherit;
    font-size: 14px;
    font-weight: 750;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 9px 22px color-mix(in srgb, var(--shfq-accent, #1769e0) 26%, transparent);
    transition: transform 150ms ease, filter 150ms ease;
}

.shfq-button:hover,
.shfq-button:focus-visible {
    color: #fff;
    filter: brightness(.92);
    transform: translateY(-1px);
}

.shfq-button[disabled] {
    opacity: .6;
    cursor: wait;
    transform: none;
}

.shfq-submit {
    width: 100%;
}

.shfq-status {
    min-height: 20px;
    margin-top: 10px;
    color: var(--shfq-text);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
}

.shfq-status.is-success { color: #087443; }
.shfq-status.is-error { color: #b42318; }

.shfq-success {
    min-height: 330px;
    padding: clamp(28px, 6vw, 52px) clamp(24px, 7vw, 58px);
    text-align: center;
}

.shfq-success[hidden],
[data-shfq-form-view][hidden],
[data-shfq-success-reference][hidden] {
    display: none !important;
}

.shfq-success .shfq-panel__title-row {
    position: relative;
    align-items: flex-start;
    justify-content: center;
    min-height: 36px;
    margin-bottom: 18px;
}

.shfq-success .shfq-panel__close {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    margin: -5px -5px 0 0 !important;
}

.shfq-success__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    margin: 0 auto;
    border-radius: 50%;
    background: #e8f7ef;
    background: color-mix(in srgb, var(--shfq-accent) 12%, var(--shfq-bg));
    color: var(--shfq-accent);
}

.shfq-success h2 {
    margin: 0 0 12px;
    color: var(--shfq-text);
    font-size: clamp(26px, 4vw, 34px);
    line-height: 1.15;
    letter-spacing: -.02em;
}

.shfq-success > p {
    max-width: 480px;
    margin: 0 auto 20px;
    color: #5d687a;
    color: color-mix(in srgb, var(--shfq-text) 72%, transparent);
    font-size: 16px;
    line-height: 1.6;
    white-space: pre-line;
}

.shfq-success .shfq-success__reference {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    max-width: 100%;
    margin: 0 auto 24px;
    padding: 8px 12px;
    border: 1px solid color-mix(in srgb, var(--shfq-border) 74%, transparent);
    border-radius: 8px;
    background: color-mix(in srgb, var(--shfq-text) 4%, var(--shfq-bg));
    font-size: 12px;
}

.shfq-success__reference code {
    overflow: hidden;
    color: var(--shfq-text);
    font-size: 11px;
    text-overflow: ellipsis;
}

.shfq-success__button {
    min-width: 180px;
}

.shfq-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.shfq-turnstile {
    margin-top: 18px;
}

.shfq-modal {
    position: fixed !important;
    inset: 0 !important;
    z-index: 2147483647 !important;
    display: none;
    align-items: center;
    justify-content: center;
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100vw !important;
    height: 100% !important;
    max-height: 100dvh !important;
    padding: 20px;
    overflow: hidden !important;
    overscroll-behavior: none;
}

.shfq-modal.is-open {
    display: flex !important;
}

.shfq-modal__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgba(8, 15, 29, .66);
    backdrop-filter: blur(4px);
    cursor: default;
}

body.shfq-modal-open {
    overflow: hidden !important;
    overscroll-behavior: none;
}

.shfq-quote-card {
    --shfq-quote-accent: #e69516;
    width: 100%;
    margin: 18px 0;
    padding: clamp(20px, 4vw, 28px);
    border: 1px solid #d8dee8;
    border: 1px solid color-mix(in srgb, var(--shfq-quote-accent) 55%, #dce2eb);
    border-radius: var(--shfq-card-radius, 14px);
    background: #fff;
    background: linear-gradient(145deg, color-mix(in srgb, var(--shfq-quote-accent) 7%, #fff), #fff 70%);
    box-shadow: 0 16px 38px rgba(30, 41, 59, .1);
    box-shadow: 0 16px 38px color-mix(in srgb, var(--shfq-quote-accent) 12%, transparent);
    color: #172033;
}

.shfq-quote-card.is-available { --shfq-quote-accent: #1a9d58; }
.shfq-quote-card.is-unavailable { --shfq-quote-accent: #d44747; }

.shfq-quote-card__status {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 10px;
    color: var(--shfq-quote-accent);
    color: color-mix(in srgb, var(--shfq-quote-accent) 80%, #172033);
    font-size: 14px;
}

.shfq-stock-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--shfq-quote-accent);
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--shfq-quote-accent) 45%, transparent);
    animation: shfq-pulse 1.8s infinite;
}

@keyframes shfq-pulse {
    70% { box-shadow: 0 0 0 8px transparent; }
    100% { box-shadow: 0 0 0 0 transparent; }
}

.shfq-quote-card h3 {
    margin: 0 0 7px;
    color: #172033;
    font-size: clamp(21px, 3vw, 28px);
    line-height: 1.2;
}

.shfq-quote-card > p {
    margin: 0 0 18px;
    color: #4b586d;
    font-size: 14px;
    line-height: 1.5;
}

.shfq-quote-card__button {
    width: 100%;
    --shfq-accent: var(--shfq-form-accent, #1769e0);
}

.shfq-benefits {
    display: grid;
    gap: 7px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
    color: #344156;
    font-size: 13px;
}

.shfq-benefits li::before {
    content: "✓";
    margin-right: 8px;
    color: #159451;
    font-weight: 800;
}

.shfq-floating {
    position: fixed !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    z-index: 2147483645 !important;
    --shfq-floating-x: 22px;
    --shfq-floating-y: 22px;
    --shfq-floating-mobile-x: 14px;
    --shfq-floating-mobile-y: 14px;
    --shfq-floating-translate-x: 0%;
    --shfq-floating-translate-y: 0px;
    --shfq-floating-enter-y: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 46px;
    padding: 12px 18px;
    border: 0;
    border-radius: 999px;
    background: var(--shfq-floating-bg, #1769e0);
    color: #fff;
    font: inherit;
    font-size: 13px;
    font-weight: 750;
    box-shadow: 0 13px 34px rgba(23, 105, 224, .32);
    opacity: 0;
    visibility: hidden;
    transform: translate(var(--shfq-floating-translate-x), calc(var(--shfq-floating-translate-y) + var(--shfq-floating-enter-y)));
    transition: 160ms ease;
    cursor: pointer;
}

.shfq-floating.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translate(var(--shfq-floating-translate-x), var(--shfq-floating-translate-y));
}

.shfq-floating--bottom-right { right: var(--shfq-floating-x) !important; bottom: var(--shfq-floating-y) !important; }
.shfq-floating--bottom-left { bottom: var(--shfq-floating-y) !important; left: var(--shfq-floating-x) !important; }
.shfq-floating--bottom-center { bottom: var(--shfq-floating-y) !important; left: 50% !important; --shfq-floating-translate-x: -50%; }
.shfq-floating--top-right { top: var(--shfq-floating-y) !important; right: var(--shfq-floating-x) !important; --shfq-floating-enter-y: -12px; }
.shfq-floating--top-left { top: var(--shfq-floating-y) !important; left: var(--shfq-floating-x) !important; --shfq-floating-enter-y: -12px; }
.shfq-floating--top-center { top: var(--shfq-floating-y) !important; left: 50% !important; --shfq-floating-translate-x: -50%; --shfq-floating-enter-y: -12px; }

.shfq-notice {
    padding: 10px 12px;
    border-left: 4px solid #dba617;
    background: #fff8dd;
}

@media (max-width: 640px) {
    .shfq-modal { padding: 10px; }
    .shfq-panel--modal { max-height: calc(100dvh - 20px); }
    .shfq-grid { grid-template-columns: 1fr; gap: 14px; }
    .shfq-field--half { grid-column: 1 / -1; }
    .shfq-floating {
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
        max-width: calc(100vw - 28px);
        white-space: nowrap;
        --shfq-floating-translate-x: 0%;
        --shfq-floating-translate-y: 0px;
        --shfq-floating-enter-y: 12px;
    }
    .shfq-floating--mobile-bottom-right { right: var(--shfq-floating-mobile-x) !important; bottom: var(--shfq-floating-mobile-y) !important; }
    .shfq-floating--mobile-bottom-left { bottom: var(--shfq-floating-mobile-y) !important; left: var(--shfq-floating-mobile-x) !important; }
    .shfq-floating--mobile-bottom-center { bottom: var(--shfq-floating-mobile-y) !important; left: 50% !important; --shfq-floating-translate-x: -50%; }
    .shfq-floating--mobile-top-right { top: var(--shfq-floating-mobile-y) !important; right: var(--shfq-floating-mobile-x) !important; --shfq-floating-enter-y: -12px; }
    .shfq-floating--mobile-top-left { top: var(--shfq-floating-mobile-y) !important; left: var(--shfq-floating-mobile-x) !important; --shfq-floating-enter-y: -12px; }
    .shfq-floating--mobile-top-center { top: var(--shfq-floating-mobile-y) !important; left: 50% !important; --shfq-floating-translate-x: -50%; --shfq-floating-enter-y: -12px; }
}

@media (prefers-reduced-motion: reduce) {
    .shfq-stock-dot { animation: none; }
    .shfq-button, .shfq-floating { transition: none; }
}
