.fe-custom-page {
    --fe-ink: #0f0e0b;
    --fe-ivory: #fbf8f0;
    --fe-paper: #fffdf8;
    --fe-line: #ded8c9;
    --fe-muted: #716b5f;
    --fe-gold: #b9975b;
    --fe-shadow: 0 18px 46px rgba(17, 17, 17, .08);
    width: min(1380px, calc(100vw - 28px));
    margin: 0 auto;
    color: var(--fe-ink);
    font-family: inherit;
}

.fe-custom-page * {
    box-sizing: border-box;
}

.fe-hero {
    padding: clamp(14px, 2.4vw, 24px) 0 10px;
    text-align: center;
}

.fe-kicker {
    margin: 0 0 12px;
    color: var(--fe-gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.fe-title {
    margin: 0 auto;
    max-width: 1120px;
    color: var(--fe-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(30px, 4vw, 54px);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1;
}

.fe-subtitle {
    max-width: 680px;
    margin: 10px auto 0;
    color: var(--fe-muted);
    font-size: clamp(14px, 1.6vw, 16px);
    line-height: 1.45;
}

.fe-category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin: 18px 0 44px;
}

.fe-card {
    position: relative;
    overflow: hidden;
    min-height: 370px;
    border: 1px solid var(--fe-line);
    border-radius: 7px;
    background: var(--fe-paper);
    cursor: pointer;
    text-align: left;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background-color .22s ease;
}

.fe-card:hover {
    transform: translateY(-3px);
    border-color: var(--fe-gold);
    box-shadow: var(--fe-shadow);
}

.fe-card.is-selected,
.fe-card[aria-pressed="true"] {
    border-color: var(--fe-gold);
    background: var(--fe-paper);
    box-shadow: 0 0 0 3px rgba(185, 151, 91, .12), var(--fe-shadow);
}

.fe-card.is-selected::after,
.fe-card[aria-pressed="true"]::after,
.fe-option.is-selected::after {
    content: "";
    position: absolute;
    top: 14px;
    right: 14px;
    width: 22px;
    height: 22px;
    border: 1px solid var(--fe-gold);
    border-radius: 999px;
    background: var(--fe-paper);
    box-shadow: 0 8px 20px rgba(17, 17, 17, .08);
}

.fe-card.is-selected::before,
.fe-card[aria-pressed="true"]::before,
.fe-option.is-selected::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 20px;
    right: 20px;
    width: 10px;
    height: 6px;
    border-left: 1.5px solid var(--fe-gold);
    border-bottom: 1.5px solid var(--fe-gold);
    transform: rotate(-45deg);
}

.fe-card[aria-disabled="true"] {
    cursor: default;
    opacity: .62;
}

.fe-card[aria-disabled="true"]:hover {
    transform: none;
    border-color: var(--fe-line);
    box-shadow: none;
}

.fe-card-image {
    display: grid !important;
    place-items: center;
    height: clamp(230px, 26vw, 315px);
    min-height: 230px;
    padding: 0;
    background: #fffdf8 !important;
    background-image: none !important;
    overflow: hidden;
}

.fe-card-body {
    padding: 16px 20px 22px;
}

.fe-card-title {
    margin: 0 0 9px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(22px, 2.1vw, 30px);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.08;
}

.fe-card-desc {
    margin: 0;
    color: var(--fe-muted);
    font-size: 13px;
    letter-spacing: .04em;
    line-height: 1.55;
}

.fe-card-price {
    display: inline-flex;
    align-items: baseline;
    gap: 7px;
    width: fit-content;
    margin: 13px 0 0;
    border-top: 1px solid rgba(198, 168, 122, .42);
    color: #5f4728;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    line-height: 1.35;
    padding-top: 9px;
    text-transform: uppercase;
}

.fe-card-price strong {
    color: var(--fe-ink);
    font-size: 15px;
    letter-spacing: .02em;
}

.fe-coming {
    display: inline-flex;
    margin-top: 14px;
    border: 1px solid var(--fe-line);
    border-radius: 999px;
    padding: 5px 9px;
    color: var(--fe-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.fe-builder {
    display: none;
    margin: 0 0 60px;
    border: 1px solid var(--fe-line);
    border-radius: 8px;
    background: var(--fe-paper);
    overflow: visible;
}

.fe-builder.is-active {
    display: block;
}

.fe-builder--multi {
    display: block;
}

.fe-builder-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 10px 22px;
    border-bottom: 1px solid var(--fe-line);
    background: #fffdf8;
}

.fe-builder-title {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 400;
}

.fe-step-nav {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    border-bottom: 1px solid var(--fe-line);
}

.fe-step-nav--compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fe-step-btn {
    min-height: 42px;
    border: 0;
    border-right: 1px solid var(--fe-line);
    background: #fff;
    color: var(--fe-muted);
    cursor: pointer;
    font: inherit;
    font-size: 13px;
}

.fe-step-btn:last-child {
    border-right: 0;
}

.fe-step-btn.is-active {
    background: var(--fe-ink);
    color: #fff;
}

.fe-step-panel {
    min-height: 520px;
    padding: clamp(18px, 3vw, 34px);
}

.fe-panel-title {
    margin: 0 0 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.02;
}

.fe-panel-copy {
    max-width: 700px;
    margin: 0 0 18px;
    color: var(--fe-muted);
    font-size: 15px;
    line-height: 1.75;
}

.fe-options {
    display: grid;
    grid-template-columns: repeat(6, minmax(128px, 1fr));
    gap: 14px;
}

.fe-options--patterns {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fe-options--saddle-type {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.fe-pattern-option {
    display: grid;
    grid-template-rows: minmax(122px, 1fr) auto;
    min-height: 186px;
    padding: 8px;
    background: #fffdf8;
}

.fe-pattern-option .fe-option-image {
    height: 132px;
    min-height: 132px;
    margin: 0 0 8px;
    border: 1px solid rgba(222, 216, 201, .78);
    background:
        linear-gradient(135deg, #fffdf8, #f8f1e4) !important;
    padding: 7px;
}

.fe-pattern-option.is-selected .fe-option-image {
    border-color: var(--fe-gold);
    box-shadow: inset 0 0 0 2px rgba(185, 151, 91, .18);
}

.fe-pattern-option .fe-option-image img {
    filter: contrast(1.18) saturate(1.04);
}

.fe-pattern-title {
    display: block;
    min-height: 28px;
    overflow-wrap: anywhere;
    font-size: 13px;
    line-height: 1.12;
    text-align: center;
}

.fe-option {
    position: relative;
    min-height: 168px;
    border: 1px solid var(--fe-line);
    border-radius: 7px;
    background: var(--fe-paper);
    color: var(--fe-ink);
    cursor: pointer;
    padding: 9px;
    text-align: center;
    transition: border-color .18s ease, transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.fe-option:hover {
    transform: translateY(-2px);
    border-color: var(--fe-gold);
    box-shadow: 0 12px 28px rgba(17, 17, 17, .07);
}

.fe-option.is-selected {
    border-color: var(--fe-gold);
    background: var(--fe-paper);
    box-shadow: 0 0 0 3px rgba(185, 151, 91, .12), 0 12px 28px rgba(17, 17, 17, .07);
}

.fe-option-image {
    display: grid !important;
    place-items: center;
    height: clamp(108px, 10vw, 146px);
    min-height: 108px;
    margin: 0 0 9px;
    border-radius: 5px;
    border: 0;
    background: #fffdf8 !important;
    background-image: none !important;
    overflow: hidden;
    padding: 0;
}

.fe-card-image img,
.fe-option-image img,
.fe-reference-art img {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    margin: 0 auto !important;
    border: 0 !important;
    box-shadow: none !important;
}

.fe-card-image img:not([src]),
.fe-card-image img[src=""],
.fe-option-image img:not([src]),
.fe-option-image img[src=""],
.fe-reference-art img:not([src]),
.fe-reference-art img[src=""] {
    display: none;
}

.fe-image-placeholder {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.fe-image-shell.has-loaded .fe-image-placeholder {
    display: none !important;
}

.fe-image-shell.has-error img,
.fe-image-shell img[hidden] {
    display: none !important;
}

.fe-option-title {
    display: block;
    color: var(--fe-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.2;
    text-align: center;
}

.fe-option-desc {
    display: block;
    margin-top: 4px;
    color: var(--fe-muted);
    font-size: 12px;
    line-height: 1.35;
}

.fe-completion {
    margin: 0 0 22px;
    border: 1px solid var(--fe-line);
    border-radius: 8px;
    background: #fbf8f0;
    color: var(--fe-muted);
    padding: 12px 14px;
    font-size: 13px;
    font-weight: 700;
}

.fe-source-product {
    display: inline-flex;
    margin: 0 0 16px;
    border: 1px solid rgba(185, 151, 91, .38);
    border-radius: 999px;
    background: #fbf8f0;
    color: var(--fe-ink);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    padding: 8px 12px;
}

.fe-current-product {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    margin: 0 0 20px;
    border: 1px solid var(--fe-line);
    border-radius: 8px;
    background: #fbf8f0;
    padding: 12px;
}

.fe-current-product__image {
    display: grid !important;
    place-items: center;
    height: 112px;
    min-height: 112px;
    border-radius: 6px;
    background: #fffdf8 !important;
    overflow: hidden;
}

.fe-current-product__image img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}

.fe-current-product__eyebrow {
    display: block;
    margin-bottom: 5px;
    color: var(--fe-gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.fe-current-product strong {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.1;
}

.fe-current-product p {
    margin: 7px 0 0;
    color: var(--fe-muted);
    font-size: 13px;
    line-height: 1.5;
}

.fe-current-product__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.fe-remove-product {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    border: 1px solid rgba(139, 31, 31, .32);
    border-radius: 999px;
    background: transparent;
    color: #8b1f1f;
    cursor: pointer;
    font: inherit;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    padding: 0 12px;
    text-transform: uppercase;
}

.fe-remove-product:hover {
    border-color: #8b1f1f;
}

.fe-completion--done {
    border-color: rgba(185, 151, 91, .45);
    color: var(--fe-ink);
}

.fe-qty-control {
    display: inline-grid;
    grid-template-columns: 30px 42px 30px;
    gap: 0;
    align-items: center;
    width: max-content;
    overflow: hidden;
    margin: 0 0 12px;
    border: 1px solid rgba(198, 168, 122, .45);
    border-radius: 999px;
    background: #fffdf8;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .75);
}

.fe-qty-btn,
.fe-qty-input {
    display: inline-flex;
    height: 32px;
    min-height: 32px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--fe-ink);
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    padding: 0;
    text-align: center;
}

.fe-qty-btn {
    cursor: pointer;
    transition: background .18s ease, color .18s ease;
}

.fe-qty-btn:hover {
    background: rgba(198, 168, 122, .14);
}

.fe-qty-input {
    border-left: 1px solid rgba(222, 216, 201, .68);
    border-right: 1px solid rgba(222, 216, 201, .68);
    appearance: textfield;
    -moz-appearance: textfield;
}

.fe-qty-input::-webkit-outer-spin-button,
.fe-qty-input::-webkit-inner-spin-button {
    margin: 0;
    appearance: none;
}

.fe-quantity-row,
.fe-choice-row,
.fe-item-switcher {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.fe-apparel-choice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
    gap: 10px;
    margin-bottom: 28px;
    max-width: 760px;
}

.fe-apparel-choice {
    align-items: center;
    border: 1px solid var(--fe-line);
    border-radius: 999px;
    background: #fffdf8;
    color: var(--fe-ink);
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    text-align: center;
    transition: border-color .18s ease, background .18s ease, box-shadow .18s ease, color .18s ease;
}

.fe-apparel-choice span {
    display: block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.fe-apparel-choice.is-selected {
    border-color: var(--fe-ink);
    background: var(--fe-ink);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(17, 17, 17, .08);
}

.fe-pill {
    min-width: 76px;
    min-height: 46px;
    border: 1px solid var(--fe-line);
    border-radius: 999px;
    background: #fff;
    color: var(--fe-ink);
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    padding: 0 16px;
}

.fe-pill.is-selected {
    border-color: var(--fe-ink);
    background: var(--fe-ink);
    color: #fff;
}

.fe-product-tabs .fe-pill.is-selected,
.fe-product-switcher .fe-pill.is-selected,
.fe-selected-products .fe-pill.is-selected {
    border-color: rgba(185, 151, 91, .78);
    background: rgba(198, 168, 122, .24);
    color: var(--fe-ink);
    box-shadow: 0 10px 26px rgba(185, 151, 91, .12);
}

.fe-pill--small {
    min-width: 64px;
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
    text-transform: capitalize;
}

.fe-clear-btn {
    display: inline-grid;
    align-items: center;
    justify-content: center;
    width: 26px;
    min-width: 26px;
    height: 26px;
    min-height: 26px;
    margin-top: 8px;
    border: 1px solid rgba(222, 216, 201, .92);
    border-radius: 999px;
    background: #fffdf8;
    color: var(--fe-muted);
    cursor: pointer;
    font: inherit;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    padding: 0;
    text-decoration: none;
    text-transform: none;
}

.fe-clear-btn:hover {
    border-color: var(--fe-gold);
    color: var(--fe-gold);
}

.fe-clear-btn--text {
    width: auto;
    min-width: 0;
    min-height: 34px;
    height: auto;
    padding: 0 12px;
    font-size: 11px;
    text-transform: uppercase;
}

.fe-duplicate {
    margin: 0 0 20px;
}

.fe-swatch-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.fe-swatch {
    display: grid;
    place-items: center;
    position: relative;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(17, 17, 17, .18);
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.fe-swatch span {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 999px;
}

.fe-swatch.is-selected {
    border-color: var(--fe-ink);
    box-shadow: 0 0 0 2px rgba(185, 151, 91, .24), 0 6px 16px rgba(17, 17, 17, .12);
    transform: translateY(-1px);
}

.fe-swatch.is-selected::after {
    content: "";
    position: absolute;
    right: -2px;
    bottom: -2px;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: var(--fe-ink);
    box-shadow: 0 0 0 1px #fff;
}

.fe-swatch.is-selected::before {
    content: "";
    position: absolute;
    z-index: 1;
    right: 2px;
    bottom: 3px;
    width: 6px;
    height: 4px;
    border-left: 1.4px solid #fff;
    border-bottom: 1.4px solid #fff;
    transform: rotate(-45deg);
}

.fe-swatch--no-piping span {
    background:
        linear-gradient(135deg, transparent 0 43%, #8b1f1f 44% 56%, transparent 57%),
        #fff !important;
}

.fe-field-group {
    margin: 0 0 28px;
}

.fe-label {
    display: block;
    margin-bottom: 10px;
    color: var(--fe-ink);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.fe-label--subtle {
    margin: 14px 0 8px;
    color: var(--fe-muted);
    font-size: 11px;
}

.fe-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 10px;
}

.fe-label-row .fe-label {
    margin-bottom: 0;
}

.fe-size-chart-link {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    border: 1px solid rgba(185, 151, 91, .55);
    border-radius: 999px;
    color: var(--fe-ink);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    padding: 0 12px;
    text-decoration: none;
    text-transform: uppercase;
}

.fe-size-chart-link:hover {
    border-color: var(--fe-ink);
    color: var(--fe-ink);
}

.fe-reference {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    margin: 0 0 18px;
    padding: 14px;
    border: 1px solid var(--fe-line);
    border-radius: 8px;
    background: #f9f4ea;
}

.fe-reference-art {
    display: grid !important;
    place-items: center;
    height: 160px;
    min-height: 160px;
    border-radius: 6px;
    background: #f8f1e4 !important;
    background-image: none !important;
    overflow: hidden;
    padding: 10px;
}

.fe-reference p {
    margin: 0;
    color: var(--fe-muted);
    font-size: 14px;
    line-height: 1.6;
}

.fe-side-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.fe-branding-grid--count-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fe-side-panel {
    display: none;
    border: 1px solid var(--fe-line);
    border-radius: 8px;
    padding: 12px;
    background: #fff;
}

.fe-side-panel.is-active {
    display: block;
}

.fe-input,
.fe-select,
.fe-textarea {
    width: 100%;
    min-height: 40px;
    border: 1px solid var(--fe-line);
    border-radius: 6px;
    background: #fff;
    color: var(--fe-ink);
    font: inherit;
    padding: 8px 10px;
}

.fe-textarea {
    min-height: 72px;
    resize: vertical;
}

.fe-textarea--compact {
    min-height: 54px;
    font-size: 13px;
    line-height: 1.45;
}

.fe-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.fe-full {
    grid-column: 1 / -1;
}

.fe-review {
    display: grid;
    gap: 14px;
}

.fe-review-card {
    border: 1px solid var(--fe-line);
    border-radius: 8px;
    background: #fff;
    padding: 16px;
}

.fe-help-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 18px;
    padding: 12px 14px;
    border: 1px solid rgba(198, 168, 122, .42);
    border-radius: 7px;
    background: #fffdf8;
    color: var(--fe-muted);
    font-size: 13px;
}

.fe-help-strip a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    border: 1px solid rgba(185, 151, 91, .52);
    border-radius: 999px;
    padding: 0 12px;
    color: #111;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
}

.fe-apply-all {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    margin: 0 0 18px;
    color: #111;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.fe-branding-card--compact {
    margin: 18px 0 0;
    padding: 14px;
    border: 1px solid rgba(198, 168, 122, .34);
    border-radius: 8px;
    background: #fffdf8;
}

.fe-branding-card--compact .fe-apply-all {
    margin-bottom: 8px;
}

.fe-branding-card--source {
    display: grid;
    gap: 10px;
    margin: 14px 0 0;
}

.fe-branding-card__intro {
    padding: 10px 12px;
    border: 1px solid rgba(198, 168, 122, .34);
    border-radius: 8px;
    background: #fffdf8;
}

.fe-branding-card__intro p {
    margin: 4px 0 0;
    color: var(--fe-muted);
    font-size: 12px;
    line-height: 1.45;
}

.fe-branding-card .fe-field-group {
    gap: 7px;
    margin: 0 0 12px;
}

.fe-branding-card .fe-side-panel .fe-label {
    font-size: 11px;
    letter-spacing: .08em;
}

.fe-branding-card .fe-side-panel h4.fe-label {
    margin-bottom: 10px;
    color: var(--fe-gold);
}

.fe-branding-card .fe-small-note {
    font-size: 11px;
    line-height: 1.4;
}

.fe-branding-card .fe-file-note {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fe-branding-card .fe-pill {
    min-height: 34px;
    padding: 8px 13px;
    font-size: 11px;
    letter-spacing: .1em;
}

.fe-review-card h4 {
    margin: 0 0 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    font-weight: 400;
}

.fe-review-card ul {
    margin: 0;
    padding-left: 18px;
    color: var(--fe-muted);
    line-height: 1.75;
}

.fe-review-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 0 14px;
}

.fe-review-preview--pending {
    display: block;
    padding: 12px 14px;
    border: 1px solid var(--fe-line);
    border-radius: 7px;
    background: #fffdf8;
    color: var(--fe-muted);
    font-size: 13px;
    line-height: 1.55;
}

.fe-review-preview--pending p {
    margin: 0;
}

.fe-review-preview figure {
    width: min(240px, 100%);
    margin: 0;
    border: 1px solid var(--fe-line);
    border-radius: 7px;
    background: #fffdf8;
    padding: 8px;
}

.fe-review-preview img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.fe-review-preview figcaption {
    margin-top: 6px;
    color: var(--fe-muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.fe-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    border-top: 1px solid var(--fe-line);
    background: #f8f1e4;
    position: sticky;
    bottom: 0;
    z-index: 80;
    box-shadow: 0 -18px 34px rgba(17, 17, 17, .08);
}

.fe-selected-count {
    color: var(--fe-muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.fe-action-btn {
    min-height: 48px;
    border: 1px solid var(--fe-ink);
    border-radius: 6px;
    background: var(--fe-ink);
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    padding: 0 20px;
}

.fe-action-btn:disabled {
    cursor: not-allowed;
    opacity: .45;
}

.fe-action-btn--ghost {
    background: transparent;
    color: var(--fe-ink);
}

.fe-action-btn--gold {
    border-color: var(--fe-gold);
    background: var(--fe-gold);
    color: #17140e;
}

.fe-small-note {
    margin: 10px 0 0;
    color: var(--fe-muted);
    font-size: 13px;
    line-height: 1.6;
}

.fe-item-builder {
    margin: 0 0 22px;
    border: 1px solid rgba(198, 168, 122, .42);
    border-radius: 8px;
    background: #fbf8f0;
    padding: 14px;
}

.fe-item-builder__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.fe-item-builder__head p {
    max-width: 680px;
    margin: 0;
    color: var(--fe-muted);
    font-size: 13px;
    line-height: 1.55;
}

.fe-item-builder__tabs,
.fe-item-builder__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 14px;
}

.fe-mini-btn {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--fe-line);
    border-radius: 999px;
    background: #fffdf8;
    color: var(--fe-ink);
    cursor: pointer;
    font: inherit;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    padding: 0 13px;
    text-transform: uppercase;
}

.fe-mini-btn:hover {
    border-color: var(--fe-gold);
}

.fe-mini-btn--dark {
    border-color: var(--fe-ink);
    background: var(--fe-ink);
    color: #fff;
}

.fe-mini-btn--danger {
    border-color: rgba(139, 31, 31, .35);
    color: #8b1f1f;
}

.fe-customize-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 460px);
    gap: 30px;
    align-items: start;
    isolation: isolate;
}

.fe-customize-controls {
    order: 1;
    min-width: 0;
}

.fe-preview-card {
    position: sticky;
    top: 84px;
    order: 2;
    align-self: start;
    border: 1px solid var(--fe-line);
    border-radius: 8px;
    background: #fffdf8;
    padding: 16px;
    max-height: calc(100vh - 104px);
    overflow: auto;
    scrollbar-width: thin;
    box-shadow: 0 22px 52px rgba(17, 17, 17, .08);
}

.fe-preview-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.fe-preview-card__head p {
    margin: 0 0 14px;
    color: var(--fe-muted);
    font-size: 12px;
    line-height: 1.5;
}

.fe-preview-toggle {
    display: none;
    min-height: 32px;
    border: 1px solid var(--fe-line);
    border-radius: 999px;
    background: #fff;
    color: var(--fe-ink);
    cursor: pointer;
    font: inherit;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    padding: 0 12px;
    text-transform: uppercase;
}

.fe-preview-side-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin: 0 0 10px;
}

.fe-preview-side-tabs button {
    min-height: 34px;
    border: 1px solid var(--fe-line);
    border-radius: 999px;
    background: #fff;
    color: var(--fe-muted);
    cursor: pointer;
    font: inherit;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.fe-preview-side-tabs button.is-active {
    border-color: var(--fe-ink);
    background: var(--fe-ink);
    color: #fff;
}

.fe-saddle-preview {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 320px;
    border: 1px solid rgba(222, 216, 201, .8);
    border-radius: 8px;
    background:
        radial-gradient(circle at 50% 28%, rgba(255,255,255,.8), transparent 42%),
        linear-gradient(135deg, rgba(255,255,255,.84), rgba(248,241,228,.78)),
        #f8f1e4;
    overflow: hidden;
    padding: 20px;
    cursor: default;
}

.fe-saddle-preview--asset {
    min-height: 340px;
    background: #fffdf8;
    padding: 14px;
}

.fe-saddle-preview__asset-stage {
    position: relative;
    width: min(100%, 410px);
    aspect-ratio: 1.42 / 1;
    display: grid;
    place-items: center;
    filter: drop-shadow(0 18px 24px rgba(17, 17, 17, .14));
}

.fe-saddle-preview__asset-stage--right .fe-saddle-preview__base,
.fe-saddle-preview__asset-stage--right .fe-saddle-preview__mask,
.fe-saddle-preview__asset-stage--right .fe-saddle-preview__pattern-clip,
.fe-saddle-preview__asset-stage--right .fe-saddle-preview__overlay,
.fe-saddle-preview__asset-stage--right > .fe-saddle-preview__pattern-mask {
    transform: scaleX(-1);
}

.fe-saddle-preview__base,
.fe-saddle-preview__overlay {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    pointer-events: none;
}

.fe-saddle-preview__base {
    opacity: 1;
    z-index: 1;
}

.fe-saddle-preview__overlay--shadow {
    opacity: .72;
    z-index: 0;
    mix-blend-mode: multiply;
}

.fe-saddle-preview__overlay--highlight {
    opacity: .42;
    z-index: 7;
    mix-blend-mode: screen;
}

.fe-saddle-preview__mask {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: currentColor;
    pointer-events: none;
    -webkit-mask-image: var(--layer-mask);
    mask-image: var(--layer-mask);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
}

.fe-saddle-preview__mask--main {
    color: var(--main);
    z-index: 2;
}

.fe-saddle-preview__mask--binding {
    color: var(--binding);
    z-index: 4;
}

.fe-saddle-preview__mask--piping {
    color: var(--piping);
    z-index: 5;
}

.fe-saddle-preview__asset-pattern {
    z-index: 3;
    color: var(--pattern);
    background-color: transparent;
    -webkit-mask-image: var(--layer-mask), var(--layer-mask);
    mask-image: var(--layer-mask), var(--layer-mask);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    mix-blend-mode: multiply;
    opacity: .42;
}

.fe-saddle-preview__pattern-clip {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    -webkit-mask-image: var(--main-mask);
    mask-image: var(--main-mask);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
}

.fe-saddle-preview__pattern-mask {
    position: absolute;
    inset: 0;
    background: var(--pattern);
    pointer-events: none;
    -webkit-mask-image: var(--pattern-mask);
    mask-image: var(--pattern-mask);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-position: center;
    mask-position: center;
    opacity: .55;
    mix-blend-mode: multiply;
}

.fe-saddle-preview__pattern-mask--free {
    z-index: 3;
    opacity: .58;
}

.fe-saddle-preview__shape {
    position: relative;
    width: min(92%, 340px);
    aspect-ratio: 1.44 / 1;
    border: 8px solid var(--binding);
    border-radius: 38% 28% 18% 25% / 13% 11% 22% 38%;
    background: var(--main);
    box-shadow:
        inset 0 18px 26px rgba(255,255,255,.18),
        inset 0 -16px 24px rgba(17,17,17,.13),
        0 20px 34px rgba(17,17,17,.14);
    overflow: hidden;
}

.fe-saddle-preview__shape--right {
    transform: scaleX(-1);
}

.fe-saddle-preview__shape--right .fe-saddle-preview__mark {
    transform: scaleX(-1);
}

.fe-preview-empty {
    display: grid;
    place-items: center;
    gap: 12px;
    min-height: 210px;
    color: var(--fe-muted);
    text-align: center;
}

.fe-preview-empty span {
    display: block;
    width: 88px;
    height: 58px;
    border: 1px dashed rgba(185, 151, 91, .75);
    border-radius: 44% 44% 34% 34% / 20% 20% 46% 46%;
    background: rgba(255, 253, 248, .65);
}

.fe-preview-empty p {
    max-width: 220px;
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
}

.fe-saddle-preview__shape::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 42% 12%, rgba(255,255,255,.3), transparent 23%),
        linear-gradient(180deg, rgba(255,255,255,.13), transparent 45%, rgba(17,17,17,.08));
    opacity: .9;
    pointer-events: none;
}

.fe-saddle-preview__binding {
    position: absolute;
    inset: 0;
    z-index: 3;
    border-radius: inherit;
    box-shadow: inset 0 0 0 2px rgba(17, 17, 17, .12);
    pointer-events: none;
}

.fe-saddle-preview__piping {
    position: absolute;
    inset: 13px;
    z-index: 4;
    border: 3px solid var(--piping);
    border-radius: inherit;
    opacity: .82;
    pointer-events: none;
}

.fe-saddle-preview__pattern {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: .48;
    mix-blend-mode: multiply;
    color: var(--pattern);
}

.fe-saddle-preview__pattern--diamond,
.fe-saddle-preview__pattern--classic {
    background-image:
        linear-gradient(45deg, currentColor 1.25px, transparent 1.25px),
        linear-gradient(-45deg, currentColor 1.25px, transparent 1.25px);
    background-size: 28px 28px;
}

.fe-saddle-preview__pattern--grid {
    background-image:
        linear-gradient(currentColor 1.2px, transparent 1.2px),
        linear-gradient(90deg, currentColor 1.2px, transparent 1.2px);
    background-size: 30px 30px;
}

.fe-saddle-preview__pattern--wave {
    background:
        radial-gradient(ellipse at 50% 100%, transparent 40%, currentColor 42%, transparent 45%) 0 0 / 38px 28px;
}

.fe-saddle-preview__pattern--plain {
    opacity: 0;
}

.fe-saddle-preview__mark {
    position: absolute;
    z-index: 6;
    bottom: 28px;
    display: grid;
    gap: 3px;
    min-width: 72px;
    border: 0;
    border-radius: 5px;
    background: transparent;
    color: var(--mark-color, var(--fe-ink));
    font-size: 10px;
    font-weight: 800;
    line-height: 1.1;
    padding: 3px 4px;
    text-align: center;
    text-transform: uppercase;
    filter: drop-shadow(0 1px 1px rgba(255, 253, 248, .45));
}

.fe-saddle-preview__mark.is-guide {
    min-height: 42px;
    border: 1px dashed rgba(17, 17, 17, .32);
    background: rgba(255, 253, 248, .18);
}

.fe-saddle-preview__mark.has-logo {
    min-width: 58px;
    background: transparent;
}

.fe-saddle-preview__logo-img {
    display: block;
    width: auto;
    max-width: 68px;
    max-height: 42px;
    margin: 0 auto 2px;
    object-fit: contain;
}

.fe-saddle-preview__logo-img--small {
    max-width: 48px;
    max-height: 30px;
}

.fe-saddle-preview__logo-img--medium {
    max-width: 68px;
    max-height: 42px;
}

.fe-saddle-preview__logo-img--large {
    max-width: 92px;
    max-height: 58px;
}

.fe-saddle-preview__logo {
    display: block;
    font-size: 8px;
    letter-spacing: .08em;
}

.fe-logo-pdf-badge {
    background: #fffdf8;
    border: 1px solid rgba(198, 168, 122, .82);
    border-radius: 6px;
    box-shadow: 0 6px 16px rgba(17, 17, 17, .08);
    color: #111111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: .06em;
    line-height: 1.15;
    max-width: 74px;
    min-height: 22px;
    padding: 4px 6px;
    text-align: center;
    text-transform: uppercase;
}

.fe-saddle-preview__text {
    color: var(--mark-color, #111111);
    display: inline-block;
    font-size: 16px;
    font-weight: 900;
    isolation: isolate;
    line-height: 1.05;
    max-width: 112px;
    mix-blend-mode: normal;
    overflow-wrap: anywhere;
    position: relative;
    text-decoration: none !important;
    text-shadow:
        0 1px 1px rgba(255, 253, 248, .72),
        0 -1px 1px rgba(255, 253, 248, .46);
    z-index: 12;
}

.fe-saddle-preview--asset .fe-saddle-preview__mark {
    z-index: 14;
    bottom: 18%;
}

.fe-saddle-preview--asset .fe-saddle-preview__mark--left {
    left: 18%;
}

.fe-saddle-preview--asset .fe-saddle-preview__mark--right {
    right: 18%;
}

.fe-saddle-preview__mark--left {
    left: 28px;
}

.fe-saddle-preview__mark--right {
    right: 28px;
}

.fe-saddle-preview__flag {
    color: inherit;
    font-size: 39px;
    line-height: 1;
    filter: drop-shadow(0 1px 1px rgba(255,255,255,.55));
}

.fe-saddle-preview__flag.fe-preview-flag-img {
    display: block;
    height: 34px;
    object-fit: contain;
    width: 52px;
}

.fe-saddle-preview__flag--small {
    font-size: 39px;
}

.fe-saddle-preview__flag--medium {
    font-size: 39px;
}

.fe-saddle-preview__flag--large {
    font-size: 39px;
}

.fe-preview-disclaimer {
    margin: 10px 0 0;
    color: var(--fe-muted);
    font-size: 11px;
    line-height: 1.45;
    text-align: center;
}

.fe-preview-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: grid;
    place-items: center;
    padding: 22px;
}

.fe-preview-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, .62);
}

.fe-preview-modal__content {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100vw - 24px));
    max-height: calc(100vh - 28px);
    border: 1px solid rgba(222, 216, 201, .86);
    border-radius: 8px;
    background: #fffdf8;
    padding: 18px;
    overflow: auto;
    box-shadow: 0 32px 90px rgba(0, 0, 0, .32);
}

.fe-preview-modal__body .fe-saddle-preview,
.fe-preview-modal__body .fe-generic-preview__stage {
    cursor: default;
    width: min(100%, 980px);
    min-height: min(82vh, 780px);
    height: min(82vh, 780px) !important;
    max-height: none !important;
    margin-inline: auto;
}

.fe-preview-modal__body {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: min(82vh, 780px);
    overflow: hidden;
}

.fe-preview-modal__body .fe-saddle-preview {
    align-content: center;
    justify-items: center;
}

.fe-preview-modal__body .fe-saddle-preview__asset-stage {
    transform: scale(1.58);
    transform-origin: center;
}

.fe-preview-modal__body .fe-generic-preview__stage {
    align-items: center;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    overflow: visible;
    padding: 16px;
}

.fe-preview-modal__body .fe-generic-preview__stage figure {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    height: 100%;
    min-height: 0;
    place-items: center;
    transform: scale(2.18);
    transform-origin: center;
    width: 100%;
}

.fe-preview-modal__body .fe-generic-layered-stage {
    max-height: 230px;
    width: min(100%, 340px);
}

.fe-preview-modal__body .fe-generic-layered-stage__base,
.fe-preview-modal__body .fe-generic-layered-stage__mask,
.fe-preview-modal__body .fe-generic-layered-stage__overlay,
.fe-preview-modal__body .fe-generic-preview__stage img {
    max-height: 100%;
    max-width: 100%;
}

.fe-preview-modal__body .fe-generic-preview__stage figcaption {
    margin-top: 10px;
}

@media (max-width: 760px) {
    .fe-preview-modal__body .fe-saddle-preview__asset-stage {
        transform: scale(1.18);
    }

    .fe-preview-modal__body .fe-generic-preview__stage figure {
        transform: scale(1.55);
    }
}

.fe-preview-modal-open {
    overflow: hidden;
}

.fe-preview-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    width: 36px;
    height: 36px;
    border: 1px solid var(--fe-line);
    border-radius: 999px;
    background: #fff;
    color: var(--fe-ink);
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
}

.fe-saddle-preview--modal {
    min-height: min(72vh, 660px);
    cursor: default;
}

.fe-saddle-preview--modal .fe-saddle-preview__asset-stage {
    width: min(100%, 820px);
}

.fe-preview-meta {
    display: grid;
    gap: 8px;
    margin: 14px 0 0;
}

.fe-preview-meta div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid rgba(222, 216, 201, .72);
    padding-top: 8px;
}

