.ltud-fqg {
    --ltud-fqg-border: #d7d7d7;
    --ltud-fqg-muted: #666;
    --ltud-fqg-accent: #1a9c00;
    --ltud-fqg-button: #b02a2f;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    box-sizing: border-box;
}

.ltud-fqg *,
.ltud-fqg *::before,
.ltud-fqg *::after { box-sizing: border-box; }

.ltud-fqg [hidden] { display: none !important; }

.ltud-fqg-header { text-align: center; margin-bottom: 24px; }
.ltud-fqg-header h2 { margin: 0 0 9px; }
.ltud-fqg-intro { max-width: 820px; margin: 0 auto; }
.ltud-fqg-intro p:last-child { margin-bottom: 0; }

.ltud-fqg-progress {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 4px;
    padding: 0;
    margin: 0 0 28px;
    list-style: none;
}

.ltud-fqg-progress li {
    position: relative;
    color: #777;
    font-size: 12px;
    text-align: center;
}

.ltud-fqg-step-button {
    position: relative;
    z-index: 1;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    cursor: pointer;
}
.ltud-fqg-step-button:disabled { cursor: default; }
.ltud-fqg-step-button:not(:disabled):hover em { text-decoration: underline; }
.ltud-fqg-step-button:focus-visible { outline: 3px solid rgba(176,42,47,.22); outline-offset: 4px; border-radius: 5px; }

.ltud-fqg-progress li::before {
    content: '';
    position: absolute;
    top: 16px;
    left: -52%;
    width: 104%;
    height: 2px;
    background: #ddd;
    z-index: 0;
}

