.ft-editor-page,
.ft-create-page {
    --ft-bg: #f7f2ea;
    --ft-paper: #fbf8f3;
    --ft-ink: #2f2a25;
    --ft-muted: #72685e;
    --ft-border: #e5ddd0;
    --ft-shadow: 0 16px 44px rgba(62, 46, 31, 0.14);
    --ft-radius-xl: 26px;
    --ft-radius-lg: 18px;
}

.ft-heading-xl,
.ft-heading-lg {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    color: var(--ft-ink);
    letter-spacing: 0.01em;
}

.ft-heading-xl { font-size: clamp(2rem, 4vw, 3rem); }
.ft-heading-lg { font-size: clamp(1.45rem, 2vw, 2rem); }

.ft-subhead { font-size: 1.08rem; color: #5c534a; }
.ft-submeta { color: #7c7368; font-size: 0.95rem; }

.ft-create-page .ft-create-shell {
    max-width: 820px;
    background: #fff;
    border: 1px solid var(--ft-border);
    border-radius: var(--ft-radius-xl);
    box-shadow: var(--ft-shadow);
    padding: 1.6rem;
}

.ft-example-card {
    background: linear-gradient(145deg, #fff 20%, #f7f1e7 100%);
    border: 1px solid var(--ft-border);
    border-radius: var(--ft-radius-lg);
    padding: 1rem;
    box-shadow: 0 8px 24px rgba(89, 67, 41, 0.08);
}

.ft-example-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
}

.ft-example-copy { color: var(--ft-muted); font-size: 0.9rem; }

.ft-choice-card {
    border: 1px solid var(--ft-border);
    border-radius: 16px;
    background: #fff;
    display: block;
    padding: 0.95rem 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ft-choice-card input[type="radio"] { margin-right: 0.45rem; }
.ft-choice-title { font-weight: 700; color: var(--ft-ink); display: inline-block; }
.ft-choice-help { color: var(--ft-muted); display: block; margin-top: 0.35rem; }
.ft-choice-card:hover { border-color: #c8b79f; box-shadow: 0 8px 20px rgba(89, 67, 41, 0.09); }
.ft-choice-card-sm { min-height: 72px; display: flex; align-items: center; }

.ft-editor-shell {
    max-width: 1280px;
}

.ft-editor-topbar {
    background: #fff;
    border: 1px solid var(--ft-border);
    border-radius: 16px;
    padding: 0.85rem 1rem;
    box-shadow: 0 6px 20px rgba(89, 67, 41, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ft-topbar-meta { color: var(--ft-muted); font-size: 0.95rem; }

.ft-save-status {
    color: #2d5f42;
    font-weight: 600;
    font-size: 0.95rem;
}

.ft-save-status.is-saving { color: #9a6b14; }
.ft-save-status.is-error { color: #9d3030; }

.ft-editor-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    gap: 1rem;
}

.ft-canvas-panel {
    border: 1px solid var(--ft-border);
    border-radius: var(--ft-radius-xl);
    background: #fff;
    box-shadow: var(--ft-shadow);
    padding: 1rem;
}

.ft-canvas-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

#ft-art-subtitle { color: var(--ft-muted); }

.ft-canvas-shell {
    margin-top: 0.85rem;
    border-radius: 24px;
    padding: 18px;
    border: 1px solid #d9d2c8;
    background: radial-gradient(circle at top, #fff 0%, #f4ecdf 100%);
    min-height: 0;
    position: relative;
}

.ft-canvas-shell.is-wall {
    background-image:
        linear-gradient(rgba(82, 74, 64, 0.25), rgba(82, 74, 64, 0.25)),
        url("/assets/images/wall-bg.webp");
    background-size: cover;
    background-position: center;
}

.ft-canvas-stage {
    border-radius: 14px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y;
    min-height: 320px;
    box-shadow: 0 16px 34px rgba(46, 35, 24, 0.22);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.12)),
        repeating-linear-gradient(
            45deg,
            rgba(93, 72, 44, 0.03) 0,
            rgba(93, 72, 44, 0.03) 2px,
            transparent 2px,
            transparent 7px
        ),
        var(--ft-paper);
}

.ft-view-toggle {
    border-radius: 999px;
    border: 1px solid var(--ft-border);
    overflow: hidden;
}

.ft-view-toggle button {
    border: 0;
    padding: 0.45rem 0.8rem;
    background: #fff;
    color: #5d5449;
}

.ft-view-toggle button.is-active {
    background: #3d2f22;
    color: #fff;
}

.ft-side-panel {
    border: 1px solid var(--ft-border);
    border-radius: var(--ft-radius-xl);
    background: #fff;
    box-shadow: 0 12px 28px rgba(89, 67, 41, 0.1);
    padding: 1rem;
}

.ft-quality-card {
    border: 1px solid var(--ft-border);
    border-radius: 14px;
    background: #fefcf9;
    padding: 0.8rem;
}

.ft-quality-status { font-weight: 600; color: #8a6022; }
.ft-quality-status.is-ready { color: #25603f; }

.ft-quality-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #eee3d6;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: #544a3f;
}

.ft-quality-item:first-child { border-top: 0; }

.ft-badge {
    border-radius: 99px;
    font-size: 0.75rem;
    padding: 0.15rem 0.5rem;
}

.ft-badge.ok { background: #d7f1df; color: #1d6c3e; }
.ft-badge.warn { background: #ffecd1; color: #985f08; }

.ft-overlay-panel[hidden] { display: none !important; }

.ft-overlay-panel {
    position: fixed;
    inset: 0;
    z-index: 99995;
}

.ft-overlay-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(29, 20, 11, 0.42);
}

.ft-overlay-body {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: min(420px, 100%);
    background: #fff;
    box-shadow: -18px 0 34px rgba(35, 26, 17, 0.23);
    padding: 1rem;
    overflow: auto;
}

.ft-style-list,
.ft-action-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
}

.ft-style-tile,
.ft-action-chip {
    width: 100%;
    border: 1px solid var(--ft-border);
    border-radius: 14px;
    background: #fff;
    text-align: left;
    padding: 0.7rem 0.8rem;
}

.ft-style-tile.is-selected { border-color: #9f8464; background: #faf3e8; }
.ft-style-name { display: block; font-weight: 700; color: #44362a; }
.ft-style-tagline { color: #746a5d; }

.ft-best-match {
    border-radius: 14px;
    border: 1px solid #e7dbc8;
    background: #f9f1e3;
    padding: 0.75rem;
}

.ft-add-fab {
    position: fixed;
    right: 18px;
    bottom: 74px;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    border: 0;
    box-shadow: 0 12px 24px rgba(25, 19, 12, 0.32);
    background: #2f2419;
    color: #fff;
    font-size: 28px;
    z-index: 99990;
    display: none;
}

.ft-mobile-bottombar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    border-top: 1px solid var(--ft-border);
    background: #fff;
    z-index: 99989;
    padding: 0.55rem 0.35rem;
}

.ft-toast {
    position: fixed;
    left: 50%;
    transform: translateX(-50%) translateY(16px);
    bottom: 94px;
    background: #2f2419;
    color: #fff;
    padding: 0.55rem 0.8rem;
    border-radius: 12px;
    font-size: 0.9rem;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
    z-index: 99999;
}

.ft-toast.is-visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

@media (max-width: 991.98px) {
    .ft-editor-grid { grid-template-columns: 1fr; }
    .ft-side-panel { order: 2; margin-bottom: 86px; }
    .ft-canvas-panel { order: 1; }
    .ft-overlay-body {
        width: 100%;
        height: auto;
        top: auto;
        bottom: 0;
        border-radius: 18px 18px 0 0;
        max-height: 88vh;
    }
    .ft-add-fab { display: inline-flex; align-items: center; justify-content: center; }
}

.ft-editor-page {
    --ft-bg: #f3eee4;
    --ft-paper: #faf6ee;
    --ft-ink: #2c241c;
    --ft-muted: #6f6458;
    --ft-line: #ddd2c2;
    --ft-gold: #b0894d;
    --ft-gold-soft: #e8d7b3;
    background:
        radial-gradient(900px 420px at 80% -8%, rgba(196, 165, 116, 0.16), transparent 55%),
        linear-gradient(180deg, #f7f2e8 0%, #f3eee4 100%);
    color: var(--ft-ink);
    font-family: "Source Sans 3", "Segoe UI", sans-serif;
    padding: 1.2rem 1rem 5.5rem;
    min-height: 70vh;
}

.ft-editor-page *,
.ft-editor-page *::before,
.ft-editor-page *::after { box-sizing: border-box; }

.ft-editor-page button {
    width: auto;
    height: auto;
    min-height: 0;
    max-width: none;
    line-height: 1.35;
    font-family: inherit;
    background: transparent;
    color: inherit;
    border: 0;
    box-shadow: none;
}

.ft-editor-page .ft-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.7rem 1.1rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
}

.ft-editor-page .ft-btn-primary {
    background: #2c241c;
    color: #f7f1e6;
}

.ft-editor-page .ft-btn-ghost {
    background: #fff;
    color: var(--ft-ink);
    border: 1px solid #cfc3b2;
}

.ft-editor-shell {
    max-width: 1280px;
    margin: 0 auto;
}

.ft-editor-page .ft-editor-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background: #fffdf8;
    border: 0;
    border-radius: 22px;
    padding: 1rem 1.15rem;
    box-shadow: 0 12px 32px rgba(67, 48, 28, 0.08);
    margin-bottom: 1rem;
}

.ft-topbar-brand .ft-eyebrow {
    margin-bottom: 0.25rem;
}

.ft-editor-page .ft-heading-lg {
    font-size: clamp(1.4rem, 2vw, 1.85rem);
    margin: 0 0 0.2rem;
}

.ft-topbar-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.55rem;
}

.ft-editor-page .ft-save-status {
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: #e7f4ea;
    color: #25603f;
    font-size: 0.82rem;
}

.ft-editor-page .ft-save-status.is-saving { background: #fff0d6; color: #9a6b14; }
.ft-editor-page .ft-save-status.is-error { background: #f8e4e4; color: #9d3030; }

.ft-editor-page .ft-editor-grid {
    grid-template-columns: minmax(0, 1.7fr) minmax(300px, 0.8fr);
    gap: 1.1rem;
}

.ft-editor-page .ft-canvas-panel,
.ft-editor-page .ft-side-panel {
    min-width: 0;
    border: 0;
    background: #fffdf8;
    box-shadow: 0 16px 40px rgba(67, 48, 28, 0.08);
}

.ft-editor-page .ft-canvas-panel { padding: 1.15rem 1.15rem 1rem; }

.ft-editor-page #ft-art-title {
    display: block;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.25rem;
    letter-spacing: 0.04em;
}

.ft-editor-page #ft-art-subtitle {
    margin: 0.2rem 0 0;
    color: var(--ft-muted);
    font-size: 0.92rem;
}

.ft-editor-page .ft-view-toggle {
    border-color: var(--ft-line);
    background: #fff;
}

.ft-editor-page .ft-view-toggle button {
    padding: 0.5rem 0.9rem;
    background: transparent;
    color: #5d5449;
}

.ft-editor-page .ft-view-toggle button.is-active {
    background: #2c241c;
    color: #f7f1e6;
}

.ft-editor-page .ft-canvas-shell {
    min-height: 0;
    padding: 16px;
    border: 0;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.08), transparent 28%),
        linear-gradient(135deg, #d8c4a6 0%, #c4ad8c 48%, #b79a76 100%);
}

.ft-editor-page .ft-canvas-shell.is-wall {
    background-image:
        linear-gradient(rgba(82, 74, 64, 0.22), rgba(82, 74, 64, 0.22)),
        url("/assets/images/wall-bg.webp");
}

.ft-canvas-frame {
    position: relative;
    height: auto;
    min-height: 0;
    padding: 8px;
    background: linear-gradient(145deg, #5a4330, #3d2c1f 45%, #2b1e14);
    box-shadow: 0 22px 40px rgba(36, 24, 14, 0.28);
}

.ft-editor-page .ft-canvas-stage {
    height: min(68vh, 720px);
    min-height: 360px;
    max-height: min(68vh, 720px);
    border-radius: 2px;
    background: #f8f3ea;
}

.ft-editor-page .ft-canvas-stage svg {
    display: block;
    margin: 0 auto;
}

.ft-editor-page .ft-canvas-stage .ft-branch-handle circle {
    transition: transform 0.15s ease;
}

.ft-editor-page .ft-canvas-stage .ft-person-card:hover .ft-branch-handles,
.ft-editor-page .ft-canvas-stage .ft-person-card:focus-within .ft-branch-handles {
    opacity: 1;
}

.ft-canvas-tools {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.2rem;
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.94);
    border: 1px solid #e3d6c4;
    box-shadow: 0 8px 18px rgba(36, 24, 14, 0.16);
}

.ft-editor-page .ft-canvas-tools button {
    min-width: 36px;
    min-height: 36px;
    padding: 0 0.55rem;
    border-radius: 999px;
    background: transparent;
    color: #2c241c;
    font-size: 1rem;
    font-weight: 600;
}

.ft-editor-page .ft-canvas-tools button:hover,
.ft-editor-page .ft-canvas-tools button:focus-visible {
    background: #f3eadc;
}

.ft-zoom-label {
    min-width: 44px;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #6f6458;
}

.ft-canvas-hint,
.ft-side-note,
.ft-studio-mark {
    color: var(--ft-muted);
    font-size: 0.88rem;
    margin: 0.85rem 0 0;
}

.ft-studio-mark {
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.72rem;
    color: var(--ft-gold);
    margin: 0 0 0.9rem;
}

.ft-editor-page .ft-style-trigger,
.ft-editor-page .ft-add-desktop,
.ft-editor-page .ft-member-done,
.ft-editor-page .ft-best-match-cta {
    width: 100%;
}

.ft-editor-page .ft-add-desktop { width: auto; }

.ft-editor-page .ft-quality-card {
    margin-top: 1rem;
    border: 0;
    background: #f7f1e6;
    border-radius: 16px;
    padding: 1rem;
}

.ft-editor-page .ft-quality-card h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.05rem;
    margin: 0 0 0.35rem;
}

.ft-editor-page .ft-quality-status { margin: 0 0 0.55rem; }

.ft-editor-page .ft-overlay-body {
    background: #fffdf8;
    padding: 1.2rem 1.15rem 1.4rem;
}

.ft-overlay-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.ft-overlay-head h3 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.25rem;
    margin: 0;
}

.ft-overlay-close,
.ft-text-link {
    background: none;
    border: 0;
    color: #7a6d60;
    font-size: 0.92rem;
    padding: 0;
    text-decoration: none;
    cursor: pointer;
}

.ft-editor-page .ft-style-tile {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 0.75rem;
    align-items: center;
    width: 100%;
    height: auto;
    background: #fff;
    border: 1px solid var(--ft-line);
    border-radius: 16px;
    padding: 0.55rem;
    text-align: left;
}

.ft-editor-page .ft-style-tile.is-selected {
    border-color: var(--ft-gold-soft);
    background: #faf3e8;
}

.ft-style-thumb {
    border-radius: 10px;
    overflow: hidden;
    background: #efe6d6;
}

.ft-style-thumb .ft-art svg { max-height: 88px; }

.ft-editor-page .ft-action-chip {
    width: 100%;
    height: auto;
    min-height: 48px;
    background: #fff;
    border: 1px solid var(--ft-line);
    border-radius: 14px;
    padding: 0.75rem 0.9rem;
    text-align: left;
    color: var(--ft-ink);
}

.ft-editor-page .ft-action-chip:hover {
    border-color: var(--ft-gold-soft);
    background: #faf3e8;
}

.ft-more-wrap { margin-top: 1rem; }

.ft-member-form {
    display: grid;
    gap: 0.85rem;
}

.ft-member-form label span {
    display: block;
    font-size: 0.86rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.ft-member-form input,
.ft-member-form textarea {
    width: 100%;
    height: auto;
    min-height: 46px;
    border: 1px solid var(--ft-line);
    border-radius: 12px;
    background: #fff;
    color: var(--ft-ink);
    padding: 0.7rem 0.85rem;
    font-size: 1rem;
}

.ft-member-form textarea { min-height: 72px; }

.ft-photo-picker {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.ft-photo-frame {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    overflow: hidden;
    background: #f0e5d6;
    border: 1px solid #d4c4ae;
    flex: 0 0 76px;
}

.ft-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ft-photo-empty {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7a6d60;
    font-size: 0.72rem;
    text-align: center;
    padding: 0.4rem;
}

.ft-photo-upload {
    display: grid;
    gap: 0.25rem;
    min-width: 0;
}

.ft-photo-upload small {
    color: var(--ft-muted);
    font-size: 0.82rem;
}

.ft-photo-upload input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    overflow: hidden;
}

.ft-editor-page .ft-photo-upload .ft-btn {
    width: auto;
    margin-top: 0.35rem;
    display: inline-flex;
}

.ft-best-match-reason {
    color: var(--ft-muted);
    font-size: 0.92rem;
    margin: 0.4rem 0 0.8rem;
}

.ft-editor-page .ft-add-fab {
    width: 58px;
    height: 58px;
    background: #2c241c;
    color: #fff;
}

.ft-editor-page .ft-mobile-bottombar {
    display: flex;
    justify-content: space-between;
    gap: 0.6rem;
    padding: 0.65rem 0.8rem calc(0.65rem + env(safe-area-inset-bottom));
    background: #fffdf8;
}

.ft-editor-page .ft-mobile-bottombar .ft-btn { flex: 1; }

@media (max-width: 991.98px) {
    .ft-add-desktop { display: none !important; }
    .ft-editor-page .ft-editor-grid { grid-template-columns: 1fr; }
    .ft-editor-page { padding: 0.7rem 0.7rem 5.8rem; }
    .ft-editor-page .ft-editor-topbar {
        align-items: flex-start;
        flex-direction: column;
        padding: 0.7rem 0.85rem;
        gap: 0.45rem;
    }
    .ft-editor-page .ft-heading-lg { font-size: 1.2rem; }
    .ft-editor-page .ft-canvas-panel { padding: 0.75rem; }
    .ft-editor-page .ft-canvas-head { gap: 0.45rem; }
    .ft-editor-page .ft-canvas-shell { margin-top: 0.55rem; padding: 10px; }
    .ft-canvas-frame { padding: 6px; }
    .ft-editor-page .ft-canvas-stage {
        height: min(62vh, 560px);
        min-height: 300px;
        max-height: min(62vh, 560px);
    }
    .ft-canvas-hint { display: none; }
    .ft-canvas-tools { right: 12px; bottom: 12px; }
}

/* ------------------------------------------------------------------ */
/* Marketing hub + occasion landings                                    */
/* ------------------------------------------------------------------ */

.ft-market {
    --ft-bg: #f3eee4;
    --ft-paper: #faf6ee;
    --ft-ink: #2c241c;
    --ft-muted: #6f6458;
    --ft-line: #ddd2c2;
    --ft-gold: #b0894d;
    --ft-gold-soft: #e8d7b3;
    --ft-shadow: 0 28px 60px rgba(62, 42, 24, 0.18);
    background:
        radial-gradient(1200px 520px at 80% -10%, rgba(196, 165, 116, 0.16), transparent 55%),
        linear-gradient(180deg, #f7f2e8 0%, #f3eee4 28%, #efe7d9 100%);
    color: var(--ft-ink);
    font-family: "Source Sans 3", "Segoe UI", sans-serif;
    overflow: hidden;
}

.ft-checkout-page.ft-market {
    overflow: visible;
}

.ft-market *,
.ft-market *::before,
.ft-market *::after {
    box-sizing: border-box;
}

/* style.css sets `button { width:100px; height:40px; background:#0872ba }` site-wide */
.ft-market button {
    width: auto;
    height: auto;
    min-height: 0;
    max-width: none;
    line-height: 1.4;
    font-family: inherit;
    background: transparent;
    color: inherit;
    border: 0;
    box-shadow: none;
}

.ft-market .collapse:not(.show) {
    display: none !important;
}

.ft-market h1,
.ft-market h2,
.ft-market h3,
.ft-display {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    letter-spacing: -0.02em;
    color: var(--ft-ink);
    line-height: 1.2;
    margin: 0;
}

.ft-wrap {
    width: min(1180px, calc(100% - 2.4rem));
    margin: 0 auto;
}

.ft-hero {
    padding: 4.2rem 0 3.2rem;
}

.ft-hero-inner {
    width: min(1180px, calc(100% - 2.4rem));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    gap: 4rem;
    align-items: center;
}

.ft-eyebrow {
    margin: 0 0 0.85rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ft-gold);
}

.ft-display {
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    line-height: 1.08;
    font-weight: 600;
    margin: 0 0 1.1rem;
}

.ft-lead {
    font-size: 1.18rem;
    line-height: 1.55;
    color: var(--ft-muted);
    max-width: 34rem;
    margin: 0 0 0.85rem;
}

.ft-hero-meta {
    color: #8a7d6e;
    margin: 0 0 1.6rem;
}

.ft-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.4rem;
}

.ft-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    min-height: 52px;
    padding: 0.85rem 1.45rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.ft-btn-primary {
    background: #2c241c;
    color: #f7f1e6;
    box-shadow: 0 12px 28px rgba(44, 36, 28, 0.22);
}

.ft-btn-primary:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(44, 36, 28, 0.28);
}

.ft-btn-ghost {
    background: transparent;
    color: var(--ft-ink);
    border: 1px solid #cfc3b2;
}

.ft-btn-ghost:hover {
    color: var(--ft-ink);
    background: rgba(255, 255, 255, 0.55);
}

.ft-hero-proof,
.ft-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.4rem;
    padding: 0;
    margin: 0;
    list-style: none;
    color: #7a6d60;
    font-size: 0.92rem;
}

.ft-hero-proof li {
    position: relative;
    padding-left: 0.9rem;
}

.ft-hero-proof li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--ft-gold);
}