.fe-preview-meta dt,
.fe-preview-meta dd {
    margin: 0;
    font-size: 12px;
    line-height: 1.35;
}

.fe-preview-meta dt {
    color: var(--fe-muted);
}

.fe-preview-meta dd {
    color: var(--fe-ink);
    font-weight: 800;
    text-align: right;
}

@media (max-width: 900px) {
    .fe-category-grid,
    .fe-options {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .fe-side-grid,
    .fe-branding-grid--count-3,
    .fe-form-grid,
    .fe-customize-layout {
        grid-template-columns: 1fr;
    }

    .fe-preview-card {
        position: sticky;
        top: 0;
        z-index: 20;
        order: -1;
        max-height: none;
        overflow: visible;
        box-shadow: 0 14px 32px rgba(17, 17, 17, .08);
    }

    .fe-preview-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .fe-preview-card:not(.is-expanded) .fe-preview-side-tabs,
    .fe-preview-card:not(.is-expanded) .fe-saddle-preview,
    .fe-preview-card:not(.is-expanded) .fe-preview-meta {
        display: none;
    }

    .fe-item-builder__head {
        display: grid;
    }

    .fe-saddle-preview {
        min-height: 220px;
    }

    .fe-options--patterns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fe-pattern-option {
        min-height: 172px;
    }

    .fe-pattern-option .fe-option-image {
        height: 112px;
        min-height: 112px;
    }

    .fe-step-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fe-phone-field {
        grid-template-columns: 1fr;
    }

    .fe-reference {
        grid-template-columns: 1fr;
    }

    .fe-current-product {
        grid-template-columns: 92px minmax(0, 1fr);
        gap: 12px;
    }

    .fe-current-product__image {
        height: 82px;
        min-height: 82px;
    }

    .fe-current-product strong {
        font-size: 20px;
    }

    .fe-card {
        min-height: 250px;
    }

    .fe-card-image {
        height: 150px;
        min-height: 150px;
    }

    .fe-card-body {
        padding: 12px;
    }

    .fe-card-title {
        font-size: 19px;
        line-height: 1.08;
    }

    .fe-card-desc {
        font-size: 11px;
        line-height: 1.35;
    }

    .fe-option {
        min-height: 160px;
        padding: 9px;
    }

    .fe-option-image {
        height: 105px;
        min-height: 105px;
        margin-bottom: 9px;
    }

    .fe-actions {
        padding: 12px;
    }

    .fe-selected-count {
        flex: 1 0 100%;
        text-align: center;
    }
}

.fe-review-live-preview--both {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 0 0 16px;
}

.fe-review-side-preview {
    min-width: 0;
    border: 1px solid var(--fe-line);
    border-radius: 8px;
    background: #fffdf8;
    padding: 12px;
}

.fe-review-side-preview h5 {
    margin: 0 0 10px;
    color: var(--fe-black);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.fe-review-live-preview .fe-preview-card {
    position: relative;
    top: auto;
    order: initial;
    width: 100%;
    margin: 0;
    box-shadow: none;
}

.fe-review-live-preview .fe-preview-toggle,
.fe-review-live-preview .fe-preview-side-tabs {
    display: none;
}

.fe-review-live-preview .fe-preview-card:not(.is-expanded) .fe-saddle-preview,
.fe-review-live-preview .fe-preview-card:not(.is-expanded) .fe-preview-meta {
    display: block;
}

@media (max-width: 760px) {
    .fe-review-live-preview--both {
        grid-template-columns: 1fr;
    }
}

/* Version 2.6.51: calmer Step 2 and admin parity for saved review previews. */
.fe-current-product {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
    margin-bottom: 14px;
    padding: 12px;
}

.fe-current-product__image {
    height: 82px;
    min-height: 82px;
    padding: 8px;
}

.fe-current-product__eyebrow {
    display: none;
}

.fe-current-product strong {
    font-size: 20px;
    line-height: 1.08;
}

.fe-current-product p {
    max-width: 680px;
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.45;
}

.fe-current-product__actions {
    margin-top: 8px;
}

.fe-item-builder {
    margin: 0 0 16px;
    padding: 12px;
}

.fe-item-builder__head {
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.fe-item-builder__head p {
    display: none;
}

.fe-item-builder__tabs,
.fe-item-builder__actions {
    gap: 7px;
}

.fe-item-builder__tabs button,
.fe-item-builder__actions button {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 11px;
}

.fe-admin-design-preview {
    --fe-ink: #0f0e0b;
    --fe-ivory: #fbf8f0;
    --fe-paper: #fffdf8;
    --fe-line: #ded8c9;
    --fe-muted: #716b5f;
    --fe-gold: #b9975b;
    --fe-shadow: 0 18px 46px rgba(17, 17, 17, .08);
}

.fe-admin-design-preview .fe-admin-preview-live {
    margin-top: 10px;
}

.fe-admin-design-preview .fe-review-live-preview {
    margin: 0;
}

.fe-admin-design-preview .fe-preview-card {
    position: relative;
    top: auto;
    order: initial;
    box-shadow: none;
}

.fe-admin-design-preview .fe-preview-toggle,
.fe-admin-design-preview .fe-preview-side-tabs {
    display: none;
}

.fe-admin-design-preview .fe-preview-card:not(.is-expanded) .fe-saddle-preview,
.fe-admin-design-preview .fe-preview-card:not(.is-expanded) .fe-preview-meta {
    display: block;
}

@media (max-width: 760px) {
    .fe-current-product {
        grid-template-columns: 76px minmax(0, 1fr);
        gap: 10px;
        padding: 10px;
    }

    .fe-current-product__image {
        height: 68px;
        min-height: 68px;
    }

    .fe-current-product strong {
        font-size: 18px;
    }

    .fe-item-builder {
        padding: 10px;
    }
}


.fe-branding-unavailable {
    border: 1px solid rgba(185, 151, 91, .28);
    border-radius: 7px;
    background: #fffaf0;
    padding: 14px 16px;
}

.fe-customize-layout--generic .fe-generic-preview {
    position: sticky;
    top: 104px;
    align-self: start;
    order: 2;
}

.fe-generic-preview {
    border: 1px solid var(--fe-line);
    border-radius: 8px;
    background: #fffdf8;
    padding: 16px;
    box-shadow: 0 14px 36px rgba(17, 17, 17, .06);
}

.fe-generic-preview__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(222, 216, 201, .72);
    padding-bottom: 10px;
}

.fe-generic-preview__head strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.1;
}

.fe-generic-preview__stage {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
    gap: 10px;
    min-height: 230px;
    border: 1px solid rgba(222, 216, 201, .72);
    border-radius: 7px;
    background: linear-gradient(135deg, #fffdf8 0%, #f7f1e7 100%);
    padding: 14px;
    overflow: hidden;
}

.fe-generic-preview__stage::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
}

.fe-generic-preview__stage figure {
    display: grid;
    place-items: center;
    min-height: 190px;
    margin: 0;
    border-radius: 6px;
    background: #fffdf8;
    position: relative;
}

.fe-generic-preview__stage figcaption {
    align-self: end;
    color: var(--fe-muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-align: center;
    text-transform: uppercase;
}

.fe-generic-preview__stage img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 92%;
    max-height: 210px;
    object-fit: contain;
    object-position: center;
}

.fe-saddle-preview,
.fe-generic-preview__stage {
    cursor: zoom-in;
}

.fe-phone-field {
    display: grid;
    grid-template-columns: minmax(118px, .42fr) minmax(0, 1fr);
    gap: 8px;
}

.fe-phone-field__code,
.fe-phone-field__number {
    min-width: 0;
}

.fe-field-hint {
    margin: 7px 0 0;
    color: var(--fe-muted);
    font-size: 11px;
    line-height: 1.45;
}

.fe-generic-preview__figure--empty {
    min-height: 190px;
    border: 1px dashed rgba(198, 168, 122, .45);
    color: var(--fe-muted);
    font-size: 12px;
    line-height: 1.5;
    padding: 18px;
    text-align: center;
}

.fe-generic-preview__figure--empty small {
    color: rgba(74, 74, 74, .72);
    display: block;
    font-size: 10px;
    letter-spacing: .04em;
    line-height: 1.4;
    margin-top: 8px;
    text-transform: uppercase;
}

.fe-generic-preview__figure--layered {
    gap: 8px;
}

.fe-generic-layered-stage {
    aspect-ratio: 1.35 / 1;
    display: grid;
    isolation: isolate;
    max-height: 230px;
    place-items: center;
    position: relative;
    width: min(100%, 340px);
}

.fe-generic-layered-stage__base,
.fe-generic-layered-stage__mask,
.fe-generic-layered-stage__overlay {
    inset: 0;
    height: 100%;
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
    pointer-events: none;
    position: absolute;
    width: 100%;
}

.fe-generic-preview--blanket .fe-generic-layered-stage--right .fe-generic-layered-stage__base,
.fe-generic-preview--blanket .fe-generic-layered-stage--right .fe-generic-layered-stage__mask,
.fe-generic-preview--blanket .fe-generic-layered-stage--right .fe-generic-layered-stage__overlay,
.fe-static-preview--blanket .fe-generic-layered-stage--right .fe-generic-layered-stage__base,
.fe-static-preview--blanket .fe-generic-layered-stage--right .fe-generic-layered-stage__mask,
.fe-static-preview--blanket .fe-generic-layered-stage--right .fe-generic-layered-stage__overlay {
    transform: scaleX(-1);
}

.fe-generic-layered-stage__base {
    z-index: 1;
}

.fe-generic-layered-stage__base--reference {
    opacity: 0;
}

.fe-generic-layered-stage__mask {
    background: var(--layer-color);
    -webkit-mask-image: var(--layer-mask);
    mask-image: var(--layer-mask);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    mix-blend-mode: normal;
    opacity: .96;
    z-index: 2;
}

.fe-generic-layered-stage__mask--body {
    z-index: 2;
}

.fe-generic-layered-stage__mask--finishing {
    z-index: 3;
}

.fe-generic-layered-stage__mask--detail {
    mix-blend-mode: normal;
    opacity: .88;
    z-index: 4;
}

.fe-generic-layered-stage__overlay {
    z-index: 4;
}

.fe-generic-layered-stage__overlay--detail {
    z-index: 4;
}

.fe-generic-layered-stage__overlay--shadow {
    z-index: 3;
}

.fe-generic-layered-stage .fe-generic-preview__marks {
    z-index: 12;
}

.fe-generic-preview__asset-note {
    color: rgba(111, 103, 92, .86);
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .06em;
    line-height: 1.4;
    text-align: center;
    text-transform: uppercase;
}

.fe-generic-preview__figure--with-branding img {
    position: relative;
    z-index: 1;
}

.fe-generic-preview__marks {
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 12;
}

.fe-generic-preview__mark {
    align-items: center;
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    height: var(--mark-h, auto);
    isolation: isolate;
    max-width: var(--mark-max-w, 42%);
    mix-blend-mode: normal;
    position: absolute;
    text-align: center;
    text-decoration: none !important;
    transform: translate(-50%, -50%);
    width: var(--mark-w, auto);
    z-index: 12;
}

.fe-generic-preview__logo {
    display: block;
    height: 100%;
    max-height: var(--mark-max-h, 32px);
    max-width: var(--mark-max-w, 54px);
    object-fit: contain;
    width: 100%;
}

.fe-generic-preview__logo-badge {
    max-width: min(86px, var(--mark-max-w, 86px));
}

.fe-generic-preview--blanket .fe-generic-preview__logo {
    max-height: var(--mark-max-h, 72px);
    max-width: var(--mark-max-w, 116px);
}

.fe-generic-preview--stable_curtain_set .fe-generic-preview__logo {
    max-height: var(--mark-max-h, 36px);
    max-width: var(--mark-max-w, 58px);
}

.fe-generic-preview--ear_bonnet .fe-generic-preview__logo {
    max-height: 30px;
    max-width: 48px;
}

.fe-generic-preview__logo--small {
    max-height: var(--mark-max-h, 24px);
    max-width: var(--mark-max-w, 42px);
}

.fe-generic-preview__logo--large {
    max-height: var(--mark-max-h, 44px);
    max-width: var(--mark-max-w, 74px);
}

.fe-generic-preview--blanket .fe-generic-preview__logo--small {
    max-height: var(--mark-max-h, 48px);
    max-width: var(--mark-max-w, 76px);
}

.fe-generic-preview--blanket .fe-generic-preview__logo--large {
    max-height: var(--mark-max-h, 96px);
    max-width: var(--mark-max-w, 150px);
}

.fe-generic-preview__text {
    color: #111111;
    display: inline-block;
    font-size: clamp(10px, 1.5vw, 16px);
    font-weight: 900;
    isolation: isolate;
    letter-spacing: .04em;
    line-height: 1.1;
    max-width: min(120px, var(--mark-max-w, 120px));
    mix-blend-mode: normal;
    position: relative;
    text-decoration: none !important;
    text-shadow:
        0 1px 1px rgba(255, 253, 248, .78),
        0 -1px 1px rgba(255, 253, 248, .52);
    text-transform: uppercase;
    z-index: 13;
}

.fe-generic-preview__flag {
    display: block;
    filter: drop-shadow(0 1px 2px rgba(17, 17, 17, .16));
    line-height: 1;
}

.fe-generic-preview__flag.fe-preview-flag-img {
    height: min(28px, var(--mark-max-h, 28px));
    max-height: var(--mark-max-h, 28px);
    max-width: var(--mark-max-w, 42px);
    object-fit: contain;
    width: min(42px, var(--mark-max-w, 42px));
}

.fe-generic-preview__flag--small {
    font-size: 14px;
}

.fe-generic-preview__flag--medium {
    font-size: 18px;
}

.fe-generic-preview__flag--large {
    font-size: 22px;
}

.fe-product-proof {
    width: 100%;
    min-height: 230px;
    border: 1px solid rgba(222, 216, 201, .72);
    background: #fffdf8;
    overflow: hidden;
}

.fe-product-proof__svg {
    display: block;
    width: 100%;
    height: auto;
    min-height: 220px;
}

.fe-product-proof__svg .fe-proof-ear-bonnet-body {
    vector-effect: non-scaling-stroke;
}

.fe-ear-preview {
    display: grid;
    gap: 8px;
    margin: 0;
    min-height: 230px;
    place-items: center;
}

.fe-ear-preview__stage {
    display: grid;
    height: 210px;
    place-items: center;
    width: min(100%, 280px);
}

.fe-ear-preview--asset {
    min-height: 230px;
}

.fe-ear-preview__asset-stage {
    aspect-ratio: 1.35 / 1;
    display: grid;
    filter: drop-shadow(0 16px 22px rgba(17, 17, 17, .12));
    height: 220px;
    place-items: center;
    position: relative;
    width: min(100%, 330px);
}

.fe-ear-preview__base,
.fe-ear-preview__mask {
    inset: 0;
    height: 100%;
    object-fit: contain;
    object-position: center;
    pointer-events: none;
    position: absolute;
    width: 100%;
}

.fe-ear-preview__base {
    z-index: 1;
}

.fe-ear-preview__mask {
    background: currentColor;
    -webkit-mask-image: var(--layer-mask);
    mask-image: var(--layer-mask);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.fe-ear-preview__mask--main {
    color: var(--main);
    z-index: 2;
}

.fe-ear-preview__mask--piping {
    color: var(--piping);
    z-index: 3;
}

.fe-ear-preview__shape {
    height: 188px;
    position: relative;
    width: 220px;
}

.fe-ear-preview__ear,
.fe-ear-preview__body,
.fe-ear-preview__rope {
    display: block;
    position: absolute;
}

.fe-ear-preview__ear {
    background: var(--main);
    border: 5px solid var(--piping);
    border-bottom: 0;
    border-radius: 62% 62% 42% 42%;
    box-shadow: inset 9px 0 18px rgba(255, 255, 255, .14), inset -10px -10px 18px rgba(17, 17, 17, .18);
    height: 102px;
    top: 0;
    width: 46px;
    z-index: 2;
}

.fe-ear-preview__ear--left {
    left: 54px;
    transform: rotate(-9deg);
}

.fe-ear-preview__ear--right {
    right: 54px;
    transform: rotate(9deg);
}

.fe-ear-preview__body {
    background: var(--main);
    border: 6px solid var(--piping);
    border-radius: 48% 48% 34% 34% / 36% 36% 42% 42%;
    bottom: 14px;
    box-shadow: inset 14px 12px 22px rgba(255, 255, 255, .13), inset -16px -16px 22px rgba(17, 17, 17, .2), 0 16px 26px rgba(17, 17, 17, .14);
    height: 112px;
    left: 28px;
    transform: perspective(180px) rotateX(3deg);
    width: 164px;
}

.fe-ear-preview__body::before,
.fe-ear-preview__body::after {
    background: var(--main);
    border-top: 5px solid var(--piping);
    content: "";
    height: 38px;
    position: absolute;
    top: 16px;
    width: 48px;
}

.fe-ear-preview__body::before {
    border-left: 5px solid var(--piping);
    border-radius: 70% 0 0 40%;
    left: -28px;
    transform: rotate(-13deg);
}

.fe-ear-preview__body::after {
    border-radius: 0 70% 40% 0;
    border-right: 5px solid var(--piping);
    right: -28px;
    transform: rotate(13deg);
}

.fe-ear-preview__rope {
    border-bottom: 5px solid var(--piping);
    border-radius: 50%;
    bottom: 34px;
    height: 62px;
    left: 52px;
    opacity: .95;
    width: 116px;
    z-index: 3;
}

.fe-ear-preview__shape--long {
    height: 204px;
}

.fe-ear-preview__shape--long .fe-ear-preview__body {
    bottom: 2px;
    height: 132px;
}

.fe-ear-preview figcaption {
    color: var(--fe-muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-align: center;
    text-transform: uppercase;
}

.fe-product-proof__brand {
    pointer-events: none;
}

.fe-generic-preview--review .fe-product-proof {
    min-height: 190px;
}

.fe-generic-preview--review .fe-product-proof__svg {
    min-height: 180px;
}

.fe-preview-asset-empty {
    display: grid;
    place-items: center;
    min-height: 190px;
    border: 1px dashed rgba(185, 151, 91, .48);
    border-radius: 7px;
    color: var(--fe-muted);
    font-size: 13px;
    letter-spacing: .03em;
    text-align: center;
    padding: 18px;
}

.fe-generic-preview__color,
.fe-generic-preview__brand {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    color: var(--fe-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.fe-generic-preview__color span {
    width: 18px;
    height: 18px;
    border: 1px solid rgba(17, 17, 17, .18);
    border-radius: 999px;
}

.fe-generic-preview__brand span {
    border: 1px solid var(--fe-line);
    border-radius: 999px;
    padding: 5px 9px;
    background: #fff;
}

.fe-generic-preview__meta {
    display: grid;
    gap: 0;
    margin: 14px 0 0;
    border-top: 1px solid rgba(222, 216, 201, .72);
}

.fe-generic-preview__meta div {
    display: grid;
    grid-template-columns: minmax(96px, .55fr) 1fr;
    gap: 12px;
    border-bottom: 1px solid rgba(222, 216, 201, .72);
    padding: 8px 0;
}

.fe-generic-preview__meta dt,
.fe-generic-preview__meta dd {
    margin: 0;
    font-size: 12px;
    line-height: 1.4;
}

.fe-generic-preview__meta dt {
    color: var(--fe-muted);
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.fe-generic-preview__meta dd {
    color: var(--fe-ink);
    text-align: right;
}

.fe-generic-preview--review {
    margin: 0 0 14px;
    box-shadow: none;
}

.fe-generic-preview--review .fe-generic-preview__stage {
    min-height: 180px;
}

@media (max-width: 900px) {
    .fe-customize-layout--generic .fe-generic-preview {
        position: relative;
        top: auto;
        order: initial;
    }

    .fe-generic-preview__stage {
        min-height: 190px;
    }
}

@media (min-width: 901px) {
    .fe-mobile-config-section {
        display: block;
    }

    .fe-mobile-config-section__summary {
        display: none;
    }

    .fe-mobile-config-section__body {
        display: block;
    }
}

@media (max-width: 900px) {
    .fe-custom-page {
        width: min(100%, calc(100vw - 16px));
        margin-inline: auto;
        padding-bottom: 92px;
        --fe-mobile-sticky-action-height: 78px;
    }

    .fe-title {
        font-size: clamp(32px, 9vw, 44px);
        line-height: 1.02;
    }

    .fe-subtitle,
    .fe-panel-copy {
        font-size: 13px;
        line-height: 1.55;
    }

    .fe-step-nav,
    .fe-step-nav--compact {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        position: sticky;
        top: 0;
        z-index: 18;
        background: #fffdf8;
    }

    .fe-step-btn {
        min-height: 38px;
        padding: 0 4px;
        font-size: 10px;
        letter-spacing: .06em;
    }

    .fe-step-panel {
        padding: 16px 10px 22px;
    }

    .fe-product-group__head,
    .fe-product-group--more > summary {
        margin: 0 0 12px;
        color: var(--fe-gold);
        cursor: pointer;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: .12em;
        text-transform: uppercase;
    }

    .fe-product-group--more {
        margin-top: 18px;
    }

    .fe-product-group--more > summary {
        display: flex;
        align-items: center;
        min-height: 42px;
        border-top: 1px solid var(--fe-line);
        border-bottom: 1px solid var(--fe-line);
    }

    .fe-category-grid,
    .fe-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .fe-card {
        min-height: 226px;
        border-radius: 6px;
    }

    .fe-card-image {
        height: 128px;
        min-height: 128px;
    }

    .fe-card-body {
        padding: 11px 10px 13px;
    }

    .fe-card-title {
        display: -webkit-box;
        min-height: 38px;
        margin-bottom: 5px;
        overflow: hidden;
        font-size: 17px;
        line-height: 1.08;
        overflow-wrap: normal;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .fe-card-desc {
        display: none;
    }

    .fe-card-price {
        margin-top: 6px;
        padding-top: 6px;
        gap: 4px;
        font-size: 10px;
        letter-spacing: .06em;
    }

    .fe-card-price strong {
        font-size: 12px;
    }

    .fe-current-product {
        grid-template-columns: 58px minmax(0, 1fr);
        gap: 10px;
        margin-bottom: 12px;
        padding: 10px;
    }

    .fe-current-product__image {
        width: 58px;
        height: 58px;
    }

    .fe-current-product strong {
        font-size: 16px;
    }

    .fe-current-product p,
    .fe-current-product__eyebrow {
        display: none;
    }

    .fe-customize-layout,
    .fe-customize-layout--generic {
        gap: 14px;
    }

    .fe-preview-card,
    .fe-customize-layout--generic .fe-generic-preview {
        position: sticky;
        top: 39px;
        z-index: 17;
        order: -1;
        padding: 10px;
        box-shadow: 0 12px 28px rgba(17, 17, 17, .08);
    }

    .fe-preview-card__head p,
    .fe-preview-disclaimer {
        display: none;
    }

    .fe-preview-card:not(.is-expanded) .fe-preview-side-tabs,
    .fe-preview-card:not(.is-expanded) .fe-saddle-preview,
    .fe-preview-card:not(.is-expanded) .fe-preview-meta,
    .fe-generic-preview:not(.is-expanded) .fe-generic-preview__stage,
    .fe-generic-preview:not(.is-expanded) .fe-generic-preview__legend,
    .fe-generic-preview:not(.is-expanded) .fe-generic-preview__meta {
        display: none;
    }

    .fe-preview-toggle {
        display: inline-flex;
    }

    .fe-mobile-config-section {
        margin: 0 0 10px;
        padding: 0;
        border: 1px solid var(--fe-line);
        border-radius: 6px;
        background: #fffdf8;
    }

    .fe-mobile-config-section__summary {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 48px;
        padding: 0 13px;
        cursor: pointer;
        color: var(--fe-ink);
        font-size: 12px;
        font-weight: 800;
        letter-spacing: .1em;
        list-style: none;
        text-transform: uppercase;
    }

    .fe-mobile-config-section__summary::-webkit-details-marker {
        display: none;
    }

    .fe-mobile-config-section__summary::after {
        content: "+";
        color: var(--fe-gold);
        font-size: 18px;
        line-height: 1;
    }

    .fe-mobile-config-section[open] .fe-mobile-config-section__summary::after {
        content: "−";
    }

    .fe-mobile-config-section__body {
        padding: 0 12px 14px;
    }

    .fe-mobile-config-section__body > .fe-label {
        display: none;
    }

    .fe-options,
    .fe-options--saddle-type,
    .fe-options--patterns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
    }

    .fe-apparel-choice-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin-bottom: 14px;
    }

    .fe-apparel-choice {
        min-height: 38px;
        padding-inline: 10px;
    }

    .fe-apparel-choice span {
        font-size: 10px;
        letter-spacing: .055em;
    }

    .fe-option {
        min-height: 136px;
        padding: 8px;
    }

    .fe-option-image {
        min-height: 92px;
        height: 92px;
    }

    .fe-pattern-option {
        min-height: 142px;
        grid-template-rows: 98px auto;
    }

    .fe-pattern-option .fe-option-image {
        min-height: 98px;
        height: 98px;
    }

    .fe-option-title,
    .fe-pattern-title {
        font-size: 12px;
        line-height: 1.18;
        letter-spacing: .03em;
        word-break: normal;
        overflow-wrap: anywhere;
    }

    .fe-swatch-grid {
        gap: 8px;
    }

    .fe-swatch {
        width: 36px;
        height: 36px;
    }

    .fe-reference {
        grid-template-columns: 80px minmax(0, 1fr);
        min-height: 118px;
        padding: 10px;
    }

    .fe-reference-art {
        height: 86px;
        min-height: 86px;
    }

    .fe-actions {
        position: sticky;
        bottom: 0;
        z-index: 30;
        min-height: var(--fe-mobile-sticky-action-height);
        max-height: 88px;
        padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
        gap: 8px;
        background: rgba(248, 241, 228, .96);
        backdrop-filter: blur(12px);
    }

    .fe-selected-count {
        flex: 1 0 100%;
        order: -1;
        margin: 0;
        font-size: 10px;
        letter-spacing: .1em;
        text-align: left;
    }

    .fe-action-btn {
        min-height: 44px;
        flex: 1 1 0;
        padding-inline: 12px;
        font-size: 12px;
        letter-spacing: .12em;
    }

    .fe-action-btn--secondary {
        flex: 0 0 auto;
        min-width: 92px;
    }
}

@media (max-width: 430px) {
    .fe-card {
        min-height: 220px;
    }

    .fe-card-image {
        height: 120px;
        min-height: 120px;
    }

    .fe-card-title {
        font-size: 16px;
    }
}

/* Version 2.6.80: mobile/tablet polish and calmer preview/action behavior. */
@media (max-width: 1024px) {
    .fe-custom-page {
        padding-top: 10px;
    }

    .fe-hero {
        padding: 18px 12px 12px;
    }

    .fe-title {
        max-width: none;
        margin: 0 auto 7px !important;
        font-size: clamp(18px, 4.8vw, 24px) !important;
        line-height: 1.05 !important;
        white-space: nowrap;
    }

    .fe-subtitle {
        max-width: calc(100vw - 34px);
        margin: 0 auto 12px !important;
        overflow: hidden;
        color: rgba(74, 74, 74, .9);
        font-size: 11px !important;
        line-height: 1.2 !important;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .fe-builder {
        margin-bottom: 22px;
        border-radius: 6px;
    }

    .fe-builder-head,
    .fe-builder-head .fe-kicker {
        display: none !important;
    }

    .fe-step-nav,
    .fe-step-nav--compact {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        position: sticky;
        top: 0;
        z-index: 18;
    }

    .fe-step-btn {
        min-height: 38px !important;
        padding: 0 2px !important;
        font-size: 10px !important;
        letter-spacing: .055em !important;
        line-height: 1 !important;
        white-space: nowrap;
    }

    .fe-step-panel {
        padding: 14px 10px 18px !important;
    }

    .fe-panel-title {
        max-width: 100%;
        margin: 0 0 12px !important;
        font-size: clamp(18px, 5vw, 24px) !important;
        line-height: 1 !important;
        white-space: nowrap;
    }

    .fe-help-strip {
        display: flex !important;
        padding: 10px 12px !important;
    }

    .fe-preview-card,
    .fe-customize-layout--generic .fe-generic-preview {
        position: sticky !important;
        top: 34px !important;
        z-index: 17;
        max-height: 50vh;
        padding: 10px !important;
        overflow: hidden;
    }

    .fe-preview-card__head {
        align-items: center;
        margin-bottom: 7px;
    }

    .fe-preview-card__head .fe-label {
        margin: 0;
        font-size: 12px;
        letter-spacing: .08em;
    }

    .fe-preview-card__head p,
    .fe-preview-toggle,
    .fe-preview-disclaimer,
    .fe-preview-meta,
    .fe-generic-preview__legend,
    .fe-generic-preview__color,
    .fe-generic-preview__brand,
    .fe-generic-preview__meta {
        display: none !important;
    }

    .fe-preview-card:not(.is-expanded) .fe-preview-side-tabs {
        display: grid !important;
    }

    .fe-preview-card:not(.is-expanded) .fe-saddle-preview {
        display: grid !important;
    }

    .fe-generic-preview:not(.is-expanded) .fe-generic-preview__stage {
        display: grid !important;
    }

    .fe-static-preview-grid {
        grid-template-columns: 1fr;
    }

    .fe-preview-side-tabs {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
        margin: 0 0 8px;
    }

    .fe-preview-side-tabs button {
        min-height: 34px !important;
        padding: 0 8px !important;
        font-size: 10px !important;
        letter-spacing: .075em !important;
    }

    .fe-saddle-preview,
    .fe-saddle-preview--asset,
    .fe-generic-preview__stage {
        min-height: 154px !important;
        height: min(30vh, 214px) !important;
        max-height: 214px !important;
        padding: 8px !important;
    }

    .fe-saddle-preview__asset-stage,
    .fe-product-proof,
    .fe-generic-layered-stage {
        max-height: 100% !important;
    }

    .fe-saddle-preview__asset-stage {
        width: min(100%, 280px) !important;
        height: auto !important;
        aspect-ratio: 1.42 / 1 !important;
    }

    .fe-saddle-preview__shape {
        width: min(92%, 280px) !important;
        height: auto !important;
        max-width: 100% !important;
        max-height: 100% !important;
    }

    .fe-actions {
        display: grid !important;
        grid-template-columns: 92px minmax(0, 1fr);
        align-items: center;
        position: sticky !important;
        bottom: 0 !important;
        z-index: 36;
        min-height: 60px !important;
        max-height: 72px !important;
        padding: 7px 10px calc(7px + env(safe-area-inset-bottom)) !important;
        gap: 8px !important;
        opacity: 0;
        pointer-events: none;
        transform: translateY(calc(100% + 10px));
        transition: opacity .22s ease, transform .22s ease;
    }

    .fe-mobile-actions-visible .fe-actions {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .fe-selected-count {
        display: none !important;
    }

    .fe-action-btn {
        min-height: 42px !important;
        width: 100%;
        padding: 0 10px !important;
        font-size: 10.5px !important;
        letter-spacing: .1em !important;
        line-height: 1.15;
        white-space: nowrap;
    }

    .fe-action-btn--ghost {
        min-width: 0 !important;
    }

    body.fe-has-configurator .fe-chat {
        bottom: calc(82px + env(safe-area-inset-bottom)) !important;
    }
}

@media (max-width: 430px) {
    .fe-title {
        font-size: clamp(19px, 5.2vw, 23px) !important;
    }

    .fe-subtitle {
        font-size: 12px !important;
    }

    .fe-panel-title {
        font-size: clamp(20px, 5.6vw, 25px) !important;
    }

    .fe-step-btn {
        font-size: 9.2px !important;
        letter-spacing: .04em !important;
    }

    .fe-preview-card,
    .fe-customize-layout--generic .fe-generic-preview {
        max-height: 52vh;
    }

    .fe-saddle-preview,
    .fe-saddle-preview--asset,
    .fe-generic-preview__stage {
        height: min(32vh, 220px) !important;
        min-height: 152px !important;
    }

    .fe-action-btn {
        font-size: 10px !important;
        letter-spacing: .085em !important;
        padding-inline: 8px !important;
    }
}

/* Version 2.6.89: product selection cleanup, apparel front/back branding, and calmer review previews. */
.fe-panel-heading-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0 0 14px;
}

.fe-panel-heading-row .fe-panel-title {
    margin: 0;
}

.fe-clear-products {
    min-height: 38px;
    border: 1px solid var(--fe-line);
    border-radius: 999px;
    background: #fffdf8;
    color: var(--fe-ink);
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    padding: 0 16px;
    text-transform: uppercase;
}

.fe-clear-products:disabled {
    cursor: default;
    opacity: .45;
}

.fe-review .fe-review-card {
    background: #fffdf8;
    box-shadow: none;
    padding: 14px;
}

.fe-review .fe-review-card h4 {
    margin-bottom: 8px;
}

.fe-review .fe-review-live-preview,
.fe-review .fe-generic-preview--review {
    margin: 0 0 12px;
}

.fe-review .fe-preview-card,
.fe-review .fe-generic-preview {
    border: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 0 !important;
}

.fe-review .fe-review-side-preview,
.fe-review .fe-generic-preview__stage {
    border: 1px solid var(--fe-line);
    border-radius: 6px;
    background: #fff;
    padding: 10px;
}

.fe-review .fe-preview-meta,
.fe-review .fe-generic-preview__specs {
    margin-top: 8px;
}

.fe-static-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 10px 0 12px;
}

.fe-static-preview {
    margin: 0;
    border: 1px solid var(--fe-line);
    border-radius: 7px;
    background: #fffdf8;
    padding: 10px;
}

.fe-static-preview figcaption {
    margin: 8px 0 0;
    color: var(--fe-muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-align: center;
    text-transform: uppercase;
}

.fe-static-preview .fe-saddle-preview,
.fe-static-preview .fe-generic-preview__stage {
    border: 0 !important;
    background: transparent !important;
    padding: 0 !important;
}

.fe-static-preview .fe-saddle-preview {
    min-height: 0;
}

.fe-static-preview .fe-saddle-preview svg,
.fe-static-preview .fe-generic-preview__stage svg {
    max-height: 220px;
}

@media (max-width: 760px) {
    .fe-panel-heading-row {
        display: grid;
        grid-template-columns: 1fr;
        align-items: flex-start;
        gap: 6px;
        margin-bottom: 12px;
        max-width: 100%;
        overflow: hidden;
    }

    .fe-panel-heading-row .fe-panel-title {
        max-width: 100%;
        overflow-wrap: normal;
        word-break: normal;
    }

    .fe-clear-products {
        justify-self: start;
        max-width: 100%;
        min-height: 30px;
        border-radius: 999px;
        font-size: 10px;
        letter-spacing: .045em;
        line-height: 1;
        padding: 0 10px;
        white-space: nowrap;
    }

    .fe-product-group .fe-category-grid.fe-product-grid,
    .fe-category-grid.fe-product-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        grid-auto-flow: row !important;
        gap: 10px !important;
        overflow: visible !important;
    }

    .fe-product-grid .fe-card {
        width: 100% !important;
        min-width: 0 !important;
    }

    .fe-product-grid .fe-card-title {
        font-size: 16px;
        line-height: 1.08;
    }

    .fe-review .fe-review-card {
        padding: 12px;
    }
}

@media (max-width: 430px) {
    .fe-panel-heading-row .fe-panel-title {
        font-size: clamp(18px, 5vw, 22px) !important;
        line-height: 1.05 !important;
    }

    .fe-clear-products {
        min-height: 28px;
        font-size: 9px;
        padding-inline: 9px;
    }
}

/* Version 2.6.137: targeted Custom Design mobile/card and preview cleanup. */
.fe-help-strip:empty {
    display: none !important;
}

.fe-item-builder--compact {
    margin-top: 18px;
}

.fe-preview-flag {
    display: inline-grid;
    place-items: center;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
    line-height: 1;
    text-rendering: auto;
}

.fe-preview-flag-img {
    background: transparent;
    border: 0;
    font-family: inherit;
    padding: 0;
}

.fe-preview-flag--fallback {
    min-width: 44px;
    border: 1px solid rgba(17, 17, 17, .14);
    border-radius: 999px;
    background: rgba(255, 253, 248, .92);
    color: var(--fe-muted);
    font-size: 9px !important;
    font-weight: 800;
    letter-spacing: .06em;
    padding: 4px 7px;
    text-transform: uppercase;
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .fe-help-strip {
        display: none !important;
    }

    .fe-panel-heading-row {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 7px !important;
        overflow: visible !important;
    }

    .fe-panel-heading-row .fe-panel-title,
    .fe-step-panel > .fe-panel-title {
        font-family: inherit !important;
        font-size: clamp(15px, 4.2vw, 18px) !important;
        font-weight: 800 !important;
        letter-spacing: .08em !important;
        line-height: 1.18 !important;
        text-transform: uppercase !important;
        white-space: normal !important;
    }

    .fe-clear-products {
        justify-self: start !important;
        max-width: calc(100vw - 42px) !important;
        min-height: 28px !important;
        padding: 0 10px !important;
        font-size: 9px !important;
        letter-spacing: .045em !important;
    }

    .fe-card {
        display: grid !important;
        grid-template-rows: minmax(138px, 1fr) auto !important;
        min-height: 218px !important;
    }

    .fe-card-image {
        height: 142px !important;
        min-height: 142px !important;
        padding: 4px !important;
    }

    .fe-card-body {
        padding: 8px 10px 10px !important;
    }

    .fe-card-title {
        min-height: 32px !important;
        margin-bottom: 4px !important;
        font-size: 15px !important;
        line-height: 1.08 !important;
    }

    .fe-card-price {
        margin-top: 4px !important;
        padding-top: 5px !important;
        font-size: 9px !important;
    }

    .fe-card-price strong {
        font-size: 11px !important;
    }

    .fe-option,
    .fe-pattern-option {
        min-height: 126px !important;
        padding: 7px !important;
    }

    .fe-option-image,
    .fe-pattern-option .fe-option-image {
        height: 90px !important;
        min-height: 90px !important;
        padding: 3px !important;
    }

    .fe-preview-card,
    .fe-customize-layout--generic .fe-generic-preview {
        overflow: visible !important;
    }

    .fe-saddle-preview,
    .fe-saddle-preview--asset,
    .fe-generic-preview__stage {
        overflow: hidden !important;
        display: grid !important;
        place-items: center !important;
    }

    .fe-saddle-preview__asset-stage,
    .fe-generic-layered-stage,
    .fe-product-proof {
        width: 100% !important;
        max-width: 100% !important;
        height: 100% !important;
        max-height: 100% !important;
    }

    .fe-saddle-preview__asset-stage img,
    .fe-generic-layered-stage img,
    .fe-product-proof img {
        object-fit: contain !important;
        object-position: center !important;
    }

    .fe-saddle-preview__shape,
    .fe-saddle-preview svg,
    .fe-generic-layered-stage svg,
    .fe-product-proof svg {
        max-width: 100% !important;
        max-height: 100% !important;
    }

    .fe-static-preview-tabs .fe-preview-side-tabs {
        margin-bottom: 8px;
    }
}

@media (max-width: 430px) {
    .fe-card {
        min-height: 210px !important;
    }

    .fe-card-image {
        height: 136px !important;
        min-height: 136px !important;
    }

    .fe-card-title {
        font-size: 14px !important;
    }
}

/* Version 2.6.145: keep Custom Design live previews fully visible on mobile. */
@media (max-width: 1024px) {
    .fe-preview-card,
    .fe-customize-layout--generic .fe-generic-preview {
        max-height: none !important;
        overflow: visible !important;
    }

    .fe-saddle-preview,
    .fe-saddle-preview--asset,
    .fe-generic-preview__stage {
        display: grid !important;
        width: 100% !important;
        min-height: 0 !important;
        height: auto !important;
        max-height: none !important;
        overflow: hidden !important;
        padding: 8px !important;
    }

    .fe-saddle-preview,
    .fe-saddle-preview--asset {
        aspect-ratio: 1.48 / 1 !important;
        align-items: center !important;
        justify-items: center !important;
    }

    .fe-generic-preview__stage {
        grid-template-columns: minmax(0, 1fr) !important;
        align-items: stretch !important;
        justify-items: stretch !important;
    }

    .fe-generic-preview__stage figure {
        display: grid !important;
        grid-template-rows: minmax(0, 1fr) auto !important;
        width: 100% !important;
        min-width: 0 !important;
        min-height: 0 !important;
        height: auto !important;
        margin: 0 !important;
        padding: 8px !important;
        place-items: center !important;
    }

    .fe-generic-preview__figure--layered {
        aspect-ratio: 1.48 / 1 !important;
    }

    .fe-saddle-preview__asset-stage {
        width: min(100%, 560px) !important;
        height: auto !important;
        max-width: 100% !important;
        max-height: 100% !important;
        aspect-ratio: 1.42 / 1 !important;
    }

    .fe-generic-layered-stage {
        width: min(100%, 560px) !important;
        height: auto !important;
        max-width: 100% !important;
        max-height: 100% !important;
        aspect-ratio: 1.48 / 1 !important;
    }

    .fe-generic-preview--blanket .fe-generic-layered-stage {
        width: min(100%, 520px) !important;
        aspect-ratio: 1.42 / 1 !important;
    }

    .fe-generic-preview--stable_curtain_set .fe-generic-layered-stage {
        width: min(100%, 430px) !important;
        aspect-ratio: 1.2 / 1 !important;
    }

    .fe-saddle-preview__base,
    .fe-saddle-preview__mask,
    .fe-saddle-preview__overlay,
    .fe-generic-layered-stage__base,
    .fe-generic-layered-stage__mask,
    .fe-generic-layered-stage__overlay {
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        max-height: 100% !important;
        object-fit: contain !important;
        object-position: center !important;
    }

    .fe-generic-preview__stage figcaption {
        margin-top: 4px !important;
    }

    body.fe-has-configurator .fe-chat,
    body.fe-has-configurator .fedele-whatsapp-chat,
    body.fe-has-configurator .fe-whatsapp-floating {
        right: 18px !important;
        bottom: calc(112px + env(safe-area-inset-bottom)) !important;
    }
}

@media (max-width: 430px) {
    .fe-saddle-preview,
    .fe-saddle-preview--asset,
    .fe-generic-preview__stage {
        padding: 7px !important;
    }

    .fe-generic-preview__stage figure {
        padding: 6px !important;
    }

    .fe-generic-preview--stable_curtain_set .fe-generic-layered-stage {
        width: min(100%, 380px) !important;
    }
}

/* Version 2.6.146: hide mobile preview heading to reduce Step 2 height. */
@media (max-width: 1024px) {
    .fe-preview-card__head,
    .fe-generic-preview__head {
        display: none !important;
    }

    .fe-preview-side-tabs,
    .fe-preview-side-tabs--generic {
        margin-top: 0 !important;
    }
}

/* FEDELE 2.6.191: keep Custom Design actions sticky immediately on mobile/tablet. */
@media (max-width: 1024px) {
    body.fe-has-configurator .fe-actions {
        position: sticky !important;
        bottom: 0 !important;
        z-index: 90 !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: none !important;
        transition: none !important;
    }

    body.fe-has-configurator .fe-actions.is-visible,
    body.fe-has-configurator .fe-actions.is-hidden,
    body.fe-has-configurator .fe-actions[data-sticky-state] {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: none !important;
    }
}

/* FEDELE 2.6.205: custom request submission confirmation. */
.fe-request-confirmation {
    width: min(920px, calc(100% - 32px));
    margin: 0 auto 52px;
    padding: 36px;
    border: 1px solid var(--fe-line, #ddd8cf);
    border-radius: 8px;
    background: var(--fe-paper, #fffdf8);
    box-shadow: 0 18px 46px rgba(17, 17, 17, 0.06);
}

.fe-request-confirmation--error {
    border-color: rgba(156, 34, 34, 0.28);
    background: #fffafa;
}

.fe-request-confirmation--error h2 {
    color: #8c1f1f;
}

.fe-request-confirmation__eyebrow {
    margin: 0 0 12px;
    color: var(--fe-gold, #c6a87a);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.fe-request-confirmation h2 {
    margin: 0 0 14px;
    color: var(--fe-ink, #111111);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 400;
    line-height: 1.04;
}

.fe-request-confirmation p {
    max-width: 680px;
    margin: 0;
    color: var(--fe-muted, #4a4a4a);
    font-size: 16px;
    line-height: 1.65;
}

.fe-request-confirmation__meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 26px 0 0;
}

.fe-request-confirmation__meta div {
    padding: 14px 16px;
    border: 1px solid var(--fe-line, #ddd8cf);
    border-radius: 6px;
    background: #ffffff;
}

.fe-request-confirmation__meta span {
    display: block;
    margin-bottom: 6px;
    color: var(--fe-gold, #c6a87a);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.fe-request-confirmation__meta strong {
    color: var(--fe-ink, #111111);
    font-size: 15px;
}

.fe-request-confirmation__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.fe-request-confirmation__actions .fe-action-btn {
    min-width: 170px;
    text-decoration: none;
}

@media (max-width: 767px) {
    .fe-request-confirmation {
        width: calc(100% - 24px);
        padding: 24px 18px;
        margin-bottom: 36px;
    }

    .fe-request-confirmation__meta {
        grid-template-columns: 1fr;
    }

    .fe-request-confirmation__actions .fe-action-btn {
        width: 100%;
    }
}