.ltud-fqg-progress li:first-child::before { display: none; }
.ltud-fqg-progress li .ltud-fqg-step-button span {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 2px solid #ccc;
    border-radius: 50%;
    background: #fff;
    font-weight: 700;
}
.ltud-fqg-progress li .ltud-fqg-step-button em { font-style: normal; }
.ltud-fqg-progress li.is-available { color: #444; }
.ltud-fqg-progress li.is-active,
.ltud-fqg-progress li.is-complete { color: #222; }
.ltud-fqg-progress li.is-active .ltud-fqg-step-button span { border-color: var(--ltud-fqg-button); color: var(--ltud-fqg-button); }
.ltud-fqg-progress li.is-complete .ltud-fqg-step-button span { border-color: var(--ltud-fqg-accent); background: var(--ltud-fqg-accent); color: #fff; }
.ltud-fqg-progress li.is-complete::before,
.ltud-fqg-progress li.is-active::before { background: var(--ltud-fqg-accent); }

.ltud-fqg-panels {
    border: 1px solid var(--ltud-fqg-border);
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}
.ltud-fqg-step { padding: 30px; }
.ltud-fqg-step-heading { max-width: 850px; margin: 0 auto 24px; text-align: center; }
.ltud-fqg-step-heading > span { display: inline-block; margin-bottom: 5px; color: var(--ltud-fqg-button); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.ltud-fqg-step-heading h3 { margin: 0 0 7px; font-size: 25px; }
.ltud-fqg-step-heading p { margin: 0; color: var(--ltud-fqg-muted); }

.ltud-fqg-card-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    padding: 0;
    margin: 0;
    border: 0;
}
.ltud-fqg-card-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 850px; margin: 0 auto; }
.ltud-fqg-card { display: block; height: 100%; cursor: pointer; }
.ltud-fqg-card > input { position: absolute; opacity: 0; pointer-events: none; }
.ltud-fqg-card-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border: 2px solid var(--ltud-fqg-border);
    border-radius: 10px;
    background: #fff;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.ltud-fqg-card:hover .ltud-fqg-card-inner { transform: translateY(-2px); box-shadow: 0 7px 20px rgba(0,0,0,.09); }
.ltud-fqg-card > input:focus-visible + .ltud-fqg-card-inner { outline: 3px solid rgba(26,156,0,.22); outline-offset: 3px; }
.ltud-fqg-card > input:checked + .ltud-fqg-card-inner { border-color: var(--ltud-fqg-accent); box-shadow: 0 0 0 2px rgba(26,156,0,.12); }
.ltud-fqg-image-wrap { display: flex; align-items: center; justify-content: center; min-height: 160px; aspect-ratio: 16 / 10; padding: 14px; background: #f7f7f7; }
.ltud-fqg-image-wrap img { display: block; width: 100%; height: 100%; max-height: 185px; object-fit: contain; }
/* Uploaded Step 1 leather photos fill the same visual area as the built-in SVG artwork. */
.ltud-fqg-step[data-step="1"] .ltud-fqg-image-wrap--custom { padding: 0; overflow: hidden; }
.ltud-fqg-step[data-step="1"] .ltud-fqg-image-wrap--custom img { max-height: none; object-fit: cover; }
.ltud-fqg-card-copy { display: flex; flex: 1; flex-direction: column; gap: 4px; padding: 16px; text-align: center; }
.ltud-fqg-card-copy strong { font-size: 18px; line-height: 1.25; }
.ltud-fqg-card-copy span { color: var(--ltud-fqg-muted); font-size: 14px; }
.ltud-fqg-check { position: absolute; top: 10px; right: 10px; display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; background: var(--ltud-fqg-accent); color: #fff; font-weight: 700; opacity: 0; transform: scale(.75); transition: opacity .18s ease, transform .18s ease; }
.ltud-fqg-card > input:checked + .ltud-fqg-card-inner .ltud-fqg-check,
.ltud-fqg-swatch > input:checked ~ .ltud-fqg-check { opacity: 1; transform: scale(1); }

.ltud-fqg-piece-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
}
.ltud-fqg-piece-card > .ltud-fqg-card {
    flex: 1 1 auto;
    height: auto;
}
.ltud-fqg-piece-card > .ltud-fqg-card .ltud-fqg-card-inner {
    height: 100%;
}

.ltud-fqg-piece-card .ltud-fqg-image-wrap img { transform: none; transition: opacity .14s ease; }

.ltud-fqg-piece-options {
    position: relative;
    z-index: 1;
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 8px;
    padding-top: 9px;
}

.ltud-fqg-quantity { display: flex; align-items: center; justify-content: center; gap: 5px; }
.ltud-fqg-quantity button { width: 38px; height: 38px; border: 1px solid #aaa; background: #fff; border-radius: 5px; font-size: 22px; cursor: pointer; }
.ltud-fqg-quantity input { width: 55px; height: 38px; padding: 4px; text-align: center; border: 1px solid #aaa; border-radius: 5px; }
.ltud-fqg-xl-option { position: relative; display: flex; min-height: 38px; align-items: center; gap: 7px; padding: 5px 9px; border: 1px solid #999; border-radius: 5px; background: #fff; cursor: pointer; }
.ltud-fqg-xl-option input { position: absolute; opacity: 0; }
.ltud-fqg-xl-check { display: flex; width: 22px; height: 22px; align-items: center; justify-content: center; border: 2px solid #888; border-radius: 4px; background: #fff; color: transparent; font-size: 15px; font-weight: 800; line-height: 1; }
.ltud-fqg-xl-copy { display: flex; align-items: baseline; gap: 5px; line-height: 1; }
.ltud-fqg-xl-copy strong { font-size: 15px; }
.ltud-fqg-xl-copy small { color: var(--ltud-fqg-muted); font-size: 11px; white-space: nowrap; }
.ltud-fqg-xl-option:has(input:checked) { border-color: var(--ltud-fqg-accent); background: #f4fff2; box-shadow: 0 0 0 2px rgba(26,156,0,.10); }
.ltud-fqg-xl-option input:checked + .ltud-fqg-xl-check { border-color: var(--ltud-fqg-accent); background: var(--ltud-fqg-accent); color: #fff; }
.ltud-fqg-xl-option input:focus-visible + .ltud-fqg-xl-check { outline: 3px solid rgba(26,156,0,.22); outline-offset: 2px; }
.ltud-fqg-selection-summary {
    position: relative;
    z-index: 2;
    clear: both;
    min-height: 24px;
    margin-top: 20px;
    text-align: center;
    font-weight: 700;
}

.ltud-fqg-choice-list { display: grid; gap: 12px; max-width: 850px; padding: 0; margin: 0 auto; border: 0; }
.ltud-fqg-choice-list > legend { margin-bottom: 10px; font-size: 19px; font-weight: 700; }
.ltud-fqg-choice-list > label,
.ltud-fqg-care-option > label { display: flex; align-items: flex-start; gap: 11px; padding: 15px 17px; border: 1px solid var(--ltud-fqg-border); border-radius: 8px; background: #fff; cursor: pointer; }
.ltud-fqg-choice-list input,
.ltud-fqg-care-option input { flex: 0 0 auto; margin-top: 4px; }
.ltud-fqg-choice-list span,
.ltud-fqg-care-option span { display: flex; flex-direction: column; gap: 3px; }
.ltud-fqg-choice-list small,
.ltud-fqg-care-option small { color: var(--ltud-fqg-muted); }
.ltud-fqg-choice-copy-editor > :first-child { margin-top: 0; }
.ltud-fqg-choice-copy-editor > :last-child { margin-bottom: 0; }
.ltud-fqg-choice-copy-editor p { margin: 0; }
.ltud-fqg-choice-copy-editor strong { display: block; }
.ltud-fqg-choice-copy-editor small { display: block; color: var(--ltud-fqg-muted); }
.ltud-fqg-color-change-notice-content > :first-child { margin-top: 0; }
.ltud-fqg-color-change-notice-content > :last-child { margin-bottom: 10px; }
.ltud-fqg-color-change-notice { max-width: 850px; margin: 18px auto 0; padding: 17px; border-left: 4px solid #d08a00; background: #fff7e5; }
.ltud-fqg-color-change-notice h4 { margin-top: 0; }
.ltud-fqg-color-change-notice p { margin-bottom: 10px; }

.ltud-fqg-color-families { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 11px; max-width: 900px; padding: 0; margin: 0 auto; border: 0; }
.ltud-fqg-family-card { display: block; cursor: pointer; }
.ltud-fqg-family-card input { position: absolute; opacity: 0; }
.ltud-fqg-family-card span { display: flex; align-items: center; justify-content: center; min-height: 62px; padding: 10px; border: 2px solid var(--ltud-fqg-border); border-radius: 8px; background: #f8f8f8; font-weight: 700; text-align: center; }
.ltud-fqg-family-card input:checked + span { border-color: var(--ltud-fqg-accent); background: #f4fff2; }
.ltud-fqg-family-card.is-custom span { background: linear-gradient(135deg,#ef5350,#ffca28,#66bb6a,#42a5f5,#ab47bc); color: #111; text-shadow: 0 1px 1px rgba(255,255,255,.8); }

.ltud-fqg-exact-colors { max-width: 1180px; margin: 24px auto 0; }
.ltud-fqg-custom-color { max-width: 950px; margin: 24px auto 0; }
.ltud-fqg-swatch-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    max-width: 940px;
    padding: 0;
    margin: 0 auto;
    border: 0;
}
.ltud-fqg-swatch-grid > legend { grid-column: 1 / -1; margin-bottom: 4px; font-size: 20px; font-weight: 700; text-align: center; }
.ltud-fqg-swatch-group { min-width: 0; padding: 14px; border: 1px solid var(--ltud-fqg-border); border-radius: 10px; background: #fafafa; }
.ltud-fqg-swatch-group-title { margin: 0 0 10px; font-size: 17px; line-height: 1.25; text-align: center; }
.ltud-fqg-swatch-group-options {
    display: grid;
    grid-template-columns: repeat(var(--ltud-fqg-swatch-count, 3), minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
    border: 2px solid var(--ltud-fqg-border);
    border-radius: 9px;
    background: #fff;
}
.ltud-fqg-swatch {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    min-height: 124px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: #fff;
    cursor: pointer;
    text-align: center;
}
.ltud-fqg-swatch > input { position: absolute; opacity: 0; }
.ltud-fqg-swatch:has(input:checked) {
    background: #f4fff2;
    box-shadow: inset 0 0 0 3px var(--ltud-fqg-accent);
    z-index: 1;
}
.ltud-fqg-swatch-chip {
    display: block;
    width: 100%;
    height: 84px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}
.ltud-fqg-swatch-name {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 40px;
    padding: 8px 4px;
    border-top: 1px solid var(--ltud-fqg-border);
    border-right: 1px solid var(--ltud-fqg-border);
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: normal;
    font-size: clamp(10px, 1.05vw, 13px);
    font-weight: 700;
    line-height: 1.15;
}
.ltud-fqg-swatch:last-child .ltud-fqg-swatch-name { border-right: 0; }
.ltud-fqg-swatch .ltud-fqg-check { top: 10px; right: 10px; }
.ltud-fqg-custom-instructions { margin-bottom: 16px; padding: 15px; background: #f6f6f6; border-radius: 8px; }
.ltud-fqg-custom-instructions p:last-child { margin-bottom: 0; }
.ltud-fqg-care-option { max-width: 850px; margin: 24px auto 0; }
.ltud-fqg-care-option > label {
    position: relative;
    padding: 19px 20px;
    border: 2px solid #d79a24;
    background: linear-gradient(135deg, #fffaf0 0%, #fff5dc 100%);
    box-shadow: 0 8px 22px rgba(90, 62, 12, .10);
    transition: border-color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
}
.ltud-fqg-care-option > label:hover {
    border-color: #b97a08;
    box-shadow: 0 10px 26px rgba(90, 62, 12, .15);
    transform: translateY(-1px);
}
.ltud-fqg-care-copy { flex: 1 1 auto; align-items: flex-start; gap: 7px !important; }
.ltud-fqg-care-badge {
    display: inline-flex !important;
    width: auto;
    flex-direction: row !important;
    align-items: center;
    padding: 4px 9px;
    border-radius: 999px;
    background: #b86b00;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.ltud-fqg-care-copy .ltud-fqg-choice-copy-editor { gap: 4px; }
.ltud-fqg-care-copy .ltud-fqg-choice-copy-editor strong { font-size: 17px; }


.ltud-fqg-project-recap { margin-bottom: 16px; padding: 14px 16px; border-radius: 8px; background: #f4f4f4; }
.ltud-fqg-project-recap span { color: var(--ltud-fqg-muted); }
.ltud-fqg-selected-color { display: flex; align-items: center; gap: 13px; margin: 0 0 18px; padding: 14px 16px; border: 1px solid var(--ltud-fqg-border); border-radius: 8px; background: #fff; }
.ltud-fqg-selected-color-thumb { flex: 0 0 68px; width: 68px; height: 54px; border: 1px solid rgba(0,0,0,.22); border-radius: 6px; }
.ltud-fqg-selected-color-thumb.is-custom { background: linear-gradient(135deg,#ef5350,#ffca28,#66bb6a,#42a5f5,#ab47bc); }
.ltud-fqg-selected-color > span:last-child { display: flex; flex-direction: column; gap: 2px; }
.ltud-fqg-selected-color small { color: var(--ltud-fqg-muted); font-size: 13px; text-transform: uppercase; letter-spacing: .04em; }
.ltud-fqg-selected-color strong { font-size: 19px; }
.ltud-fqg-product-list { display: grid; gap: 10px; }
.ltud-fqg-product { display: grid; grid-template-columns: 86px minmax(0,1fr) auto minmax(100px,auto); align-items: center; gap: 15px; padding: 13px; border: 1px solid var(--ltud-fqg-border); border-radius: 8px; }
.ltud-fqg-product-image img { display: block; width: 78px; height: 78px; object-fit: contain; }
.ltud-fqg-product-copy h4 { margin: 0 0 3px; font-size: 18px; }
.ltud-fqg-product-copy p { margin: 5px 0 0; color: var(--ltud-fqg-muted); }
.ltud-fqg-product-sku { color: var(--ltud-fqg-muted); font-size: 13px; }
.ltud-fqg-product-qty { white-space: nowrap; }
.ltud-fqg-product-price { font-size: 18px; font-weight: 700; text-align: right; }
.ltud-fqg-totals { max-width: 440px; margin: 20px 0 0 auto; padding: 16px; border-top: 2px solid #222; }
.ltud-fqg-totals > div { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 8px; }
.ltud-fqg-totals .ltud-fqg-grand-total { margin-top: 9px; padding-top: 9px; border-top: 1px solid #ccc; font-size: 21px; }
.ltud-fqg-totals small { display: block; color: var(--ltud-fqg-muted); text-align: right; }
.ltud-fqg-loading { padding: 30px; text-align: center; font-weight: 700; }
.ltud-fqg-step-intro p { margin: 0; }
.ltud-fqg-final-note { margin: 14px auto 0; max-width: 820px; color: var(--ltud-fqg-muted); font-size: 13px; line-height: 1.55; text-align: left; }
.ltud-fqg-final-note p { margin: 0 0 8px; padding: 0; }
.ltud-fqg-final-note p:last-child { margin-bottom: 0; }
.ltud-fqg-cart-actions { display: flex; justify-content: flex-end; align-items: center; gap: 12px; margin-top: 12px; }
.ltud-fqg-start-over,
.ltud-fqg-add-cart { min-height: 50px; padding: 11px 26px; border: 0; border-radius: 5px; background: var(--ltud-fqg-button); color: #fff; font-size: 17px; font-weight: 700; cursor: pointer; }
.ltud-fqg-start-over { padding: 11px 22px; border: 1px solid #777; border-radius: 5px; background: #fff; color: #222; font-size: 17px; font-weight: 700; cursor: pointer; }
.ltud-fqg-start-over:hover:not(:disabled) { background: #f3f3f3; }
.ltud-fqg-add-cart:hover:not(:disabled) { opacity: .88; }
.ltud-fqg-start-over:disabled,
.ltud-fqg-add-cart:disabled { opacity: .55; cursor: wait; }

.ltud-fqg-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 18px; }
.ltud-fqg-nav button { min-width: 130px; min-height: 45px; padding: 9px 19px; border-radius: 5px; font-size: 16px; font-weight: 700; cursor: pointer; }
.ltud-fqg-back { border: 1px solid #888; background: #fff; color: #222; }
.ltud-fqg-next { margin-left: auto; border: 0; background: var(--ltud-fqg-button); color: #fff; }
.ltud-fqg-status { min-height: 25px; margin-top: 8px; text-align: center; font-weight: 700; }
.ltud-fqg-status.is-error,
.ltud-fqg-alert { color: #b32d2e; }
.ltud-fqg-status.is-success { color: var(--ltud-fqg-accent); }

@media (max-width: 900px) {
    .ltud-fqg-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ltud-fqg-color-families { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ltud-fqg-swatch-grid { grid-template-columns: 1fr; }
    .ltud-fqg-product { grid-template-columns: 76px minmax(0,1fr) auto; }
    .ltud-fqg-product-price { grid-column: 2 / 4; }
}

@media (max-width: 640px) {
    .ltud-fqg-progress em { display: none; }
    .ltud-fqg-progress li::before { top: 14px; }
    .ltud-fqg-progress li .ltud-fqg-step-button span { width: 30px; height: 30px; }
    .ltud-fqg-step { padding: 20px 14px; }
    .ltud-fqg-card-grid,
    .ltud-fqg-card-grid--two,
    .ltud-fqg-color-families,
    .ltud-fqg-swatch-grid { grid-template-columns: 1fr; }
    .ltud-fqg-swatch-group-options { grid-template-columns: repeat(var(--ltud-fqg-swatch-count, 3), minmax(0, 1fr)); }
    .ltud-fqg-swatch { min-height: 108px; border-right: 0; border-bottom: 0; }
    .ltud-fqg-swatch-chip { height: 70px; }
    .ltud-fqg-piece-card .ltud-fqg-card-inner { flex-direction: row; align-items: center; }
    .ltud-fqg-piece-card .ltud-fqg-image-wrap { flex: 0 0 42%; min-height: 120px; aspect-ratio: auto; }
    .ltud-fqg-piece-card .ltud-fqg-card-copy { text-align: left; }
    .ltud-fqg-piece-options { align-items: center; }
    .ltud-fqg-product { grid-template-columns: 68px minmax(0,1fr); }
    .ltud-fqg-product-qty,
    .ltud-fqg-product-price { grid-column: 2; text-align: left; }
    .ltud-fqg-product-image img { width: 62px; height: 62px; }
    .ltud-fqg-cart-actions { flex-direction: column-reverse; text-align: center; }
    .ltud-fqg-start-over,
    .ltud-fqg-add-cart { width: 100%; }
}

/* Prevent the browser's ordered-list marker from duplicating the custom step circles. */
.ltud-fqg .ltud-fqg-progress,
.ltud-fqg .ltud-fqg-progress > li {
    list-style: none !important;
}
.ltud-fqg .ltud-fqg-progress > li::marker {
    content: "" !important;
    font-size: 0 !important;
}

/* Custom radio controls used by the guide's standard option lists. */
.ltud-fqg .ltud-fqg-choice-list > label > input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 23px;
    height: 23px;
    min-width: 23px;
    margin: 1px 0 0;
    border: 2px solid #8a8a8a;
    border-radius: 50%;
    background: #fff;
    box-shadow: inset 0 0 0 5px #fff;
    cursor: pointer;
    transition: border-color .16s ease, background-color .16s ease, box-shadow .16s ease;
}
.ltud-fqg .ltud-fqg-choice-list > label > input[type="radio"]:hover {
    border-color: var(--ltud-fqg-button);
}
.ltud-fqg .ltud-fqg-choice-list > label > input[type="radio"]:checked {
    border-color: var(--ltud-fqg-button);
    background: var(--ltud-fqg-button);
}
.ltud-fqg .ltud-fqg-choice-list > label > input[type="radio"]:focus-visible {
    outline: 3px solid rgba(176,42,47,.22);
    outline-offset: 3px;
}
.ltud-fqg .ltud-fqg-choice-list > label:has(> input[type="radio"]:checked) {
    border-color: var(--ltud-fqg-button);
    background: #fff8f8;
    box-shadow: 0 0 0 2px rgba(176,42,47,.08);
}

.ltud-fqg-swatch-mail-panel {
    max-width: 850px;
    margin: 18px auto 0;
}
.ltud-fqg-swatch-mail-instructions {
    padding: 20px;
    border: 1px solid var(--ltud-fqg-border);
    border-radius: 9px;
    background: #f7f7f7;
}
.ltud-fqg-swatch-mail-instructions > :first-child { margin-top: 0; }
.ltud-fqg-swatch-mail-instructions > :last-child { margin-bottom: 0; }
.ltud-fqg-swatch-mail-confirmation {
    padding: 0;
    margin: 14px 0 0;
    border: 0;
}
.ltud-fqg-confirmation-option {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 15px 17px;
    border: 1px solid #d08a00;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
}
.ltud-fqg-confirmation-copy {
    flex: 1 1 auto;
    min-width: 0;
}
.ltud-fqg-confirmation-copy { cursor: pointer; }
.ltud-fqg-confirmation-copy p { margin: 0 0 8px; }
.ltud-fqg-confirmation-copy p:last-child { margin-bottom: 0; }
.ltud-fqg-swatch-mail-confirmation .ltud-fqg-confirmation-option:has(input:checked) {
    border-color: var(--ltud-fqg-accent);
    background: #f4fff2;
    box-shadow: 0 0 0 2px rgba(26,156,0,.10);
}

/* Keep both required confirmation checkboxes consistent. */
.ltud-fqg-color-change-notice .ltud-fqg-confirmation-option {
    padding: 12px 14px;
    border-color: #d08a00;
}
.ltud-fqg .ltud-fqg-change-confirm,
.ltud-fqg .ltud-fqg-swatch-mail-confirm,
.ltud-fqg .ltud-fqg-care {
    width: 21px;
    height: 21px;
    min-width: 21px;
    margin: 1px 0 0;
    accent-color: var(--ltud-fqg-button);
    cursor: pointer;
}

/* Keep the optional Cleaning & Protector checkbox consistent with the required confirmations. */
.ltud-fqg-care-option > label:has(.ltud-fqg-care:checked) {
    border-color: var(--ltud-fqg-accent);
    background: linear-gradient(135deg, #f7fff5 0%, #ecffe8 100%);
    box-shadow: 0 0 0 3px rgba(26,156,0,.11), 0 10px 26px rgba(26,156,0,.10);
}
.ltud-fqg-care-option > label:has(.ltud-fqg-care:checked) .ltud-fqg-care-badge {
    background: var(--ltud-fqg-accent);
}
.ltud-fqg .ltud-fqg-care:focus-visible {
    outline: 3px solid rgba(26,156,0,.22);
    outline-offset: 2px;
}
.ltud-fqg-care-copy > :first-child { margin-top: 0; }
.ltud-fqg-care-copy > :last-child { margin-bottom: 0; }



.ltud-fqg-add-another-project {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 20px 0 26px;
    padding: 16px 18px;
    border: 1px solid #d8d8d8;
    border-radius: 8px;
    background: #f7f7f7;
}
.ltud-fqg-add-another-project__heading {
    flex: 1 1 320px;
    font-size: 16px;
    line-height: 1.4;
}
.woocommerce .ltud-fqg-add-another-project__button.button {
    flex: 0 0 auto;
    margin: 0;
    white-space: normal;
    text-align: center;
}
@media (max-width: 600px) {
    .ltud-fqg-add-another-project {
        align-items: stretch;
    }
    .woocommerce .ltud-fqg-add-another-project__button.button {
        width: 100%;
    }
}

/* v1.0.26: match the Vehicle Quick Guide's stronger step blocks and navigation. */
.ltud-fqg .ltud-fqg-progress {
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 7px;
    margin-bottom: 28px;
}
.ltud-fqg .ltud-fqg-progress li::before { display: none; }
.ltud-fqg .ltud-fqg-step-button {
    display: flex;
    min-height: 48px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 8px 9px;
    border: 1px solid #d5d5d5;
    border-radius: 6px;
    background: #f5f5f5;
    color: #555;
    font-size: 13px;
    line-height: 1.2;
}
.ltud-fqg .ltud-fqg-step-button:not(:disabled):hover {
    border-color: #aaa;
    background: #fff;
}
.ltud-fqg .ltud-fqg-step-button:not(:disabled):hover em { text-decoration: none; }
.ltud-fqg .ltud-fqg-progress li .ltud-fqg-step-button span {
    display: inline-flex;
    flex: 0 0 23px;
    width: 23px;
    height: 23px;
    border: 0;
    border-radius: 50%;
    background: #dadada;
    color: #333;
}
.ltud-fqg .ltud-fqg-progress li.is-active .ltud-fqg-step-button {
    border-color: var(--ltud-fqg-button);
    background: #fff;
    color: #222;
    font-weight: 700;
}
.ltud-fqg .ltud-fqg-progress li.is-active .ltud-fqg-step-button span {
    border: 0;
    background: var(--ltud-fqg-button);
    color: #fff;
}
.ltud-fqg .ltud-fqg-progress li.is-complete .ltud-fqg-step-button {
    border-color: rgba(26,156,0,.38);
    background: rgba(26,156,0,.06);
    color: #265f1c;
}
.ltud-fqg .ltud-fqg-progress li.is-complete .ltud-fqg-step-button span {
    border: 0;
    background: var(--ltud-fqg-accent);
    color: #fff;
}
.ltud-fqg .ltud-fqg-step-button:disabled { opacity: .58; }
.ltud-fqg .ltud-fqg-step-heading h3 {
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.18;
}
.ltud-fqg .ltud-fqg-step-intro p { margin: 0 0 8px; color: var(--ltud-fqg-muted); }
.ltud-fqg .ltud-fqg-step-intro p:last-child { margin-bottom: 0; }
.ltud-fqg .ltud-fqg-nav {
    justify-content: center;
    align-items: center;
}
.ltud-fqg .ltud-fqg-next { margin-left: 0; }
.ltud-fqg .ltud-fqg-care-large {
    position: relative;
    border-color: #d79a24;
    background: linear-gradient(135deg,#fffaf0 0%,#fff5dc 100%);
    box-shadow: 0 8px 22px rgba(90,62,12,.10);
}
.ltud-fqg .ltud-fqg-care-large:hover {
    border-color: #b97a08;
    box-shadow: 0 10px 26px rgba(90,62,12,.15);
}
.ltud-fqg .ltud-fqg-care-badge {
    align-self: flex-start;
    display: inline-flex !important;
    width: auto;
    padding: 4px 9px;
    border-radius: 999px;
    background: #b86b00;
    color: #fff !important;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.ltud-fqg .ltud-fqg-care-large:has(input:checked) {
    border-color: var(--ltud-fqg-accent);
    background: linear-gradient(135deg,#f7fff5 0%,#ecffe8 100%);
    box-shadow: 0 0 0 3px rgba(26,156,0,.11),0 10px 26px rgba(26,156,0,.10);
}
.ltud-fqg .ltud-fqg-care-large:has(input:checked) .ltud-fqg-care-badge { background: var(--ltud-fqg-accent); }
@media (max-width: 980px) {
    .ltud-fqg .ltud-fqg-progress { grid-template-columns: repeat(4,minmax(0,1fr)); }
}
@media (max-width: 640px) {
    .ltud-fqg .ltud-fqg-progress { grid-template-columns: repeat(4,minmax(0,1fr)); gap:5px; }
    .ltud-fqg .ltud-fqg-step-button { min-height: 42px; padding:6px; }
    .ltud-fqg .ltud-fqg-progress em { display:none; }
}

@media (max-width: 430px) {
    .ltud-fqg-swatch-group { padding: 9px; }
    .ltud-fqg-swatch-group-options { gap: 0; }
    .ltud-fqg-swatch { min-height: 102px; padding: 0; }
    .ltud-fqg-swatch-chip { height: 64px; }
    .ltud-fqg-swatch-name { min-height: 38px; padding: 7px 2px; font-size: 9.5px; letter-spacing: -.1px; }
}