.ft-room {
    position: relative;
    min-height: 560px;
    padding: 2.6rem 1.6rem 2.2rem;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 30%),
        linear-gradient(135deg, #d8c4a6 0%, #c4ad8c 42%, #b79a76 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18), var(--ft-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ft-room::before,
.ft-room::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.ft-room::before {
    inset: 0;
    background: radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.34), transparent 34%);
}

.ft-room::after {
    left: 8%;
    right: 8%;
    bottom: 18px;
    height: 28px;
    background: radial-gradient(ellipse, rgba(48, 32, 16, 0.28), transparent 70%);
}

.ft-frame {
    position: relative;
    z-index: 1;
    margin: 0;
    width: min(340px, 78%);
}

.ft-frame--hero { width: min(360px, 82%); }

.ft-frame-wood {
    background: linear-gradient(145deg, #5a4330, #3d2c1f 45%, #2b1e14);
    padding: 12px;
    box-shadow: 0 22px 40px rgba(36, 24, 14, 0.32), inset 0 0 0 1px rgba(255, 232, 196, 0.14);
}

.ft-frame-mat {
    background: #f3eadc;
    padding: 10px;
}

.ft-art {
    width: 100%;
}

.ft-art svg {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 400 / 520;
    background: #f8f3ea;
}

.ft-frame-caption {
    margin: 0.85rem 0 0;
    text-align: center;
    color: #f6eedf;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ft-trust {
    border-top: 1px solid rgba(184, 164, 132, 0.28);
    border-bottom: 1px solid rgba(184, 164, 132, 0.28);
    background: rgba(255, 252, 246, 0.55);
    padding: 1rem 0;
}

.ft-trust-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-content: stretch;
    gap: 0.75rem 1rem;
    color: #5f5348;
    font-weight: 600;
    text-align: center;
}

.ft-section {
    padding: 5rem 0;
}

.ft-section-soft {
    background: rgba(255, 251, 244, 0.58);
}

.ft-section-head {
    max-width: 640px;
    margin: 0 auto 2.6rem;
    text-align: center;
}

.ft-section-head-left {
    margin: 0;
    text-align: left;
}

.ft-section-head h2,
.ft-close h2 {
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    margin-bottom: 0.7rem;
}

.ft-section-head p,
.ft-close p {
    color: var(--ft-muted);
    font-size: 1.05rem;
    margin: 0;
}

.ft-style-grid,
.ft-occasion-grid,
.ft-finish-grid {
    display: grid;
    gap: 1rem;
}

.ft-style-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ft-market .ft-style-card {
    appearance: none;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    min-height: 0;
    border: 1px solid transparent;
    background: #fffdf8;
    color: var(--ft-ink);
    border-radius: 20px;
    padding: 0.7rem 0.7rem 1rem;
    text-align: left;
    box-shadow: 0 10px 24px rgba(67, 48, 28, 0.06);
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.ft-market .ft-style-card:hover,
.ft-market .ft-style-card.is-active {
    transform: translateY(-3px);
    border-color: var(--ft-gold-soft);
    box-shadow: 0 16px 30px rgba(67, 48, 28, 0.1);
}

.ft-style-thumb {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 0.75rem;
    background: #f4ecdf;
}

.ft-style-card h3,
.ft-occasion-copy h3,
.ft-finish-card h3,
.ft-proof-list h3,
.ft-steps h3 {
    font-size: 1.08rem;
    line-height: 1.3;
    margin: 0 0 0.25rem;
}

.ft-style-card p,
.ft-occasion-copy p,
.ft-finish-card p,
.ft-proof-list p,
.ft-steps p {
    margin: 0;
    color: var(--ft-muted);
    font-size: 0.92rem;
    line-height: 1.4;
    width: auto;
}

.ft-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.ft-steps li {
    background: #fffdf8;
    border-radius: 22px;
    padding: 1.4rem 1.3rem 1.5rem;
    box-shadow: 0 10px 24px rgba(67, 48, 28, 0.05);
}

.ft-step-num {
    display: block;
    font-family: "Playfair Display", Georgia, serif;
    color: var(--ft-gold);
    font-size: 1.15rem;
    margin-bottom: 0.7rem;
}

.ft-occasion-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ft-occasion-grid--related {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ft-occasion-card {
    display: flex;
    flex-direction: column;
    background: #fffdf8;
    border-radius: 22px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 24px rgba(67, 48, 28, 0.06);
    min-height: 100%;
    transition: transform 0.2s ease;
}

.ft-occasion-card:hover {
    color: inherit;
    transform: translateY(-3px);
}

.ft-occasion-visual {
    background: #efe6d6;
    padding: 0.7rem 0.7rem 0;
    max-height: 190px;
    overflow: hidden;
}

.ft-occasion-copy {
    padding: 1rem 1rem 1.15rem;
}

.ft-finish-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ft-finish-card {
    background: #fffdf8;
    border-radius: 20px;
    padding: 1.2rem 1.1rem 1.3rem;
    box-shadow: 0 10px 24px rgba(67, 48, 28, 0.05);
}

.ft-proof-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 3rem;
    align-items: start;
}

.ft-proof-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.ft-proof-list article {
    background: #fffdf8;
    border-radius: 18px;
    padding: 1.15rem 1.1rem;
}

.ft-section-head-left .ft-btn {
    margin-top: 1.4rem;
}

.ft-faq-wrap {
    max-width: 820px;
}

.ft-accordion .accordion-item {
    background: #fffdf8;
    border: 1px solid var(--ft-line);
    margin-bottom: 0.7rem;
    border-radius: 16px;
    overflow: hidden;
}

.ft-accordion .accordion-header {
    margin: 0;
    font-size: 1rem;
    line-height: 1.35;
}

.ft-accordion .accordion-button {
    display: flex;
    align-items: center;
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 1rem 1.15rem;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.35;
    text-align: left;
    background: #fffdf8;
    color: var(--ft-ink);
    box-shadow: none;
}

.ft-accordion .accordion-button:not(.collapsed) {
    background: #f8f1e4 !important;
    color: var(--ft-ink);
    box-shadow: none;
}

.ft-accordion .accordion-button:focus {
    box-shadow: none;
}

.ft-accordion .accordion-body {
    color: var(--ft-muted);
    font-size: 1rem;
    line-height: 1.6;
    padding: 0 1.15rem 1.1rem;
}

.ft-close {
    padding: 4.5rem 0 5.2rem;
    background:
        linear-gradient(180deg, rgba(255, 251, 244, 0.2), rgba(232, 215, 179, 0.35));
    text-align: center;
}

.ft-close-inner {
    max-width: 640px;
}

.ft-close .ft-btn {
    margin-top: 1.4rem;
}

.ft-crumbs {
    margin-bottom: 1.1rem;
}

.ft-crumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.55rem;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.86rem;
    color: #8a7d6e;
}

.ft-crumbs li:not(:last-child)::after {
    content: "/";
    margin-left: 0.55rem;
    color: #c2b6a6;
}

.ft-crumbs a { color: #8a7d6e; text-decoration: none; }
.ft-crumbs a:hover { color: var(--ft-ink); }

.ft-chip {
    display: inline-flex;
    margin: 0 0 1.3rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--ft-gold-soft);
    color: #6a5844;
    font-size: 0.84rem;
}

.ft-story {
    max-width: 740px;
}

.ft-story p {
    color: #4d4339;
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 1.35rem;
}

.ft-story-lead {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.28rem;
    line-height: 1.65;
    color: var(--ft-ink);
}

@media (max-width: 1199.98px) {
    .ft-style-grid,
    .ft-finish-grid,
    .ft-occasion-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .ft-occasion-grid--related { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 991.98px) {
    .ft-hero { padding-top: 1.6rem; }
    .ft-hero-inner,
    .ft-proof-grid {
        grid-template-columns: 1fr;
        gap: 1.6rem;
    }
    .ft-hero-visual { order: -1; }
    .ft-room { min-height: 380px; padding: 1.6rem 1.1rem 1.4rem; }
    .ft-frame--hero { width: min(280px, 72%); }
    .ft-steps { grid-template-columns: 1fr; }
    .ft-section { padding: 3.4rem 0; }
}

@media (max-width: 767.98px) {
    .ft-style-grid,
    .ft-finish-grid,
    .ft-occasion-grid,
    .ft-occasion-grid--related,
    .ft-proof-list { grid-template-columns: 1fr 1fr; }
    .ft-trust-row { grid-template-columns: 1fr 1fr; }
    .ft-display { font-size: clamp(2.1rem, 10vw, 2.8rem); }
}

@media (max-width: 575.98px) {
    .ft-style-grid,
    .ft-finish-grid,
    .ft-occasion-grid,
    .ft-occasion-grid--related,
    .ft-proof-list { grid-template-columns: 1fr; }
    .ft-trust-row { grid-template-columns: 1fr; }
    .ft-hero-actions { flex-direction: column; align-items: stretch; }
}

.ft-explore-links ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ft-explore-links a {
    color: var(--ft-ink-muted, #5c5348);
    text-decoration: none;
    font-size: 0.95rem;
    border-bottom: 1px solid transparent;
}

.ft-explore-links a:hover {
    color: var(--ft-ink, #1a1612);
    border-bottom-color: currentColor;
}

/* ------------------------------------------------------------------ */
/* Create / visual start                                                */
/* ------------------------------------------------------------------ */

.ft-create-page.ft-market {
    padding-bottom: 2rem;
}

.ft-create-hero {
    padding: 2.6rem 0 0.4rem;
    text-align: center;
}

.ft-create-hero .ft-display {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
}

.ft-create-hero .ft-lead {
    margin-left: auto;
    margin-right: auto;
}

.ft-create-hero .ft-crumbs {
    display: flex;
    justify-content: center;
}

.ft-create-stage {
    padding: 2rem 0 1rem;
}

.ft-create-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
    gap: 2.4rem;
    align-items: start;
}

.ft-room--create {
    min-height: 520px;
}

.ft-create-wizard {
    background: #fffdf8;
    border-radius: 28px;
    padding: 1.6rem 1.5rem 1.7rem;
    box-shadow: 0 16px 40px rgba(67, 48, 28, 0.08);
}

.ft-create-wizard h2 {
    font-size: clamp(1.5rem, 2vw, 2rem);
    margin-bottom: 0.4rem;
}

.ft-create-wizard-sub,
.ft-create-reassure {
    color: var(--ft-muted);
    font-size: 0.95rem;
    margin: 0 0 1.2rem;
}

.ft-create-reassure {
    text-align: center;
    margin: 0.9rem 0 0;
}

.ft-create-step {
    border: 0;
    padding: 0;
    margin: 0 0 1.35rem;
}

.ft-create-step legend {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ft-gold);
    margin-bottom: 0.7rem;
}

.ft-mode-grid,
.ft-start-grid,
.ft-look-grid {
    display: grid;
    gap: 0.75rem;
}

.ft-mode-grid { grid-template-columns: 1fr 1fr; }
.ft-start-grid { grid-template-columns: 1fr 1fr; }
.ft-look-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.ft-pick {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    position: relative;
    margin: 0;
    padding: 0.7rem;
    border: 1px solid var(--ft-line);
    border-radius: 18px;
    background: #fff;
    cursor: pointer;
    color: var(--ft-ink);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.ft-pick input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.ft-pick:hover,
.ft-pick.is-active,
.ft-pick:has(input:checked) {
    border-color: var(--ft-gold-soft);
    box-shadow: 0 10px 24px rgba(67, 48, 28, 0.08);
}

.ft-pick.is-active,
.ft-pick:has(input:checked) {
    background: #faf3e8;
}

.ft-pick-visual {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    background: #efe6d6;
}

.ft-pick-visual .ft-art svg {
    max-height: 150px;
    object-fit: cover;
}

.ft-pick-title {
    display: block;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.02rem;
    line-height: 1.3;
}

.ft-pick-help {
    display: block;
    color: var(--ft-muted);
    font-size: 0.86rem;
    line-height: 1.4;
}

.ft-create-name label {
    display: block;
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.ft-create-name input {
    width: 100%;
    height: auto;
    min-height: 52px;
    border: 1px solid var(--ft-line);
    border-radius: 14px;
    background: #fff;
    color: var(--ft-ink);
    padding: 0.85rem 1rem;
    font-size: 1.02rem;
}

.ft-create-name input:focus {
    outline: 0;
    border-color: #c4a574;
    box-shadow: 0 0 0 4px rgba(196, 165, 116, 0.18);
}

.ft-create-error {
    margin: 0.8rem 0;
    color: #8a3030;
    font-size: 0.92rem;
}

.ft-market .ft-create-submit {
    width: 100%;
    margin-top: 1rem;
    background: #2c241c;
    color: #f7f1e6;
}

.ft-market .ft-look-card {
    appearance: none;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    min-height: 0;
    text-align: left;
    background: #fffdf8;
    color: var(--ft-ink);
    border: 1px solid transparent;
    border-radius: 20px;
    padding: 0.7rem 0.7rem 1rem;
    box-shadow: 0 10px 24px rgba(67, 48, 28, 0.06);
    cursor: pointer;
}

.ft-market .ft-look-card.is-active,
.ft-market .ft-look-card:hover {
    border-color: var(--ft-gold-soft);
    transform: translateY(-2px);
}

.ft-look-thumb {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 0.7rem;
    background: #efe6d6;
}

.ft-look-card h3 {
    font-size: 1.05rem;
    margin: 0 0 0.25rem;
}

.ft-look-card p {
    margin: 0;
    color: var(--ft-muted);
    font-size: 0.9rem;
}

@media (max-width: 991.98px) {
    .ft-create-grid { grid-template-columns: 1fr; }
    .ft-create-preview { order: -1; }
    .ft-room--create { min-height: 380px; }
}

@media (max-width: 767.98px) {
    .ft-look-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 575.98px) {
    .ft-mode-grid,
    .ft-start-grid { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------------ */
/* Print / checkout                                                     */
/* ------------------------------------------------------------------ */

.ft-checkout-page.ft-market { padding-bottom: 3rem; }

.ft-checkout-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
    gap: 2.2rem;
    align-items: start;
}

.ft-checkout-art {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.ft-checkout-preview-links {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 0.9rem;
}

.ft-checkout-preview-links a {
    color: var(--ft-muted);
    font-size: 0.92rem;
}

.ft-checkout-panel {
    background: #fffdf8;
    border-radius: 28px;
    padding: 1.5rem 1.4rem 1.6rem;
    box-shadow: 0 16px 40px rgba(67, 48, 28, 0.08);
}

.ft-recommend-card {
    background: #f7f1e6;
    border-radius: 18px;
    padding: 1rem 1.1rem;
    margin-bottom: 1.2rem;
}

.ft-recommend-kicker {
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.72rem;
    color: var(--ft-gold);
    margin: 0 0 0.3rem;
}

.ft-recommend-card strong {
    display: block;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.35rem;
    margin-bottom: 0.3rem;
}

.ft-recommend-card p {
    margin: 0;
    color: var(--ft-muted);
    font-size: 0.92rem;
}

.ft-checkout-form h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.35rem;
    margin: 0 0 0.9rem;
}

.ft-size-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.ft-size-grid label span {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.ft-size-grid input {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--ft-line);
    border-radius: 12px;
    background: #fff;
    padding: 0.65rem 0.8rem;
    color: var(--ft-ink);
}

.ft-finish-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
    margin-bottom: 1rem;
}

.ft-market .ft-finish-card {
    display: grid;
    gap: 0.3rem;
    width: 100%;
    height: auto;
    text-align: left;
    background: #fff;
    border: 1px solid var(--ft-line);
    border-radius: 16px;
    padding: 0.8rem 0.85rem;
    color: var(--ft-ink);
}

.ft-market .ft-finish-card small {
    color: var(--ft-muted);
    font-size: 0.8rem;
}

.ft-market .ft-finish-card.is-active {
    border-color: var(--ft-gold-soft);
    background: #faf3e8;
}

.ft-finish-price {
    display: grid;
    gap: 0.12rem;
    margin-top: 0.2rem;
}

.ft-price-mrp,
.ft-price-offer {
    font-size: 0.78rem;
    color: var(--ft-muted);
}

.ft-price-mrp.is-hidden,
.ft-price-box-compare.is-hidden {
    display: none;
}

.ft-price-mrp del {
    color: #8a7d6e;
    text-decoration: line-through;
    margin-left: 0.25rem;
}

.ft-price-offer em {
    font-style: normal;
    font-weight: 700;
    color: var(--ft-ink);
    margin-left: 0.25rem;
}

.ft-price-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    background: #2c241c;
    color: #f7f1e6;
    border-radius: 16px;
    padding: 0.95rem 1.05rem;
    margin-bottom: 0.9rem;
}

.ft-price-box-main {
    display: grid;
    gap: 0.2rem;
}

.ft-price-box-main span,
.ft-price-box-compare span {
    font-size: 0.78rem;
    opacity: 0.8;
}

.ft-price-box strong { font-size: 1.25rem; }

.ft-price-box-compare {
    display: grid;
    gap: 0.15rem;
    text-align: right;
}

.ft-price-box-compare del {
    text-decoration: line-through;
    opacity: 0.75;
}

.ft-price-box-compare small {
    color: #e8d7b3;
    font-size: 0.78rem;
}

.ft-cta-help {
    margin: 0.55rem 0 0;
    color: var(--ft-muted);
    font-size: 0.88rem;
    text-align: center;
}

.ft-market button.ft-btn-primary,
.ft-market a.ft-btn-primary,
.ft-market .ft-checkout-cta {
    background: #2c241c !important;
    color: #f7f1e6 !important;
    border: 0 !important;
    visibility: visible;
    opacity: 1;
}

.ft-market button.ft-checkout-cta {
    display: flex;
    width: 100%;
    min-height: 52px;
    margin-top: 0.35rem;
}

.ft-size-help {
    margin: -0.4rem 0 0.85rem;
    color: var(--ft-muted);
    font-size: 0.9rem;
}

.ft-size-chips {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    margin-bottom: 0.85rem;
}

.ft-market button.ft-size-chip {
    display: grid;
    gap: 0.15rem;
    width: 100%;
    min-height: 56px;
    text-align: left;
    background: #fff;
    border: 1px solid var(--ft-line);
    border-radius: 14px;
    padding: 0.7rem 0.8rem;
    color: var(--ft-ink);
}

.ft-market button.ft-size-chip.is-active {
    border-color: var(--ft-gold-soft);
    background: #faf3e8;
}

.ft-market button.ft-size-chip small {
    color: var(--ft-gold);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ft-checkout-live {
    width: 100%;
    min-height: 380px;
    background: #f8f3ea;
}

.ft-checkout-live svg {
    display: block;
    width: 100%;
    height: auto;
    max-height: 520px;
}

.ft-checkout-finish-note {
    margin: 0.7rem 0 0;
    text-align: center;
    color: var(--ft-muted);
    font-size: 0.88rem;
}

.ft-checkout-page .ft-frame--hero {
    width: min(520px, 100%);
}

.ft-checkout-page .ft-room--create {
    min-height: 0;
    display: flex;
    justify-content: center;
}

.ft-checkout-page .ft-art svg {
    aspect-ratio: auto;
}

.ft-checkout-page .ft-frame-chrome {
    overflow: hidden;
}

.ft-checkout-page .ft-frame[data-ft-finish="canvas"] .ft-frame-chrome {
    padding: 14px;
    background:
        linear-gradient(145deg, #7a5330 0%, #4a3018 55%, #2f1d10 100%);
    box-shadow: inset 0 0 0 3px #c4a574;
}

.ft-checkout-page .ft-frame[data-ft-finish="floater"] .ft-frame-chrome {
    padding: 10px;
    background: #141414;
    box-shadow: 0 0 0 10px #0c0c0c, inset 0 0 0 1px #3a3a3a;
}

.ft-checkout-page .ft-frame[data-ft-finish="acrylic"] .ft-frame-chrome {
    padding: 8px;
    background: linear-gradient(180deg, rgba(255,255,255,0.78), rgba(226,234,244,0.42));
    border: 1px solid rgba(255,255,255,0.85);
    box-shadow: 0 22px 40px rgba(20, 30, 50, 0.16);
}

.ft-checkout-page .ft-frame[data-ft-finish="photo-print"] .ft-frame-chrome {
    padding: 7px;
    background: #fff;
    border: 1px solid #d8d2c8;
    box-shadow: 0 10px 24px rgba(60, 48, 32, 0.08);
}

.ft-checkout-page .ft-frame[data-ft-finish="framed"] .ft-frame-chrome {
    padding: 18px;
    background:
        linear-gradient(145deg, #8b5a2b 0%, #5a3514 58%, #3a2412 100%);
    border: 8px solid #2b1a0d;
    box-shadow: inset 0 0 0 3px #d4b07a;
}

.ft-check-list {
    margin: 0.7rem 0 0;
    padding: 0 0 0 1.1rem;
    color: var(--ft-muted);
    font-size: 0.9rem;
}

.ft-check-list li { margin-bottom: 0.3rem; }

@media (max-width: 991.98px) {
    .ft-checkout-grid { grid-template-columns: 1fr; }
    .ft-checkout-preview { order: -1; }
}

@media (max-width: 575.98px) {
    .ft-finish-grid,
    .ft-size-chips,
    .ft-size-grid { grid-template-columns: 1fr; }
}
